d0673a93c35b6e1ea52bea68682a8f747373badf
[gnulib.git] / ChangeLog
1 2009-12-19  Bruno Haible  <bruno@clisp.org>
2
3         New module attribute 'Applicability'.
4         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
5         * gnulib-tool: New option --extract-applicability.
6         (func_usage): Document it.
7         (sed_extract_prog): Recognize it.
8         (func_get_applicability): New function.
9         (func_import): Generalize handling of 'link-warning' module.
10         * modules/link-warning (Applicability): New section.
11         * modules/arg-nonnull (Applicability): New section.
12         Repoted by Simon Josefsson <simon@josefsson.org>.
13
14 2009-12-19  Bruno Haible  <bruno@clisp.org>
15
16         fflush: tweak
17         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
18         * lib/fseeko.c (rpl_fseeko): Likewise.
19
20 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
21
22         * lib/gl_list.h: Fix typo in comment.
23
24 2009-12-16  Eric Blake  <ebb9@byu.net>
25
26         fcntl: use to simplify other modules
27         * modules/cloexec (Depends-on): Add fcntl.
28         * modules/fchdir (Depends-on): Likewise.
29         * modules/fd-safer-flag (Depends-on): Likewise.
30         * modules/unistd-safer (Depends-on): Likewise.
31         * modules/dup3 (configure.ac): Set module indicator.
32         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
33         missing.
34         * lib/fchdir.c (_gl_register_dup): Fix comment.
35         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
36         * lib/dup-safer.c (dup_safer): Likewise.
37         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
38         * lib/dup3.c (dup3): Likewise.
39         * tests/test-fchdir.c (main): Enhance test.
40         Fixes a dup_cloexec bug reported by Ondřej Vašík.
41
42         fcntl: port portions of fcntl to mingw
43         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
44         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
45         replacement for mingw.
46         * modules/fcntl (Description): Update.
47         (Depends-on): Add dup2.
48         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
49         * modules/fcntl-h (Makefile.am): Substitute it.
50         * lib/fcntl.in.h (fcntl): Update declaration.
51         (F_DUPFD, F_GETFD): New macros, when needed.
52         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
53         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
54         * tests/test-fcntl.c (check_flags, main): Enhance test for items
55         we now guarantee.
56
57         fcntl: work around cygwin bug in F_DUPFD
58         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
59         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
60         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
61         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
62         * doc/posix-functions/fcntl.texi (fcntl): Document it.
63
64         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
65         * modules/fcntl (Files): List new files.
66         (configure.ac): Run a test.
67         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
68         * lib/fcntl.c (rpl_fcntl): Likewise.
69         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
70         (gl_FCNTL_H): Always replace fcntl.h.
71         * modules/fcntl-h (Makefile.am): Substitute witnesses.
72         * lib/fcntl.in.h (fcntl): Declare replacement.
73         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
74         needed, plus a witness.
75         * doc/posix-functions/fcntl.texi (fcntl): Document this.
76         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
77         * tests/test-fcntl.c: New file.
78         * modules/fcntl-tests: Likewise.
79
80         binary-io: avoid potential compilation warning
81         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
82         directives.
83
84         fflush: avoid compilation error on NetBSD
85         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
86         between off_t and fpos_t, since the latter is sometimes a struct.
87         * lib/fseeko.c (rpl_fseeko): Likewise.
88         Reported by Alexander Nasonov <alnsn@yandex.ru>.
89
90 2009-12-15  Eric Blake  <ebb9@byu.net>
91
92         fcntl-h, stdio, sys_ioctl: fix declarations
93         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
94         function must not take arguments.
95         * lib/sys_ioctl.in.h (ioctl): Likewise.
96         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
97         (open): Add a link warning.
98
99 2009-12-15  Jim Meyering  <meyering@redhat.com>
100
101         areadlink, areadlink-with-size: relax license to LGPLv2+
102         * modules/areadlink (License): Relax to LGPLv2+.
103         * modules/areadlink-with-size (License): Likewise.
104
105 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
106             Bruno Haible  <bruno@clisp.org>
107
108         *printf: Fix memory leak.
109         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
110         * lib/vfprintf.c (vfprintf): Likewise.
111         * lib/dprintf.c (dprintf): Likewise.
112         * lib/vdprintf.c (vdprintf): Likewise.
113
114 2009-12-14  Eric Blake  <ebb9@byu.net>
115
116         accept4: adjust module dependencies
117         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
118
119         utimens: one more try at avoiding compiler warning
120         * lib/utimens.c (lutimens): Lower scope of result.
121
122 2009-12-13  Bruno Haible  <bruno@clisp.org>
123
124         Move the malloc checking from module 'list' to new module 'xlist'.
125         * modules/xlist: New file.
126         * lib/gl_xlist.h: New file.
127         * lib/gl_xlist.c: New file.
128         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
129         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
130         gl_list_add_last, gl_list_add_before, gl_list_add_after,
131         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
132         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
133         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
134         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
135         gl_sortedlist_nx_add): New declarations.
136         (struct gl_list_implementation): Rename and change methods accordingly.
137         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
138         (gl_list_nx_create): Renamed from gl_list_create.
139         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
140         (gl_list_nx_set_at): Renamed from gl_list_set_at.
141         (gl_list_nx_add_first): Renamed from gl_list_add_first.
142         (gl_list_nx_add_last): Renamed from gl_list_add_last.
143         (gl_list_nx_add_before): Renamed from gl_list_add_before.
144         (gl_list_nx_add_after): Renamed from gl_list_add_after.
145         (gl_list_nx_add_at): Renamed from gl_list_add_at.
146         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
147         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
148         gl_list_create_empty.
149         (gl_list_nx_create): Renamed from gl_list_create.
150         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
151         (gl_list_nx_set_at): Renamed from gl_list_set_at.
152         (gl_list_nx_add_first): Renamed from gl_list_add_first.
153         (gl_list_nx_add_last): Renamed from gl_list_add_last.
154         (gl_list_nx_add_before): Renamed from gl_list_add_before.
155         (gl_list_nx_add_after): Renamed from gl_list_add_after.
156         (gl_list_nx_add_at): Renamed from gl_list_add_at.
157         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
158         * lib/gl_array_list.c: Don't include xalloc.h.
159         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
160         NULL upon out-of-memory.
161         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
162         out-of-memory.
163         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
164         Change return type to 'int'.
165         (gl_array_nx_set_at): Renamed from gl_array_set_at.
166         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
167         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
168         upon out-of-memory.
169         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
170         upon out-of-memory.
171         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
172         upon out-of-memory.
173         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
174         upon out-of-memory.
175         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
176         out-of-memory.
177         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
178         Update.
179         (gl_array_list_implementation): Update.
180         * lib/gl_carray_list.c: Don't include xalloc.h.
181         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
182         Return NULL upon out-of-memory.
183         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
184         out-of-memory.
185         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
186         Change return type to 'int'.
187         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
188         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
189         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
190         upon out-of-memory.
191         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
192         upon out-of-memory.
193         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
194         out-of-memory.
195         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
196         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
197         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
198         Update.
199         (gl_carray_list_implementation): Update.
200         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
201         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
202         gl_linked_create_empty. Return NULL upon out-of-memory.
203         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
204         out-of-memory.
205         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
206         Change return type to 'int'. Return -1 upon out-of-memory.
207         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
208         out-of-memory.
209         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
210         upon out-of-memory.
211         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
212         upon out-of-memory.
213         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
214         NULL upon out-of-memory.
215         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
216         upon out-of-memory.
217         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
218         out-of-memory.
219         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
220         Update.
221         * lib/gl_linked_list.c: Don't include xalloc.h.
222         (gl_linked_list_implementation): Update.
223         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
224         (add_to_bucket): Change return type to 'int'.
225         (gl_linkedhash_list_implementation): Update.
226         * lib/gl_anytree_list1.h (free_subtree): New function.
227         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
228         gl_tree_create_empty. Return NULL upon out-of-memory.
229         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
230         Change return type to 'int'. Return -1 upon out-of-memory.
231         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
232         out-of-memory.
233         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
234         (gl_tree_remove_node): New function, moved here from
235         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
236         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
237         Update.
238         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
239         malloc, not xmalloc. Return NULL upon out-of-memory.
240         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
241         out-of-memory.
242         (gl_tree_remove_node_from_tree): New function, extracted from
243         gl_tree_remove_node.
244         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
245         upon out-of-memory.
246         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
247         out-of-memory.
248         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
249         upon out-of-memory.
250         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
251         upon out-of-memory.
252         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
253         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
254         not xmalloc. Return NULL upon out-of-memory.
255         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
256         out-of-memory.
257         (gl_tree_remove_node_from_tree): New function, extracted from
258         gl_tree_remove_node.
259         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
260         upon out-of-memory.
261         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
262         out-of-memory.
263         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
264         upon out-of-memory.
265         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
266         upon out-of-memory.
267         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
268         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
269         gl_anytree_list1.h before gl_anyavltree_list2.h.
270         (gl_avltree_list_implementation): Update.
271         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
272         gl_anytree_list1.h before gl_anyavltree_list2.h.
273         (gl_rbtree_list_implementation): Update.
274         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
275         Change return type to 'int'. Return -1 upon out-of-memory. Use
276         __builtin_expect.
277         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
278         (gl_avltreehash_list_implementation): Update.
279         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
280         (gl_rbtreehash_list_implementation): Update.
281         * modules/array-list (Depends-on): Remove xalloc.
282         * modules/carray-list (Depends-on): Likewise.
283         * modules/linked-list (Depends-on): Likewise.
284         * modules/linkedhash-list (Depends-on): Likewise.
285         * modules/avltree-list (Depends-on): Likewise.
286         * modules/rbtree-list (Depends-on): Likewise.
287         * modules/avltreehash-list (Depends-on): Likewise.
288         * modules/rbtreehash-list (Depends-on): Likewise.
289
290         * modules/xsublist: New file.
291         * lib/gl_xsublist.h: New file.
292         * lib/gl_xsublist.c: New file.
293         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
294         (gl_sublist_nx_create): New declaration.
295         * lib/gl_sublist.c: Don't include xalloc.h.
296         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
297         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
298         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
299         Change return type to 'int'. Return -1 upon out-of-memory.
300         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
301         upon out-of-memory.
302         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
303         NULL upon out-of-memory.
304         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
305         upon out-of-memory.
306         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
307         NULL upon out-of-memory.
308         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
309         NULL upon out-of-memory.
310         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
311         upon out-of-memory.
312         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
313         (gl_sublist_list_implementation): Update.
314         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
315         upon out-of-memory.
316         * modules/sublist (Depends-on): Remove xalloc.
317
318         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
319         * tests/test-carray_list.c: Likewise.
320         * tests/test-linked_list.c: Likewise.
321         * tests/test-linkedhash_list.c: Likewise.
322         * tests/test-avltree_list.c: Likewise.
323         * tests/test-rbtree_list.c: Likewise.
324         * tests/test-avltreehash_list.c: Likewise.
325         * tests/test-rbtreehash_list.c: Likewise.
326         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
327         * modules/carray-list-tests (Makefile.am): Likewise.
328         * modules/linked-list-tests (Makefile.am): Likewise.
329         * modules/linkedhash-list-tests (Makefile.am): Likewise.
330         * modules/avltree-list-tests (Makefile.am): Likewise.
331         * modules/rbtree-list-tests (Makefile.am): Likewise.
332         * modules/avltreehash-list-tests (Makefile.am): Likewise.
333         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
334
335         * NEWS: Mention the changes.
336
337         * lib/clean-temp.c: Include gl_xlist.h.
338         * modules/clean-temp (Depends-on): Add xlist.
339
340         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
341         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
342
343         * tests/test-array_oset.c: Include gl_xlist.h.
344         * modules/array-oset-tests (Depends-on): Add xlist.
345
346         Reported by José E. Marchesi <jemarch@gnu.org>.
347
348 2009-12-13  Bruno Haible  <bruno@clisp.org>
349
350         Move the malloc checking from module 'oset' to new module 'xoset'.
351         * modules/xoset: New file.
352         * lib/gl_xoset.h: New file.
353         * lib/gl_xoset.c: New file.
354         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
355         declarations.
356         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
357         (struct gl_oset_implementation): Rename and change methods accordingly.
358         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
359         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
360         'int'. Mark as __warn_unused_result__.
361         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
362         gl_oset_create_empty.
363         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
364         'int'.
365         * lib/gl_array_oset.c: Don't include xalloc.h.
366         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
367         malloc, not xmalloc.
368         (grow): Change return type to 'int'. Don't call xalloc_die.
369         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
370         to 'int'.
371         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
372         'int'.
373         (gl_array_oset_implementation): Update.
374         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
375         gl_tree_create_empty.
376         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
377         'int'.
378         * lib/gl_avltree_oset.c: Don't include xalloc.h.
379         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
380         xmalloc.
381         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
382         not xmalloc.
383         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
384         xmalloc.
385         (gl_avltree_oset_implementation): Update.
386         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
387         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
388         xmalloc.
389         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
390         not xmalloc.
391         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
392         xmalloc.
393         (gl_rbtree_oset_implementation): Update.
394         * modules/array-oset (Depends-on): Remove xalloc.
395         * modules/avltree-oset (Depends-on): Likewise.
396         * modules/rbtree-oset (Depends-on): Likewise.
397         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
398         * tests/test-avltree_oset.c: Likewise.
399         * tests/test-rbtree_oset.c: Likewise.
400         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
401         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
402         * modules/rbtree-oset-tests (Makefile.am): Likewise.
403         * NEWS: Mention the change.
404
405 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
406
407         maint.mk: allow a project to override release-prep commands
408         * top/maint.mk (alpha, beta, stable): Move release-preparatory
409         commands into a new rule.
410         (release-prep): New rule.
411         (release-prep-hook): New overridable variable.
412
413 2009-12-13  Bruno Haible  <bruno@clisp.org>
414
415         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
416
417 2009-12-13  Jim Meyering  <meyering@redhat.com>
418
419         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
420         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
421
422 2009-12-12  Bruno Haible  <bruno@clisp.org>
423
424         duplocale: Tweak.
425         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
426
427 2009-12-12  Karl Berry  <karl@gnu.org>
428
429         * config/srclist.txt (strtoll.c): tab changes, no more sync.
430
431 2009-12-12  Bruno Haible  <bruno@clisp.org>
432
433         * m4/po.m4: Undo incorrect untabification.
434
435 2009-12-12  Bruno Haible  <bruno@clisp.org>
436
437         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
438         * modules/c-strtod (Depends-on): Add locale.
439         * modules/c-strtold (Depends-on): Likewise.
440
441 2009-12-12  Bruno Haible  <bruno@clisp.org>
442
443         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
444
445 2009-12-11  Eric Blake  <ebb9@byu.net>
446
447         setenv: relax requirement in light of POSIX ruling
448         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
449         not NULL.
450         * tests/test-setenv.c (main): Relax test.
451         * tests/test-unsetenv.c (main): Likewise.
452         * doc/posix-functions/setenv.texi (setenv): Document this.
453         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
454
455 2009-12-11  Bruno Haible  <bruno@clisp.org>
456
457         New module 'fd-safer-flag'.
458         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
459         * lib/dup-safer.c (dup_safer_flag): Remove function.
460         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
461         * lib/fd-safer.c (fd_safer_flag): Remove function.
462         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
463         * modules/cloexec (configure.ac): Drop indicator macro.
464         * modules/fd-safer-flag: New file.
465         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
466         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
467         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
468
469 2009-12-11  Bruno Haible  <bruno@clisp.org>
470
471         Tests for module 'nl_langinfo'.
472         * modules/nl_langinfo-tests: New file.
473         * tests/test-nl_langinfo.sh: New file.
474         * tests/test-nl_langinfo.c: New file.
475
476         New module 'nl_langinfo'.
477         * lib/nl_langinfo.c: New file.
478         * m4/nl_langinfo.m4: New file.
479         * modules/nl_langinfo: New file.
480         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
481
482 2009-12-11  Bruno Haible  <bruno@clisp.org>
483
484         Tests for module 'langinfo'.
485         * modules/langinfo-tests: New file.
486         * tests/test-langinfo.c: New file.
487
488         New module 'langinfo'.
489         * lib/langinfo.in.h: New file.
490         * m4/langinfo_h.m4: New file.
491         * modules/langinfo: New file.
492         * doc/posix-headers/langinfo.texi: Mention the new module.
493
494 2009-12-11  Bruno Haible  <bruno@clisp.org>
495
496         * lib/config.charset: Untabify.
497
498 2009-12-11  Bruno Haible  <bruno@clisp.org>
499
500         * modules/unistd-safer (configure.ac): Drop indicator macro.
501
502 2009-12-11  Bruno Haible  <bruno@clisp.org>
503
504         Move pipe2-safer code to its own file.
505         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
506         * lib/pipe-safer.c (pipe2_safer): Remove function.
507         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
508         (Makefile.am): Add it to lib_SOURCES.
509
510 2009-12-10  Bruno Haible  <bruno@clisp.org>
511
512         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
513
514 2009-12-10  Bruno Haible  <bruno@clisp.org>
515
516         Declare which arguments expect non-NULL values, for GCC and clang.
517         * build-aux/arg-nonnull.h: New file.
518         * modules/arg-nonnull: New file.
519         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
520         (inet_ntop, inet_pton): Use it.
521         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
522         (closedir, dirfd, opendir, scandir, alphasort): Use it.
523         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
524         (open, openat): Use it.
525         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
526         (fnmatch): Use it.
527         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
528         (getopt, getopt_long, getopt_long_only): Use it.
529         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
530         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
531         Use it.
532         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
533         (iconv_open): Use it.
534         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
535         (strtoimax, strtoumax): Use it.
536         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
537         (duplocale): Use it.
538         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
539         (frexp, frexpl): Use it.
540         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
541         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
542         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
543         (tsearch, tfind, tdelete, twalk): Use it.
544         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
545         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
546         sigpending): Use it.
547         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
548         (posix_spawn, posix_spawnp, posix_spawnattr_init,
549         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
550         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
551         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
552         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
553         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
554         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
555         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
556         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
557         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
558         Use it.
559         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
560         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
561         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
562         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
563         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
564         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
565         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
566         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
567         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
568         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
569         strtoull, unsetenv): Use it.
570         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
571         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
572         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
573         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
574         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
575         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
576         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
577         (strcasecmp, strncasecmp): Use it.
578         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
579         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
580         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
581         rpl_setsockopt): Use it.
582         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
583         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
584         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
585         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
586         (gettimeofday): Use it.
587         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
588         (times): Use it.
589         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
590         (uname): Use it.
591         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
592         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
593         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
594         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
595         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
596         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
597         unlinkat, write): Use it.
598         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
599         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
600         * lib/argv-iter.h: Include arg-nonnull.h.
601         (_ATTRIBUTE_NONNULL_): Remove macro.
602         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
603         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
604         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
605         optimization.
606         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
607         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
608         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
609         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
610         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
611         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
612         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
613         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
614         * modules/arpa_inet (Depends-on): Add arg-nonnull.
615         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
616         * modules/dirent (Depends-on): Add arg-nonnull.
617         (Makefile.am): Insert arg-nonnull.h into dirent.h.
618         * modules/fcntl-h (Depends-on): Add arg-nonnull.
619         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
620         * modules/fnmatch (Depends-on): Add arg-nonnull.
621         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
622         * modules/getopt-posix (Depends-on): Add arg-nonnull.
623         (Makefile.am): Insert arg-nonnull.h into getopt.h.
624         * modules/glob (Depends-on): Add arg-nonnull.
625         (Makefile.am): Insert arg-nonnull.h into glob.h.
626         * modules/iconv_open (Depends-on): Add arg-nonnull.
627         (Makefile.am): Insert arg-nonnull.h into iconv.h.
628         * modules/inttypes (Depends-on): Add arg-nonnull.
629         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
630         * modules/locale (Depends-on): Add arg-nonnull.
631         (Makefile.am): Insert arg-nonnull.h into locale.h.
632         * modules/math (Depends-on): Add arg-nonnull.
633         (Makefile.am): Insert arg-nonnull.h into math.h.
634         * modules/netdb (Depends-on): Add arg-nonnull.
635         (Makefile.am): Insert arg-nonnull.h into netdb.h.
636         * modules/search (Depends-on): Add arg-nonnull.
637         (Makefile.am): Insert arg-nonnull.h into search.h.
638         * modules/signal (Depends-on): Add arg-nonnull.
639         (Makefile.am): Insert arg-nonnull.h into signal.h.
640         * modules/spawn (Depends-on): Add arg-nonnull.
641         (Makefile.am): Insert arg-nonnull.h into spawn.h.
642         * modules/stdio (Depends-on): Add arg-nonnull.
643         (Makefile.am): Insert arg-nonnull.h into stdio.h.
644         * modules/stdlib (Depends-on): Add arg-nonnull.
645         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
646         * modules/string (Depends-on): Add arg-nonnull.
647         (Makefile.am): Insert arg-nonnull.h into string.h.
648         * modules/strings (Depends-on): Add arg-nonnull.
649         (Makefile.am): Insert arg-nonnull.h into strings.h.
650         * modules/sys_socket (Depends-on): Add arg-nonnull.
651         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
652         * modules/sys_stat (Depends-on): Add arg-nonnull.
653         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
654         * modules/sys_time (Depends-on): Add arg-nonnull.
655         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
656         * modules/sys_times (Depends-on): Add arg-nonnull.
657         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
658         * modules/sys_utsname (Depends-on): Add arg-nonnull.
659         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
660         * modules/time (Depends-on): Add arg-nonnull.
661         (Makefile.am): Insert arg-nonnull.h into time.h.
662         * modules/unistd (Depends-on): Add arg-nonnull.
663         (Makefile.am): Insert arg-nonnull.h into unistd.h.
664         * modules/wchar (Depends-on): Add arg-nonnull.
665         (Makefile.am): Insert arg-nonnull.h into wchar.h.
666         * modules/argv-iter (Depends-on): Add arg-nonnull.
667         * tests/test-canonicalize.c (null_ptr): New function.
668         (main): Use it.
669         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
670         (main): Use it.
671         * tests/test-memmem.c (null_ptr): New function.
672         (main): Use it.
673         Reported by Jim Meyering.
674
675 2009-12-10  Bruno Haible  <bruno@clisp.org>
676
677         Use spaces for indentation, not tabs.
678         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
679         * m4/*.m4: Untabify.
680         * build-aux/*.h: Untabify.
681         * tests/**/*.[hc]: Untabify.
682         * README: New section "Indent with spaces, not TABs", based on
683         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
684         * NEWS: Mention the change.
685
686 2009-12-10  Bruno Haible  <bruno@clisp.org>
687
688         pty test: Fix link error.
689         * modules/pty-tests (Makefile.am): Add the default LDADD value to
690         test_pty_LDADD.
691
692 2009-12-07  Simon Josefsson  <simon@josefsson.org>
693
694         * modules/pty: New file.
695         * modules/pty-tests: New file.
696         * m4/pty.m4: New file.
697         * tests/test-pty.c: New file.
698         * doc/glibc-headers/pty.texi: Modified.
699         * doc/glibc-functions/forkpty.texi: Modified.
700         * doc/glibc-functions/openpty.texi: Modified.
701
702 2009-12-10  Bruno Haible  <bruno@clisp.org>
703
704         Avoid syntax error in C++ mode.
705         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
706
707 2009-12-10  Bruno Haible  <bruno@clisp.org>
708
709         Use sed with option -e.
710         * gnulib-tool (func_version, func_emit_copyright_notice,
711         func_emit_initmacro_end, func_import, func_create_testdir): Pass
712         option -e to sed.
713         * modules/link-warning (Makefile.am): Likewise.
714
715 2009-12-10  Jim Meyering  <meyering@redhat.com>
716
717         mgetgroups: do not write bytes beyond end of malloc'd buffer
718         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
719         username, we call getgroups with a one-element-shorter buffer,
720         but still told it the length was original, max_n_groups.
721
722 2009-12-09  Eric Blake  <ebb9@byu.net>
723
724         cloexec: relax license
725         * modules/cloexec (Maintainer): Add myself.
726         (License): Use LGPL, not GPL.
727
728         link-warning: optimize generation
729         * modules/link-warning (Makefile.am): Reduce process usage.
730
731 2009-12-09  Bruno Haible  <bruno@clisp.org>
732
733         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
734         workaround was added on 2009-11-17.
735
736 2009-12-09  Jim Meyering  <meyering@redhat.com>
737             Bruno Haible  <bruno@clisp.org>
738
739         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
740         * modules/link-warning (Makefile.am): Make the comment-removing sed
741         command more robust in the face of bootstrap-prepended comment lines.
742
743 2009-12-09  Bruno Haible  <bruno@clisp.org>
744
745         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
746         most one group.
747
748 2009-12-09  Simon Josefsson <simon@josefsson.org>
749             Bruno Haible  <bruno@clisp.org>
750
751         * build-aux/link-warning.h: Add copyright notice.
752         * modules/link-warning (Makefile.am): Generate link-warning.h from
753         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
754         * NEWS: Mention change in link-warning module.
755         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
756         * modules/dirent (Makefile.am): Add dependency to dirent.h.
757         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
758         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
759         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
760         * modules/math (Makefile.am): Add dependency to math.h.
761         * modules/search (Makefile.am): Add dependency to search.h.
762         * modules/signal (Makefile.am): Add dependency to signal.h.
763         * modules/spawn (Makefile.am): Add dependency to spawn.h.
764         * modules/stdio (Makefile.am): Add dependency to stdio.h.
765         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
766         * modules/string (Makefile.am): Add dependency to string.h.
767         * modules/strings (Makefile.am): Add dependency to strings.h.
768         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
769         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
770         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
771         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
772         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
773         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
774         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
775         * modules/unistd (Makefile.am): Add dependency to unistd.h.
776         * modules/wchar (Makefile.am): Add dependency to wchar.h.
777
778 2009-12-09  Bruno Haible  <bruno@clisp.org>
779
780         fchdir: Optimize away rpl_fstat when possible.
781         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
782         REPLACE_OPEN_DIRECTORY.
783         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
784
785 2009-12-09  Bruno Haible  <bruno@clisp.org>
786
787         * lib/fchdir.c: Update comment.
788
789 2009-12-09  Bruno Haible  <bruno@clisp.org>
790
791         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
792
793 2009-12-08  Eric Blake  <ebb9@byu.net>
794
795         fchdir: avoid memory leak on re-registration.
796         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
797
798 2009-12-08  Jim Meyering  <meyering@redhat.com>
799
800         init.sh: avoid Solaris 10 /bin/sh portability problem
801         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
802         sourced script:
803           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
804           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
805           bar
806         tests/init.sh relied on that, accepting a --set-path=DIR argument,
807         and two tests used that idiom.
808         * tests/init.sh: Update suggested usage comments.
809         (path_prepend_): New function, to be used in place
810         of the --src-path=DIR option.
811         (setup_): Move PATH-prepending code into path_prepend_.
812         * tests/test-pread.sh: Adapt to new usage.
813         * tests/test-xalloc-die.sh: Likewise.
814
815 2009-12-08  Simon Josefsson  <simon@josefsson.org>
816
817         * doc/gnulib.texi (Glibc pty.h): Add.
818         * doc/glibc-functions/forkpty.texi: Add.
819         * doc/glibc-functions/openpty.texi: Add.
820         Suggested by Bruno Haible.
821
822 2009-12-08  Eric Blake  <ebb9@byu.net>
823
824         fchdir: fix logic bugs
825         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
826         * tests/test-fchdir.c (main): Enhance test.
827         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
828         is in use.
829
830         dup2: fix logic bugs
831         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
832         REPLACE_DUP2 to decide when rpl_dup2 is needed.
833         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
834         exists.
835         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
836
837 2009-12-07  Eric Blake  <ebb9@byu.net>
838
839         unlink: fix m4 detection
840         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
841
842         unistd-safer: add unit test
843         * modules/unistd-safer-tests: New file.
844         * tests/test-dup-safer.c: Likewise.
845         * tests/test-cloexec.c (setmode): Avoid compiler warning.
846         * tests/test-dup2.c (setmode): Likewise.
847         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
848
849         cloexec: preserve text vs. binary across dup_cloexec
850         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
851         mode.
852         * modules/dup2-tests (Depends-on): Add binary-io.
853         * modules/cloexec-tests (Depends-on): Likewise.
854         * tests/test-dup2.c (setmode, is_mode): New helpers.
855         (main): Add tests that translation mode is preserved.
856         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
857         Reported by Bruno Haible.
858
859         mgetgroups: reduce duplicate listings
860         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
861         resulting array.
862         * tests/test-chown.h (test_chown): Simplify client.
863         * tests/test-lchown.h (test_lchown): Likewise.
864
865 2009-12-06  Bruno Haible  <bruno@clisp.org>
866
867         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
868         value.
869
870 2009-12-06  Bruno Haible  <bruno@clisp.org>
871
872         * lib/progname.c: Include stdio.h, stdlib.h.
873         (set_program_name): Reject a NULL argument.
874
875 2009-12-05  Eric Blake  <ebb9@byu.net>
876
877         pipe2-safer: new module
878         * modules/pipe2-safer: New file.
879         * lib/unistd-safer.h (pipe2_safer): New prototype.
880         * lib/unistd--.h (pipe2): New wrapper.
881         * lib/pipe-safer.c (pipe2_safer): New function.
882         * modules/pipe (Depends-on): Add pipe2-safer.
883         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
884
885         stdlib-safer: preserve cloexec flag for mkostemp[s]
886         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
887         fd_safer_flag.
888
889         unistd-safer: allow preservation of cloexec status via flag
890         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
891         prototypes.
892         * lib/dup-safer.c (dup_safer_flag): New function.
893         * lib/fd-safer.c (fd_safer_flag): Likewise.
894         * modules/cloexec (configure.ac): Set witness.
895
896         test-dup2: enhance test
897         * modules/dup2-tests (Depends-on): Add cloexec.
898         * tests/test-dup2.c (main): Enhance test.
899
900         cloexec: add dup_cloexec
901         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
902         header and comments.
903         * lib/cloexec.c (set_cloexec_flag): Add comments.
904         (dup_cloexec): New function, with mingw implementation borrowed
905         from...
906         * lib/w32spawn.h (dup_noinherit): ...here.
907         * modules/execute (Depends-on): Add cloexec.
908         * modules/pipe (Depends-on): Likewise.
909         * modules/cloexec (Depends-on): Add dup2.
910         * modules/cloexec-tests (Files): New file.
911         * tests/test-cloexec.c: Likewise.
912
913         test-xalloc-die: fix test for mingw
914         * modules/xalloc-die-tests (Files): Add tests/init.sh.
915         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
916         directory and .exe suffix off argv[0] output.
917
918         test-fseeko: fix test for mingw
919         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
920         than undefining fseek, so test will pass on mingw.
921
922 2009-12-05  Bruno Haible  <bruno@clisp.org>
923
924         * lib/progname.h (set_program_name): Clarify specification.
925         * lib/progname.c (set_program_name): Likewise.
926         Reported by Jim Meyering.
927
928 2009-12-05  Jim Meyering  <meyering@redhat.com>
929
930         maint.mk: backslash-escape parens in default regexp
931         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
932         backslash-escape the literal parentheses.
933
934         maint.mk: news-date-check: use grep -E
935         * top/maint.mk (today): Define a Make variable, not a...
936         (news-date-check): ...shell variable.
937         (news-date-regexp): Use the Make variable.
938         Use grep's -E option.  Change the failing diagnostic to mention
939         the variable, $(news-date-regexp).
940
941 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
942
943         maintainer-makefile: allow customization of NEWS entry format
944         * top/maint.mk (news-date-regexp): New overridable variable.
945         (news-date-check): Use it.
946
947 2009-12-04  Eric Blake  <ebb9@byu.net>
948
949         mgetgroups: add xgetgroups, and avoid ENOSYS failures
950         * lib/mgetgroups.h (xgetgroups): New prototype.
951         * lib/mgetgroups.c (xgetgroups): New wrapper.
952         (mgetgroups): Handle ENOSYS.
953         * modules/mgetgroups (Depends-on): Add realloc.
954         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
955
956         mgetgroups: avoid argument promotion issues with -1
957         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
958         for invalid gid_t.
959         * tests/test-chown.h (getegid, test_chown): Likewise.
960         * tests/test-lchown.h (getegid, test_lchown): Likewise.
961
962 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
963
964         exclude: Fix header file problems.
965         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
966
967 2009-12-01  Jim Meyering  <meyering@redhat.com>
968
969         fts: fts_open: do not let an empty string cause immediate failure
970         This is required in support of GNU rm, for which the command
971         "rm A '' B" must process and remove both A and B, in spite of
972         the empty string argument.
973         * lib/fts.c (fts_open): Do not let the presence of an empty string
974         cause fts_open to fail immediately.  Most fts-using tools must be
975         able to process all arguments, in order, and can be expected to
976         diagnose such arguments themselves.
977
978 2009-11-30  Eric Blake  <ebb9@byu.net>
979
980         utimens: fix compilation error
981         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
982         Declare variable at right scope.
983
984 2009-11-29  Jim Meyering  <meyering@redhat.com>
985
986         bootstrap: handle perl-5.11's changed --version output
987         * build-aux/bootstrap (get_version): Handle perl separately,
988         since perl-5.11's --version output is different.
989
990 2009-11-28  Jim Meyering  <meyering@redhat.com>
991
992         userspec: depend on the inttostr module, too
993         * modules/userspec (Depends-on): Add inttostr.
994
995         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
996         * lib/userspec.c (parse_with_separator): Do not accept a user ID
997         number of MAXUID when it evaluates to (uid_t) -1.
998         Likewise for group ID.  Reported by Matt McCutchen in
999         <http://savannah.gnu.org/bugs/?28113>
1000
1001         userspec: reformat to use spaces, not TABs
1002         * lib/userspec.c: Expand TABs to spaces.
1003         Add Emacs' "indent-tabs-mode: nil" hint.
1004
1005 2009-11-27  Eric Blake  <ebb9@byu.net>
1006
1007         getopt-gnu: flush out another BSD bug
1008         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
1009         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
1010         flush out BSD bug.
1011         * tests/test-getopt.h (test_getopt): End lists with NULL.
1012         * tests/test-getopt_long.h (test_getopt_long): Likewise.
1013         (test_getopt_long_posix): Enhance test.
1014         * modules/getopt-posix-tests (Depends-on): Add stdbool.
1015         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
1016         getopt-gnu.
1017         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
1018         Likewise.
1019
1020 2009-11-27  Simon Josefsson  <simon@josefsson.org>
1021
1022         * modules/idpriv-droptemp-tests (Notice): Fix text.
1023
1024 2009-11-27  Jim Meyering  <meyering@redhat.com>
1025
1026         test-xalloc-die: avoid spurious failure due to libtool argv difference
1027         In a libtool-enabled project, this test would fail due to a difference
1028         in the emitted program name, e.g.,
1029         -test-xalloc-die: memory exhausted
1030         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
1031         Use program to avoid that.
1032         * modules/xalloc-die-tests (Depends-on): Add progname.
1033         * tests/test-xalloc-die.c: Include progname.h".
1034         (program_name): Remove decl.
1035         (main): Call set_program_name.
1036         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
1037
1038 2009-11-26  Richard Jones  <rjones@redhat.com>
1039
1040         w32sock: leave win32 error in place.
1041         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
1042
1043 2009-11-26  Eric Blake  <ebb9@byu.net>
1044
1045         init.sh: suggest to use skip_ and fail_ functions in comments
1046         * tests/init.sh: Add a sentence.
1047
1048 2009-11-25  Bruno Haible  <bruno@clisp.org>
1049
1050         init.sh: add documentation in comments
1051         * tests/init.sh: Add some developer and user documentation.
1052
1053 2009-11-26  Jim Meyering  <meyering@redhat.com>
1054
1055         init.sh: accommodate even those who specify bogus srcdir manually
1056         * tests/init.sh: Normally, srcdir is guaranteed by automake and
1057         configure-time tests to be sanitized, so that there is no need to
1058         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
1059         (with no double quotes) suffices.  However, since tests may be
1060         invoked manually, and since you may explicitly set srcdir to the
1061         name of a directory containing spaces, do quote its uses here.
1062         * tests/test-pread.sh: Likewise.
1063         Suggested by Bruno Haible.
1064
1065         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
1066         * tests/test-pread.sh: Write no data into the pipe, because
1067         test-pread actually reads none.  This avoids a diagnostic,
1068         "bash: echo: write error: Broken pipe", that arises in the unusual
1069         event something is ignoring SIGPIPE, and might be interpreted
1070         as some sort of failure.  Reported by Bruno Haible.
1071
1072 2009-11-25  Jim Meyering  <meyering@redhat.com>
1073
1074         test-pread: cover failure with ESPIPE and EINVAL
1075         * tests/test-pread.c (main): Test for failure, too.
1076         * tests/test-pread.sh: Invoke with stdin on a pipe.
1077         Suggested by Eric Blake.
1078
1079         pread: improvement and fix
1080         * modules/pread (Depends-on): Depend on lseek, for portability to
1081         e.g., mingw.  Suggested by Eric Blake.
1082         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
1083
1084         unistd.in.h: correct declaration of pread
1085         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
1086         Reported by Richard W.M. Jones.
1087
1088         test-pread.sh: distribute the test script
1089         * modules/pread-tests (Files): Include test-pread.sh.
1090
1091         test-pread.sh: clean up
1092         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
1093         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
1094         That is unnecessary, since it's always ".".
1095         Suggestion from Eric Blake.
1096
1097         test-pread.sh: make executable
1098         * tests/test-pread.sh: Set executable bit.
1099         Reported by Eric Blake.
1100
1101         correct typo in test-pread.sh
1102         * tests/test-pread.sh: Add #! line.
1103
1104         test pread
1105         * tests/test-pread.c: New file.
1106         * tests/test-pread.sh: Likewise.
1107         * modules/pread-tests: Likewise.
1108
1109         pread: new module
1110         * modules/pread: New file.
1111         * lib/unistd.in.h (pread): Define/declare.
1112         * lib/pread.c (pread): New file.
1113         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
1114         * modules/unistd (Makefile.am): Substitute witnesses.
1115         * doc/posix-functions/pread.texi (pread): Update.
1116         * MODULES.html.sh: Add pread.
1117
1118 2009-11-25  Jim Meyering  <meyering@redhat.com>
1119
1120         tests/init.sh: new file to be used via most *.sh tests
1121         * tests/init.sh: New file.
1122
1123 2009-11-25  Eric Blake  <ebb9@byu.net>
1124
1125         utimens: work around older Linux failure with symlinks
1126         * lib/utimens.c (lutimensat_works_really): New variable.
1127         (fdutimens, lutimens): Use it to manage kernels that support
1128         nanosecond times on files, but not on symlinks.
1129         Reported by Ondřej Vašík.
1130
1131         utimes: fix configure grammar
1132         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
1133
1134 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
1135
1136         regex: Fix fastmap for multibyte character ranges.
1137         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
1138         characters when a multibyte character range is included.
1139
1140 2009-11-22  Andy Wingo  <wingo@pobox.com>
1141
1142         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
1143         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
1144
1145 2009-11-24  Bruno Haible  <bruno@clisp.org>
1146
1147         doc: Most *_l functions exist in MacOS X 10.5.
1148         * doc/posix-functions/duplocale.texi: Update platforms list.
1149         * doc/posix-functions/freelocale.texi: Likewise.
1150         * doc/posix-functions/newlocale.texi: Likewise.
1151         * doc/posix-functions/uselocale.texi: Likewise.
1152         * doc/posix-functions/isalnum_l.texi: Likewise.
1153         * doc/posix-functions/isalpha_l.texi: Likewise.
1154         * doc/posix-functions/isblank_l.texi: Likewise.
1155         * doc/posix-functions/iscntrl_l.texi: Likewise.
1156         * doc/posix-functions/isdigit_l.texi: Likewise.
1157         * doc/posix-functions/isgraph_l.texi: Likewise.
1158         * doc/posix-functions/islower_l.texi: Likewise.
1159         * doc/posix-functions/isprint_l.texi: Likewise.
1160         * doc/posix-functions/ispunct_l.texi: Likewise.
1161         * doc/posix-functions/isspace_l.texi: Likewise.
1162         * doc/posix-functions/isupper_l.texi: Likewise.
1163         * doc/posix-functions/iswalnum_l.texi: Likewise.
1164         * doc/posix-functions/iswalpha_l.texi: Likewise.
1165         * doc/posix-functions/iswblank_l.texi: Likewise.
1166         * doc/posix-functions/iswcntrl_l.texi: Likewise.
1167         * doc/posix-functions/iswctype_l.texi: Likewise.
1168         * doc/posix-functions/iswdigit_l.texi: Likewise.
1169         * doc/posix-functions/iswgraph_l.texi: Likewise.
1170         * doc/posix-functions/iswlower_l.texi: Likewise.
1171         * doc/posix-functions/iswprint_l.texi: Likewise.
1172         * doc/posix-functions/iswpunct_l.texi: Likewise.
1173         * doc/posix-functions/iswspace_l.texi: Likewise.
1174         * doc/posix-functions/iswupper_l.texi: Likewise.
1175         * doc/posix-functions/iswxdigit_l.texi: Likewise.
1176         * doc/posix-functions/isxdigit_l.texi: Likewise.
1177         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
1178         * doc/posix-functions/strcasecmp_l.texi: Likewise.
1179         * doc/posix-functions/strcoll_l.texi: Likewise.
1180         * doc/posix-functions/strfmon_l.texi: Likewise.
1181         * doc/posix-functions/strftime_l.texi: Likewise.
1182         * doc/posix-functions/strncasecmp_l.texi: Likewise.
1183         * doc/posix-functions/strxfrm_l.texi: Likewise.
1184         * doc/posix-functions/tolower_l.texi: Likewise.
1185         * doc/posix-functions/toupper_l.texi: Likewise.
1186         * doc/posix-functions/towctrans_l.texi: Likewise.
1187         * doc/posix-functions/towlower_l.texi: Likewise.
1188         * doc/posix-functions/towupper_l.texi: Likewise.
1189         * doc/posix-functions/wcscoll_l.texi: Likewise.
1190         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
1191         * doc/posix-functions/wctrans_l.texi: Likewise.
1192         * doc/posix-functions/wctype_l.texi: Likewise.
1193         * doc/glibc-functions/strptime_l.texi: Likewise.
1194         * doc/glibc-functions/strtod_l.texi: Likewise.
1195         * doc/glibc-functions/strtof_l.texi: Likewise.
1196         * doc/glibc-functions/strtol_l.texi: Likewise.
1197         * doc/glibc-functions/strtold_l.texi: Likewise.
1198         * doc/glibc-functions/strtoll_l.texi: Likewise.
1199         * doc/glibc-functions/strtoul_l.texi: Likewise.
1200         * doc/glibc-functions/strtoull_l.texi: Likewise.
1201         * doc/glibc-functions/wcsftime_l.texi: Likewise.
1202         * doc/glibc-functions/wcstod_l.texi: Likewise.
1203         * doc/glibc-functions/wcstof_l.texi: Likewise.
1204         * doc/glibc-functions/wcstol_l.texi: Likewise.
1205         * doc/glibc-functions/wcstold_l.texi: Likewise.
1206         * doc/glibc-functions/wcstoll_l.texi: Likewise.
1207         * doc/glibc-functions/wcstoul_l.texi: Likewise.
1208         * doc/glibc-functions/wcstoull_l.texi: Likewise.
1209
1210 2009-11-24  Bruno Haible  <bruno@clisp.org>
1211
1212         duplocale: Fix logic bug.
1213         * lib/duplocale.c: Don't include <langinfo.h>.
1214         (_NL_LOCALE_NAME): Remove macro.
1215         (rpl_duplocale): Use setlocale instead of nl_langinfo.
1216         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
1217
1218 2009-11-23  Jim Meyering  <meyering@redhat.com>
1219
1220         test-update-copyright: don't hard-code /usr/bin/perl
1221         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
1222         perl to print the current year.  Gilles Espinasse reported that
1223         the replaced use of perl was hard-coded as /usr/bin/perl.
1224
1225 2009-11-23  Bruno Haible  <bruno@clisp.org>
1226
1227         duplocale: Add support for glibc 2.3.x.
1228         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
1229
1230 2009-11-22  Bruno Haible  <bruno@clisp.org>
1231
1232         vasnprintf: Tiny optimization.
1233         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
1234         MacOS X.
1235
1236 2009-11-22  Bruno Haible  <bruno@clisp.org>
1237
1238         Tests for module 'duplocale'.
1239         * modules/duplocale-tests: New file.
1240         * tests/test-duplocale.c: New file.
1241
1242         New module 'duplocale'.
1243         * m4/duplocale.m4: New file.
1244         * lib/locale.in.h (duplocale): New declaration.
1245         * lib/duplocale.c: New file.
1246         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
1247         gl_LOCALE_H_DEFAULTS): New macros.
1248         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
1249         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
1250         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
1251         REPLACE_DUPLOCALE.
1252         * modules/duplocale: New file.
1253         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
1254
1255 2009-11-22  Bruno Haible  <bruno@clisp.org>
1256
1257         * modules/locale-tests (configure.ac): Test for newlocale function.
1258         * tests/test-locale.c: When the system has extended locale functions,
1259         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
1260
1261         locale: Make locale_t available when possible.
1262         * lib/locale.in.h: Include <xlocale.h> when it exists.
1263         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
1264         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
1265         * modules/locale (Depends-on): Add extensions.
1266         (Makefile.am): Also substitute HAVE_XLOCALE_H.
1267         * doc/posix-headers/locale.texi: Document the problem with locale_t.
1268
1269 2009-11-22  Bruno Haible  <bruno@clisp.org>
1270
1271         Add comments.
1272         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
1273         invocation.
1274         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
1275         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
1276         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
1277
1278 2009-11-22  Bruno Haible  <bruno@clisp.org>
1279
1280         error: account for the possibility of freopen (stdout).
1281         * lib/error.c: Include <unistd.h>.
1282         (flush_stdout): New function, extracted from error and error_at_line.
1283         Determine stdout's fd dynamically.
1284         (error, error_at_line): Invoke flush_stdout.
1285         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
1286         * modules/error (Depends-on): Add unistd.
1287
1288 2009-11-22  Bruno Haible  <bruno@clisp.org>
1289
1290         diffseq: Add comment.
1291         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
1292
1293 2009-11-22  Jim Meyering  <meyering@redhat.com>
1294
1295         c-stack: avoid defining an unused static function
1296         * lib/c-stack.c (find_stack_direction): Do not define this function
1297         when it will not be used.
1298
1299         diffseq: avoid spurious gcc warnings
1300         * lib/diffseq.h (IF_LINT2): Define.
1301         (compareseq): Use it to initialize two members of "part".
1302         This avoids two used-uninitialized warnings.
1303
1304 2009-11-21  Jim Meyering  <meyering@redhat.com>
1305
1306         c-stack: avoid "ignoring return value of `write'" warning
1307         * lib/c-stack.c: Include "ignore-value.h".
1308         (die): Explicitly ignore each write return value.
1309         * modules/c-stack (Depends-on): Add ignore-value.
1310
1311 2009-11-21  Bruno Haible  <bruno@clisp.org>
1312
1313         diffseq: reduce scope of variable 'best'.
1314         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
1315         variable, earlier used for two different purposes.
1316
1317 2009-11-21  Jim Meyering  <meyering@redhat.com>
1318
1319         diffseq: remove useless assignment to "best"
1320         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
1321         assignment.  At that point "best" is already guaranteed to be zero.
1322
1323 2009-11-20  Eric Blake  <ebb9@byu.net>
1324
1325         build: mention ftp redirector in release announcements
1326         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
1327         values that used to come from cfg.mk; mention FTP redirect URL.
1328         * build-aux/announce-gen: Mention the mirror list.
1329         Suggested by Karl Berry.
1330
1331         nanosleep: improve port to mingw
1332         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
1333         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
1334         LIB_NANOSLEEP, but only when needed.
1335         * modules/select (Link): Document LIBSOCKET.
1336         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
1337         enough.
1338
1339         nanosleep: work around cygwin bug
1340         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
1341         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
1342         bug.
1343         (getnow): Delete, not needed.
1344         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
1345         LIB_CLOCK_GETTIME.
1346         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
1347         clock-time, gettime.
1348         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
1349         bug.
1350         * modules/nanosleep-tests: New test.
1351         * tests/test-nanosleep.c: New file.
1352
1353         sleep: work around cygwin bug
1354         * lib/sleep.c (rpl_sleep): Work around the bug.
1355         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
1356         (gl_PREREQ_SLEEP): Delete unused macro.
1357         * modules/sleep (Depends-on): Add verify.
1358         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1359         * modules/unistd (Makefile.am): Substitute witness.
1360         * lib/unistd.in.h (sleep): Update prototype.
1361         * doc/posix-functions/sleep.texi (sleep): Document the bug.
1362         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
1363         * modules/sleep-tests (Depends-on): Check for alarm.
1364
1365 2009-11-20  Jim Meyering  <meyering@redhat.com>
1366
1367         maint.mk: improve sc_prohibit_magic_number_exit
1368         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
1369         so it does not match uses like System.exit(1).
1370         Add comments showing how to correct all offenders.
1371
1372 2009-11-19  Eric Blake  <ebb9@byu.net>
1373
1374         xalloc-die-tests: add missing library
1375         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
1376
1377         test-xvasprintf: silence compiler warnings
1378         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
1379         empty string from gcc.
1380
1381 2009-11-19  Jim Meyering  <meyering@redhat.com>
1382
1383         xfreopen: new module, from coreutils
1384         * modules/xfreopen: New module.
1385         * lib/xfreopen.c: New file.
1386         * lib/xfreopen.h: New file.
1387         * MODULES.html.sh (File stream based Input/Output"): Add it.
1388
1389 2009-11-19  Eric Blake  <ebb9@byu.net>
1390
1391         manywarnings: depend on warnings
1392         * modules/manywarnings (Depends-on): Add warnings.
1393
1394         build: avoid compiler warnings
1395         * lib/select.c (rpl_select): Delete unused variable.
1396         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
1397
1398 2009-11-18  Eric Blake  <ebb9@byu.net>
1399
1400         tests: avoid false negative with --with-packager
1401         * tests/test-version-etc.sh: Discard packager information.
1402         * tests/test-argp-version-etc-1.sh: Likewise.
1403         Reported by Mike Frysinger.
1404
1405         utimens: fix regression on Solaris
1406         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
1407         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
1408         can only change fd timestamps via futimesat.  Instead, use an
1409         additional witness macro to avoid BSD bug.
1410         Reported by Jim Meyering.
1411
1412 2009-11-17  Eric Blake  <ebb9@byu.net>
1413
1414         usleep: use it to simplify tests
1415         * modules/stat-time-tests (Depends-on): Add usleep.
1416         (configure.ac): Drop usleep check.
1417         * modules/chown-tests (Depends-on, configure.ac): Likewise.
1418         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
1419         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
1420         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
1421         * modules/openat-tests (Depends-on, configure.ac): Likewise.
1422         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
1423         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
1424         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
1425         Likewise.
1426         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
1427         * tests/test-lchown.h (nap): Likewise.
1428         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
1429         * tests/test-stat-time.c (nap): Likewise.
1430         * tests/test-utimens-common.h (nap): Update comments.
1431
1432         usleep: new module
1433         * modules/usleep: New file.
1434         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
1435         * lib/usleep.c (usleep): Likewise.
1436         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
1437         * modules/unistd (Makefile.am): Substitute witnesses.
1438         * lib/unistd.in.h (usleep): Add declaration.
1439         * doc/pastposix-functions/usleep.texi (usleep): Document this.
1440         * MODULES.html.sh (Date and time): Likewise.
1441         * modules/usleep-tests (Depends-on): New test.
1442         * tests/test-usleep.c: New file.
1443
1444         chown: work around OpenBSD bug
1445         * lib/chown.c (rpl_chown): Work around the bug.
1446         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
1447         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
1448         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
1449         * modules/chown (Depends-on): Add stdbool.
1450         * modules/lchown (Depends-on): Likewise.
1451         * doc/posix-functions/chown.texi (chown): Document the bug.
1452         * doc/posix-functions/lchown.texi (lchown): Likewise.
1453         * tests/test-lchown.h (test_chown): Relax test.
1454
1455         mkstemp: avoid conflict with C++ keyword template
1456         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
1457         * lib/mkostemp.c (mkostemp): Likewise.
1458         * lib/mkostemps.c (mkostemps): Likewise.
1459         * lib/mkstemp.c (mkstemp): Likewise.
1460         * lib/mkstemps.c (mkstemps): Likewise.
1461
1462         xalloc-die-tests: optimize
1463         * tests/test-xalloc-die.sh: Reduce number of processes.
1464
1465 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1466
1467         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
1468         patch from ludo@gnu.org (Ludovic Courtès).
1469
1470 2009-11-17  Jim Meyering  <meyering@redhat.com>
1471
1472         version-etc: use proper license string
1473         * modules/version-etc (License): Use LGPL, not LGPLv3+.
1474         * modules/version-etc-fsf: Likewise.
1475
1476 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1477
1478         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
1479         printed to stdout.  Deal with EOL differences.
1480
1481 2009-11-17  Eric Blake  <ebb9@byu.net>
1482
1483         unsetenv: work around Solaris bug
1484         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
1485         * lib/unsetenv.c (rpl_unsetenv): Work around it.
1486         Reported by Jim Meyering.
1487
1488         vasnprintf: avoid compiler warnings
1489         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
1490         variables.
1491         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
1492
1493 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1494
1495         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
1496         settings since xalloc-die is no longer the self test,
1497         xalloc-die.sh is.
1498
1499 2009-11-17  Jim Meyering  <meyering@redhat.com>
1500
1501         test-xalloc-die.sh: make the code agree with the commit log
1502         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
1503         at the end, just in case you happen to have a test-xalloc-die
1504         program in some other PATH directory.
1505
1506         test-xalloc-die.sh: fix a portability bug
1507         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
1508         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
1509         Otherwise, argv[0] (as often seen in diagnostics) would be too
1510         system-dependent, sometimes with, and sometimes without the leading "./".
1511
1512         version-etc-fsf: relax license to LGPLv3+
1513         * modules/version-etc-fsf (License): Relax license.
1514
1515 2009-11-16  Eric Blake  <ebb9@byu.net>
1516
1517         xalloc-die-tests: avoid printing null pointer
1518         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
1519         shell script.
1520         * tests/test-xalloc-die.c (program_name): Declare.
1521         * tests/test-xalloc-die.sh (tmpfiles): New file.
1522
1523         setenv, unsetenv: work around various bugs
1524         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
1525         (setenv) [HAVE_SETENV]: Work around bugs.
1526         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
1527         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
1528         for bugs.
1529         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
1530         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
1531         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
1532         * modules/stdlib (Makefile.am): Update substitutions.
1533         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
1534         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
1535         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
1536         * modules/setenv-tests: New test.
1537         * modules/unsetenv-tests: Likewise.
1538         * tests/test-setenv.c: New file.
1539         * tests/test-unsetenv.c: Likewise.
1540
1541 2009-11-16  Jim Meyering  <meyering@redhat.com>
1542
1543         version-etc: relax license to LGPLv3+
1544         * modules/version-etc (License): Relax license.
1545
1546         better AC_REQUIRE expanded-before-required-warning avoidance
1547         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
1548         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
1549         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
1550         which is no longer needed.
1551
1552 2009-11-16  Eric Blake  <ebb9@byu.net>
1553
1554         test-freading: clean up temporary file
1555         * tests/test-freading.c (main): Remove file on success, and use
1556         ASSERT more liberally.
1557         Reported by Jim Meyering.
1558
1559 2009-11-16  Jim Meyering  <meyering@redhat.com>
1560
1561         avoid new AC_REQUIRE expanded-before-required warnings
1562         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
1563         merely using it.
1564         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
1565         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
1566
1567 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1568
1569         * tests/test-xalloc-die.c: New file.
1570         * modules/xalloc-die-tests: New file.
1571         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
1572         XFAIL_TESTS so it can be appended by modules.
1573
1574 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1575
1576         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
1577         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
1578
1579 2009-11-14  Eric Blake  <ebb9@byu.net>
1580
1581         fnmatch: avoid compiler warning
1582         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
1583         to silence compiler warning about mismatch signedness in ?:.
1584         Reported by Robert Millan.
1585
1586         intprops: add double-inclusion guard
1587         * lib/intprops.h: Allow idempotent includes.
1588         Suggested by Bruce Korb.
1589
1590         openat: detect Solaris fchownat bug
1591         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
1592         penalizing glibc chownat when only lchownat is broken.
1593         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
1594         trailing slash bugs.
1595         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
1596         * modules/openat-tests (Files): Include more files.
1597         (Depends-on): Add mgetgroups, sleep, stat-time.
1598         (configure.ac): Add additional checks.
1599         (Makefile.am): Build new test.
1600         * tests/test-fchownat.c: New file.
1601
1602         lchown: detect Solaris and FreeBSD bug
1603         * lib/lchown.c (rpl_lchown): Work around bug.
1604         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
1605         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1606         * modules/unistd (Makefile.am): Populate it.
1607         * lib/unistd.in.h (lchown): Update declaration.
1608         * doc/posix-functions/lchown.texi (lchown): Document the bug.
1609         * modules/lchown-tests: New file.
1610         * tests/test-lchown.h (test_lchown): Likewise.
1611         * tests/test-lchown.c (main): Likewise.
1612
1613         chown: detect Solaris and FreeBSD bug
1614         * lib/chown.c (rpl_chown): Work around bug.
1615         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
1616         (gl_PREREQ_CHOWN): Delete.
1617         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1618         * modules/unistd (Makefile.am): Populate it.
1619         * lib/unistd.in.h (chown): Update declaration.
1620         * lib/lchown.c (chown): Update client.
1621         * modules/lchown (Depends-on): Add lstat.
1622         * doc/posix-functions/chown.texi (chown): Document the bug.
1623         * doc/posix-functions/getgroups.texi (getgroups): Document
1624         getgroups pitfall.
1625         * modules/chown-tests: New file.
1626         * tests/test-chown.h (test_chown): Likewise.
1627         * tests/test-chown.c (main): Likewise.
1628
1629 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
1630
1631         gnulib-tool: correctly detect absence of m4 directories
1632         * gnulib-tool: Avoid extra newline on data passed to wc -l.
1633
1634 2009-11-14  Jim Meyering  <meyering@redhat.com>
1635
1636         maint.mk: Prohibit inclusion of "xalloc.h" without use.
1637         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1638
1639 2009-11-14  John W. Eaton  <jwe@gnu.org>
1640
1641         strftime.h: wrap funtion declaration in extern "C" block
1642         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
1643
1644 2009-11-13  Eric Blake  <ebb9@byu.net>
1645
1646         getgroups: avoid compiler warning
1647         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
1648
1649         getgroups: work around FreeBSD bug
1650         * lib/getgroups.c (rpl_getgroups): Work around the bug.
1651         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
1652         * doc/posix-functions/getgroups.texi (getgroups): Document it.
1653         * tests/test-getgroups.c (main): Fix buffer overrun.
1654
1655         getgroups: avoid compilation failure
1656         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
1657         * modules/getgroups (Depends-on): Add stdint.
1658
1659 2009-11-13  Jim Meyering  <meyering@redhat.com>
1660
1661         test-getgroups: avoid compilation failure
1662         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
1663
1664 2009-11-13  Eric Blake  <ebb9@byu.net>
1665
1666         mgetgroups: new module, taken from coreutils
1667         * modules/mgetgroups: New file.
1668         * lib/mgetgroups.h: Likewise.
1669         * lib/mgetgroups.c (mgetgroups): Likewise.
1670         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
1671         * MODULES.html.sh (Users and groups): Mention it.
1672
1673         getgroups: don't expose GETGROUPS_T to user
1674         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
1675         an element at a time if GETGROUPS_T is wrong size.
1676         * lib/getugroups.h (getugroups): Change signature.
1677         * lib/unistd.in.h (getgroups): Likewise.
1678         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
1679         signature needs fixing.
1680         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
1681         AC_TYPE_GETGROUPS.
1682         * modules/group-member (Depends-on): Add getgroups.
1683         * lib/group-member.c (group_info, get_group_info): Use gid_t.
1684         (group_member): Rely on getgroups replacement.
1685         * lib/getugroups.c (getugroups): Use gid_t.
1686         * tests/test-getgroups.c (main): Likewise.
1687         * NEWS: Mention the signature change.
1688         * doc/posix-functions/getgroups.texi (getgroups): Mention the
1689         problem with signature.
1690         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
1691         GETGROUPS_T is still useful for setgroups.
1692
1693         getgroups, getugroups: provide stubs for mingw
1694         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
1695         * lib/getugroups.c (getugroups): Likewise.
1696         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
1697         function.  Modernize replacement scheme.
1698         (gl_PREREQ_GETGROUPS): Delete.
1699         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
1700         * modules/getgroups (configure.ac): Declare witness.
1701         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1702         * modules/unistd (Depends-on): Substitute witness.
1703         * lib/unistd.in.h (getgroups): Declare replacement.
1704
1705         getgroups: avoid calling exit
1706         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
1707         drop xalloc.
1708         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
1709         dependencies.
1710         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
1711         exiting, in the rare case of malloc failure.
1712
1713         getgroups: fix logic error
1714         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
1715         has more than 20 groups.
1716         * modules/getgroups-tests: New test.
1717         * tests/test-getgroups.c: New file.
1718
1719 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1720
1721         * tests/test-base64.c: Improve.
1722
1723 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1724
1725         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
1726         Blake <ebb9@byu.net>.
1727
1728 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1729
1730         * tests/test-xvasprintf.c: Add %s%s related checks.
1731
1732 2009-11-12  Eric Blake  <ebb9@byu.net>
1733
1734         version-etc: match standards.texi style
1735         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
1736         and use <> only for URLs.
1737
1738 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
1739
1740         fts: do not fail on a submount during traversal
1741         * lib/fts.c (fts_build): Read the stat info again after opening
1742         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
1743         Original report at http://bugzilla.redhat.com/501848.
1744
1745 2009-11-12  Jim Meyering  <meyering@redhat.com>
1746
1747         bootstrap: sync from coreutils
1748         * build-aux/bootstrap (bootstrap_epilogue): New function.
1749         Use git_modules_config in one more place.  This make bootstrap's
1750         --gnulib-srcdir option more useful for testing.
1751
1752         bootstrap: generalize autoheader check
1753         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
1754         AC_CONFIG_HEADERS.
1755
1756 2009-11-11  Eric Blake  <ebb9@byu.net>
1757
1758         mkfifoat: use new modules for Solaris and BSD bugs
1759         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
1760         * lib/mkfifoat.c (mknodat): Split...
1761         * lib/mknodat.c (mknodat): ...into new file.
1762         * modules/mkfifoat (Files): Ship new file.
1763         (Depends-on): Add mkfifo, mknod.
1764         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
1765         (Depends-on): Add symlink.
1766         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
1767         redundant with test_mkfifo.h.
1768         (do_mkfifoat, do_mknodat): New helpers.
1769
1770         mknod: new module
1771         * modules/mknod: New file.
1772         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
1773         * lib/mknod.c (mknod): Likewise.
1774         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1775         defaults.
1776         * modules/sys_stat (Makefile.am): Substitute them.
1777         * lib/sys_stat.in.h (mknod): Declare replacement.
1778         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1779         Document it.
1780         * doc/posix-functions/mknod.texi (mknod): Likewise.
1781         * modules/mknod-tests: New test.
1782         * tests/test-mknod.c: Likewise.
1783
1784         mkfifo: new module
1785         * modules/mkfifo: New file.
1786         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
1787         * lib/mkfifo.c (mkfifo): Likewise.
1788         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1789         defaults.
1790         * modules/sys_stat (Makefile.am): Substitute them.
1791         * lib/sys_stat.in.h (mkfifo): Declare replacement.
1792         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1793         Document it.
1794         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
1795         * modules/mkfifo-tests: New test.
1796         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
1797         from test-mkfifoat.c.
1798         * tests/test-mkfifo.c: New file.
1799
1800         readlink: detect FreeBSD bug
1801         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
1802         slash on symlink.
1803         * doc/posix-functions/readlink.texi (readlink): Document the bug.
1804         * tests/test-readlink.h (test_readlink): Enhance test.
1805
1806         symlink: detect FreeBSD bug
1807         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
1808         slash on symlink.
1809         * doc/posix-functions/symlink.texi (symlink): Document the bug.
1810         * tests/test-symlink.h (test_symlink): Enhance test.
1811
1812 2009-11-10  Eric Blake  <ebb9@byu.net>
1813
1814         link: detect FreeBSD bug
1815         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
1816         symlink.
1817         * doc/posix-functions/link.texi (link): Document the bug.
1818         * tests/test-link.h (test_link): Enhance test.
1819         * tests/test-linkat.c (main): Update caller.
1820
1821         unlink, remove: detect FreeBSD bug
1822         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
1823         slash on symlink.
1824         * doc/posix-functions/unlink.texi (unlink): Document the bug.
1825         * doc/posix-functions/remove.texi (remove): Likewise.
1826         * tests/test-unlink.h (test_unlink): Enhance test.
1827         * tests/test-remove.c (main): Likewise.
1828
1829 2009-11-09  Eric Blake  <ebb9@byu.net>
1830
1831         rename: detect FreeBSD bug
1832         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
1833         slash on symlink.
1834         * modules/renameat-tests (Depends-on): Add filenamecat.
1835         * tests/test-rename.h (test_rename): Allow one more errno.
1836         * tests/test-renameat.c (main): Likewise.
1837         * doc/posix-functions/rename.texi (rename): Document the bug.
1838
1839         open: detect FreeBSD bug
1840         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
1841         symlink.
1842         * doc/posix-functions/open.texi (open): Document the bug.
1843         * doc/posix-functions/utimes.texi (utimes): Likewise.
1844         * tests/test-open.h (test_open): Add parameters, and test symlink
1845         handling.
1846         * tests/test-open.c (main): Adjust caller.
1847         * tests/test-fcntl-safer.c (main): Likewise.
1848         * modules/open-tests (Depends-on): Add stdbool, symlink.
1849         * modules/fcntl-safer-tests (Depends-on): Likewise.
1850         * tests/test-openat.c (main): Add test-open tests.
1851
1852         stat: detect FreeBSD bug
1853         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
1854         symlink.
1855         * doc/posix-functions/stat.texi (stat): Document the bug.
1856         * tests/test-stat.h (test_stat_func): Add argument.
1857         * tests/test-stat.c (main): Adjust caller.
1858         * tests/test-fstatat.c (main): Likewise.
1859         * modules/stat-tests (Depends-on): Add stdbool, symlink.
1860         Reported by Jim Meyering.
1861
1862 2009-11-09  James Youngman  <jay@gnu.org>
1863
1864         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
1865         * lib/strftime.c: Correct placement of #include "ignore-value.h".
1866
1867 2009-11-08  Jim Meyering  <meyering@redhat.com>
1868
1869         utimens: remove invalid futimesat call
1870         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
1871         It used the file descriptor of the target file as the DIR_FD
1872         parameter and NULL as the file name.  That caused failure with
1873         errno == EFAULT on FreeBSD-8.0-rc2
1874
1875 2009-11-07  Eric Blake  <ebb9@byu.net>
1876
1877         fflush, freadseek: use fseeko, not fseek
1878         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
1879         (clear_ungetc_buffer): Avoid potential problems on large files.
1880         * lib/freadseek.c (freadseek): Likewise.
1881         * modules/freadseek (Depends-on): Add fseeko.
1882         * modules/fseek (configure.ac): Set a witness.
1883         * tests/test-fflush.c (main): Use fseeko.
1884         * tests/test-fpurge.c (fseek): Disable link warning.
1885         * tests/test-freadable.c (fseek): Likewise.
1886         * tests/test-freading.c (fseek): Likewise.
1887         * tests/test-fseeko.c (fseek): Likewise.
1888         * tests/test-ftell.c (fseek): Likewise.
1889         * tests/test-ftello.c (fseek): Likewise.
1890         * tests/test-fwritable.c (fseek): Likewise.
1891         * tests/test-fwriting.c (fseek): Likewise.
1892
1893 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1894
1895         * modules/memchr (Depends-on): Drop getpagesize dependency.
1896
1897 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1898
1899         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
1900         Reported by Ludovic Courtès.
1901         * build-aux/pmccabe2html: Improve example usage.
1902         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
1903
1904 2009-11-06  Jim Meyering  <meyering@redhat.com>
1905
1906         do-release-commit-and-tag: New module.
1907         Automate the release-commit and tag process.
1908         * build-aux/do-release-commit-and-tag: New script, from coreutils.
1909         * modules/do-release-commit-and-tag: New file.
1910         * MODULES.html.sh (Support for maintaining and releasing): Add it.
1911
1912 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1913
1914         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
1915         because test-select.c uses inet_pton.
1916
1917 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1918
1919         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
1920         GETADDRINFO_LIB.  Bump serial number.
1921         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
1922         Suggested by Eric Blake <ebb9@byu.net>.
1923
1924 2009-11-05  Eric Blake  <ebb9@byu.net>
1925
1926         strtod: detect darwin bug
1927         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
1928         Reported by Leo Davis.
1929
1930         freopen-safer: new module
1931         * modules/freopen-safer: New module.
1932         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
1933         * lib/freopen-safer.c (freopen_safer): New file.
1934         * lib/stdio-safer.h (freopen_safer): New declaration.
1935         * lib/stdio--.h (freopen): New override.
1936         * MODULES.html.sh (File stream based Input/Output): Mention it.
1937         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
1938         freopen-safer module.
1939         * doc/posix-functions/stderr.texi (stderr): Likewise.
1940         * doc/posix-functions/stdin.texi (stdin): Likewise.
1941         * doc/posix-functions/stdout.texi (stdout): Likewise.
1942         * modules/freopen-safer-tests: New test.
1943         * tests/test-reopen-safer.c: New file.
1944
1945 2009-11-05  Jim Meyering  <meyering@redhat.com>
1946
1947         maint.mk: Prohibit inclusion of "close-stream.h" without use.
1948         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1949
1950 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1951
1952         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
1953
1954 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1955
1956         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
1957
1958 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1959
1960         Fix link error.
1961         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1962         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1963
1964 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1965
1966         * tests/test-func.c: Also test value of __func__.
1967
1968 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1969
1970         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
1971         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
1972
1973 2009-11-05  Bruno Haible  <bruno@clisp.org>
1974
1975         Fix link error.
1976         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1977         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1978         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
1979
1980 2009-11-05  Bruno Haible  <bruno@clisp.org>
1981
1982         Tests for module 'inet_pton'.
1983         * modules/inet_pton-tests: New file.
1984         * tests/test-inet_pton.c: New file.
1985
1986 2009-11-05  Bruno Haible  <bruno@clisp.org>
1987
1988         Tests for module 'inet_ntop'.
1989         * modules/inet_ntop-tests: New file.
1990         * tests/test-inet_ntop.c: New file.
1991
1992 2009-11-04  Eric Blake  <ebb9@byu.net>
1993
1994         stdlib-safer: wrap all mkstemp variants
1995         * modules/mkostemp (configure.ac): Set witness.
1996         * modules/mkostemps (configure.ac): Likewise.
1997         * modules/mkstemps (configure.ac): Likewise.
1998         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
1999         (mkstemps_safer): Wrap more functions.
2000         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
2001         wrapping.
2002         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
2003         (mkstemps_safer): Implement the wrappers.
2004
2005         mkstemps, mkostemps: new modules
2006         * modules/mkostemps: New module.
2007         * modules/mkstemps: Likewise.
2008         * lib/mkostemps.c (mkostemps): New file.
2009         * lib/mkstemps.c (mkstemps): Likewise.
2010         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
2011         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
2012         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
2013         * modules/stdlib (Makefile.am): Substitute them.
2014         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
2015         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
2016         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
2017         * doc/gnulib.texi (Glibc stdlib.h): Include them.
2018         * MODULES.html.sh (File system functions): Mention them.
2019
2020         tempname: resync from glibc
2021         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
2022         same values for __GT_FILE as glibc.  Abort even when assertions
2023         are disabled.
2024         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
2025         match its value otherwise.  Allow idempotent inclusion.
2026         * lib/mkdtemp.c (mkdtemp): Adjust caller.
2027         * lib/mkostemp.c (mkostemp): Likewise.
2028         * lib/mkstemp.c (mkstemp): Likewise.
2029         * lib/tmpfile.c (tmpfile): Likewise.
2030         * NEWS: Document this.
2031
2032         utimens: fix use of futimens on older Linux
2033         * lib/utimens.c (fdutimens): Use updated, rather than original,
2034         timespec to avoid bug in older Linux kernel.
2035         Reported by Simon Josefsson.
2036
2037 2009-11-04  Bruno Haible  <bruno@clisp.org>
2038
2039         Make num_processors more flexible and consistent.
2040         * lib/nproc.h (enum nproc_query): New type.
2041         (num_processors): Add a 'query' argument.
2042         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
2043         (num_processors): Add a 'query' argument. Test the value of the
2044         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
2045         mingw, count the number of CPUs available for the current process.
2046         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
2047         Check for sched_getaffinity and sched_getaffinity_np.
2048         * modules/nproc (Depends-on): Add c-ctype, extensions.
2049         * NEWS: Mention the change.
2050
2051 2009-11-03  Bruno Haible  <bruno@clisp.org>
2052
2053         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
2054
2055 2009-11-03  Jim Meyering  <meyering@redhat.com>
2056
2057         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
2058         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
2059         if it is defined.
2060
2061 2009-11-02  Eric Blake  <ebb9@byu.net>
2062
2063         mktime, timegm: share common declaration
2064         * lib/mktime-internal.h: New file.
2065         * lib/mktime.c: Use it rather than open-coding a declaration.
2066         * lib/timegm.c: Likewise.
2067         * modules/mktime (Files): Ship it.
2068         * modules/timegm (Files): Likewise.
2069         Suggested by Bruno Haible.
2070
2071         test-update-copyright: update test to match script changes
2072         * tests/test-update-copyright.sh: Avoid hard-coding perl
2073         location.  Don't update *.bak created by earlier runs.
2074
2075 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
2076             Simon Josefsson  <simon@josefsson.org>
2077             Bruno Haible  <bruno@clisp.org>
2078
2079         Fix link error on Solaris 8.
2080         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
2081         also in libnsl. Define also INET_PTON_LIB.
2082         * modules/inet_pton (Link): New section.
2083
2084 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2085             Bruno Haible  <bruno@clisp.org>
2086
2087         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
2088         * modules/inet_ntop (Link): New section.
2089         Reported by Boyan Kasarov <bkasarov@gmail.com>.
2090
2091 2009-11-02  Eric Blake  <ebb9@byu.net>
2092
2093         maint: avoid compiler warnings in m4 macros
2094         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
2095         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
2096
2097 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2098
2099         * m4/pmccabe2html.m4: Remove file.
2100         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
2101         function.  Change maintainer.
2102         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
2103         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
2104         Courtès).
2105
2106 2009-10-31  Eric Blake  <ebb9@byu.net>
2107
2108         fseeko: fix m4 regression
2109         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
2110         regression from 2009-10-27.
2111         Reported by Ralf Wildenhues.
2112
2113 2009-10-31  Jim Meyering  <meyering@redhat.com>
2114
2115         inttostr: aesthetics and improved (compile-time) safety
2116         Define inttype_is_signed rather than inttype_is_unsigned,
2117         since the sole use is via "#if inttype_is_signed".
2118         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
2119         inttype_is_unsigned.
2120         * lib/offtostr.c (inttype_is_signed): Likewise.
2121         * lib/uinttostr.c (inttype_is_signed): Likewise.
2122         * lib/umaxtostr.c (inttype_is_signed): Likewise.
2123         * lib/inttostr.c (inttostr): Use verify to cross-check the
2124         inttype_is_signed value and the signedness of the actual type.
2125         * modules/inttostr (Depends-on): Add verify.
2126
2127 2009-10-30  Eric Blake  <ebb9@byu.net>
2128
2129         build: avoid compiler warnings
2130         * lib/fchmodat.c (lchmod): Mark unused variables.
2131         * lib/getopt.c (_getopt_initialize): Likewise.
2132         * lib/mktime.c (__mktime_internal): Provide prototype.
2133         * lib/inttostr.c (inttostr): Avoid compiler warning even with
2134         older gcc that do not understand #pragma GCC diagnostic.
2135         * lib/uinttostr.c (inttype_is_unsigned): Define.
2136         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
2137
2138 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
2139
2140         stat: fix compilation on AIX
2141         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
2142         only see struct stat64.
2143
2144 2009-10-30  Eric Blake  <ebb9@byu.net>
2145
2146         exclude: make more robust
2147         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
2148         rather than masking a coding bug.
2149         Suggested by Bruno Haible.
2150
2151 2009-10-30  Jim Meyering  <meyering@redhat.com>
2152
2153         perl scripts: remove #!/usr/bin/perl in favor of more portable...
2154         Rather than putting #!/usr/bin/perl on the first line,
2155         start with a variant of what's recommended by "man perlrun" that
2156         invokes the first "perl" program from your shell's search path.
2157         * build-aux/gitlog-to-changelog: Replace #!... as above.
2158         Add a "Local Variables" perl mode setting.
2159         Prompted by a patch from Ludovic Courtès.
2160         Improved by Eric Blake.
2161         * build-aux/useless-if-before-free: Likewise.
2162         * build-aux/announce-gen: Likewise.
2163         * build-aux/update-copyright: Likewise.
2164
2165 2009-10-29  Eric Blake  <ebb9@byu.net>
2166
2167         filenamecat-lgpl: adjust clients
2168         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
2169         filenamecat.
2170         * modules/renameat (Depends-on): Likewise.
2171
2172         filenamecat: split into filenamecat-lgpl
2173         * modules/filenamecat-lgpl: New module.
2174         * modules/filenamecat (Files): Move library-safe files into
2175         filenamecat-lgpl.
2176         (Depends-on): Add filenamecat-lgpl.
2177         (configure.ac): Declare witness.
2178         * lib/filenamecat.h (file_name_concat): Only declare when using
2179         GPL module.
2180         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
2181         Move...
2182         * lib/filenamecat-lgpl.c: ...into new file.
2183         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
2184         (gl_FILE_NAME_CONCAT): Use it.
2185         * MODULES.html.sh (File system functions): Mention new module.
2186
2187         argp: avoid memory leak
2188         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
2189         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
2190         base_name, since the latter malloc()s and can call exit().
2191         Leak introduced 2006-07-03.
2192
2193         dirname-lgpl: adjust clients that don't need full dirname
2194         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
2195         * modules/filenamecat (Depends-on): Likewise.
2196         * modules/linkat (Depends-on): Likewise.
2197         * modules/mkancesdirs (Depends-on): Likewise.
2198         * modules/mkdir (Depends-on): Likewise.
2199         * modules/openat (Depends-on): Likewise.
2200         * modules/savewd (Depends-on): Likewise.
2201         * modules/rename (Depends-on): Likewise.
2202         (License): Relax license.
2203         * modules/mkdir-tests (Depends-on): Drop progname.
2204         (Makefile.am): Delete unneeded LDADD.
2205         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
2206
2207         dirname: split into dirname-lgpl
2208         * modules/dirname-lgpl: New module.
2209         * modules/dirname (Files): Move library-safe files into
2210         dirname-lgpl.
2211         (Depends-on): Add dirname-lgpl.
2212         (configure.ac): Declare witness.
2213         * modules/double-slash-root (License): Relax license.
2214         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
2215         module.
2216         * lib/dirname.c (dir_len, mdir_name): Move...
2217         * lib/dirname-lgpl.c: ...into new file.
2218         * lib/basename.c (last_component, base_len): Move...
2219         * lib/basename-lgpl.c: ...into new file.
2220         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
2221         (gl_DIRNAME): Use it.
2222         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
2223         Mention new module.
2224         * modules/dirname-tests (Depends-on): Add progname.
2225         * tests/test-dirname.c (program_name): Delete.
2226
2227         mkdir: make safe for libraries
2228         * modules/mkdir (Depends-on): Drop xalloc.
2229         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
2230         exit.
2231
2232         tests: avoid some compiler warnings
2233         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
2234         literals.
2235         * tests/test-memchr.c (main): Avoid type mismatch.
2236         * tests/test-arpa_inet.c (main): Avoid unused parameters.
2237         * tests/test-base64.c (main): Likewise.
2238         * tests/test-getdelim.c (main): Likewise.
2239         * tests/test-gethostname.c (main): Likewise.
2240         * tests/test-getline.c (main): Likewise.
2241         * tests/test-netinet_in.c (main): Likewise.
2242         * tests/test-select.c (open_server_socket, main): Likewise.
2243         * tests/test-select-stdin.c (main): Likewise.
2244         * tests/test-sockets.c (main): Likewise.
2245         * tests/test-strsignal.c (main): Likewise.
2246         * tests/test-sys_select.c (main): Likewise.
2247         * tests/test-sys_socket.c (main): Likewise.
2248         * tests/test-u64.c (main): Likewise.
2249         * tests/test-xfprintf-posix.c (main): Likewise.
2250         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
2251
2252         sockets: avoid compiler warning
2253         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
2254
2255         maint: detect usage(1) and other suspicious exits
2256         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
2257
2258 2009-10-29  Jim Meyering  <meyering@redhat.com>
2259
2260         timespec: long-to-int truncation could make timespec_cmp malfunction
2261         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
2262         a multiple of 2^32 nanoseconds as no difference.
2263
2264 2009-10-28  Jim Meyering  <meyering@redhat.com>
2265
2266         fprintftime: wrap macro code argument in "do {...} while(0)"
2267         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
2268         cpy macro must be a statement that can be followed by a semicolon.
2269         Now that the else clause contains a comment and is hence longer
2270         than one line, I require curly braces.  That in turn requires
2271         that we wrap this code block in the standard do...while(0).
2272
2273         fprintftime: remove stray semicolon from previous change
2274         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
2275
2276         fprintftime: avoid a warning about ignored fwrite return value
2277         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
2278         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
2279         that is unsafe.
2280         * modules/fprintftime (Depends-on): Add ignore-value.
2281
2282         exclude: avoid an unwarranted warning
2283         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
2284
2285 2009-10-27  Eric Blake  <ebb9@byu.net>
2286
2287         fseek: avoid compilation failure when fflush is replaced
2288         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
2289         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
2290         module is in use.
2291         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
2292         module is not in use; since REPLACE_FSEEK worked otherwise.
2293         (GNULIB_FTELLO): Likewise for ftell.
2294         Reported by Ian Beckwith and others.
2295
2296 2009-10-27  Bruno Haible  <bruno@clisp.org>
2297
2298         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
2299         Reported by Jim Meyering.
2300
2301 2009-10-27  Jim Meyering  <jim@meyering.net>
2302             Bruno Haible  <bruno@clisp.org>
2303
2304         Avoid warning despite dropping the return value of fwrite.
2305         * lib/unicodeio.c: Include ignore-value.h.
2306         (fwrite_success_callback): Explicitly ignore fwrite's return value.
2307         * modules/unicodeio (Depends-on): Add ignore-value.
2308
2309 2009-10-26  Eric Blake  <ebb9@byu.net>
2310
2311         areadlinkat: fix fallback path
2312         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
2313         pointer and zero.
2314
2315 2009-10-22  Pádraig Brady  <P@draigBrady.com>
2316
2317         Use a better IO block size for modern systems
2318         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
2319         * lib/md2.c: Likewise.
2320         * lib/md4.c: Likewise.
2321         * lib/md5.c: Likewise.
2322         * lib/sha1.c: Likewise.
2323         * lib/sha256.c: Likewise.
2324         * lib/sha512.c: Likewise.
2325
2326 2009-10-22  Eric Blake  <ebb9@byu.net>
2327
2328         tests: avoid several compiler warnings
2329         * tests/test-getcwd.c (main): Avoid buffer underflow.
2330         * tests/test-getdate.c (main): String literals are not safe with
2331         putenv, so use setenv.  Declare unused argument.
2332         * modules/getdate-tests (Depends-on): Add setenv.
2333         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
2334         problems with string literals in char *.
2335         * tests/test-hash.c (main): Avoid shadowing declaration.
2336         (insert_new): Treat string literals as char const *.
2337         * tests/test-getopt.h (test_getopt): Likewise.
2338         (getopt_loop): Alter types to minimize casting elsewhere.
2339         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
2340         (test_getopt_long_posix): Likewise.
2341         (do_getopt_long): Add wrapper to minimize casting.
2342         * tests/test-atexit.c (clear_temp_file): Use void.
2343         * tests/test-areadlink-with-size.c (main): Declare unused
2344         arguments.
2345         * tests/test-areadlink.c (main): Likewise.
2346         * tests/test-areadlinkat-with-size.c (main): Likewise.
2347         * tests/test-areadlinkat.c (main): Likewise.
2348         * tests/test-canonicalize-lgpl.c (main): Likewise.
2349         * tests/test-canonicalize.c (main): Likewise.
2350         * tests/test-dirent-safer.c (main): Likewise.
2351         * tests/test-dirname.c (main): Likewise.
2352         * tests/test-dup2.c (main): Likewise.
2353         * tests/test-fchdir.c (main): Likewise.
2354         * tests/test-fcntl-h.c (main): Likewise.
2355         * tests/test-fcntl-safer.c (main): Likewise.
2356         * tests/test-fdopendir.c (main): Likewise.
2357         * tests/test-fdutimensat.c (main): Likewise.
2358         * tests/test-fflush.c (main): Likewise.
2359         * tests/test-filenamecat.c (main): Likewise.
2360         * tests/test-filevercmp.c (main): Likewise.
2361         * tests/test-fopen-safer.c (main): Likewise.
2362         * tests/test-fopen.c (main): Likewise.
2363         * tests/test-fpending.c (main): Likewise.
2364         * tests/test-fpurge.c (main): Likewise.
2365         * tests/test-freading.c (main): Likewise.
2366         * tests/test-fstatat.c (main): Likewise.
2367         * tests/test-fsync.c (main): Likewise.
2368         * tests/test-futimens.c (main): Likewise.
2369         * tests/test-getndelim2.c (main): Likewise.
2370         * tests/test-gettimeofday.c (main): Likewise.
2371         * tests/test-getopt.c (main): Likewise.
2372         * tests/test-i-ring.c (main): Likewise.
2373         * tests/test-inttypes.c (main): Likewise.
2374         * tests/test-link.c (main): Likewise.
2375         * tests/test-lstat.c (main): Likewise.
2376         * tests/test-math.c (main): Likewise.
2377         * tests/test-md5.c (main): Likewise.
2378         * tests/test-memchr2.c (main): Likewise.
2379         * tests/test-memrchr.c (main): Likewise.
2380         * tests/test-mkdir.c (main): Likewise.
2381         * tests/test-mkdirat.c (main): Likewise.
2382         * tests/test-mkfifoat.c (main): Likewise.
2383         * tests/test-open.c (main): Likewise.
2384         * tests/test-openat-safer.c (main): Likewise.
2385         * tests/test-openat.c (main): Likewise.
2386         * tests/test-quotearg.c (main): Likewise.
2387         * tests/test-rawmemchr.c (main): Likewise.
2388         * tests/test-readlink.c (main): Likewise.
2389         * tests/test-remove.c (main): Likewise.
2390         * tests/test-rename.c (main): Likewise.
2391         * tests/test-renameat.c (main): Likewise.
2392         * tests/test-rmdir.c (main): Likewise.
2393         * tests/test-sha1.c (main): Likewise.
2394         * tests/test-signal.c (main): Likewise.
2395         * tests/test-sigaction.c (main): Likewise.
2396         * tests/test-stat.c (main): Likewise.
2397         * tests/test-stat-time.c (main): Likewise.
2398         * tests/test-stddef.c (main): Likewise.
2399         * tests/test-stdint.c (main): Likewise.
2400         * tests/test-stdio.c (main): Likewise.
2401         * tests/test-stdlib.c (main): Likewise.
2402         * tests/test-strchrnul.c (main): Likewise.
2403         * tests/test-strerror.c (main): Likewise.
2404         * tests/test-string.c (main): Likewise.
2405         * tests/test-strtod.c (main): Likewise.
2406         * tests/test-strverscmp.c (main): Likewise.
2407         * tests/test-symlink.c (main): Likewise.
2408         * tests/test-symlinkat.c (main): Likewise.
2409         * tests/test-sys_stat.c (main): Likewise.
2410         * tests/test-sys_time.c (main): Likewise.
2411         * tests/test-time.c (main): Likewise.
2412         * tests/test-unistd.c (main): Likewise.
2413         * tests/test-unlink.c (main): Likewise.
2414         * tests/test-unlinkat.c (main): Likewise.
2415         * tests/test-utimens.c (main): Likewise.
2416         * tests/test-utimensat.c (main): Likewise.
2417         * tests/test-version-etc.c (main): Likewise.
2418         * tests/test-wchar.c (main): Likewise.
2419         * tests/test-wctype.c (main): Likewise.
2420         * tests/test-xprintf-posix.c (main): Likewise.
2421         * tests/test-posixtm.c (main): Likewise.
2422         (STREQ): Delete unused macro.
2423         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
2424         shadowed variables.
2425         * tests/test-memchr.c (main): Likewise.
2426
2427 2009-10-21  Eric Blake  <ebb9@byu.net>
2428
2429         areadlinkat: avoid failure on older glibc
2430         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
2431         rather than mis-comparing 0 against FUNC_RESULT of char*.
2432
2433 2009-10-21  Bruno Haible  <bruno@clisp.org>
2434
2435         * modules/stpncpy (License): Relicense under LGPLv2+.
2436         Reported by David Lutterkort <lutter@redhat.com>.
2437
2438 2009-10-20  Eric Blake  <ebb9@byu.net>
2439
2440         utimensat: work around Solaris 9 bug
2441         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
2442         has trailing slash bugs.
2443         * tests/test-lutimens.h (test_lutimens): Enhance test.
2444         * tests/test-utimens.h (test_utimens): Likewise.
2445         * doc/posix-functions/utime.texi (utime): Enhance documentation.
2446         * doc/posix-functions/utimes.texi (utimes): Likewise.
2447         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2448         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
2449         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
2450         * doc/posix-functions/futimens.texi (futimens): Likewise.
2451
2452         fdutimensat: new module
2453         * modules/fdutimensat: New file.
2454         * lib/fdutimensat.c (fdutimensat): Likewise.
2455         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
2456         * MODULES.html.sh (File system functions): Mention module.
2457         * modules/fdutimensat-tests: New test.
2458         * tests/test-fdutimensat.c: Likewise.
2459
2460         doc: regenerate INSTALL
2461         * doc/INSTALL: Reflect recent autoconf update.
2462         * doc/INSTALL.ISO: Likewise.
2463         * doc/INSTALL.UTF-8: Likewise.
2464
2465 2009-10-20  Pádraig Brady  <P@draigBrady.com>
2466
2467         acl: warn if ACL support is not detected
2468         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
2469
2470 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
2471
2472         * lib/nproc.h: Add extern "C" block for C++.
2473
2474 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
2475             Bruno Haible  <bruno@clisp.org>
2476
2477         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
2478         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
2479         * doc/posix-functions/isalpha.texi: Likewise.
2480         * doc/posix-functions/isblank.texi: Likewise.
2481         * doc/posix-functions/iscntrl.texi: Likewise.
2482         * doc/posix-functions/isdigit.texi: Likewise.
2483         * doc/posix-functions/isgraph.texi: Likewise.
2484         * doc/posix-functions/islower.texi: Likewise.
2485         * doc/posix-functions/isprint.texi: Likewise.
2486         * doc/posix-functions/ispunct.texi: Likewise.
2487         * doc/posix-functions/isspace.texi: Likewise.
2488         * doc/posix-functions/isupper.texi: Likewise.
2489         * doc/posix-functions/isxdigit.texi: Likewise.
2490
2491 2009-10-18  Bruno Haible  <bruno@clisp.org>
2492
2493         Tests for module 'isblank'.
2494         * modules/isblank-tests: New file.
2495         * tests/test-isblank.c: New file.
2496
2497         New module 'isblank'.
2498         * lib/isblank.c: New file.
2499         * m4/isblank.m4: New file.
2500         * modules/isblank: New file.
2501         * doc/posix-functions/isblank.texi: Mention the new module.
2502
2503 2009-10-18  Bruno Haible  <bruno@clisp.org>
2504
2505         New module 'ctype'.
2506         * lib/ctype.in.h: New file.
2507         * m4/ctype.m4: New file.
2508         * modules/ctype: New file.
2509         * doc/posix-headers/ctype.texi: Mention the new module.
2510
2511 2009-10-18  Jim Meyering  <meyering@redhat.com>
2512
2513         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
2514         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
2515         right after its initialization, rather than farther down.
2516         Keeping these in close proximity makes it easier to ensure
2517         that each such variable is initialized.  E.g.,
2518
2519             LIB_CLOCK_GETTIME=
2520             AC_SUBST([LIB_CLOCK_GETTIME])
2521
2522         This change also increments these serial numbers.
2523         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
2524         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2525         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2526
2527 2009-10-18  Bruno Haible  <bruno@clisp.org>
2528
2529         Don't let environment variables perturb build.
2530         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
2531         (gl_PREREQ_GETHRXTIME): ... not here.
2532
2533 2009-10-18  Bruno Haible  <bruno@clisp.org>
2534
2535         Avoid symlink attack in localcharset module.
2536         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
2537         (O_NOFOLLOW): Define fallback.
2538         (get_charset_aliases): Don't open the file if it is a symbolic link.
2539         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
2540         gl_FCNTL_H.
2541         (gl_FCNTL_H): Require it.
2542         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
2543         * modules/localcharset (Files): Add m4/fcntl_h.m4.
2544         Reported by Fergal Glynn <fglynn@veracode.com>.
2545
2546 2009-10-18  Bruno Haible  <bruno@clisp.org>
2547
2548         Implement nproc for mingw.
2549         * lib/nproc.c: Include <windows.h>
2550         (num_processors): On native Windows platforms, try GetSystemInfo.
2551
2552 2009-10-18  Bruno Haible  <bruno@clisp.org>
2553
2554         Implement nproc for IRIX.
2555         * lib/nproc.c: Include <sys/sysmp.h>.
2556         (num_processors): On IRIX systems, try sysmp.
2557         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
2558
2559 2009-10-18  Bruno Haible  <bruno@clisp.org>
2560
2561         Implement nproc for HP-UX.
2562         * lib/nproc.c: Include <sys/pstat.h>
2563         (num_processors): On HP-UX systems, try pstat_getdynamic.
2564         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
2565         pstat_getdynamic.
2566
2567 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
2568             Bruno Haible  <bruno@clisp.org>
2569
2570         Implement nproc for NetBSD, OpenBSD.
2571         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
2572         (ARRAY_SIZE): New macro.
2573         (num_processors): On BSD systems, try sysctl of HW_NCPU.
2574         * m4/nproc.m4: New file.
2575         * modules/nproc (Files): Add m4/nproc.m4.
2576         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
2577         (Makefile.am): Instead, augment lib_SOURCES.
2578
2579 2009-10-18  Bruno Haible  <bruno@clisp.org>
2580
2581         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
2582         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
2583         sys/param.h.
2584
2585 2009-10-16  Eric Blake  <ebb9@byu.net>
2586
2587         utimensat: new module
2588         * modules/utimensat: New file.
2589         * lib/utimensat.c (utimensat): Likewise.
2590         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
2591         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
2592         so we can work around Linux bugs.
2593         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2594         * modules/sys_stat (Makefile.am): Substitute them.
2595         * lib/sys_stat.in.h (utimensat): Declare it.
2596         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2597         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2598         * modules/utimensat-tests: New test.
2599         * tests/test-utimensat.c: Likewise.
2600
2601         utimens: let lutimens work on non-symlinks
2602         * lib/utimens.c (lutimens): Fall back to utimens rather than
2603         failing with ENOSYS, when file is not a symlink.
2604         (utimens): Reduce redirection.
2605         * tests/test-lutimens.h (test_lutimens): Update test to cover
2606         non-symlinks.
2607         * tests/test-utimens.h (test_utimens): Update test to cover
2608         symlinks.
2609         * tests/test-utimens.c (main): Update caller.
2610
2611         utimens: cache whether utimensat syscall works
2612         * lib/utimens.c (utimensat_works_really): New cache variable.
2613         (fdutimens, lutimens): Use it to avoid failing syscall.
2614
2615         test-stat-time, test-utimens: improve portability
2616         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
2617         ext4 on alpha, and for cygwin.
2618         * tests/test-utimens-common.h: New file.
2619         (nap): Factor delays into single function.
2620         * tests/test-lutimens.h (test_lutimens): Use new header.
2621         * tests/test-futimens.h (test_futimens): Likewise.
2622         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
2623         timestamps to occur from same machine, as was done previously for
2624         test_utimens.
2625         * modules/utimens-tests (Files): Ship new file.
2626         * modules/futimens-tests (Files): Likewise.
2627         Reported in part by Jim Meyering.
2628
2629         sys_stat: sort replacement declarations
2630         * lib/sys_stat.in.h: Sort declarations.
2631         * lib/futimens.c (futimens): Fix typo.
2632
2633 2009-10-15  Jim Meyering  <meyering@redhat.com>
2634
2635         don't let environment settings perturb build
2636         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
2637         could cause a configure-time and/or build-time malfunction.
2638         Typically, a configure-time function-in-library test is performed
2639         via code like this:
2640
2641           LIB_VAR=
2642           AC_SUBST([LIB_VAR])
2643           prefix_saved_LIBS=$LIBS
2644             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
2645                        [test "$ac_cv_search_FUNC" = "none required" ||
2646                         LIB_VAR=$ac_cv_search_FUNC])
2647           LIBS=$prefix_saved_LIBS
2648
2649         However, in each of the files affected by this change, the LIB_VAR=
2650         initialization was omitted.  Thus, when set in the environment, its
2651         value would propagate into generated Makefiles when FUNC is not found
2652         in LIB_NAME.
2653         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
2654         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2655         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2656
2657 2009-10-14  Eric Blake  <ebb9@byu.net>
2658
2659         fchdir: avoid infinite recursion in mingw
2660         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
2661         recursing.
2662
2663         test-stat-time: port to mingw
2664         * tests/test-stat-time.c (force_unlink): Return a value.
2665         (test_ctime) [W32]: Fix compilation error.
2666         (nap): Don't call usleep with too large an argument.  Use
2667         force_unlink.
2668         * doc/pastposix-functions/usleep.texi (usleep): Document the
2669         portability issue.
2670
2671 2009-10-13  Jim Meyering  <meyering@redhat.com>
2672
2673         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
2674         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
2675         * modules/pipe-filter-ii: Likewise.
2676         * modules/sys_socket-tests: Likewise.
2677         * modules/tsearch-tests: Likewise.
2678         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
2679         (check): Depend on it.
2680
2681 2009-10-12  Eric Blake  <ebb9@byu.net>
2682
2683         utimens-tests: port to NFS file systems
2684         * tests/test-utimens.h (test_utimens): Refactor utimecmp
2685         comparisons to avoid spurious failures from timestamp drift
2686         between NFS machines.
2687
2688 2009-10-12  Eric Blake  <ebb9@byu.net>
2689
2690         stat-time-tests: minor cleanups
2691         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
2692         * tests/test-stat-time.c (nap): Separate assignment from call.
2693         Suggested by Paolo Bonzini and Bruno Haible.
2694
2695         sys_stat: guarantee struct timespec
2696         * lib/sys_stat.in.h (includes): Always include <time.h>
2697         * modules/sys_stat (Depends-on): Add time.
2698         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
2699         mode_t permission values.
2700         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
2701         get at subsecond timestamps.
2702
2703 2009-10-10  Eric Blake  <ebb9@byu.net>
2704
2705         futimens: new module
2706         * modules/futimens: New file.
2707         * lib/futimens.c (futimens): Likewise.
2708         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
2709         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
2710         we can work around Linux bugs.
2711         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2712         * modules/sys_stat (Makefile.am): Substitute them.
2713         * lib/sys_stat.in.h (futimens): Declare it.
2714         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2715         * doc/posix-functions/futimens.texi (futimens): Likewise.
2716         * modules/futimens-tests: New test.
2717         * tests/test-futimens.c: Likewise.
2718
2719         utimens: introduce fdutimens
2720         * lib/utimens.h (fdutimens): New prototype.
2721         * lib/utimens.c (gl_futimens): Move guts...
2722         (fdutimens): ...to new interface.
2723         * tests/test-utimens.c (do_fdutimens): Use it.
2724
2725         utimens: add UTIME_NOW and UTIME_OMIT support
2726         * lib/utimens.c (validate_timespec, update_timespec): New helper
2727         functions.
2728         (gl_futimens, lutimens): Use them.
2729         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
2730         stdbool, sys_stat.
2731         (Link): Mention resulting library dependency.
2732         * modules/utimecmp (Link): Likewise.
2733         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
2734         (Makefile.am): Pick up library dependency.
2735         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
2736         definition.
2737         * tests/test-sys_stat.c: Test the definitions.
2738         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
2739         * NEWS: Document library dependency.
2740
2741         utimecmp: support symlink timestamps
2742         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
2743         hashing when possible.  Use pathconf when available.
2744         (SYSCALL_RESOLUTION): Recognize tighter resolution.
2745         * modules/utimecmp (Depends-on): Add lstat.
2746
2747         utimens: add lutimens interface
2748         * lib/utimens.c (lutimens): New function.
2749         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
2750         * lib/utimens.h (lutimens): Declare new interface.
2751         * tests/test-utimens.c (main): Enhance test.
2752         * tests/test-lutimens.h (test_lutimens): New file.
2753         * modules/utimens-tests (Files): Distribute it.
2754         (Depends-on): Add symlink.
2755         (configure.ac): Check for usleep.
2756
2757         utimens: validate futimens usage
2758         * lib/utimens.c (gl_futimens): Require valid fd up front, using
2759         fewer syscalls on failure later on.  Avoid compiler warning on
2760         mingw.
2761         * modules/utimens (Depends-on): Add dup2.
2762
2763         utimens: add test
2764         * modules/utimens-tests: New test.
2765         * tests/test-utimens.h: New file.
2766         * tests/test-futimens.h: Likewise.
2767         * tests/test-utimens.c: Likewise.
2768
2769         doc: mention timestamp portability issues
2770         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
2771         instead.
2772         * doc/posix-functions/utime.texi (utime): Likewise.
2773         * doc/posix-functions/utimes.texi (utimes): Likewise.
2774         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
2775         instead.
2776         * doc/posix-functions/futimens.texi (futimens): Mention utimens
2777         module.
2778         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2779         Mention weakness with symlink timestamps.
2780         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
2781         to utimensat/futimens instead.
2782         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
2783
2784         test-dup2: enhance test
2785         * tests/test-dup2.c (main): Also check AT_FDCWD.
2786
2787         test-stat-time: avoid more spurious failures
2788         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
2789         xfs; and avoid race if the two timestamps cross quantization edge.
2790
2791         relocatable: prefer 'file system' over 'filesystem'
2792         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
2793         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
2794         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
2795         * doc/relocatable.texi (Enabling Relocatability): Likewise.
2796         * lib/relocatable.c (compute_curr_prefix): Likewise.
2797
2798 2009-10-10  Jim Meyering  <meyering@redhat.com>
2799
2800         stat-time-tests: check for the usleep function
2801         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
2802
2803 2009-10-10  Bruno Haible  <bruno@clisp.org>
2804
2805         * modules/xnanosleep: Put the Link section after the Include section.
2806
2807 2009-10-09  Eric Blake  <ebb9@byu.net>
2808
2809         dup2: work around FreeBSD 6.1 bug
2810         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
2811         * doc/posix-functions/dup2.texi (dup2): Document it.
2812         Reported by Nelson H. F. Beebe and Jim Meyering.
2813
2814         test-stat-time: port to buggy NFS clients
2815         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
2816         (test_ctime): Also skip test if mtime and ctime are skewed.
2817
2818         maint: prefer 'file system' over 'filesystem'
2819         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
2820         * doc/posix-functions/lstat.texi (lstat): Likewise.
2821         * lib/file-has-acl.c (file_has_acl): Likewise.
2822         * lib/fwriteerror.c [TEST]: Likewise.
2823         * tests/test-areadlink.h (test_areadlink): Likewise.
2824         * tests/test-areadlinkat-with-size.c (main): Likewise.
2825         * tests/test-areadlinkat.c (main): Likewise.
2826         * tests/test-canonicalize-lgpl.c (main): Likewise.
2827         * tests/test-canonicalize.c (main): Likewise.
2828         * tests/test-fstatat.c (main): Likewise.
2829         * tests/test-linkat.c (main): Likewise.
2830         * tests/test-lstat.h (test_lstat_func): Likewise.
2831         * tests/test-mkdir.h (test_mkdir): Likewise.
2832         * tests/test-readlink.h (test_readlink): Likewise.
2833         * tests/test-remove.c (main): Likewise.
2834         * tests/test-rename.h (test_rename): Likewise.
2835         * tests/test-renameat.c (main): Likewise.
2836         * tests/test-rmdir.h (test_rmdir_func): Likewise.
2837         * tests/test-symlink.h (test_symlink): Likewise.
2838         * tests/test-symlinkat.c (main): Likewise.
2839         * tests/test-unlink.h (test_unlink_func): Likewise.
2840         * tests/test-unlinkat.c (main): Likewise.
2841
2842         maint: make realtime library usage explicit
2843         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
2844         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
2845         * modules/settime (Link): Likewise.
2846         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
2847
2848         test-stat-time: speed up execution
2849         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
2850         warning on mingw.
2851         (nap): New helper function.
2852         (prepare_test): Use it to reduce sleep time.
2853         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
2854         execution.
2855         * modules/stat-time-tests (configure.ac): Check for usleep.
2856
2857 2009-10-09  Jim Meyering  <meyering@redhat.com>
2858
2859         selinux-h: always use getfilecon wrappers
2860         * lib/getfilecon.c: New file.
2861         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
2862         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
2863         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
2864         (fgetfilecon): Provide a stub.
2865         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
2866         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
2867         file unconditionally.
2868         When <selinux/selinux.h> is found, arrange to use wrappers.
2869         * modules/selinux-h (Files): Add getfilecon.c.
2870         (Makefile.am): Substitute include-next-related bits
2871         into the now-always-generated selinux/selinux.h file.
2872         * doc/glibc-functions/lgetfilecon.texi: New file.
2873         * doc/glibc-functions/fgetfilecon.texi: New file.
2874         * doc/glibc-functions/getfilecon.texi: New file.
2875         * doc/glibc-functions/getfilecon-desc.texi: New file.
2876         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
2877         which to pull in the new files.
2878         * MODULES.html.sh (Misc): Add selinux-h.
2879
2880 2009-10-08  Jim Meyering  <meyering@redhat.com>
2881
2882         unistd: fix comment typo
2883         * lib/unistd.in.h (euidaccess): Fix a comment typo.
2884
2885 2009-10-08  Eric Blake  <ebb9@byu.net>
2886
2887         areadlink: use SIZE_MAX consistently
2888         * modules/areadlink (Depends-on): Add stdint.
2889         * modules/areadlink-with-size (Depends-on): Likewise.
2890         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
2891         gives NULL; drop sys/types, since unistd gives size_t; and add
2892         stdint for SIZE_MAX.
2893         (SIZE_MAX): Rely on headers.
2894         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
2895         and add stdint.
2896         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
2897         (SIZE_MAX): Likewise.
2898         (INITIAL_BUF_SIZE): Turn into enum.
2899         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
2900
2901 2009-10-08  Jim Meyering  <meyering@redhat.com>
2902
2903         areadlinkat: avoid compilation failure
2904         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
2905         Fix typo in comment.
2906
2907 2009-10-07  Eric Blake  <ebb9@byu.net>
2908
2909         areadlinkat-with-size: new module
2910         * modules/areadlinkat-with-size: New module.
2911         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
2912         * lib/areadlink.h (areadlinkat): Declare it.
2913         * MODULES.html.sh (File system functions): Mention it.
2914         * modules/areadlinkat-with-size-tests: New test.
2915         * tests/test-areadlinkat-with-size.c: New file.
2916
2917         xreadlinkat: new module
2918         * modules/xreadlinkat: New module.
2919         * lib/xreadlinkat.c (xreadlinkat): New file.
2920         * lib/xreadlink.h (xreadlinkat): Declare it.
2921         * MODULES.html.sh (File system functions): Mention it.
2922
2923         areadlinkat: new module
2924         * lib/at-func.c (FUNC_FAIL): New define.
2925         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
2926         * modules/areadlinkat: New module.
2927         * lib/linkat.c (areadlinkat): Move...
2928         * lib/areadlinkat.c (areadlinkat): ...to new file.
2929         * lib/areadlink.h (areadlinkat): Declare it.
2930         * modules/linkat (Depends-on): Add areadlinkat.
2931         * MODULES.html.sh (File system functions): Mention it.
2932         * modules/areadlinkat-tests: New test.
2933         * tests/test-areadlinkat.c: New file.
2934
2935         areadlink, areadlink-with-size: add tests
2936         * modules/areadlink-tests: New test.
2937         * modules/areadlink-with-size-tests: Likewise.
2938         * tests/test-areadlink.h: New file.
2939         * tests/test-areadlink.c: Likewise.
2940         * tests/test-areadlink-with-size.c: Likewise.
2941
2942         maint: minor cleanups
2943         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
2944         _UNUSED_PARAMETER_ instead.
2945         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
2946         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
2947         * modules/linkat-tests (Files): Distribute test-link.h.
2948
2949         openat, utimens: whitespace cleanup
2950         * lib/openat.c: Prefer space throughout, rather than mix of 8
2951         spaces vs. tabs.
2952         * lib/at-func.c: Likewise.
2953         * lib/utimens.c: Likewise.
2954
2955         openat: avoid using wrong fd
2956         * lib/openat.c (openat_permissive): Reject user's fd if saving the
2957         working directory chooses same fd.
2958         * lib/at-func.c (AT_FUNC_NAME): Likewise.
2959
2960         mkdir, mkdirat: fix cygwin 1.5.x bug
2961         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
2962         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
2963         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
2964         bug.
2965         (gl_PREREQ_MKDIR): Delete unused macro.
2966         * modules/mkdir (Files): Track file rename.
2967         (configure.ac): Update macro name.
2968         * modules/openat (Depends-on): Add mkdir.
2969         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
2970
2971         mkdir, mkdirat: add tests
2972         * modules/mkdir-tests: New test.
2973         * tests/test-mkdir.h: New file.
2974         * tests/test-mkdir.c: Likewise.
2975         * tests/test-mkdirat.c: Likewise.
2976         * modules/openat-tests (Files): Add new files.
2977         (Makefile.am): Run new test.
2978
2979 2009-10-06  Eric Blake  <ebb9@byu.net>
2980
2981         doc: tweak *at function documentation
2982         * doc/posix-functions/faccessat.texi (faccessat): Mention
2983         known issue with replacement.
2984         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
2985         * doc/posix-functions/linkat.texi (linkat): Likewise.
2986         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
2987         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
2988         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
2989         * doc/posix-functions/renameat.texi (renameat): Likewise.
2990         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
2991
2992         openat: fix GNU/Hurd bug in unlinkat
2993         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
2994         broken.
2995         * doc/posix-functions/unlink.texi (unlink): Document this.
2996         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
2997
2998         fdopendir: fix GNU/Hurd bug
2999         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
3000         allowing non-directory fds.
3001         * lib/fdopendir.c (rpl_fdopendir): Work around it.
3002         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
3003         * modules/dirent (Makefile.am): Substitute it.
3004         * lib/dirent.in.h (fdopendir): Declare replacement.
3005         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
3006         * tests/test-fdopendir.c (main): Test something other than
3007         /dev/null, since on Hurd that behaves like a directory.
3008
3009         test-symlink: port to GNU/Hurd
3010         * tests/test-symlink.h (test_symlink): Relax expected errno.
3011
3012         doc: tweak more cygwin information
3013         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
3014         now compatible with glibc.
3015         * doc/posix-functions/getopt.texi (getopt): Likewise.
3016
3017         getopt-gnu: add another test
3018         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
3019         guarantee behavior relied on by m4.
3020         * tests/test-getopt.c (main): Use it.
3021         * modules/getopt-posix-tests (Depends-on): Add setenv.
3022         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
3023
3024         getopt: fix compilation on darwin
3025         * lib/getopt.in.h (includes): Leave breadcrumbs during system
3026         include.
3027         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
3028         Reported by Ludovic Courtès.
3029
3030 2009-10-06  Bruno Haible  <bruno@clisp.org>
3031
3032         * modules/size_max (Description): Discourage its use.
3033         Reported by Simon Josefsson.
3034
3035 2009-10-06  Jim Meyering  <meyering@redhat.com>
3036
3037         linkat: avoid compilation failure
3038         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
3039
3040 2009-10-05  Eric Blake  <ebb9@byu.net>
3041
3042         linkat: support Linux 2.6.17
3043         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
3044         linkat on Linux, but allow cache variable override.
3045         * lib/linkat.c (rpl_linkat): Define override.
3046         * modules/linkat (Depends-on): Add symlinkat.
3047         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
3048         * modules/unistd (Makefile.am): Substitute it.
3049         * lib/unistd.in.h (linkat): Declare replacement.
3050         Reported by Pádraig Brady.
3051
3052         quotearg: port test to systems with C.UTF-8 locale
3053         * tests/test-quotearg.c (struct result_strings): Add another
3054         member, differentiating between C.ASCII and C.UTF-8 handling.
3055         (compare_strings): Add parameter.
3056         (main): Adjust all callers.
3057
3058         getopt: avoid clash with FreeBSD _getopt_internal
3059         * lib/getopt.in.h (_getopt_internal): Override the name.
3060         * lib/getopt_int.h (includes): Pick up any overrides.
3061         Reported by Reuben Thomas.
3062
3063         hash: allow C89 compilation
3064         * lib/hash.c (check_tuning): Move declaration before statement.
3065         Reported by Reuben Thomas.
3066
3067 2009-10-05  Karl Berry  <karl@gnu.org>
3068
3069         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
3070
3071 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
3072             Bruno Haible  <bruno@clisp.org>
3073
3074         * lib/uname.c (uname): Use a table-driven algorithm to compute
3075         Windows NT versions.
3076
3077 2009-10-04  Bruno Haible  <bruno@clisp.org>
3078
3079         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
3080         program_invocation_short_name.
3081         * modules/progname (configure.ac): Test for presence of
3082         program_invocation_short_name.
3083         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
3084
3085 2009-10-04  Bruno Haible  <bruno@clisp.org>
3086
3087         * lib/progname.c (set_program_name): Fix comment.
3088         Reported by Jim Meyering.
3089
3090 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3091             Bruno Haible  <bruno@clisp.org>
3092
3093         * lib/uname.c: Include <string.h>.
3094         (uname): Do only one call to GetVersionEx in the common case.
3095
3096 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3097             Bruno Haible  <bruno@clisp.org>
3098
3099         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
3100         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
3101         (uname): Add support for Windows CE and various non-x86 CPU types.
3102
3103 2009-10-03  Bruno Haible  <bruno@clisp.org>
3104
3105         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
3106         invocation to tests/configure.ac.
3107         Reported by Ian Beckwith <ianb@erislabs.net>.
3108
3109 2009-10-02  Eric Blake  <ebb9@byu.net>
3110
3111         fchdir: avoid compiler warning
3112         * lib/fchdir.c (canonicalize_file_name)
3113         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
3114
3115         test-open: support mingw errno values
3116         * tests/test-open.h (test_open): Relax test.
3117         * tests/test-fopen.h (test_fopen): Likewise.
3118         * tests/test-openat-safer.c (main): Likewise.
3119
3120         open: fix opening directory on mingw
3121         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
3122
3123         test-open: on GNU/Hurd, /dev/null is a directory
3124         * tests/test-fopen.h (main): Rename...
3125         (test_fopen): ...to this.  Use a guaranteed non-directory when
3126         confirming open behavior on trailing slash.
3127         * tests/test-openat-safer.c (main): Likewise.
3128         * tests/test-open.h (main): Likewise....
3129         (test_open): ...to this.
3130         * tests/test-fopen.c (main): Adjust caller.
3131         * tests/test-fopen-safer.c (main): Likewise.
3132         * tests/test-open.c (main): Likewise.
3133         * tests/test-fcntl-safer.c (main): Likewise.
3134         Reported by Samuel Thibault.
3135
3136         rename, fchdir: don't ignore chdir failure
3137         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
3138         * lib/rename.c (rpl_rename) [W32]: Likewise.
3139         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
3140         an empty destination directory if source cannot be renamed,
3141         although there is still possibility for failure.
3142         * doc/posix-functions/rename.texi (rename): Document the race.
3143         Reported by Jim Meyering.
3144
3145         maint: cleanup whitespace in recent commits
3146         * lib/rename.c (rpl_rename): Remove tabs.
3147         * tests/test-link.h (test_link): Likewise.
3148         * lib/fchdir.c (get_name): Likewise.
3149         Reported by Jim Meyering.
3150
3151 2009-10-02  Ben Pfaff  <blp@gnu.org>
3152
3153         relocatable-prog-wrapper: Add missing dependency on
3154         double-slash-root.
3155         * modules/relocatable-prog-wrapper: Add dependency.
3156         Reported by Ian Beckwith <ianb@erislabs.net>.
3157
3158 2009-10-02  Eric Blake  <ebb9@byu.net>
3159
3160         renameat: fix Solaris bugs
3161         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
3162         needed fixing.
3163         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
3164         * modules/stdio (Makefile.am): Substitute it.
3165         * lib/stdio.in.h (renameat): Declare replacement.
3166         * lib/renameat.c (rpl_renameat): Implement fix.
3167
3168         renameat: new module
3169         * modules/renameat: New file.
3170         * lib/renameat.c (renameat): Likewise.
3171         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
3172         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3173         * modules/stdio (Makefile.am): Substitute them.
3174         * lib/stdio.in.h (renameat): Declare it.
3175         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3176         * doc/posix-functions/renameat.texi (renameat): Likewise.
3177         * modules/renameat-tests: New test.
3178         * tests/test-renameat.c: Likewise.
3179
3180         rename: fix mingw bugs
3181         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
3182         directory overwrite bugs.
3183
3184         rename: fix another cygwin 1.5 bug
3185         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
3186         checks.
3187         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
3188         unnecessary cygwin workarounds.  Also work around bug with moving
3189         full directory onto an empty one.
3190         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
3191
3192         rename-dest-slash: merge into rename module
3193         * modules/rename-dest-slash (Status): Mark obsolete.
3194         (Depends-on): Add rename.
3195         (Files): Let rename do it all.
3196         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
3197         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
3198         * m4/rename-dest-slash.m4: ...so this file can be deleted.
3199         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
3200         * lib/rename.c (rpl_rename): Update comments.
3201
3202         rename: fix cygwin 1.5.x bugs
3203         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
3204         * lib/rename.c (rpl_rename): Work around them.
3205         * modules/rename (Depends-on): Add same-inode.
3206
3207         rename: fix Solaris 10 bug
3208         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3209         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
3210         was the only bug.
3211
3212         rename: fix Solaris 9 bug
3213         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
3214         on non-directory.  Avoid calling exit.
3215         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
3216         strdup.
3217         * modules/rename-tests (Depends-on): Drop lstat.
3218         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3219         (gl_PREREQ_RENAME): Delete unused macro.
3220
3221         rename-dest-slash: fix NetBSD bug
3222         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
3223         links.
3224         * modules/rename-dest-slash (Depends-on): Add same-inode.
3225
3226         rename-tests: new test, exposes several platform bugs
3227         * modules/rename-tests: New file.
3228         * tests/test-rename.h: Likewise.
3229         * tests/test-rename.c: Likewise.
3230         * doc/posix-functions/rename.texi (rename): Improve documentation,
3231         including bugs that will eventually be fixed in gnulib.
3232
3233 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
3234
3235         * lib/uname.c: Include <stdlib.h>
3236         (uname): Assume version info is available.
3237
3238 2009-10-02  Jim Meyering  <meyering@redhat.com>
3239
3240         gnu-web-doc-update: correct --help output
3241         * build-aux/gnu-web-doc-update: Make --help output relevant.
3242
3243         gnu-web-doc-update: add standard options
3244         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
3245
3246         gnu-web-doc-update: New module.
3247         Use this script to automatically update the on-line web documentation
3248         for your GNU project at http://www.gnu.org/software/$pkg/manual/
3249         * modules/gnu-web-doc-update: New file, from coreutils.
3250         * build-aux/gnu-web-doc-update: New script.
3251
3252 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
3253
3254         link: LoadLibrary is not needed.
3255         * lib/link.c: Use GetModuleHandle.
3256
3257 2009-10-01  Eric Blake  <ebb9@byu.net>
3258
3259         getopt: bump serial number
3260         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
3261         change.
3262
3263         tests: tighten link, rmdir, and remove tests
3264         * tests/test-link.h (includes): No need to use <config.h> here.
3265         Clean up if directory hard link was created, otherwise test for
3266         trailing '.'.
3267         * tests/test-linkat.c (main): Simplify.
3268         * tests/test-remove.c (main): Enhance test for trailing '.'.
3269         * tests/test-rmdir.h (test_rmdir_func): Likewise.
3270
3271 2009-10-01  Jim Meyering  <meyering@redhat.com>
3272
3273         maint.mk: requiring "make major" was annoying, for a "minor" release.
3274         What is intended is "stable", to contrast with alpha and beta,
3275         so require "make stable", not "make major".
3276         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
3277         (get_tool_versions): Likewise.
3278         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
3279
3280 2009-09-30  Ben Pfaff  <blp@gnu.org>
3281
3282         Fix broken build of replacement for Windows tmpfile().
3283         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
3284         flags argument added along with the 'mkostemp' module.
3285
3286 2009-09-28  Bruno Haible  <bruno@clisp.org>
3287
3288         Avoid identifier clash with POSIX function 'remove' defined as a macro.
3289         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
3290         to 'remove_elt'.
3291         (gl_list_remove): Update.
3292         * lib/gl_list.c (gl_list_remove): Update.
3293         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
3294         to 'remove_elt'.
3295         (gl_oset_remove): Update.
3296         * lib/gl_list.c (gl_oset_remove): Update.
3297         Reported by Eric Blake.
3298
3299 2009-09-28  Eric Blake  <ebb9@byu.net>
3300
3301         doc: mention yet more cygwin 1.7 status
3302         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
3303         cygwin.
3304         * doc/glibc-functions/execvpe.texi (execvpe): New file.
3305         * doc/gnulib.texi (Glibc unistd.h): Mention it.
3306
3307         argp: fix test failure
3308         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
3309         that are not upper-case.  Pass correct range to tolower.
3310
3311 2009-09-27  Jim Meyering  <meyering@redhat.com>
3312
3313         test-yesno: work around sparc-dash here-document infelicity
3314         Without this change, the literal \177 byte in a here document
3315         would make dash 0.5.5.1-3 access uninitialized memory.
3316         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
3317         Instead, use a marker, "@", and filter through tr to create the desired
3318         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
3319
3320 2009-09-27  Bruno Haible  <bruno@clisp.org>
3321
3322         Disable untested support for new flavours of ACLs on AIX.
3323         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
3324         progress.
3325         * lib/set-mode-acl.c (qset_acl): Likewise.
3326
3327 2008-12-07  Bruno Haible  <bruno@clisp.org>
3328
3329         Add support for new flavours of ACLs on AIX. (Untested.)
3330         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
3331         (file_has_acl): Add support for newer AIX.
3332         * lib/set-mode-acl.c (qset_acl): Likewise.
3333         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
3334         Rainer Tammer <tammer@tammer.net>.
3335
3336 2009-09-26  Eric Blake  <ebb9@byu.net>
3337
3338         argp: fix compilation of getopt
3339         * lib/getopt.in.h (includes): Use different guard than glibc.
3340         Reported by Sergey Poznyakoff.
3341
3342         doc: mention more cygwin 1.7 status
3343         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
3344         bug.
3345         * doc/posix-functions/execl.texi (execl): Likewise.
3346         * doc/posix-functions/execle.texi (execle): Likewise.
3347         * doc/posix-functions/execlp.texi (execlp): Likewise.
3348         * doc/posix-functions/execv.texi (execv): Likewise.
3349         * doc/posix-functions/execve.texi (execve): Likewise.
3350         * doc/posix-functions/execvp.texi (execvp): Likewise.
3351         * doc/glibc-functions/canonicalize_file_name.texi
3352         (canonicalize_file_name): Cygwin 1.7 now provides this.
3353         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
3354         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
3355         on AT_SYMLINK_NOFOLLOW.
3356
3357 2009-09-24  Eric Blake  <ebb9@byu.net>
3358
3359         test-linkat: make test more robust
3360         * tests/test-linkat.c (main): Avoid collision with EEXIST.
3361
3362         getopt: fix inclusion guards for cygwin
3363         * modules/getopt-posix (Depends-on): Add include-next.
3364         (Makefile.am): Substitute more items in replacement header.
3365         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
3366         <getopt.h>.
3367         * lib/getopt.in.h (includes): Use split inclusion guard, and
3368         prefer <getopt.h> over include <unistd.h> when one is present.
3369         (option): Also override name of 'struct option'.
3370
3371         same-inode: revert prior change; it is not yet ready
3372         * NEWS: Undo mention of this change.
3373         * lib/same-inode.h (same-inode.h): Undo tri-state change.
3374         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3375         * lib/cycle-check.c (cycle_check): Likewise.
3376         * lib/same.c (same_name): Likewise.
3377         * lib/at-func2.c (at_func2): Likewise.
3378
3379 2009-09-23  Eric Blake  <ebb9@byu.net>
3380
3381         linkat: new module
3382         * modules/linkat: New file.
3383         * lib/at-func2.c (at_func2): Likewise.
3384         * lib/linkat.c (linkat): Likewise.
3385         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
3386         * lib/openat-priv.h (at_func2): Add declaration.
3387         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3388         * modules/unistd (Makefile.am): Substitute them.
3389         * lib/unistd.in.h (linkat): Declare it.
3390         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3391         * doc/posix-functions/linkat.texi (linkat): Likewise.
3392         * doc/posix-functions/link.texi (link): Tweak wording.
3393         * tests/test-link.c (main): Move guts...
3394         * tests/test-link.h (test_link): ...into new file.
3395         * modules/linkat-tests: New test.
3396         * tests/test-linkat.c: Likewise.
3397         * modules/link-tests (Files): Ship new file.
3398         (Depends-on): Add stdbool.
3399
3400         dirname: add library-safe mdir_name
3401         * lib/dirname.h (mdir_name): New prototype.
3402         * lib/dirname.c (dir_name): Move guts...
3403         (mdir_name): ...to new function that avoids xalloc_die.
3404
3405         fchdir: another mingw fix
3406         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
3407         * lib/fchdir.c (get_name): New helper method; skips canonicalize
3408         on mingw (where it has not yet been ported), and make it optional
3409         elsewhere.
3410         (_gl_register_fd): Use it.
3411
3412         same-inode: make SAME_INODE tri-state, to port to mingw
3413         * NEWS: Mention this change.
3414         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
3415         st_ino always being 0.
3416         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3417         * lib/cycle-check.c (cycle_check): Likewise.
3418         * lib/same.c (same_name): Likewise.
3419
3420         lstat: avoid mingw compilation error
3421         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
3422         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
3423         lstat ourselves.
3424         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
3425         was adequate.
3426         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
3427         the checks for lstat.
3428         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
3429
3430         link: fix test failure on Solaris 9
3431         * lib/link.c (rpl_link): Don't assume link will catch bogus
3432         trailing slash on source.
3433
3434         test-symlinkat: enhance test
3435         * tests/test-readlink.c (main): Move guts...
3436         * tests/test-readlink.h (test_readlink): ...into new file.
3437         * tests/test-symlink.c (main): Move guts...
3438         * tests/test-symlink.h (test_symlink): ...into new file.
3439         * tests/test-symlinkat.c (main): Use new files for further
3440         coverage.
3441         (do_symlink, do_readlink): New helper functions.
3442         * modules/symlink-tests (Files): Ship new file.
3443         (Depends-on): Add stdbool.
3444         * modules/readlink-tests (Files): Ship new file.
3445         (Depends-on): Add stdbool.
3446         * modules/symlinkat-tests (Files): Use new files.
3447
3448 2009-09-23  Eric Blake  <ebb9@byu.net>
3449
3450         readlink: document portability issue with symlink length
3451         * doc/posix-functions/lstat.texi (lstat): Mention that some file
3452         systems have bogus st_size on symlinks, and mention the
3453         areadlink-with-size module.
3454         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
3455         * doc/posix-functions/readlink.texi (readlink): Mention the
3456         areadlink module, and ERANGE failure.
3457         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3458         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
3459
3460         readlink: fix Solaris 9 bug with trailing slash
3461         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
3462         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
3463         * doc/posix-functions/readlink.texi (readlink): Document this.
3464         * modules/readlink-tests: New test.
3465         * tests/test-readlink.c: Likewise.
3466
3467         readlink: fix cygwin 1.5.x bug with return type
3468         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
3469         * lib/unistd.in.h (readlink): Use ssize_t.
3470         * lib/readlink.c (readlink): Likewise.
3471         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3472         * modules/unistd (Makefile.am): Substitute it.
3473         * lib/unistd.in.h (readlink): Declare replacement.
3474         * doc/posix-functions/readlink.texi (readlink): Document this.
3475
3476         symlink: use throughout gnulib
3477         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
3478         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
3479         symlink is not used.
3480         * modules/symlinkat (Depends-on): Add symlink.
3481         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3482         * modules/canonicalize-tests (Depends-on): Likewise.
3483         * modules/lstat-tests (Depends-on): Likewise.
3484         * modules/openat-tests (Depends-on): Likewise.
3485         * modules/remove-tests (Depends-on): Likewise.
3486         * modules/rmdir-tests (Depends-on): Likewise.
3487         * modules/unlink-tests (Depends-on): Likewise.
3488         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
3489         * tests/test-canonicalize.c (symlink): Likewise.
3490         * tests/test-fstatat.c (symlink): Likewise.
3491         * tests/test-lstat.c (symlink): Likewise.
3492         * tests/test-remove.c (symlink): Likewise.
3493         * tests/test-rmdir.c (symlink): Likewise.
3494         * tests/test-unlink.c (symlink): Likewise.
3495         * tests/test-unlinkat.c (symlink): Likewise.
3496
3497         symlink: new module, for Solaris 9 bug
3498         * modules/symlink: New file.
3499         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
3500         * lib/symlink.c: Likewise.
3501         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
3502         * modules/unistd (Makefile.am): Substitute them.
3503         * lib/unistd.in.h (symlink): Declare replacement.
3504         * MODULES.html.sh (File system functions): Mention it.
3505         * doc/posix-functions/symlink.texi (symlink): Likewise.
3506         * modules/symlink-tests: New test.
3507         * tests/test-symlink.c: Likewise.
3508
3509 2009-09-23  Bruno Haible  <bruno@clisp.org>
3510
3511         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
3512         when needed.
3513         Test case: gnulib-tool --import --with-tests atexit inttypes.
3514         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
3515
3516 2009-09-23  Bruno Haible  <bruno@clisp.org>
3517
3518         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
3519         subcommand, not in a subshell.
3520
3521 2009-09-22  Eric Blake  <ebb9@byu.net>
3522
3523         unistd: sort replacement declarations
3524         * lib/unistd.in.h: Sort declarations.
3525
3526         open, openat: minor optimization
3527         * lib/open.c (open): If open succeeded, len is non-zero.
3528         * lib/openat.c (rpl_openat): Likewise.
3529
3530         link-follow: ensure correct result
3531         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
3532         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
3533         distinguish between possible failures.
3534
3535 2009-09-21  Eric Blake  <ebb9@byu.net>
3536
3537         fts: avoid compiler warning
3538         * lib/fts.c (dirent_inode_sort_may_be_useful)
3539         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
3540
3541 2009-09-19  Bruno Haible  <bruno@clisp.org>
3542
3543         * lib/progreloc.c (canonicalize_file_name): New declaration.
3544
3545 2009-09-19  Eric Blake  <ebb9@byu.net>
3546
3547         link: fix quoting
3548         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
3549
3550         openat: fix openat bugs on Solaris 9
3551         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
3552         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
3553         * modules/openat (Depends-on): Add open.
3554         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
3555         * modules/fcntl-h (Makefile.am): Substitute it.
3556         * lib/fcntl.in.h (openat): Declare replacement.
3557         * doc/posix-functions/openat.texi (openat): Document this.
3558
3559         openat: move fstatat and unlinkat into correct files
3560         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
3561         compiled.
3562         * lib/openat.c (fstatat, unlinkat): Move...
3563         * lib/fstatat.c (fstatat): ...into correct files.
3564         * lib/unlinkat.c (unlinkat): Likewise.
3565
3566         openat: fix unlinkat bugs on Solaris 9
3567         * lib/unlinkat.c (unlinkat): New file.
3568         * modules/openat (Depends-on): Add unlink.
3569         (Files): Distribute it.
3570         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
3571         trailing slash behavior is broken.
3572         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3573         * modules/unistd (Makefile.am): Substitute it.
3574         * lib/unistd.in.h (unlinkat): Declare replacement.
3575         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
3576
3577         openat: fix fstatat bugs on Solaris 9
3578         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
3579         stat.
3580         * doc/posix-functions/fstatat.texi (fstatat): Document this.
3581
3582         test-unlinkat: enhance test, to expose Solaris 9 bug
3583         * tests/test-unlink.c (main): Factor guts...
3584         * tests/test-unlink.h (test_rmdir_func): ...into new file.
3585         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
3586         * tests/test-rmdir.c (main): Adjust caller.
3587         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
3588         (unlinker): New helper function.
3589         (rmdirat): Enhance check.
3590         * modules/rmdir-tests (Depends-on): Add stdbool.
3591         * modules/unlink-tests (Depends-on): Likewise.
3592         (Files): Add test-unlink.h.
3593         * modules/openat-tests (Files): Likewise.
3594         (Depends-on): Add unlinkdir.
3595
3596         test-fstatat: new test, to expose Solaris 9 bugs
3597         * tests/test-stat.c (main): Factor guts...
3598         * tests/test-stat.h (test_stat_func): ...into new file.
3599         * tests/test-lstat.c (main): Factor guts...
3600         * tests/test-lstat.h (test_lstat_func): ...into new file.
3601         * tests/test-fstatat.c: New file.
3602         * modules/stat-tests (Files): Add test-stat.h.
3603         * modules/lstat-tests (Files): Add test-lstat.h.
3604         (Depends-on): Add stdbool.
3605         * modules/openat-tests (Depends-on): Add pathmax.
3606         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
3607         (Makefile.am): Run new test.
3608
3609         remove: new module, for mingw and Solaris 9 bugs
3610         * modules/remove: New file.
3611         * lib/remove.c: Likewise.
3612         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
3613         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3614         * modules/stdio (Makefile.am): Use them.
3615         * lib/stdio.in.h (remove): Declare replacement.
3616         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3617         * doc/posix-functions/remove.texi (remove): Likewise.
3618         * modules/remove-tests: New test.
3619         * tests/test-remove.c: Likewise.
3620
3621         unlink: new module, for Solaris 9 bug
3622         * modules/unlink: New file.
3623         * lib/unlink.c: Likewise.
3624         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
3625         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3626         * modules/unistd (Makefile.am): Use them.
3627         * lib/unistd.in.h (stat): Declare replacement.
3628         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3629         * doc/posix-functions/unlink.texi (unlink): Likewise.
3630         * modules/unlink-tests: New test.
3631         * tests/test-unlink.c: Likewise.
3632
3633         lstat: fix Solaris 9 bug
3634         * lib/lstat.c (lstat): Also check for trailing slash on
3635         non-symlink, non-directories.  Use stat module to simplify logic.
3636         * doc/posix-functions/lstat.texi (lstat): Document it.
3637         * modules/lstat-tests (Depends-on): Add errno, same-inode.
3638         (configure.ac): Check for symlink.
3639         * tests/test-lstat.c (main): Add more tests.
3640
3641         stat: add as dependency to other modules
3642         * modules/chown (Depends-on): Add stat.
3643         * modules/euidaccess (Depends-on): Likewise.
3644         * modules/fchdir (Depends-on): Likewise.
3645         * modules/isdir (Depends-on): Likewise.
3646         * modules/link (Depends-on): Likewise.
3647         * modules/lstat (Depends-on): Likewise.
3648         * modules/mkdir-p (Depends-on): Likewise.
3649         * modules/modechange (Depends-on): Likewise.
3650         * modules/open (Depends-on): Likewise.
3651         * modules/readlink (Depends-on): Likewise.
3652         * modules/same (Depends-on): Likewise.
3653
3654         stat: fix Solaris 9 bug
3655         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
3656         slash.
3657         * lib/stat.c (rpl_stat): Work around it.
3658         * doc/posix-functions/stat.texi (stat): Update documentation.
3659
3660         stat: new module, for mingw bug
3661         * modules/stat: New file.
3662         * lib/stat.c: Likewise.
3663         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
3664         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
3665         * modules/sys_stat (Makefile.am): Use them.
3666         * lib/sys_stat.in.h (stat): Declare replacement.
3667         * lib/openat.c (fstatat): Deal with lstat and stat being function
3668         macros.
3669         * modules/openat (Depends-on): Add inline.
3670         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3671         * doc/posix-functions/stat.texi (stat): Likewise.
3672         * modules/stat-tests: New test.
3673         * tests/test-stat.c: Likewise.
3674
3675 2009-09-19  Jim Meyering  <meyering@redhat.com>
3676
3677         syntax-check: detect unnecessary inclusion of canonicalize.h
3678         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
3679
3680 2009-09-19  Eric Blake  <ebb9@byu.net>
3681
3682         canonicalize-lgpl: adjust clients to use correct header
3683         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3684         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
3685         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
3686         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
3687         * lib/progreloc.c (includes): Likewise.
3688
3689 2009-09-19  Jim Meyering  <meyering@redhat.com>
3690
3691         test-posixtm.c: correct a comment
3692         * tests/test-posixtm.c: Correct first-line comment.
3693         Spotted by Eric Blake.
3694
3695 2009-09-16  Jim Meyering  <meyering@redhat.com>
3696
3697         posixtm-tests: make T const-correct; add a test case
3698         * tests/test-posixtm.c (T): Declare const.
3699         Add a test for -(2^31+1).
3700         Remove useless can-succeed-only-in-2002 test.
3701
3702         posixtm-tests: adjust the sole failing test
3703         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
3704         expected output matches what mktime now produces.  Cross-checked via
3705         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
3706
3707         posixtm: move #ifdef'd tests into a new module
3708         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
3709         * tests/test-posixtm.c: ... this new file.
3710         * modules/posixtm-tests: New module.
3711
3712 2009-09-19  Eric Blake  <ebb9@byu.net>
3713
3714         openat: simplify use of at-func.c
3715         * lib/at-func.c (includes): Include prerequisites here, to
3716         simplify requirements on client files.
3717         * lib/openat-priv.h: Add double-inclusion guard.
3718         * lib/faccessat.c (includes): Simplify.
3719         * lib/fchmodat.c (includes): Likewise.
3720         * lib/fchownat.c (includes): Likewise.
3721         * lib/mkdirat.c (includes): Likewise.
3722         * lib/mkfifoat.c (includes): Likewise.
3723         * lib/symlinkat.c (includes): Likewise.
3724
3725         openat: allow return of fd 0
3726         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
3727         * modules/save-cwd (Depends-on): Replace fcntl-safer with
3728         unistd-safer.
3729         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
3730         <fcntl.h>; this module does not leak fds.
3731         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
3732         must be allowed to return 0, leaving openat_safer to add the
3733         safety.
3734         (openat_permissive): Avoid writing to just-opened fd 2 if
3735         restoring the current directory fails.
3736         * lib/openat-die.c (openat_restore_fail): Add comment.
3737         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
3738         (save_cwd): Guarantee safe fd, but without use of open_safer.
3739         * tests/test-openat.c: New test.
3740         * modules/openat-tests (Files, Makefile.am): Distribute and build
3741         new file.
3742
3743         relocatable-prog-wrapper: fix build
3744         * modules/relocatable-prog-wrapper (Files): Update name of
3745         canonicalize m4 file, broken on 2009-09-17.
3746         Reported by emad hajjar <aleppos@hotmail.com>.
3747
3748 2009-09-19  Bruno Haible  <bruno@clisp.org>
3749
3750         * lib/safe-alloc.h: Use the standard header with GPL copyright.
3751         * lib/safe-alloc.c: Likewise.
3752         Reported by Ian Beckwith <ianb@erislabs.net>.
3753
3754 2009-09-18  Bruno Haible  <bruno@clisp.org>
3755
3756         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
3757         Reported by <erobles@sensacd.com.mx>.
3758
3759 2009-09-17  Eric Blake  <ebb9@byu.net>
3760
3761         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
3762         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
3763         slashes when checking if last component is missing.
3764         * tests/test-canonicalize.c (main): Test this.
3765
3766         canonicalize, canonicalize-lgpl: honor // if distinct from /
3767         * modules/canonicalize (Files): Add double-slash-root.m4.
3768         * modules/canonicalize-lgpl (Files): Likewise.
3769         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3770         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
3771         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
3772         fallback definition.
3773         (canonicalize_filename_mode): Use it to protect //.
3774         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
3775         (__realpath): Likewise.
3776         * tests/test-canonicalize.c (main): Test this.
3777         * tests/test-canonicalize-lgpl.c (main): Likewise.
3778         * modules/canonicalize-tests (Depends-on): Add same-inode.
3779         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3780
3781         canonicalize-lgpl: fix glibc bug with trailing slash
3782         * m4/canonicalize-lgpl.m4: Move contents...
3783         * m4/canonicalize.m4: ...here.
3784         (gl_CANONICALIZE_LGPL): Factor realpath check...
3785         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
3786         glibc 2.3.5 bug, fixed 2005-04-27.
3787         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
3788         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
3789         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
3790         * modules/canonicalize-lgpl (Files): Manage file rename.
3791         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3792         * modules/stdlib (Makefile.am): Substitute witness.
3793         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
3794         is needed.
3795         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
3796         replacement is required.
3797         * lib/canonicalize.c (canonicalize_file_name): Likewise.
3798         * doc/glibc-functions/canonicalize_file_name.texi
3799         (canonicalize_file_name): Document this.
3800         * doc/posix-functions/realpath.texi (realpath): Likewise.
3801
3802         canonicalize-lgpl: reject non-directory with trailing slash
3803         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
3804         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
3805         catches failures in glibc 2.3.5.
3806         * tests/test-canonicalize.c (main): Likewise.
3807
3808         canonicalize-lgpl: use native realpath if it works
3809         * lib/canonicalize-lgpl.c (realpath): Guard with
3810         FUNC_REALPATH_WORKS.
3811         * lib/stdlib.in.h (realpath): Make declaration optional based on
3812         HAVE_REALPATH.
3813         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
3814         native realpath works.
3815         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3816         * modules/stdlib (Makefile.am): Substitute witness.
3817
3818         canonicalize, canonicalize-lgpl: use <stdlib.h>
3819         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
3820         (Include): Mention <stdlib.h>.
3821         (configure.ac): Mention functions we provide.
3822         * modules/canonicalize (configure.ac): Likewise.
3823         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
3824         realpath if canonicalize_file_name is missing.
3825         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
3826         * modules/stdlib (Makefile.am): Substitute witnesses.
3827         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
3828         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
3829         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
3830         * NEWS: Document this.
3831         * doc/glibc-functions/canonicalize_file_name.texi
3832         (canonicalize_file_name): Likewise.
3833         * doc/posix-functions/realpath.texi (realpath): Likewise.
3834         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
3835
3836         test-canonicalize: consolidate into single C program
3837         * tests/test-canonicalize.sh: Delete; move setup into...
3838         * tests/test-canonicalize.c (main): ...the program, making it
3839         easier to run in debugger.  Add some tests.
3840         * modules/canonicalize-tests (Files): Remove unused file.
3841         (Depends-on): Add progname.
3842         (configure.ac, Makefile.am): Simplify.
3843
3844         test-canonicalize-lgpl: consolidate into single C program
3845         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
3846         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
3847         easier to run in debugger.  Add some tests.
3848         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
3849         (configure.ac, Makefile.am): Simplify.
3850
3851         canonicalize: avoid resolvepath
3852         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
3853         unnecessary checks.
3854         * lib/canonicalize.c (includes): Simplify.
3855         (canonicalize_file_name): Drop resolvepath implementation.
3856         * modules/canonicalize (Depends-on): Drop filenamecat.
3857
3858         canonicalize: don't lose errno
3859         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
3860         over calls to free.
3861
3862         canonicalize: simplify errno handling
3863         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
3864         assignment.
3865
3866         canonicalize, canonicalize-lgpl: update module dependencies
3867         * modules/canonicalize (Depends-on): Add extensions, lstat,
3868         pathmax, stdlib.
3869         (Files): Drop pathmax.h.
3870         (configure.ac): Adjust macro name.
3871         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
3872         lstat, stdlib, sys_stat.
3873         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
3874         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
3875         extensions.
3876         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
3877         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
3878         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
3879         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
3880         declaration, if available.
3881         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
3882         we can rely on the readlink module.
3883         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
3884         (includes): Use <unistd.h> unconditionally.
3885
3886 2009-09-17  Eric Blake  <ebb9@byu.net>
3887
3888         maint: make Include sections of modules consistent
3889         * modules/alloca: Use only header name; no need to list #include.
3890         * modules/alloca-opt: Likewise.
3891         * modules/arpa_inet: Likewise.
3892         * modules/canon-host: Likewise.
3893         * modules/configmake: Likewise.
3894         * modules/dirent: Likewise.
3895         * modules/eealloc: Likewise.
3896         * modules/environ: Likewise.
3897         * modules/fchdir: Likewise.
3898         * modules/fcntl: Likewise.
3899         * modules/fcntl-h: Likewise.
3900         * modules/gethrxtime: Likewise.
3901         * modules/gettime: Likewise.
3902         * modules/ignore-value: Likewise.
3903         * modules/inet_ntop: Likewise.
3904         * modules/inet_pton: Likewise.
3905         * modules/inttypes: Likewise.
3906         * modules/isnand-nolibm: Likewise.
3907         * modules/isnanf-nolibm: Likewise.
3908         * modules/mbchar: Likewise.
3909         * modules/mbfile: Likewise.
3910         * modules/mbiter: Likewise.
3911         * modules/mbuiter: Likewise.
3912         * modules/netdb: Likewise.
3913         * modules/netinet_in: Likewise.
3914         * modules/nproc: Likewise.
3915         * modules/pagealign_alloc: Likewise.
3916         * modules/poll: Likewise.
3917         * modules/printf-frexp: Likewise.
3918         * modules/pthread: Likewise.
3919         * modules/putenv: Likewise.
3920         * modules/random_r: Likewise.
3921         * modules/relocatable-prog: Likewise.
3922         * modules/search: Likewise.
3923         * modules/select: Likewise.
3924         * modules/selinux-h: Likewise.
3925         * modules/settime: Likewise.
3926         * modules/signal: Likewise.
3927         * modules/size_max: Likewise.
3928         * modules/socklen: Likewise.
3929         * modules/ssize_t: Likewise.
3930         * modules/stdarg: Likewise.
3931         * modules/stdbool: Likewise.
3932         * modules/stddef: Likewise.
3933         * modules/stdint: Likewise.
3934         * modules/stdio: Likewise.
3935         * modules/stdlib: Likewise.
3936         * modules/string: Likewise.
3937         * modules/strings: Likewise.
3938         * modules/sys_file: Likewise.
3939         * modules/sys_ioctl: Likewise.
3940         * modules/sys_select: Likewise.
3941         * modules/sys_socket: Likewise.
3942         * modules/sys_stat: Likewise.
3943         * modules/sys_time: Likewise.
3944         * modules/sys_times: Likewise.
3945         * modules/sys_utsname: Likewise.
3946         * modules/sys_wait: Likewise.
3947         * modules/sysexits: Likewise.
3948         * modules/time: Likewise.
3949         * modules/times: Likewise.
3950         * modules/tmpfile: Likewise.
3951         * modules/trim: Likewise.
3952         * modules/unistd: Likewise.
3953         * modules/wchar: Likewise.
3954         * modules/wctype: Likewise.
3955
3956 2009-09-17  Bruno Haible  <bruno@clisp.org>
3957
3958         Make getdate.y compile on QNX and NetBSD 5 / i386.
3959         * m4/getdate.m4 (gl_GETDATE): Conditionally define
3960         TIME_T_FITS_IN_LONG_INT.
3961         * lib/getdate.y (long_time_t): New type.
3962         (relative_time): Change type of 'seconds' field to long_time_t.
3963         (get_date): Update types of local variables. Check against overflow
3964         during conversion from long_time_t to time_t.
3965         Reported by Matt Kraai <kraai@ftbfs.org>
3966         and Hasso Tepper <hasso@netbsd.org>.
3967
3968 2009-09-17  Bruno Haible  <bruno@clisp.org>
3969
3970         * modules/COPYING: Update copyright years.
3971         * modules/README: Likeiwse.
3972         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
3973         Reported by Ian Beckwith <ianb@erislabs.net>.
3974
3975 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3976
3977         * users.txt: Update references for gnuit package.
3978
3979 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3980
3981         * m4/getdelim.m4: Fix typo in copyright line.
3982
3983 2009-09-17  Bruno Haible  <bruno@clisp.org>
3984
3985         * lib/atoll.c: Use the standard header with GPL copyright.
3986         * lib/argz.in.h: Likewise.
3987         * lib/glob.c: Likewise.
3988         * lib/glob-libc.h: Likewise.
3989         * lib/random_r.c: Likewise.
3990         * lib/siglist.h: Likewise.
3991         * lib/strsignal.c: Likewise.
3992         Reported by Ian Beckwith <ianb@erislabs.net>.
3993
3994 2009-09-17  Eric Blake  <ebb9@byu.net>
3995
3996         rmdir: ensure correct dependency order
3997         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
3998
3999 2009-09-17  Bruno Haible  <bruno@clisp.org>
4000
4001         Disable assertion that fails on NetBSD 5 / i386.
4002         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
4003         Reported by Sam Steingold <sds@gnu.org>
4004         and Hasso Tepper <hasso@netbsd.org>.
4005
4006 2009-09-16  Eric Blake  <ebb9@byu.net>
4007
4008         unlinkdir: port to mingw
4009         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
4010         on which no one can unlink a directory.
4011
4012         stdlib: sort witness names
4013         * modules/stdlib (Makefile.am): Sort replacements.
4014         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
4015         * lib/stdlib.in.h: Likewise.
4016
4017         parse-duration-tests: avoid link failure
4018         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
4019         LIBINTL.
4020         Reported by Tom G. Christensen.
4021
4022         openat-tests: ensure unlinkat behaves like rmdir
4023         * tests/test-rmdir.c (main): Factor guts...
4024         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
4025         * modules/rmdir-tests (Files): Ship new file.
4026         * modules/openat-tests: New test.
4027         * tests/test-unlinkat.c: Likewise.
4028
4029         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
4030         * modules/rmdir-errno (Status, Notice): Now obsolete.
4031
4032         rmdir: work around cygwin 1.5.x and mingw bugs
4033         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
4034         * lib/rmdir.c (rmdir): Work around it.
4035         * modules/rmdir (Status, Notice): No longer obsolete.
4036         (Files): Add dos.m4.
4037         (Depends-on): Add unistd.
4038         (configure.ac): Set witnesses.
4039         (License): Relax to LGPLv2+.
4040         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
4041         * modules/unistd (Makefile.am): Substitute witnesses.
4042         * lib/unistd.in.h (rmdir): Declare replacement.
4043         * doc/posix-functions/rmdir.texi (rmdir): Document this.
4044         * modules/rmdir-tests: New tests.
4045         * tests/test-rmdir.c: Likewise.
4046
4047 2009-09-15  Eric Blake  <ebb9@byu.net>
4048
4049         fchdir: improve use of replacement functions
4050         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
4051         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
4052         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
4053         REPLACE_CLOSEDIR.
4054         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
4055         * modules/sys_stat (Makefile.am): Substitute correct witness.
4056         * modules/dirent (Makefile.am): Likewise.
4057         * modules/unistd (Makefile.am): Likewise.
4058         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
4059         * lib/unistd.in.h (dup): Likewise.
4060         * lib/sys_stat.in.h (fstat): Likewise.
4061
4062         maint: ignore gnulib-tool temp files
4063         * .gitignore: Ignore files created during gnulib-tool --test.
4064
4065 2009-09-13  Jim Meyering  <meyering@redhat.com>
4066
4067         posixtm: don't reject a time that specify "60" as the number of seconds
4068         * lib/posixtm.c (posixtime): The code to reject invalid dates
4069         would also reject a time specified with the .60 suffix.
4070         But POSIX allows that, in order to accommodate leap seconds.
4071         So don't reject it.
4072         (main): Adjust tests accordingly.
4073         * modules/posixtm (Depends-on): Add stpcpy.
4074
4075 2009-09-11  Jim Meyering  <meyering@redhat.com>
4076
4077         announce-gen: include [$release_type] in emitted Subject:
4078         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
4079         e.g., [stable] in the emitted Subject: line.
4080
4081 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4082
4083         Remove obsolete macros from several modules.
4084         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
4085         obsolete Autoconf macros with their modern counterparts.
4086         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
4087         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
4088         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
4089         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4090         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
4091         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
4092         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
4093         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
4094         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
4095         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
4096         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
4097         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
4098         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
4099         * m4/sockets.m4 (gl_SOCKETS): Likewise.
4100         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
4101         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
4102         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
4103         * m4/time_r.m4 (gl_TIME_R): Likewise.
4104         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
4105         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
4106         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
4107
4108         Fix copyright header in build-aux scripts.
4109         * build-aux/git-version-gen: Fix copyright header to match GPLv3
4110         recommendation.
4111         * build-aux/ncftpput-ftp: Likewise.
4112         * build-aux/update-copyright: Likewise.
4113
4114 2009-09-09  Eric Blake  <ebb9@byu.net>
4115
4116         test-link: allow Linux choice of errno
4117         * tests/test-link.c (main): Relax test for alternate error.
4118
4119         strndup: fix improper m4 caching
4120         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
4121         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
4122         (gl_PREREQ_STRNDUP): Delete.
4123         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
4124         * modules/string (Makefile.am): Substitute it.
4125         * lib/string.in.h (strndup): Modernize prototype.
4126
4127         getcwd: port to mingw
4128         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
4129         different from the POSIX assumptions made throughout the getcwd
4130         module; fortunately, the mingw getcwd does not need replacement.
4131         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
4132         * modules/getcwd-tests: New test.
4133         * tests/test-getcwd.c: Likewise.
4134
4135         link: fix platform bugs
4136         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
4137         * lib/link.c (link): Work around them.  Fix related mingw bug.
4138         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
4139         * modules/unistd (Makefile.am): Substitute it.
4140         * lib/unistd.in.h (link): Declare replacement.
4141         * doc/posix-functions/link.texi (link): Document this.
4142         * modules/link (Depends-on): Add strdup-posix, sys_stat.
4143
4144         test-link: consolidate into single C program, test more cases
4145         * tests/test-link.sh: Delete.
4146         * tests/test-link.c: Test more error conditions.  Exposes bugs on
4147         at least Cygwin and Solaris.
4148         * modules/link-tests (Files): Remove unused file.
4149         (Depends-on): Add errno, sys_stat.
4150         (Makefile.am): Simplify.
4151
4152 2009-09-08  Bruno Haible  <bruno@clisp.org>
4153
4154         Work around towlower, towupper bug on mingw.
4155         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
4156         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
4157         * doc/posix-functions/towlower.texi: Mention the mingw bug.
4158         * doc/posix-functions/towupper.texi: Likewise.
4159         Reported by Eric Blake.
4160
4161 2009-09-08  Jim Meyering  <meyering@redhat.com>
4162
4163         build: don't try to run autoheader if we don't use it
4164         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
4165         is not used in configure.ac.
4166
4167 2009-09-08  Eric Blake  <ebb9@byu.net>
4168
4169         euidaccess: fix compilation error
4170         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
4171
4172         rawmemchr: relax license
4173         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
4174         okay.
4175         Reported by Jim Meyering.
4176
4177         mkfifoat: new module
4178         * modules/mkfifoat: New file.
4179         * lib/mkfifoat.c: Likewise.
4180         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
4181         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
4182         * modules/sys_stat (Makefile.am): Use them.
4183         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
4184         * MODULES.html.sh (File system functions): Mention module.
4185         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
4186         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
4187         * modules/mkfifoat-tests: New test.
4188         * tests/test-mkfifoat.c: Likewise.
4189
4190         strchrnul: relax license
4191         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
4192         okay.
4193         Reported by Jim Meyering.
4194
4195 2009-09-08  Eric Blake  <ebb9@byu.net>
4196
4197         fstatat: fix compilation on Solaris
4198         * lib/fstatat.c (includes): Add fcntl.h.
4199         Reported by Pádraig Brady.
4200
4201 2009-09-07  Eric Blake  <ebb9@byu.net>
4202
4203         rename: modernize replacement
4204         * modules/rename (Depends-on): Add stdio.
4205         (configure.ac): Declare witness.
4206         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
4207         stdio take care of replacement.
4208         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
4209         * modules/stdio (Makefile.am): Substitute them.
4210         * lib/stdio.in.h (rename): Declare replacement.
4211         * lib/rename.c (includes): Allow cross-compilation to non-windows
4212         machines.
4213         * doc/posix-functions/rename.texi (rename): Improve
4214         documentation.
4215
4216         stdio: sort witness names
4217         * modules/stdio (Makefile.am): Sort replacements.
4218         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
4219         * lib/stdio.in.h: Likewise.
4220
4221         getcwd: minor cleanups
4222         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
4223         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
4224
4225         openat: provide more convenience names
4226         * modules/faccessat (configure.ac): Add C witness.
4227         * lib/unistd.in.h (readlinkat): Fix typo.
4228         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
4229         convenience wrappers.
4230         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
4231         wrappers in syntax checks.
4232
4233 2009-09-06  Eric Blake  <ebb9@byu.net>
4234
4235         doc: fix comments in recent patches
4236         * lib/faccessat.c: Mention correct function.
4237         * lib/fchmodat.c: Likewise.
4238         * lib/fchownat.c: Likewise.
4239         * lib/symlinkat.c: Likewise.
4240         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
4241         constants.
4242
4243         faccessat, symlinkat: continue cleanup of previous patch
4244         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
4245         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4246         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
4247         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
4248         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
4249         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
4250         set.
4251
4252 2009-09-06  Bruno Haible  <bruno@clisp.org>
4253
4254         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
4255         (fstatat): Declare if GNULIB_FSTATAT is set.
4256         (mkdirat): Declare if GNULIB_MKDIRAT is set.
4257         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
4258         (unlinkat): Declare if GNULIB_UNLINKAT is set.
4259         * modules/fcntl-h (Files): Remove m4/openat.m4.
4260         * modules/sys_stat (Files): Remove m4/openat.m4.
4261         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
4262         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
4263         * modules/unistd (Files): Remove m4/openat.m4.
4264         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
4265         GNULIB_OPENAT.
4266         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
4267         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
4268         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
4269         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
4270         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
4271         gl_OPENAT_DEFAULTS.
4272         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
4273         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
4274         Don't require gl_OPENAT_DEFAULTS.
4275         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
4276         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
4277         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
4278         (gl_OPENAT_DEFAULTS): Remove macro.
4279
4280 2009-09-06  Bruno Haible  <bruno@clisp.org>
4281
4282         * modules/openat (configure.ac): Remove unneeded witness.
4283
4284 2009-09-06  Bruno Haible  <bruno@clisp.org>
4285
4286         Set errno to ENOSYS when a function is entirely unsupported.
4287         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
4288         EOPNOTSUPP.
4289         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4290         * modules/chown (Depends-on): Remove errno.
4291
4292 2009-09-06  Bruno Haible  <bruno@clisp.org>
4293
4294         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
4295
4296 2009-09-06  Bruno Haible  <bruno@clisp.org>
4297
4298         * lib/sys_stat.in.h: Fix preprocessor command indentation.
4299
4300 2009-09-06  Ben Pfaff  <blp@gnu.org>
4301             Bruno Haible  <bruno@clisp.org>
4302
4303         Work around a glibc bug in strtok_r.
4304         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
4305         Undefine if UNDEFINE_STRTOK_R is set.
4306         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
4307         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4308         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
4309         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
4310         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
4311         UNDEFINE_STRTOK_R.
4312         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
4313
4314 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
4315
4316         exclude: minor fix
4317         * lib/exclude.c: Include wctype.h
4318
4319 2009-09-06  Akim Demaille  <demaille@gostai.com>
4320
4321         bootstrap: improve error message
4322         * build-aux/bootstrap (find_tool): Upon failure, report the list
4323         of candidates.
4324         Honor the initial value of the envvar.
4325
4326 2009-09-05  Eric Blake  <ebb9@byu.net>
4327
4328         symlinkat: new module
4329         * modules/symlinkat: New file.
4330         * lib/symlinkat.c: Likewise.
4331         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
4332         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
4333         * modules/unistd (Makefile.am): Use them.
4334         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
4335         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
4336         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
4337         * MODULES.html.sh (File system functions): Mention module.
4338         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
4339         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
4340         * modules/symlinkat-tests: New test.
4341         * tests/test-symlinkat.c: Likewise.
4342
4343         test-openat-safer: add more checks
4344         * tests/test-openat-safer.c (main): Check more code paths.
4345
4346 2009-09-05  Jim Meyering  <meyering@redhat.com>
4347
4348         syntax-check: detect unnecessary inclusion of openat.h
4349         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
4350
4351 2009-09-05  Bruno Haible  <bruno@clisp.org>
4352
4353         Support towlower, towupper.
4354         * doc/posix-functions/towlower.texi: Mention module wctype.
4355         * doc/posix-functions/towupper.texi: Likewise.
4356         * lib/wctype.in.h (towlower, towupper): New functions.
4357         * tests/test-wctype.c: Include stdio.h, stdlib.h.
4358         (ASSERT): New macro.
4359         (e): New variable.
4360         (main): Test also towlower, towupper. Test WEOF argument.
4361         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
4362
4363 2009-09-05  Bruno Haible  <bruno@clisp.org>
4364
4365         Fix conversion behaviour when the input is invalid.
4366         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
4367         mark occurring in first pass of indirect conversion.
4368         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
4369         input.
4370         Found by clang's static analyzer.
4371
4372 2009-09-05  Bruno Haible  <bruno@clisp.org>
4373
4374         * tests/test-striconveh.c (main): Test indirect conversion on platforms
4375         where direct conversion is possible.
4376
4377 2009-09-04  Eric Blake  <ebb9@byu.net>
4378
4379         openat: fail with ENOENT on empty name
4380         * lib/openat-proc.c (openat_proc_name): Special-case the empty
4381         buffer.
4382
4383         link-follow: fix logic bug in prior patch
4384         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
4385         reversed sense of yes and no in prior patch.  Avoid confusing
4386         compilation failure with desired semantics.
4387
4388         link-follow: accomodate mingw and cross-compilation
4389         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
4390         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
4391         cross-compilation results to -1, to make linkat easier to
4392         implement when cross-compiling.  Trivially support mingw.
4393         * modules/link-follow (configure.ac): Call new name.
4394         * NEWS: Mention this.
4395
4396 2009-09-03  Eric Blake  <ebb9@byu.net>
4397
4398         faccessat: compile replacement
4399         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
4400         needed.
4401
4402         fts: fix compilation error
4403         * lib/fts.c (includes): Re-add "openat.h", for
4404         openat_needs_fchdir.
4405
4406         faccessat: new module
4407         * modules/faccessat: New file.
4408         * lib/faccessat.c: Likewise.
4409         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4410         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
4411         * modules/unistd (Makefile.am): Use it.
4412         * lib/unistd.in.h (faccessat): Declare it.
4413         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
4414         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
4415         * MODULES.html.sh (File system functions): Mention it.
4416         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
4417         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
4418
4419         euidaccess: prefer POSIX over non-standard implementation
4420         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
4421         * lib/euidaccess.c (euidaccess): Use it if available.
4422
4423         openat: make template easier to use
4424         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
4425         AT_FUNC_F2 to be undefined.
4426         (VALIDATE_FLAG): New macro; use it to reject bad flags.
4427         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
4428         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
4429         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
4430         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
4431         Likewise.
4432         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
4433         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
4434         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
4435         Likewise.
4436
4437         openat: declare in POSIX headers
4438         * NEWS: Mention this.
4439         * modules/openat (configure.ac): Declare witnesses.
4440         (Depends-on): Add fcntl-h, sys_stat, unistd.
4441         (Include): Mention correct headers.
4442         * modules/fcntl-h (Depends-on): Add link-warning.
4443         (Files): Add openat.m4.
4444         (Makefile.am): Substitute witnesses.
4445         * modules/sys_stat (Files, Makefile.am): Likewise.
4446         * modules/unistd (Files, Makefile.am): Likewise.
4447         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
4448         (gl_OPENAT_DEFAULTS): New macro.
4449         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
4450         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
4451         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
4452         (SYS_STAT_H): Remove unused variable.
4453         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
4454         * lib/fcntl--.h (includes): Remove unneeded header.
4455         * lib/openat-safer.c (includes): Likewise.
4456         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
4457         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
4458         appropriate headers.
4459         (__OPENAT_PREFIX): Delete.
4460         * lib/fcntl.in.h (openat): Provide declaration.
4461         (AT_FDCWD): Fix Solaris bug.
4462         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
4463         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
4464         * lib/fchmodat.c (includes):  Adjust to find declaration.
4465         * lib/fchownat.c (includes): Likewise.
4466         * lib/mkdirat.c (includes): Likewise.
4467         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
4468         still visible.
4469
4470 2009-09-02  Eric Blake  <ebb9@byu.net>
4471
4472         errno: use consistently
4473         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
4474         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
4475         * lib/canonicalize.c (ELOOP): Likewise.
4476         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
4477         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
4478         * lib/lchown.c (EOPNOTSUPP): Likewise.
4479         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
4480         * lib/savewd.c (ESTALE): Likewise.
4481         * lib/settime.c (ENOSYS): Likewise.
4482         * lib/utimens.c (ENOSYS): Likewise.
4483         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
4484         * lib/chdir-safer.c (ELOOP): Likewise.
4485         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
4486         * modules/c-stack (Depends-on): Add errno.
4487         * modules/canonicalize (Depends-on): Likewise.
4488         * modules/chdir-safer (Depends-on): Likewise.
4489         * modules/fdopendir (Depends-on): Likewise.
4490         * modules/inet_ntop (Depends-on): Likewise.
4491         * modules/inet_pton (Depends-on): Likewise.
4492         * modules/lchown (Depends-on): Likewise.
4493         * modules/openat (Depends-on): Likewise.
4494         * modules/savewd (Depends-on): Likewise.
4495         * modules/settime (Depends-on): Likewise.
4496         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
4497
4498         fts: avoid leaking fds
4499         * modules/fts (Depends-on): Add cloexec.
4500         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
4501         flag.
4502
4503         fts: make directory fds more robust
4504         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
4505         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
4506
4507         backupfile, chdir-long, fts, savedir: make safer
4508         * lib/backupfile.c (includes): Use "dirent--.h", since
4509         numbered_backup can write to stderr during readdir.
4510         * lib/savedir.c (includes): Likewise.
4511         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
4512         emulation can write to stderr on failure.
4513         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
4514         * lib/getcwd.c: Document why opendir_safer is unused.
4515         * lib/glob.c: Likewise.
4516         * lib/scandir.c: Likewise.
4517         * lib/openat-proc.c: Likewise, for open_safer.
4518         * modules/backupfile (Depends-on): Add dirent-safer.
4519         * modules/savedir (Depends-on): Likewise.
4520         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
4521         * modules/chdir-long (Depends-on): Add openat-safer.
4522
4523         openat-safer: new module
4524         * modules/openat-safer: New file.
4525         * lib/openat-safer.c: Likewise.
4526         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
4527         * lib/fcntl-safer.h (openat_safer): Declare.
4528         * lib/fcntl--.h (openat): Override.
4529         * MODULES.html.sh (File descriptor based I/O): Mention it.
4530         * lib/openat.h: Add double-inclusion guards.
4531         * lib/openat.c (includes): Only include "fcntl-safer.h", not
4532         "fcntl--.h", so we can implement openat.
4533         * modules/openat-safer-tests: New test.
4534         * tests/test-openat-safer.c: New file.
4535
4536         dirent-safer: new module
4537         * modules/dirent-safer: New file.
4538         * lib/dirent--.h: Likewise.
4539         * lib/dirent-safer.h: Likewise.
4540         * lib/opendir-safer.c: Likewise.
4541         * m4/dirent-safer.m4: Likewise.
4542         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
4543         * modules/dirent-safer-tests: New test.
4544         * tests/test-dirent-safer.c: New file.
4545         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
4546
4547         fdopendir: optimize on mingw
4548         * lib/unistd.in.h (_gl_directory_name): New prototype.
4549         * lib/fchdir.c (_gl_directory_name): Implement it.
4550         (fchdir): Use it to simplify implementation.
4551         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
4552         fchdir, when available, to avoid calling [f]chdir().
4553
4554         fdopendir: split into its own module
4555         * lib/openat.c (fdopendir): Move...
4556         * lib/fdopendir.c: ...into new file.
4557         * modules/fdopendir: New module.
4558         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
4559         * modules/openat (Depends-on): Add fdopendir.
4560         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
4561         fdopendir here.
4562         * modules/savedir (Depends-on): Only need fdopendir, not full
4563         openat.
4564         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
4565         * lib/openat.h (fdopendir): Drop prototype.
4566         * lib/dirent.in.h (fdopendir): Provide prototype.
4567         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
4568         * modules/dirent (Makefile.am): Substitute them.
4569         * MODULES.html.sh (File system functions): Mention it.
4570         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
4571         * modules/fdopendir-tests: New file.
4572         * tests/test-fdopendir.c: Likewise.
4573
4574         fchdir: use more consistent macro convention
4575         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
4576         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
4577         REPLACE_FCHDIR, rather than relying on config.h macros.
4578         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
4579         inside a single make-time REPLACE_FCHDIR block, rather than using
4580         the config.h FCHDIR_REPLACEMENT.
4581         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
4582         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
4583         Manage fstat replacement.
4584         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
4585         REPLACE_FCHDIR.
4586         * modules/sys_stat (Files): Add m4/unistd_h.m4.
4587         (Makefile.am): Substitute REPLACE_FCHDIR.
4588         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
4589         FCHDIR_REPLACEMENT.
4590         * lib/dup-safer.c (dup_safer): Likewise.
4591         * lib/dup2.c (rpl_dup2): Likewise.
4592         * lib/dup3.c (rpl_dup3): Likewise.
4593         * lib/open.c (rpl_open): Likewise.
4594
4595         fchdir: simplify error handling, and support dup3
4596         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
4597         stdbool, malloc-posix, realloc-posix.
4598         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
4599         (ensure_dirs_slot): Return false on allocation failure.
4600         (rpl_dup2): Delete.
4601         (_gl_register_dup): New function.
4602         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
4603         (_gl_register_fd): Close fd on allocation failure.
4604         * lib/fcntl.in.h (_gl_register_fd): Update signature.
4605         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
4606         prototype.
4607         (rpl_dup2_fchdir): Delete prototype.
4608         * lib/open.c (open): Update caller.
4609         * lib/dup2.c (dup2): Track fchdir metadata.
4610         * lib/dup3.c (dup3): Likewise.
4611         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
4612         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
4613
4614 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4615
4616         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
4617         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
4618         don't pass arguments to AC_OUTPUT.
4619
4620 2009-09-02  Bruno Haible  <bruno@clisp.org>
4621
4622         * modules/mkdtemp (License): Relicense under LGPLv2+.
4623         Reported by Paolo Bonzini.
4624
4625 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4626
4627         Replace uses of obsolete autoconf macros in Jim's modules.
4628         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
4629         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
4630         can evoke a warning from autoconf when run with -Wobsolete
4631         enabled.  They were declared obsolete for good reasons (see
4632         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
4633         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
4634         should not continue using the deprecated macros.
4635         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
4636         obsolete Autoconf macros with modern counterparts.
4637         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
4638         * m4/dos.m4 (gl_AC_DOS): Likewise.
4639         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
4640         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
4641         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
4642         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
4643         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
4644         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
4645         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
4646         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
4647         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4648         Likewise.
4649         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
4650         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
4651         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
4652         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
4653         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
4654         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
4655
4656 2009-09-01  Eric Blake  <ebb9@byu.net>
4657
4658         fchdir: fix off-by-one bug in previous patch
4659         * lib/fchdir.c (rpl_fstat): Use correct bounds.
4660         (_gl_unregister_fd): Delete useless if.
4661
4662 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
4663
4664         maint.mk: sort the list of syntax-check rules
4665         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
4666         easier to get a sense of progress when the rules are run sequentially
4667         and take a long time.
4668
4669 2009-09-01  Simon Josefsson  <simon@josefsson.org>
4670
4671         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
4672         * modules/netinet_in: Likewise.
4673         * modules/sys_file: Likewise.
4674         * modules/sys_ioctl: Likewise.
4675         * modules/sys_select: Likewise.
4676         * modules/sys_socket: Likewise.
4677         * modules/sys_stat: Likewise.
4678         * modules/sys_time: Likewise.
4679         * modules/sys_times: Likewise.
4680         * modules/sys_utsname: Likewise.
4681         * modules/sys_wait: Likewise.
4682
4683 2009-09-01  Jim Meyering  <meyering@redhat.com>
4684
4685         fts: help ensure that return values are not ignored
4686         * lib/fts_.h (__GNUC_PREREQ): Define.
4687         (__attribute_warn_unused_result__): Define.
4688         (fts_children, fts_close, fts_open, fts_read): Declare with
4689         __attribute_warn_unused_result__.
4690
4691         fts: fts_close now fails also when closing a dir file descriptor fails
4692         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
4693         and propagate to caller, along with errno.
4694
4695         announce-gen: correct formatting in --help output
4696         * build-aux/announce-gen (usage): Move the one-line description in
4697         --help output "up", to where it belongs, just after Usage:.
4698
4699 2009-08-31  Eric Blake  <ebb9@byu.net>
4700
4701         fchdir: port to mingw
4702         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
4703         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
4704         opened, then use a substitute.
4705         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
4706         replacement.
4707         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
4708         (_gl_register_fd): No need to check stat if open already filters
4709         all directories.
4710         (fchdir): Fix error condition to match POSIX.
4711         * modules/fchdir (Depends-on): Add sys_stat.
4712         * doc/posix-functions/open.texi (open): Document the limitation.
4713         * modules/fchdir-tests: New file.
4714         * tests/test-fchdir.c: Likewise.
4715
4716         canonicalize: allow cross-testing from cygwin to mingw
4717         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
4718         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
4719         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
4720         Likewise.
4721         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
4722         target does not support symlinks.
4723         * tests/test-canonicalize-lgpl.sh: Likewise.
4724
4725         chown: avoid compilation warning on mingw
4726         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
4727         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
4728         mingw.
4729         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4730         * modules/chown (Depends-on): Add errno.
4731
4732 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
4733
4734         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
4735         command.
4736
4737 2009-08-31  Jim Meyering  <meyering@redhat.com>
4738
4739         canonicalize: remove useless initialization
4740         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
4741         initialization of local, "end".
4742
4743 2009-08-30  Bruno Haible  <bruno@clisp.org>
4744
4745         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
4746         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
4747         ENOSYS.
4748
4749 2009-08-30  Bruno Haible  <bruno@clisp.org>
4750
4751         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
4752         /usr/xpg4/bin/tr when it exists.
4753         * tests/test-pipe-filter-gi1.sh: Likewise.
4754
4755 2009-08-30  Bruno Haible  <bruno@clisp.org>
4756
4757         Work around deficient /usr/bin/id program on Solaris.
4758         * tests/test-file-has-acl.sh (ID): New variable.
4759         * tests/test-set-mode-acl.sh (ID): Likewise.
4760         * tests/test-copy-acl.sh (ID): Likewise.
4761         * tests/test-copy-file.sh (ID): Likewise.
4762
4763 2009-08-30  Bruno Haible  <bruno@clisp.org>
4764
4765         New module 'xstriconveh'.
4766         * lib/xstriconveh.h: New file.
4767         * lib/xstriconveh.c: New file.
4768         * modules/xstriconveh: New file.
4769
4770 2009-08-30  Bruno Haible  <bruno@clisp.org>
4771
4772         Make it easier to use mem_cd_iconveh.
4773         * lib/striconveh.h (iconveh_t): New type.
4774         (iconveh_open, iconveh_close): New declarations.
4775         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
4776         with a single 'const iconveh_t *' argument.
4777         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
4778         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
4779         with a single 'const iconveh_t *' argument.
4780         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
4781         * tests/test-striconveh.c (main): Update.
4782         * NEWS: Mention the change.
4783
4784 2009-08-30  Bruno Haible  <bruno@clisp.org>
4785
4786         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
4787         problem.
4788
4789 2009-08-30  Bruno Haible  <bruno@clisp.org>
4790
4791         Work around iconv_open problem on Solaris.
4792         * lib/iconv_open-solaris.gperf: New file.
4793         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
4794         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
4795         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
4796         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
4797         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
4798         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
4799
4800 2009-08-29  Jim Meyering  <meyering@redhat.com>
4801
4802         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
4803         * top/maint.mk (cvs-check): Remove target; it was just an alias
4804         to the better-named vc-diff-check.
4805         (maintainer-distcheck): Remove rule.  It was used only from
4806         the (alpha/beta/major) target, and all of its commands but one
4807         were coreutils-specific.
4808         (vc-dist): Remove rule.
4809         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
4810         Run vc-diff-check, not vc-dist.
4811         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
4812
4813 2009-08-27  Bruno Haible  <bruno@clisp.org>
4814
4815         * tests/test-bitrotate.c (main): Remove test that uses a shift count
4816         of 0.
4817
4818 2009-08-27  Bruno Haible  <bruno@clisp.org>
4819
4820         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
4821         compilers.
4822         * doc/func.texi: Document the SunPRO C bug.
4823
4824 2009-08-27  Bruno Haible  <bruno@clisp.org>
4825
4826         Fix link error on Solaris.
4827         * tests/test-parse-duration.c (xstrdup): Remove function.
4828
4829 2009-08-26  Pádraig Brady  <P@draigbrady.com>
4830
4831         ignore-value: handle pointer types, too
4832         * lib/ignore-value.h (__attribute__): Remove definition.
4833         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
4834         of a more concise and more-often effective "(void) i" statement.
4835         (ignore_ptr): New function to suppress warnings from functions that
4836         return pointers, and to make it explicit that one function doesn't
4837         handle all cases.
4838
4839 2009-08-25  Bruno Haible  <bruno@clisp.org>
4840
4841         dup2: work around a Linux bug.
4842         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
4843         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
4844         * doc/posix-functions/dup2.texi: Mention the Linux bug.
4845         Reported by Simon Josefsson.
4846
4847 2009-08-25  Jim Meyering  <meyering@redhat.com>
4848
4849         libguestfs uses gnulib
4850         * users.txt: Add libguestfs.
4851
4852 2009-08-24  Eric Blake  <ebb9@byu.net>
4853
4854         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
4855         * lib/pipe2.c (includes): Add binary-io.h.
4856         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
4857
4858 2009-08-24  Bruno Haible  <bruno@clisp.org>
4859
4860         Tolerate declared but missing accept4 syscall.
4861         * lib/accept4.c (accept4): Invoke original accept4 function first, if
4862         available.
4863         * lib/sys_socket.in.h (accept4): If the function is already present,
4864         override it.
4865         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
4866         * modules/accept4 (Makefile.am): Compile accept4.c always.
4867         Reported by Paolo Bonzini and Eric Blake.
4868
4869 2009-08-23  Bruno Haible  <bruno@clisp.org>
4870
4871         New module 'accept4'.
4872         * lib/sys_socket.in.h (accept4): New declaration.
4873         * lib/accept4.c: New file.
4874         * m4/accept4.m4: New file.
4875         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
4876         GNULIB_ACCEPT4, HAVE_ACCEPT4.
4877         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
4878         HAVE_ACCEPT4.
4879         * modules/accept4: New file.
4880         * doc/glibc-functions/accept4.texi: Mention the new module.
4881
4882 2009-08-24  Jim Meyering  <meyering@redhat.com>
4883
4884         progname: also set global program_invocation_name, when possible
4885         Before this change, a libtool-enabled program that calls glibc's
4886         error function would report the program name as
4887         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
4888         * modules/progname (configure.ac): Check for a declaration of
4889         program_invocation_name.
4890         * lib/progname.c:  Include <errno.h>.
4891         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
4892         Set program_invocation_name.
4893
4894 2009-08-23  Bruno Haible  <bruno@clisp.org>
4895
4896         * lib/dup3.c: Include <string.h>.
4897
4898 2009-08-23  Bruno Haible  <bruno@clisp.org>
4899
4900         * lib/dup3.c (dup3): Test only once whether the system actually exists.
4901         * lib/pipe2.c (pipe2): Likewise.
4902         Suggested by Eric Blake.
4903
4904 2009-08-23  Bruno Haible  <bruno@clisp.org>
4905
4906         Tolerate declared but missing dup3 syscall.
4907         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
4908         * lib/unistd.in.h (dup3): If the function is already present,
4909         override it.
4910         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
4911         * modules/dup3 (Makefile.am): Compile dup3.c always.
4912         Reported by Paolo Bonzini.
4913
4914 2009-08-23  Bruno Haible  <bruno@clisp.org>
4915
4916         Tolerate declared but missing pipe2 syscall.
4917         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
4918         available.
4919         * lib/unistd.in.h (pipe2): If the function is already present,
4920         override it.
4921         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
4922         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
4923         Reported by Paolo Bonzini.
4924
4925 2009-08-23  Bruno Haible  <bruno@clisp.org>
4926
4927         * lib/pipe2.c (pipe2): Move #ifs inside function.
4928
4929 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4930
4931         quotearg: document limitations of quote_these_too
4932         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
4933         those limitations are created.
4934         * lib/quotearg.h (set_char_quoting): Document that digits and
4935         letters that are special after backslash are not permitted.
4936         (quotearg_char): Cross-reference set_char_quoting documentation.
4937
4938 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
4939
4940         quotearg: implement custom_quoting_style
4941         * lib/quotearg.c: (struct quoting_options): Add left_quote and
4942         right_quote fields.
4943         (set_custom_quoting): New public function.
4944         (quotearg_buffer_restyled): Add left_quote and right_quote
4945         arguments, handle them very much like locale quoting, and update
4946         all uses.
4947         (quotearg_n_custom): New public function.
4948         (quotearg_n_custom_mem): New public function.
4949         (quotearg_custom): New public function.
4950         (quotearg_custom_mem): New public function.
4951         * lib/quotearg.h: Prototype and document new public functions.
4952         (enum quoting_style): For escape_quoting_style and
4953         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
4954         ignored even though they're otherwise like c_quoting_style.
4955         Add custom_quoting_style member and document with comparison to
4956         clocale_quoting_style.
4957         * tests/test-quotearg.c (custom_quotes): New array.
4958         (custom_results): New array.
4959         (main): Extend to test custom quoting.
4960
4961 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4962
4963         quotearg: fix right quote escaping when it's in quote_these_too
4964         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
4965         quote, be sure to prepend only one backslash.
4966         * tests/test-quotearg.c (use_quote_double_quotes): New function.
4967         (main): Test it.
4968
4969 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4970
4971         quotearg-tests: test escaping of embedded locale quotes
4972         * tests/test-quotearg.c (struct result_strings): Add member for
4973         new input.
4974         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
4975         (inputs): Add new input.
4976         (results_g): Add expected results.
4977         (flag_results): Likewise.
4978         (locale_results): Likewise.
4979         (compare_strings): Check those.
4980
4981 2009-08-23  Bruno Haible  <bruno@clisp.org>
4982
4983         Tests for module 'dup3'.
4984         * modules/dup3-tests: New file.
4985         * tests/test-dup3.c: New file.
4986
4987         New module 'dup3'.
4988         * lib/unistd.in.h (dup3): New declaration.
4989         * lib/dup3.c: New file.
4990         * m4/dup3.m4: New file.
4991         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
4992         HAVE_DUP3.
4993         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
4994         * modules/dup3: New file.
4995         * doc/glibc-functions/dup3.texi: Mention the new module.
4996
4997 2009-08-23  Bruno Haible  <bruno@clisp.org>
4998
4999         Tweak the dup2 test.
5000         * tests/test-dup2.c (main): Create the test file empty. Verify that an
5001         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
5002         the test file is still empty. Fix argument order of lseek.
5003
5004 2009-08-23  Bruno Haible  <bruno@clisp.org>
5005
5006         Avoid test link errors when the modules getopt-gnu, gettext are used.
5007         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
5008         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5009
5010 2009-08-23  Bruno Haible  <bruno@clisp.org>
5011
5012         Fix getdtablesize() on mingw.
5013         * lib/getdtablesize.c (getdtablesize): Implement differently.
5014         * lib/unistd.in.h (getdtablesize): Improve comment.
5015
5016 2009-08-23  Bruno Haible  <bruno@clisp.org>
5017
5018         New module 'mkostemp'.
5019         Based on Ulrich Drepper's 2007-08-10 change in glibc.
5020         * lib/stdlib.in.h (mksotemp): New declaration.
5021         * lib/mkostemp.c: New file, from glibc with modifications.
5022         * lib/tempname.h (GT_FILE): Remove outdated comment.
5023         (gen_tempname): Add flags argument.
5024         * lib/tempname.c (__GT_BIGFILE): Remove macro.
5025         (__GT_FILE): Map to 1.
5026         (small_open, large_open): Remove macros.
5027         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
5028         * lib/mkstemp.c (mkstemp): Update.
5029         * lib/mkdtemp.c (mkdtemp): Likewise.
5030         * m4/mkostemp.m4: New file.
5031         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
5032         HAVE_MKOSTEMP.
5033         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
5034         HAVE_MKOSTEMP.
5035         * modules/mkostemp: New file, based on modules/mkstemp.
5036         * doc/glibc-functions/mkostemp.texi: Mention the new module.
5037         * NEWS: Mention the change.
5038
5039 2009-08-23  Bruno Haible  <bruno@clisp.org>
5040
5041         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
5042         Reported by Eric Blake.
5043
5044 2009-08-23  Bruno Haible  <bruno@clisp.org>
5045
5046         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
5047         Reported by Eric Blake.
5048
5049 2009-08-23  Bruno Haible  <bruno@clisp.org>
5050
5051         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
5052         * modules/pipe2 (Depends-on): Likewise.
5053
5054 2009-08-23  Eric Blake  <ebb9@byu.net>
5055
5056         fcntl-h: add O_TTY_INIT support
5057         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
5058         * tests/test-fcntl-h.c (o): Test it.
5059         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
5060
5061         fcntl-h: rename from fcntl, in preparation for fcntl(2)
5062         * modules/fcntl: Move <fcntl.h> header replacement...
5063         * modules/fcntl-h: ...to new name, so as not to collide with
5064         like-named function.
5065         * tests/test-fcntl.c: Rename...
5066         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
5067         * modules/fcntl-tests: Rename...
5068         * modules/fcntl-h-tests: ...to this.  Update test file name.
5069         * modules/chdir-long (Depends-on): Update clients.
5070         * modules/chdir-safer (Depends-on): Likewise.
5071         * modules/fcntl-safer (Depends-on): Likewise.
5072         * modules/fts (Depends-on): Likewise.
5073         * modules/mkancesdirs (Depends-on): Likewise.
5074         * modules/mkdir-p (Depends-on): Likewise.
5075         * modules/open (Depends-on): Likewise.
5076         * modules/savewd (Depends-on): Likewise.
5077         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
5078         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
5079
5080 2009-08-22  Bruno Haible  <bruno@clisp.org>
5081
5082         * modules/binary-io (License): Relicense under LGPL.
5083         * modules/pipe2 (License): Likewise.
5084
5085 2009-08-22  Bruno Haible  <bruno@clisp.org>
5086
5087         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
5088         return value.
5089         * lib/pipe-filter-gi.c (filter_init): Likewise.
5090         Reported by Eric Blake.
5091
5092 2009-08-22  Bruno Haible  <bruno@clisp.org>
5093
5094         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
5095         * modules/pipe (Depends-on): Add pipe2.
5096
5097 2009-08-22  Bruno Haible  <bruno@clisp.org>
5098
5099         Tests for module 'pipe2'.
5100         * modules/pipe2-tests: New file.
5101         * tests/test-pipe2.c: New file.
5102
5103         New module 'pipe2'.
5104         * lib/unistd.in.h (pipe2): New declaration.
5105         * lib/pipe2.c: New file.
5106         * m4/pipe2.m4: New file.
5107         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
5108         HAVE_PIPE2.
5109         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
5110         * modules/pipe2: New file.
5111         * doc/glibc-functions/pipe2.texi: Mention the new module.
5112
5113 2009-08-22  Bruno Haible  <bruno@clisp.org>
5114
5115         Reference some new glibc functions.
5116         * doc/glibc-functions/accept4.texi: New file.
5117         * doc/glibc-functions/dup3.texi: New file.
5118         * doc/glibc-functions/mkostemp.texi: New file.
5119         * doc/glibc-functions/pipe2.texi: New file.
5120         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
5121         (Glibc sys/socket.h): Refer to accept4.
5122         (Glibc unistd.h): Refer to dup3, pipe2.
5123         Reported by Eric Blake.
5124
5125 2009-08-22  Jim Meyering  <meyering@redhat.com>
5126             Bruno Haible  <bruno@clisp.org>
5127
5128         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
5129         This makes it so packages using automake-1.11's silent-rules option
5130         can print e.g., a single "GEN    configmake.h" line, rather than
5131         the 30+ statements that perform the job.  If you want to see the
5132         actual commands, you can still run "make V=1".
5133         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
5134         so that make output is abbreviated when those variables are defined
5135         appropriately.
5136         * modules/argz: Likewise.
5137         * modules/arpa_inet: Likewise.
5138         * modules/byteswap: Likewise.
5139         * modules/configmake: Likewise.
5140         * modules/dirent: Likewise.
5141         * modules/errno: Likewise.
5142         * modules/fcntl: Likewise.
5143         * modules/float: Likewise.
5144         * modules/fnmatch: Likewise.
5145         * modules/getopt-posix: Likewise.
5146         * modules/glob: Likewise.
5147         * modules/iconv_open: Likewise.
5148         * modules/inttypes: Likewise.
5149         * modules/localcharset: Likewise.
5150         * modules/locale: Likewise.
5151         * modules/math: Likewise.
5152         * modules/netdb: Likewise.
5153         * modules/netinet_in: Likewise.
5154         * modules/poll: Likewise.
5155         * modules/posix_spawnp-tests: Likewise.
5156         * modules/sched: Likewise.
5157         * modules/search: Likewise.
5158         * modules/selinux-h: Likewise.
5159         * modules/signal: Likewise.
5160         * modules/spawn: Likewise.
5161         * modules/stdarg: Likewise.
5162         * modules/stdbool: Likewise.
5163         * modules/stddef: Likewise.
5164         * modules/stdint: Likewise.
5165         * modules/stdio: Likewise.
5166         * modules/stdlib: Likewise.
5167         * modules/string: Likewise.
5168         * modules/strings: Likewise.
5169         * modules/sys_file: Likewise.
5170         * modules/sys_ioctl: Likewise.
5171         * modules/sys_select: Likewise.
5172         * modules/sys_socket: Likewise.
5173         * modules/sys_stat: Likewise.
5174         * modules/sys_time: Likewise.
5175         * modules/sys_times: Likewise.
5176         * modules/sys_utsname: Likewise.
5177         * modules/sys_wait: Likewise.
5178         * modules/sysexits: Likewise.
5179         * modules/time: Likewise.
5180         * modules/unistd: Likewise.
5181         * modules/wchar: Likewise.
5182         * modules/wctype: Likewise.
5183
5184 2009-08-22  Jim Meyering  <meyering@redhat.com>
5185
5186         announce-gen: detect write failure
5187         * build-aux/announce-gen: Add Coda at end.
5188         Remove equivalent-but-more-verbose block at top.
5189
5190 2009-08-19  Akim Demaille  <demaille@gostai.com>
5191
5192         bootstrap: --help to stdout.
5193         * bootstrap (usage): Don't send --help to stderr.
5194         Use a here doc instead of a long string.
5195
5196 2009-08-21  Eric Blake  <ebb9@byu.net>
5197
5198         test-popen-safer: split from test-popen
5199         * tests/test-popen.c (main): Move...
5200         * tests/test-popen.h: ...into new file.
5201         * tests/test-popen-safer2.c: New file.
5202         * modules/popen-tests (Files): Add test-popen.h.
5203         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
5204         Suggested by Bruno Haible.
5205
5206         test-fcntl-safer: split from test-open
5207         * tests/test-open.c (main): Move...
5208         * tests/test-open.h: ...into new file.
5209         * tests/test-fcntl-safer.c: New file.
5210         * modules/open-tests (Files): Add test-open.h.
5211         * modules/fcntl-safer-tests: New file.
5212         Suggested by Bruno Haible.
5213
5214         test-fopen-safer: split from test-fopen
5215         * tests/test-fopen.c (main): Move...
5216         * tests/test-fopen.h: ...into new file.
5217         * tests/test-fopen-safer.c: New file.
5218         * modules/fopen-tests (Files): Add test-fopen.h.
5219         * modules/fopen-safer-tests: New file.
5220         Suggested by Bruno Haible.
5221
5222 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5223
5224         popen-safer: test O_CLOEXEC at run-time.
5225         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
5226
5227 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5228
5229         fcntl: move more flags to the header
5230         * lib/cloexec.c: Do not define FD_CLOEXEC here.
5231         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
5232         * lib/fcntl.in.h: Do both things here.
5233
5234 2009-08-21  Jim Meyering  <meyering@redhat.com>
5235
5236         consistently remove $@-t before redirecting to it
5237         * modules/argz: Remove $@-t and $@ before redirecting to the former.
5238         * modules/alloca-opt: Likewise.
5239         * modules/byteswap: Likewise.
5240         * modules/fnmatch: Likewise.
5241         * modules/getopt-posix: Likewise.
5242         * modules/glob: Likewise.
5243         * modules/poll: Likewise.
5244         * modules/posix_spawnp-tests: Likewise.
5245         * modules/sys_socket: Likewise.
5246         * modules/sysexits: Likewise.
5247
5248 2009-08-21  Eric Blake  <ebb9@byu.net>
5249
5250         popen: simplify access to original popen
5251         * lib/popen.c (rpl_popen): No need to worry about popen being a
5252         macro.
5253         Reported by Bruno Haible.
5254
5255 2009-08-20  Eric Blake  <ebb9@byu.net>
5256
5257         build: avoid some compiler warnings
5258         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
5259         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
5260         type.
5261         (new_exclude_segment, excluded_file_pattern_p)
5262         (excluded_file_name_p): Reduce scope.
5263         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
5264         old-style declaration.
5265
5266 2009-08-20  Simon Josefsson  <simon@josefsson.org>
5267
5268         * tests/test-exclude1.sh: Handle Windows EOL.
5269         * tests/test-exclude2.sh: Likewise.
5270         * tests/test-exclude3.sh: Likewise.
5271         * tests/test-exclude4.sh: Likewise.
5272         * tests/test-exclude5.sh: Likewise.
5273         * tests/test-exclude6.sh: Likewise.
5274         * tests/test-exclude7.sh: Likewise.
5275
5276 2009-08-19  Akim Demaille  <demaille@gostai.com>
5277
5278         bootstrap: find sha1sum when named gsha1sum.
5279         * bootstrap (find_tool): New.
5280         ($SHA1SUM): New.
5281         Use it.
5282
5283 2009-08-20  Jim Meyering  <meyering@redhat.com>
5284
5285         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
5286         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
5287         expression that converts "." in a file name to "\." in the resulting
5288         regexp.  Start with a dummy statement, so that prior shell variable
5289         definitions are expanded portably.  Reported by Simon Josefsson.
5290
5291 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
5292
5293         Fix polling for writeability of a screen buffer.
5294         * lib/poll.c: Distinguish input and screen buffers for the
5295         Win32 implementation.
5296         * lib/select.c: Likewise.
5297
5298 2009-08-19  Eric Blake  <ebb9@byu.net>
5299
5300         popen-safer: prevent popen from clobbering std descriptors
5301         * modules/popen-safer: New file.
5302         * lib/popen-safer.c: Likewise.
5303         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
5304         * lib/stdio--.h (popen): Provide override.
5305         * lib/stdio-safer.h (popen_safer): Provide declaration.
5306         * tests/test-popen.c (includes): Partially test this.
5307         * modules/popen-safer-tests: New file, for more tests.
5308         * tests/test-popen-safer.c: Likewise.
5309         * MODULES.html.sh (file stream based Input/Output): Mention it.
5310
5311         tests: test some of the *-safer modules
5312         * modules/fopen-safer (Depends-on): Add fopen.
5313         * modules/fcntl-safer (Depends-on): Add fcntl.
5314         * modules/stdlib-safer (Depends-on): Add stdlib.
5315         (configure.ac): Set indicator.
5316         * modules/unistd-safer (configure.ac): Likewise.
5317         * modules/tmpfile-safer (configure.ac): Likewise.
5318         (Depends-on): Add tmpfile.
5319         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
5320         active.
5321         * tests/test-fopen.c (includes): Test safer versions when they are
5322         in use.
5323         * tests/test-open.c (includes): Likewise.
5324
5325         popen: fix cygwin 1.5 bug when stdin closed
5326         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
5327         * modules/popen: New file.
5328         * modules/popen-tests: Likewise.
5329         * tests/test-popen.c: Likewise.
5330         * m4/popen.m4: Likewise.
5331         * lib/popen.c: Likewise.
5332         * lib/stdio.in.h (popen): New declaration.
5333         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
5334         * modules/stdio (Makefile.am): Likewise.
5335         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
5336
5337 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
5338
5339         maint.mk: give full control over update-copyright exclusions
5340         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
5341         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
5342         (update-copyright): Don't force inclusion of top-level
5343         ChangeLog.  Don't force exclusion of all COPYING files, but make
5344         them the default exclusion instead.
5345
5346 2009-08-16  Bruno Haible  <bruno@clisp.org>
5347
5348         Fix test failures on Solaris 10.
5349         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
5350         tests when Solaris iconv() is used.
5351         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
5352         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
5353         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
5354         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
5355         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
5356
5357 2009-08-16  Bruno Haible  <bruno@clisp.org>
5358
5359         Fix test failures on Solaris 10.
5360         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
5361         'tr' program and pass it as first argument.
5362         * tests/test-pipe-filter-gi1.sh: Likewise.
5363         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
5364         program as first argument.
5365         * tests/test-pipe-filter-gi1.c (main): Likewise.
5366
5367 2009-08-16  Eric Blake  <ebb9@byu.net>
5368
5369         fpurge: fix previous commits
5370         * modules/fpurge (Makefile.am): Make replacement conditional,
5371         partially reverting 2007-04-29 change; missed in previous
5372         attempt.
5373         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
5374         is missing.
5375
5376 2009-08-16  Bruno Haible  <bruno@clisp.org>
5377
5378         Clarify fpurge's effect on the file position.
5379         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
5380         * tests/test-fpurge.c (main): Make a second pass for checking the file
5381         position.
5382
5383 2009-08-16  Bruno Haible  <bruno@clisp.org>
5384
5385         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
5386         declaration of fpurge is missing.
5387         * tests/test-fpurge.c (main): Check that the file has not more contents
5388         than expected. Close the file before removing it.
5389
5390 2009-08-15  Eric Blake  <ebb9@byu.net>
5391
5392         fpurge: don't wrap working cygwin implementation
5393         * lib/fpurge.c (fpurge): Fix comment typo.
5394         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
5395         1.7 to avoid replacement.
5396         * tests/test-fpurge.c (main): Enhance test.
5397
5398 2009-08-15  Eric Blake  <ebb9@byu.net>
5399         and Jim Meyering  <meyering@redhat.com>
5400
5401         test-update-copyright: skip if perl is insufficient
5402         * tests/test-update-copyright.sh: Failure to run maintainer tool
5403         should not cause testsuite failure on cygwin 1.5.
5404
5405 2009-08-14  Eric Blake  <ebb9@byu.net>
5406
5407         doc: mention more functions added in cygwin 1.7.0
5408         * doc/posix-headers/limits.texi (limits.h): Update for recent
5409         cygwin additions.
5410         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
5411         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
5412         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
5413         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
5414         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
5415
5416 2009-08-14  Eric Blake  <ebb9@byu.net>
5417
5418         maint.mk: simplify update-copyright rule
5419         * top/maint.mk (update-copyright-local): Delete, and document how
5420         to do it in cfg.mk instead.
5421         (update-copyright-exclude-regexp): Delete, and document how to do
5422         it in .x-update-copyright instead.
5423         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
5424         exclude ChangeLog.
5425
5426 2009-08-14  Bruno Haible  <bruno@clisp.org>
5427
5428         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
5429
5430 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5431
5432         maint.mk: support update-copyright-env
5433         * top/maint.mk (update-copyright-env): Define place-holder.
5434         (update-copyright): Expand $(update-copyright-env) before
5435         invoking update-copyright.
5436
5437 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5438
5439         update-copyright: implement forced reformatting
5440         * build-aux/update-copyright: Implement and document
5441         UPDATE_COPYRIGHT_FORCE.
5442         * tests/test-update-copyright.sh: Test it.
5443
5444 2009-08-14  Eric Blake  <ebb9@byu.net>
5445         and Bruno Haible  <bruno@clisp.org>
5446
5447         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
5448         * tests/test-locale.c: Revert previous patch related to NULL.
5449         * tests/test-stdio.c: Likewise.
5450         * tests/test-stdlib.c: Likewise.
5451         * tests/test-string.c: Likewise.
5452         * tests/test-unistd.c: Likewise.
5453         * modules/time-tests (Depends-on): Add verify.
5454         * modules/wchar-tests (Depends-on): Likewise.
5455         * tests/test-time.c: Test for NULL compliance.
5456         * tests/test-wchar.c: Likewise.
5457         * modules/locale (Depends-on): Add stddef.
5458         * modules/stdio (Depends-on): Likewise.
5459         * modules/stdlib (Depends-on): Likewise.
5460         * modules/string (Depends-on): Likewise.
5461         * modules/time (Depends-on): Likewise.
5462         * modules/unistd (Depends-on): Likewise.
5463         * modules/wchar (Depends-on): Likewise.
5464         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
5465         * lib/stdlib.in.h (includes): Likewise.
5466         * lib/string.in.h (includes): Likewise.
5467         * lib/time.in.h (includes): Likewise.
5468         * lib/unistd.in.h (includes): Likewise.
5469         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
5470         replaced.
5471         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
5472         * m4/stddef_h.m4: New file.
5473         * modules/stddef: Likewise.
5474         * lib/stddef.in.h: Likewise.
5475         * modules/stddef-tests: Likewise.
5476         * tests/test-stddef.c: Likewise.
5477         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
5478         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
5479         * doc/posix-headers/locale.texi (locale.h): Likewise.
5480         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
5481         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
5482         * doc/posix-headers/string.texi (string.h): Likewise.
5483         * doc/posix-headers/time.texi (time.h): Likewise.
5484         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
5485         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
5486
5487 2009-08-14  Eric Blake  <ebb9@byu.net>
5488
5489         doc: improve git diff of texinfo files
5490         * .gitattributes: Add rule for *.texi files, with hint on how to
5491         use it.
5492         Copied from m4, and based on a report by Bruno Haible.
5493
5494 2009-08-14  Bruno Haible  <bruno@clisp.org>
5495
5496         Disable multithread support by default on Cygwin 1.5.x for real.
5497         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
5498
5499 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5500
5501         update-copyright: much ado about intervals
5502         * build-aux/update-copyright: Implement and document
5503         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
5504         of copyright year intervals.
5505         Also, document UPDATE_COPYRIGHT_YEAR.
5506         * tests/test-update-copyright.sh: Test it.
5507
5508         update-copyright: convert 2-digit to 4-digit years
5509         * build-aux/update-copyright: Implement and document.
5510         * tests/test-update-copyright.sh: Update.
5511
5512 2009-08-14  Jim Meyering  <meyering@redhat.com>
5513
5514         test-exclude: avoid coreutils "make check" failure
5515         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
5516         just as in test-argmatch.c.
5517
5518 2009-08-13  Eric Blake  <ebb9@byu.net>
5519
5520         test-dup2: fix bad assumption
5521         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
5522         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
5523
5524         test-version-etc: fix CRLF portability issue
5525         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
5526         recognize \r.
5527         * tests/test-argp-version-etc-1.sh: Likewise.
5528
5529         getopt: update client modules
5530         * modules/argp (Depends-on): Use getopt-gnu.
5531         * modules/git-merge-changelog (Depends-on): Likewise.
5532         * modules/long-options (Depends-on): Likewise.
5533         * modules/xstrtol (Depends-on): Likewise.
5534
5535 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5536
5537         * tests/test-version-etc.sh: Don't fail on different
5538         project/version.  Don't fail on CRLF differences.  Rewrite to use
5539         multiple -e instead of multiple sed forks, suggested by Eric Blake
5540         <ebb9@byu.net>.
5541         * tests/test-argp-version-etc-1.sh: Likewise.
5542
5543 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5544
5545         * tests/test-version-etc.sh: Don't fail on different
5546         project/version.
5547
5548 2009-08-12  Bruno Haible  <bruno@clisp.org>
5549
5550         Tests for modules 'getopt-posix', 'getopt-gnu'.
5551         * modules/getopt-posix-tests: New file.
5552         * tests/test-getopt.c: New file.
5553         * tests/test-getopt.h: New file.
5554         * tests/test-getopt_long.h: New file.
5555
5556         New modules 'getopt-posix', 'getopt-gnu'.
5557         * modules/getopt-gnu: New file, renamed from modules/getopt.
5558         * modules/getopt-posix: New file.
5559         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
5560         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
5561         (gl_GETOPT): Remove macro.
5562         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
5563         Disable the test against BSD systems that declare optreset. Test
5564         against mingw bug. Test against lack of support of optional arguments
5565         on many platforms.
5566         * doc/glibc-headers/getopt.texi: Update module name and list of
5567         relevant platforms.
5568         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
5569         'getopt-gnu' and more portability problems.
5570         * NEWS: Mention the changes.
5571
5572 2009-08-12  Bruno Haible  <bruno@clisp.org>
5573
5574         Ensure that optarg etc. get declared by <unistd.h>.
5575         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
5576         AC_USE_SYSTEM_EXTENSIONS.
5577         * modules/getopt (Depends-on): Add 'extensions'.
5578
5579 2009-08-12  Bruno Haible  <bruno@clisp.org>
5580
5581         Avoid test link errors.
5582         * modules/pipe-filter-ii-tests (Makefile.am): Define
5583         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
5584         * modules/pipe-filter-gi-tests (Makefile.am): Define
5585         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
5586         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5587
5588 2009-08-12  Bruno Haible  <bruno@clisp.org>
5589
5590         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
5591         gl_GETOPT_SUBSTITUTE before.
5592         (gl_GETOPT): Use it.
5593         * m4/argp.m4 (gl_ARGP): Update.
5594         Reported by Sergey Poznyakoff.
5595
5596         * m4/getopt.m4: Reorder macros.
5597         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
5598         (gl_GETOPT_SUBSTITUTE): Remove macro.
5599
5600 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5601
5602         Minor improvement in gitlog-to-changelog
5603
5604         * build-aux/gitlog-to-changelog: New option `--format' makes
5605         output format string configurable.
5606
5607 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5608
5609         Optimize exclude: use hash tables for non-wildcard patterns.
5610
5611         * lib/exclude.c: Include hash.h and mbuiter.h
5612         (struct exclude_pattern, exclude_segment): New data types.
5613         (struct exclude): Rewrite.
5614         (fnmatch_pattern_has_wildcards): New function.
5615         (new_exclude_segment, free_exclude_segment): New functions.
5616         (excluded_file_pattern_p, excluded_file_name_p): New functions.
5617         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
5618         * lib/exclude.h (is_fnmatch_pattern): New prototype.
5619         * modules/exclude: Depend on hash and mbuiter.
5620
5621         * modules/exclude-tests: New file.
5622         * tests/test-exclude.c: New file.
5623         * tests/test-exclude1.sh: New file.
5624         * tests/test-exclude2.sh: New file.
5625         * tests/test-exclude3.sh: New file.
5626         * tests/test-exclude4.sh: New file.
5627         * tests/test-exclude5.sh: New file.
5628         * tests/test-exclude6.sh: New file.
5629         * tests/test-exclude7.sh: New file.
5630
5631 2009-08-12  Bruno Haible  <bruno@clisp.org>
5632
5633         Ensure that getopt() gets declared by <unistd.h>.
5634         * lib/unistd.in.h: Conditionally include getopt.h.
5635         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
5636         Set GNULIB_UNISTD_H_GETOPT.
5637         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5638         GNULIB_UNISTD_H_GETOPT.
5639         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
5640
5641 2009-08-12  Bruno Haible  <bruno@clisp.org>
5642
5643         Clarify logic.
5644         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
5645         gl_replace_getopt instead of GETOPT_H.
5646
5647 2009-08-12  Bruno Haible  <bruno@clisp.org>
5648
5649         * m4/getopt.m4: Add comments.
5650
5651 2009-08-12  Bruno Haible  <bruno@clisp.org>
5652
5653         Disable multithread support by default on Cygwin 1.5.x.
5654         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
5655         set gl_use_threads=no if not specified otherwise.
5656
5657 2009-08-11  Bruno Haible  <bruno@clisp.org>
5658
5659         Avoid compilation error on NetBSD 5.0.
5660         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
5661         * tests/test-stdio.c: Likewise.
5662         * tests/test-stdlib.c: Likewise.
5663         * tests/test-string.c: Likewise.
5664         * tests/test-unistd.c: Likewise.
5665         Reported by Greg Troxel <gdt@ir.bbn.com>
5666         at <https://savannah.gnu.org/support/?106973>.
5667
5668 2009-08-11  Bruno Haible  <bruno@clisp.org>
5669
5670         * modules/dup2-tests (Depends-on): Remove close.
5671
5672         Undo 2009-07-19 commit.
5673         * modules/acl-tests (Depends-on): Remove close.
5674         * modules/binary-io-tests (Depends-on): Likewise.
5675         * modules/closein-tests (Depends-on): Likewise.
5676         * modules/flock-tests (Depends-on): Likewise.
5677         * modules/fsync-tests (Depends-on): Likewise.
5678         * modules/lseek-tests (Depends-on): Likewise.
5679         * modules/pipe-tests (Depends-on): Likewise.
5680         * modules/posix_spawn-tests (Depends-on): Likewise.
5681         * modules/posix_spawnp-tests (Depends-on): Likewise.
5682         * modules/stat-time-tests (Depends-on): Likewise.
5683         * modules/yesno-tests (Depends-on): Likewise.
5684
5685 2009-08-10  Bruno Haible  <bruno@clisp.org>
5686
5687         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
5688
5689 2009-08-10  Bruno Haible  <bruno@clisp.org>
5690
5691         Fix a gcc warning.
5692         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
5693
5694 2009-08-10  Bruno Haible  <bruno@clisp.org>
5695
5696         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
5697         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
5698         not only the first time.
5699         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
5700         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
5701         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
5702         is 1, not only the the first time.
5703
5704 2009-08-10  Bruno Haible  <bruno@clisp.org>
5705
5706         Make it possible to use module 'gethostname' without module 'close'.
5707         * lib/unistd.in.h (close): Evoke a link error only if
5708         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5709         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5710         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5711         * modules/unistd (Makefile.am): Substitute
5712         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5713         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
5714         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5715         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
5716         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5717         * modules/sys_ioctl (Makefile.am): Substitute
5718         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5719         * modules/socket (configure.ac): On native Windows, set
5720         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
5721         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5722         Reported by Sam Steingold <sds@gnu.org>.
5723
5724 2009-08-10  Bruno Haible  <bruno@clisp.org>
5725
5726         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
5727         * modules/ioctl (configure.ac): Likewise.
5728
5729 2009-08-10  Bruno Haible  <bruno@clisp.org>
5730
5731         Avoid collision between gnulib wrapper and libintl wrapper.
5732         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
5733         already defined in intl/printf.c.
5734         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
5735         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
5736
5737 2009-08-09  Bruno Haible  <bruno@clisp.org>
5738
5739         Make <sys/select.h> really self-contained, also on Solaris 10.
5740         * lib/sys_select.in.h: Include <string.h>.
5741         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
5742         Solaris 10 problem.
5743         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
5744         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
5745         Reported by Jim Meyering.
5746
5747 2009-08-09  Bruno Haible  <bruno@clisp.org>
5748
5749         Avoid warnings from 'aclocal' that are due to a use of macro name
5750         AM_XGETTEXT_OPTION that is not defined in automake.
5751         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
5752         automake.
5753         * modules/error (configure.ac): Likewise.
5754         * modules/propername (configure.ac): Likewise.
5755         * modules/vasprintf (configure.ac): Likewise.
5756         * modules/verror (configure.ac): Likewise.
5757         * modules/xprintf (configure.ac): Likewise.
5758         * modules/xvasprintf (configure.ac): Likewise.
5759
5760 2009-08-08  Bruno Haible  <bruno@clisp.org>
5761
5762         Avoid compilation error in C++ mode.
5763         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
5764         Reported by Sam Steingold <sds@gnu.org>.
5765
5766 2009-08-08  Bruno Haible  <bruno@clisp.org>
5767
5768         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
5769         for the various Unix platforms.
5770         * doc/posix-headers/limits.texi: Update platforms list regarding
5771         HOST_NAME_MAX.
5772         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5773
5774 2009-08-07  Jim Meyering  <meyering@redhat.com>
5775
5776         selinux-at: fix typo in a comment
5777         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
5778         Spotted by Paolo Bonzini.
5779
5780         selinux-at: remove redundant m4 code, add documentation
5781         * modules/selinux-at (configure.ac): Remove redundant code.
5782         LIB_SELINUX is already set via the dependent module, selinux-h.
5783         (Include): Add quotes around selinux-at.h.
5784         * lib/selinux-at.h: Add documentation.
5785         Reported by Bruno Haible in
5786         http://marc.info/?l=gnulib-bug&m=124958988300749
5787
5788 2009-08-07  Bruno Haible  <bruno@clisp.org>
5789
5790         Avoid link error on MacOS X 10.3 and 10.4.
5791         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
5792         on non-ELF systems.
5793         * lib/argp-pv.c (argp_program_version): Likewise.
5794         Reported by Simon Josefsson.
5795
5796 2009-08-07  Simon Josefsson  <simon@josefsson.org>
5797
5798         * tests/test-version-etc.sh: Use $EXEEXT.
5799
5800 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
5801
5802         update-copyright: update documentation to point to maint.mk
5803         * build-aux/update-copyright: Here.
5804
5805 2009-08-06  Jim Meyering  <meyering@redhat.com>
5806
5807         maint.mk: support update-copyright-local
5808         * top/maint.mk (update-copyright-local): Define place-holder.
5809         (update-copyright): Depend on $(update-copyright-local).
5810
5811 2009-08-06  Jim Meyering  <meyering@redhat.com>
5812
5813         selinux-at: new module
5814         Initially written for coreutils, this module will soon be
5815         used by findutils, too.
5816         * MODULES.html.sh [Misc]: Add selinux-at.
5817         * lib/selinux-at.h: New file, from coreutils.
5818         * lib/selinux-at.c: Likewise.
5819         * modules/selinux-at: Likewise.
5820         (License): Change from LGPL to GPL, since it depends
5821         on the GPL'd openat module.
5822
5823         doc: update README
5824         * README: Remove references to cogito.
5825         Remove cvs-repo-updating instructions from 2007.
5826         Don't imply that CVS is better if you have limited disk space.
5827
5828 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5829
5830         update-copyright: support C-style comments
5831         * build-aux/update-copyright: Implement and document.
5832         * tests/test-update-copyright.sh: Test.
5833
5834 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5835
5836         update-copyright: support omitted "(C)"
5837         * build-aux/update-copyright: Implement and document.  Also,
5838         allow variable whitespace before "(C)".
5839         * tests/test-update-copyright.sh: Test.
5840
5841 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5842
5843         update-copyright: don't trip on non-FSF copyright statements
5844         * build-aux/update-copyright: Fix so that the first correctly
5845         formatted FSF copyright statement is recognized no matter what
5846         appears before it.  Update documentation.
5847         * tests/test-update-copyright.sh: Test that.
5848
5849 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5850
5851         update-copyright: clean up code a little
5852         * build-aux/update-copyright: Append "_re" to the name of any
5853         variable holding a regular expression.
5854         Replace "old" and "new" with "stmt" in variable names.
5855         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
5856         handled correctly.
5857         Format code more consistently.
5858
5859 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5860
5861         update-copyright-tests: improve portability
5862         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
5863         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
5864
5865 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5866
5867         update-copyright: support @copyright{} and &copy;
5868         * build-aux/update-copyright: Implement and document.
5869         * tests/test-update-copyright.sh: Test.
5870
5871 2009-08-04  Jim Meyering  <meyering@redhat.com>
5872
5873         update-copyright-tests: correctly test EOL=\r\n handling
5874         * tests/test-update-copyright.sh: Put \r at the end of some lines
5875         for the dos-eol tests.  Based on a patch by Joel E. Denny.
5876
5877         maint.mk: make update-copyright exclusion list more configurable
5878         * top/maint.mk (update-copyright): Default to excluding COPYING,
5879         but allow an override, in case someone does want to update that file.
5880
5881         maint.mk: don't update copyright date in COPYING
5882         * top/maint.mk (update-copyright): Exclude COPYING.
5883
5884         maint.mk: add a copyright-updating rule
5885         * top/maint.mk (update-copyright): New rule.
5886         Derived from coreutils/Makefile.am.
5887
5888         update-copyright: rename some variables
5889         * build-aux/update-copyright: Rename a few variables for clarity.
5890         Tweak syntax.  List Joel E. Denny as coauthor.
5891
5892 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5893
5894         update-copyright: fix bug for 2-digit last year and add tests
5895         * build-aux/update-copyright: Fix bug.
5896         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
5897         specified.
5898         * modules/update-copyright-tests: New
5899         * tests/test-update-copyright.sh: New.
5900
5901 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5902
5903         update-copyright: handle leading tabs in line prefix
5904         * build-aux/update-copyright: Count leading tabs as 8 spaces
5905         when computing margin.  This helps with the formatting of
5906         ChangeLogs, for example.
5907         Fix documentation a little.
5908
5909 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5910
5911         update-copyright: support EOL=\r\n
5912         * build-aux/update-copyright: Implement that.
5913
5914 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5915
5916         update-copyright: automatically format copyright statements
5917         * build-aux/update-copyright: Implement that.
5918         Also, be a little more predictable and safer by always failing
5919         when the full copyright format is not perfectly recognized as an
5920         unbroken whole.  Discussed at
5921         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
5922         Rewrite documentation.
5923
5924 2009-08-03  Bruno Haible  <bruno@clisp.org>
5925
5926         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
5927
5928 2009-08-02  Bruno Haible  <bruno@clisp.org>
5929
5930         Tests for module 'uname'.
5931         * modules/uname-tests: New file.
5932         * tests/test-uname.c: New file.
5933
5934         New module 'uname'.
5935         * lib/uname.c: New file.
5936         * m4/uname.m4: New file.
5937         * modules/uname: New file.
5938         * doc/posix-functions/uname.texi: Mention the new module.
5939
5940 2009-08-02  Bruno Haible  <bruno@clisp.org>
5941
5942         Tests for module 'sys_utsname'.
5943         * modules/sys_utsname-tests: New file.
5944         * tests/test-sys_utsname.c: New file.
5945
5946         New module 'sys_utsname'.
5947         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
5948         * m4/sys_utsname_h.m4: New file.
5949         * modules/sys_utsname: New file.
5950         * doc/posix-headers/sys_utsname.texi: Mention the new module.
5951
5952 2009-08-02  Bruno Haible  <bruno@clisp.org>
5953
5954         Implicitly initialize the sockets library.
5955         * lib/gethostname.c: Include sockets.h.
5956         (rpl_gethostname): Invoke gl_sockets_startup.
5957         * lib/socket.c: Include sockets.h.
5958         (rpl_socket): Invoke gl_sockets_startup.
5959         * modules/gethostname (Depends-on): Add sockets.
5960         * modules/socket (Depends-on): Likewise.
5961         * tests/test-poll.c: Don't include sockets.h.
5962         (main): Don't invoke gl_sockets_startup.
5963         * tests/test-select.c: Don't include sockets.h.
5964         (main): Don't invoke gl_sockets_startup.
5965
5966 2009-08-02  Bruno Haible  <bruno@clisp.org>
5967
5968         Allow multiple calls to gl_sockets_startup.
5969         * lib/sockets.c (initialized_sockets_version): New variable.
5970         (gl_sockets_startup): Do nothing if already called for this or a higher
5971         version.
5972         (gl_sockets_cleanup): Reset initialized_sockets_version.
5973
5974 2009-08-03  Simon Josefsson  <simon@josefsson.org>
5975
5976         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
5977         different project/version.
5978
5979 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
5980             Bruno Haible  <bruno@clisp.org>
5981
5982         Tests for module 'pipe-filter-gi'.
5983         * modules/pipe-filter-gi-tests: New file.
5984         * tests/test-pipe-filter-gi1.sh: New file.
5985         * tests/test-pipe-filter-gi1.c: New file.
5986         * tests/test-pipe-filter-gi2.sh: New file.
5987         * tests/test-pipe-filter-gi2-main.c: New file.
5988         * tests/test-pipe-filter-gi2-child.c: New file.
5989
5990         New module 'pipe-filter-gi'.
5991         * lib/pipe-filter-gi.c: New file.
5992         * modules/pipe-filter-gi: New file.
5993
5994 2009-08-02  Bruno Haible  <bruno@clisp.org>
5995             Paolo Bonzini  <bonzini@gnu.org>
5996
5997         Tests for module 'pipe-filter-ii'.
5998         * modules/pipe-filter-ii-tests: New file.
5999         * tests/test-pipe-filter-ii1.sh: New file.
6000         * tests/test-pipe-filter-ii1.c: New file.
6001         * tests/test-pipe-filter-ii2.sh: New file.
6002         * tests/test-pipe-filter-ii2-main.c: New file.
6003         * tests/test-pipe-filter-ii2-child.c: New file.
6004
6005         New module 'pipe-filter-ii'.
6006         * lib/pipe-filter.h: New file.
6007         * lib/pipe-filter-ii.c: New file.
6008         * lib/pipe-filter-aux.h: New file.
6009         * modules/pipe-filter-ii: New file.
6010
6011 2009-08-02  Simon Josefsson  <simon@josefsson.org>
6012
6013         * lib/gc-libgcrypt.c: Change copyright to FSF.
6014         * lib/gc-gnulib.c: Likewise.
6015
6016 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
6017
6018         * lib/gethostname.c: Include limits.h.
6019
6020 2009-08-02  Simon Josefsson  <simon@josefsson.org>
6021             Bruno Haible  <bruno@clisp.org>
6022
6023         Ensure HOST_NAME_MAX as part of the gethostname module.
6024         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
6025         define also HOST_NAME_MAX.
6026         * tests/test-gethostname.c: Include <limits.h>.
6027         (main): Check also HOST_NAME_MAX.
6028         * doc/posix-headers/limits.texi: Document the mingw problem.
6029
6030 2009-08-02  Bruno Haible  <bruno@clisp.org>
6031
6032         * lib/gethostname.c (gethostname): Fix handling of large len argument.
6033         Add comments.
6034
6035 2009-03-31  Simon Josefsson  <simon@josefsson.org>
6036
6037         * lib/gethostname.c: Add Windows wrapper.
6038         * m4/gethostname.m4: Look for gethostname in -lws2_32.
6039         * modules/gethostname: Depend on sys_socket & errno, for also
6040         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
6041         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
6042
6043 2009-07-31  Jim Meyering  <meyering@redhat.com>
6044
6045         getloadavg: fix symbol name in comment
6046         * lib/getloadavg.c: Correct a typo I introduced when adding
6047         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
6048         Matt Kraai spotted the problem.
6049
6050 2009-07-29  Matt Kraai  <mkraai@beckman.com>
6051
6052         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
6053         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
6054         code also if ! defined N_NAME_POINTER.
6055         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
6056         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
6057         but the n_name member is a 12-byte array.
6058
6059 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
6060
6061         update-copyright: generalize comment handling
6062         * build-aux/update-copyright: Handle copyright statements
6063         within more comment styles.
6064         Document usage.
6065         Report any file with an external copyright holder or parse failure.
6066
6067 2009-07-29  Jim Meyering  <meyering@redhat.com>
6068
6069         mktime: correct setting of REPLACE_MKTIME
6070         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
6071
6072         update-copyright: new module
6073         * modules/update-copyright: New file.
6074         * build-aux/update-copyright: New file.
6075         * MODULES.html.sh (maint+release support): Add update-copyright.
6076
6077 2009-07-27  Bruno Haible  <bruno@clisp.org>
6078
6079         Fix compilation error when <ctime> is used and mktime is replaced.
6080         * lib/time.in.h (mktime): New declaration.
6081         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
6082         REPLACE_MKTIME instead of defining mktime in config.h.
6083         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
6084         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
6085         Reported by Ross McFarland <rwmcfa1@neces.com>.
6086
6087 2009-07-27  Bruno Haible  <bruno@clisp.org>
6088
6089         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
6090         Reported by Matt Kraai <mkraai@beckman.com>.
6091
6092 2009-07-25  Jim Meyering  <meyering@redhat.com>
6093
6094         maint.mk: avoid warnings about missing files
6095         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
6096         diagnostic when .prev-version does not exist.
6097         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
6098         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
6099         nonexistent cfg.mk.
6100         Suggestions from Simon Josefsson.
6101
6102 2009-07-25  Bruno Haible  <bruno@clisp.org>
6103
6104         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
6105         defined as macros. Needed on QNX 6.4.1.
6106         Reported by Matt Kraai <mkraai@beckman.com>.
6107
6108 2009-07-23  Jim Meyering  <meyering@redhat.com>
6109
6110         maint.mk: invoke "make dist" with a working value of XZ_OPT
6111         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
6112
6113 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
6114
6115         Make fseeko.c compile on QNX.
6116         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
6117
6118 2009-07-22  Peter Simons  <simons@cryp.to>
6119
6120         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
6121         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
6122         * lib/md4.h: Likewise.
6123         * lib/md5.h: Likewise.
6124         * lib/sha1.h: Likewise.
6125         * lib/sha256.h: Likewise.
6126         * lib/sha512.h: Likewise.
6127
6128         tests-sha1: don't assign literal string to 'char *' variable
6129         * tests/test-sha1.c (main): Declare locals with "const" to match
6130         attributes of the right hand side.
6131
6132 2009-07-21  Eric Blake  <ebb9@byu.net>
6133
6134         dup2: fix more mingw problems
6135         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
6136         fd to itself.
6137         * doc/posix-functions/dup2.texi (dup2): Document the bug.
6138         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
6139         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
6140         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
6141         care of mingw bugs.
6142
6143 2009-07-21  Jim Meyering  <meyering@redhat.com>
6144
6145         vc-list-files: avoid failure when /bin/sh is dash
6146         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
6147         On some Debian based systems, /bin/sh is a symlink to dash, and running
6148         this command would omit the "/" following each 'tests' prefix:
6149           dash -x build-aux/vc-list-files -C . tests
6150         That is because bash and dash work differently:
6151           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
6152           bash ok
6153           dash odd
6154
6155 2009-07-21  Eric Blake  <ebb9@byu.net>
6156
6157         dup2-tests: test previous patch
6158         * modules/dup2-tests: New file.
6159         * tests/test-dup2.c: Likewise.
6160         * tests/test-open.c (main): Avoid unspecified behavior.
6161         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
6162         test.
6163
6164         dup2: work around mingw and cygwin 1.5 bug
6165         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
6166         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6167         * modules/unistd (Makefile.am): Substitute it.
6168         * lib/unistd.in.h (dup2): Declare the replacement.
6169         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
6170         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
6171         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
6172         * modules/execute (Depends-on): Add dup2.
6173         * modules/fseterr (Depends-on): Likewise.
6174         * modules/pipe (Depends-on): Likewise.
6175         * modules/posix_spawn-internal (Depends-on): Likewise.
6176
6177 2009-07-21  Bruno Haible  <bruno@clisp.org>
6178
6179         * modules/.gitattributes: New file.
6180
6181 2009-07-20  Bruno Haible  <bruno@clisp.org>
6182
6183         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
6184         (main): Use it.
6185
6186 2009-07-20  Eric Blake  <ebb9@byu.net>
6187
6188         test-pipe: make a bit more robust.
6189         * tests/test-pipe.c (myerr): Allow error messages regardless of
6190         what we do to stderr.
6191         (test_pipe): Rearrange to avoid deadlock.
6192         (child_main): Try a larger read, to ensure we avoided deadlock.
6193         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
6194         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
6195         if misused.
6196
6197 2009-07-19  Jim Meyering  <meyering@redhat.com>
6198
6199         fts: avoid false-positive cycle-detection
6200         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
6201         for each new command line argument.
6202
6203 2009-07-19  Bruno Haible  <bruno@clisp.org>
6204
6205         Fix build error on mingw with the modules sys_select and unistd.
6206         * modules/acl-tests (Depends-on): Add close.
6207         * modules/binary-io-tests (Depends-on): Likewise.
6208         * modules/closein-tests (Depends-on): Likewise.
6209         * modules/flock-tests (Depends-on): Likewise.
6210         * modules/fsync-tests (Depends-on): Likewise.
6211         * modules/lseek-tests (Depends-on): Likewise.
6212         * modules/pipe-tests (Depends-on): Likewise.
6213         * modules/posix_spawn-tests (Depends-on): Likewise.
6214         * modules/posix_spawnp-tests (Depends-on): Likewise.
6215         * modules/stat-time-tests (Depends-on): Likewise.
6216         * modules/yesno-tests (Depends-on): Likewise.
6217
6218 2009-07-19  Bruno Haible  <bruno@clisp.org>
6219
6220         Unify conditionals.
6221         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
6222         macros, not at the compiler macros.
6223         * lib/pipe.c: Likewise.
6224         * lib/execute.c: Likewise.
6225         * lib/spawni.c: Likewise.
6226
6227 2009-07-19  Bruno Haible  <bruno@clisp.org>
6228
6229         Fix handling of closed stdin/stdout/stderr on mingw.
6230         * lib/w32spawn.h: Include unistd.h.
6231         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
6232         file descriptor with O_NOINHERIT flag.
6233         (fd_safer_noinherit): New function, based on fd-safer.c.
6234         (dup_safer_noinherit): New function, based on dup-safer.c.
6235         (undup_safer_noinherit): New function.
6236         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
6237         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
6238         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
6239         instead of fd_safer.
6240         * tests/test-pipe.c: Include <windows.h>.
6241         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
6242
6243         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
6244         from main.
6245         (test_pipe): Pass an extra argument for disambiguation.
6246         (main): Invoke parent_main or child_main.
6247
6248         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
6249         consistently.
6250
6251 2009-07-18  Eric Blake  <ebb9@byu.net>
6252
6253         test-pipe: fix mingw build
6254         * tests/test-pipe.c (main): Avoid fcntl on mingw.
6255
6256 2009-07-18  Bruno Haible  <bruno@clisp.org>
6257
6258         * modules/pipe-tests (Makefile.am): Fix typo.
6259
6260 2009-07-18  Eric Blake  <ebb9@byu.net>
6261
6262         error: fix mingw build
6263         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
6264         Reported by Bruno Haible.
6265
6266         error: avoid undefined use of stdout
6267         * lib/error.c (error, error_at_line): Check that fd 1 is open
6268         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
6269         is handling faults and the close_stdout module wants to report the
6270         detection of closed stdout as an error.
6271
6272 2009-07-17  Eric Blake  <ebb9@byu.net>
6273
6274         pipe: be robust in face of closed fds
6275         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
6276         should cause child to misbehave.
6277         * modules/pipe-tests: New module.
6278         * tests/test-pipe.c: New file.
6279         * tests/test-pipe.sh: New file.
6280         Reported by Akim Demaille.
6281
6282 2009-07-14  Bruno Haible  <bruno@clisp.org>
6283
6284         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
6285         Reported by anonymous kc.
6286
6287 2009-07-07  Jim Meyering  <meyering@redhat.com>
6288
6289         maint.mk: don't look for translatable strings in *.m4 or *.mk
6290         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
6291         when searching for translatable strings.
6292
6293 2009-07-05  Jim Meyering  <meyering@redhat.com>
6294
6295         remove superfluous parentheses in STREQ definition
6296         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
6297         * lib/getugroups.c (STREQ): Likewise.
6298         * lib/fnmatch.c (STREQ): Likewise.
6299         Spotted by Bruno Haible.
6300
6301 2009-07-04  Jim Meyering  <meyering@redhat.com>
6302
6303         argv-iter: new module
6304         * MODULES.html.sh: Add argv-iter.
6305         * lib/argv-iter.c, lib/argv-iter.h: New files.
6306         * modules/argv-iter: New file.
6307         * modules/argv-iter-tests: New file.
6308         * tests/test-argv-iter.c: Test it.
6309
6310 2009-07-04  Bruno Haible  <bruno@clisp.org>
6311
6312         Fix assertion.
6313         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
6314         contains more exact copies of a given entry than file2, leave the extra
6315         copies unpaired rather than aborting.
6316         Reported by Eric Blake.
6317
6318 2009-07-02  Bruno Haible  <bruno@clisp.org>
6319
6320         Speedup git-merge-changelog for git cherry-pick.
6321         * lib/git-merge-changelog.c (struct entries_mapping): New type.
6322         (entries_mapping_get): New function, extracted from compute_mapping.
6323         (entries_mapping_reverse_get): New function.
6324         (compute_mapping): Add a 'full' argument. Return the result in a
6325         'struct entries_mapping'.
6326         (main): Update. Access the mappings through entries_mapping_get.
6327         Reported by Eric Blake.
6328
6329 2009-07-02  Bruno Haible  <bruno@clisp.org>
6330
6331         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
6332         best_i.
6333
6334 2009-07-02  Bruno Haible  <bruno@clisp.org>
6335
6336         Speed up approximate search for matching ChangeLog entries.
6337         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
6338         argument. Call fstrcmp_bounded instead of fstrcmp.
6339         (compute_mapping, try_split_merged_entry, main): Update callers.
6340
6341 2009-07-02  Bruno Haible  <bruno@clisp.org>
6342
6343         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
6344
6345 2009-06-30  Bruno Haible  <bruno@clisp.org>
6346
6347         Reduce the number of uc_is_cased calls.
6348         * lib/unicase.h (casing_suffix_context_t): Add
6349         'first_char_except_ignorable' field.
6350         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
6351         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
6352         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
6353         Update initializer.
6354         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
6355         case-ignorable characters.
6356         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
6357         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
6358         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
6359         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
6360         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
6361
6362 2009-06-30  Bruno Haible  <bruno@clisp.org>
6363
6364         Tests for module 'unicase/ignorable'.
6365         * modules/unicase/ignorable-tests: New file.
6366         * tests/unicase/test-ignorable.c: New file, generated by
6367         gen-uni-tables.
6368
6369         Tests for module 'unicase/cased'.
6370         * modules/unicase/cased-tests: New file.
6371         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
6372         * tests/unicase/test-predicate-part1.h: New file, derived from
6373         tests/unictype/test-predicate-part1.h.
6374         * tests/unicase/test-predicate-part2.h: New file, same as
6375         tests/unictype/test-predicate-part2.h.
6376
6377         Fix evaluation of "Before C" condition of FINAL_SIGMA.
6378         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
6379         (output_casing_properties): New function.
6380         (main): Call it.
6381         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
6382         * lib/unicase/cased.c: Include unictype/bitmap.h.
6383         (uc_is_cased): Define through a bitmap lookup.
6384         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
6385         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
6386         (uc_is_case_ignorable): Define through a bitmap lookup.
6387         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
6388         lib/unictype/bitmap.h.
6389         (Depends-on): Add inline. Clean up.
6390         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
6391         lib/unictype/bitmap.h.
6392         (Depends-on): Add inline. Clean up.
6393         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
6394         recognition.
6395         * tests/unicase/test-u16-tolower.c (main): Likewise.
6396         * tests/unicase/test-u32-tolower.c (main): Likewise.
6397
6398 2009-06-30  Bruno Haible  <bruno@clisp.org>
6399
6400         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
6401         * lib/unicase/u16-casemap.c: Likewise.
6402         * lib/unicase/u32-casemap.c: Likewise.
6403
6404 2009-06-29  Bruno Haible  <bruno@clisp.org>
6405
6406         Define u32_casefold as a wrapper around u32_ct_casefold.
6407         * lib/unicase/u32-casefold.c: Update.
6408         * modules/unicase/u32-casefold (Depends-on): Add
6409         unicase/u32-ct-casefold, unicase/empty-prefix-context,
6410         unicase/empty-suffix-context. Clean up.
6411
6412         Define u16_casefold as a wrapper around u16_ct_casefold.
6413         * lib/unicase/u16-casefold.c: Update.
6414         * modules/unicase/u16-casefold (Depends-on): Add
6415         unicase/u16-ct-casefold, unicase/empty-prefix-context,
6416         unicase/empty-suffix-context. Clean up.
6417
6418         Define u8_casefold as a wrapper around u8_ct_casefold.
6419         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
6420         * lib/unicase/u8-casefold.c: Update.
6421         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
6422         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6423
6424         Define u32_totitle as a wrapper around u32_ct_totitle.
6425         * lib/unicase/u32-totitle.c: Update.
6426         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
6427         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6428
6429         Define u16_totitle as a wrapper around u16_ct_totitle.
6430         * lib/unicase/u16-totitle.c: Update.
6431         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
6432         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6433
6434         Define u8_totitle as a wrapper around u8_ct_totitle.
6435         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
6436         functions.
6437         (FUNC): Delegate to U_CT_TOTITLE.
6438         * lib/unicase/u8-totitle.c: Update.
6439         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
6440         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6441
6442         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
6443         invocation.
6444         * modules/unicase/u32-tolower (Depends-on): Add
6445         unicase/empty-prefix-context, unicase/empty-suffix-context.
6446
6447         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
6448         invocation.
6449         * modules/unicase/u16-tolower (Depends-on): Add
6450         unicase/empty-prefix-context, unicase/empty-suffix-context.
6451
6452         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
6453         * modules/unicase/u8-tolower (Depends-on): Add
6454         unicase/empty-prefix-context, unicase/empty-suffix-context.
6455
6456         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
6457         invocation.
6458         * modules/unicase/u32-toupper (Depends-on): Add
6459         unicase/empty-prefix-context, unicase/empty-suffix-context.
6460
6461         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
6462         invocation.
6463         * modules/unicase/u16-toupper (Depends-on): Add
6464         unicase/empty-prefix-context, unicase/empty-suffix-context.
6465
6466         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
6467         * modules/unicase/u8-toupper (Depends-on): Add
6468         unicase/empty-prefix-context, unicase/empty-suffix-context.
6469
6470         New module 'unicase/u32-ct-casefold'.
6471         * lib/unicase/u32-ct-casefold.c: New file.
6472         * modules/unicase/u32-ct-casefold: New file.
6473
6474         New module 'unicase/u16-ct-casefold'.
6475         * lib/unicase/u16-ct-casefold.c: New file.
6476         * modules/unicase/u16-ct-casefold: New file.
6477
6478         New module 'unicase/u8-ct-casefold'.
6479         * lib/unicase/u8-ct-casefold.c: New file.
6480         * lib/unicase/u-ct-casefold.h: New file, derived from
6481         lib/unicase/u-casefold.h.
6482         * modules/unicase/u8-ct-casefold: New file.
6483
6484         New module 'unicase/u32-ct-totitle'.
6485         * lib/unicase/u32-ct-totitle.c: New file.
6486         * modules/unicase/u32-ct-totitle: New file.
6487
6488         New module 'unicase/u16-ct-totitle'.
6489         * lib/unicase/u16-ct-totitle.c: New file.
6490         * modules/unicase/u16-ct-totitle: New file.
6491
6492         New module 'unicase/u8-ct-totitle'.
6493         * lib/unicase/u8-ct-totitle.c: New file.
6494         * lib/unicase/u-ct-totitle.h: New file, derived from
6495         lib/unicase/u-totitle.h.
6496         * modules/unicase/u8-ct-totitle: New file.
6497
6498         New module 'unicase/u32-ct-tolower'.
6499         * lib/unicase/u32-ct-tolower.c: New file.
6500         * modules/unicase/u32-ct-tolower: New file.
6501
6502         New module 'unicase/u16-ct-tolower'.
6503         * lib/unicase/u16-ct-tolower.c: New file.
6504         * modules/unicase/u16-ct-tolower: New file.
6505
6506         New module 'unicase/u8-ct-tolower'.
6507         * lib/unicase/u8-ct-tolower.c: New file.
6508         * modules/unicase/u8-ct-tolower: New file.
6509
6510         New module 'unicase/u32-ct-toupper'.
6511         * lib/unicase/u32-ct-toupper.c: New file.
6512         * modules/unicase/u32-ct-toupper: New file.
6513
6514         New module 'unicase/u16-ct-toupper'.
6515         * lib/unicase/u16-ct-toupper.c: New file.
6516         * modules/unicase/u16-ct-toupper: New file.
6517
6518         New module 'unicase/u8-ct-toupper'.
6519         * lib/unicase/u8-ct-toupper.c: New file.
6520         * modules/unicase/u8-ct-toupper: New file.
6521
6522         Add context arguments to u*_casemap functions.
6523         * lib/unicase/unicasemap.h: Include unicase.h.
6524         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
6525         suffix_context arguments.
6526         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
6527         functions.
6528         (FUNC): Add prefix_context and suffix_context arguments. Use
6529         uc_is_cased and uc_is_case_ignorable.
6530         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
6531         * lib/unicase/u16-casemap.c: Likewise.
6532         * lib/unicase/u32-casemap.c: Likewise.
6533         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
6534         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6535         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
6536         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6537         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
6538         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6539
6540         New module 'unicase/u32-suffix-context'.
6541         * lib/unicase/u32-suffix-context.c: New file.
6542         * modules/unicase/u32-suffix-context: New file.
6543
6544         New module 'unicase/u16-suffix-context'.
6545         * lib/unicase/u16-suffix-context.c: New file.
6546         * modules/unicase/u16-suffix-context: New file.
6547
6548         New module 'unicase/u8-suffix-context'.
6549         * lib/unicase/u8-suffix-context.c: New file.
6550         * lib/unicase/u-suffix-context.h: New file.
6551         * modules/unicase/u8-suffix-context: New file.
6552
6553         New module 'unicase/empty-suffix-context'.
6554         * lib/unicase/empty-suffix-context.c: New file.
6555         * modules/unicase/empty-suffix-context: New file.
6556
6557         New module 'unicase/u32-prefix-context'.
6558         * lib/unicase/u32-prefix-context.c: New file.
6559         * modules/unicase/u32-prefix-context: New file.
6560
6561         New module 'unicase/u16-prefix-context'.
6562         * lib/unicase/u16-prefix-context.c: New file.
6563         * modules/unicase/u16-prefix-context: New file.
6564
6565         New module 'unicase/u8-prefix-context'.
6566         * lib/unicase/u8-prefix-context.c: New file.
6567         * lib/unicase/u-prefix-context.h: New file.
6568         * lib/unicase/context.h: New file.
6569         * modules/unicase/u8-prefix-context: New file.
6570
6571         New module 'unicase/empty-prefix-context'.
6572         * lib/unicase/empty-prefix-context.c: New file.
6573         * modules/unicase/empty-prefix-context: New file.
6574
6575         New module 'unicase/ignorable'.
6576         * lib/unicase/ignorable.c: New file.
6577         * modules/unicase/ignorable: New file.
6578
6579         New module 'unicase/cased'.
6580         * lib/unicase/caseprop.h: New file.
6581         * lib/unicase/cased.c: New file.
6582         * modules/unicase/cased: New file.
6583
6584         New functions for case mapping of substrings.
6585         * lib/unicase.h (casing_prefix_context_t): New type.
6586         (unicase_empty_prefix_context): New variable.
6587         (u8_casing_prefix_context, u16_casing_prefix_context,
6588         u32_casing_prefix_context, u8_casing_prefixes_context,
6589         u16_casing_prefixes_context, u32_casing_prefixes_context): New
6590         declarations.
6591         (casing_suffix_context_t): New type.
6592         (unicase_empty_suffix_context): New variable.
6593         (u8_casing_suffix_context, u16_casing_suffix_context,
6594         u32_casing_suffix_context, u8_casing_suffixes_context,
6595         u16_casing_suffixes_context, u32_casing_suffixes_context,
6596         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
6597         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
6598         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
6599         declarations.
6600
6601 2009-06-28  Jim Meyering  <meyering@redhat.com>
6602
6603         boostrap: indent only with spaces
6604         * build-aux/bootstrap: Indent only with spaces, never TABs.
6605
6606         bootstrap: split long lines
6607         * build-aux/bootstrap: Keep line length < 80.
6608
6609         bootstrap: sync from coreutils
6610         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
6611         just as autoreconf does.  Verify a list of prerequisite
6612         package-name,version-number pairs if defined in bootstrap.conf.
6613         Refer to README-prereq, if prerequisites are not satisfied.
6614
6615 2009-06-27  Eric Blake  <ebb9@byu.net>
6616
6617         tests: add test for bogus NULL definition
6618         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
6619         * tests/test-stdlib.c: Likewise.
6620         * tests/test-string.c: Likewise.
6621         * tests/test-locale.c: Likewise.
6622         * tests/test-unistd.c: Likewise.
6623         * modules/stdio-tests (Depends-on): Add verify.
6624         * modules/stdlib-tests (Depends-on): Likewise.
6625         * modules/string-tests (Depends-on): Likewise.
6626         * modules/locale-tests (Depends-on): Likewise.
6627         * modules/unistd-tests (Depends-on): Likewise.
6628
6629 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
6630
6631         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
6632         self-explaining comment.
6633         * m4/selinux-selinux-h: Update serial.
6634         (gl_LIBSELINUX): New macro, adding a warning for missing development
6635         packages to code extracted from...
6636         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
6637         Add warning for missing development packages here, too.
6638
6639 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
6640
6641         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
6642
6643 2009-06-25  Eric Blake  <ebb9@byu.net>
6644
6645         version-etc: fix regression
6646         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
6647         gcc.
6648         (version_etc): Use it, to catch bugs with trailing NULL.
6649         * lib/version-etc.c (version_etc_arn): Delete unused argument.
6650         (version_etc_va): Fix logic bug.
6651         * modules/version-etc-tests: Add test.
6652         * tests/test-version-etc.c: New file.
6653         * tests/test-version-etc.sh: Likewise.
6654
6655 2009-06-25  Sam Steingold  <sds@gnu.org>
6656
6657         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
6658         mbtowc declaration.
6659
6660 2009-06-25  Eric Blake  <ebb9@byu.net>
6661
6662         fpurge: migrate into <stdio.h>
6663         * lib/fpurge.h: Delete...
6664         * lib/stdio.in.h (fpurge): ...and declare here, instead.
6665         * lib/fpurge.c (fpurge): Change declaring header.
6666         * modules/fpurge (Files): Drop deleted file.
6667         (Depends-on): Add stdio.
6668         (configure.ac): Set witness.
6669         * modules/stdio (Makefile.am): Support fpurge macros.
6670         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
6671         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
6672         * lib/fflush.c: Update client.
6673         * tests/test-fpurge.c: Likewise.
6674         * NEWS: Mention the change.
6675
6676 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6677
6678         * lib/argp-version-etc.c (program_authors): Add const
6679         qualifier.
6680         * lib/version-etc.c: Fix typos in the comments.
6681         * modules/argp-version-etc: Depends on version-etc.
6682
6683 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6684
6685         argp-version-etc: new module.
6686
6687         * lib/argp-version-etc.c: New file.
6688         * lib/argp-version-etc.h: New file.
6689         * modules/argp-version-etc: New file.
6690         * modules/argp-version-etc-tests: New file.
6691         * tests/test-argp-version-etc.c: New test.
6692         * tests/test-argp-version-etc-1.sh: New test.
6693
6694 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6695
6696         Provide additional interfaces and documentation for version-etc
6697         module.
6698
6699         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
6700         interfaces.
6701         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
6702         prototypes.
6703
6704 2009-06-24  Bruno Haible  <bruno@clisp.org>
6705
6706         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
6707         HAVE_LIB${NAME} macro.
6708         Reported by Sam Steingold <sds@gnu.org>.
6709
6710 2009-06-23  Simon Josefsson  <simon@josefsson.org>
6711
6712         * modules/hash-tests (test_hash_LDADD): Link to libintl when
6713         needed.
6714
6715 2009-06-21  Bruno Haible  <bruno@clisp.org>
6716
6717         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
6718         work.
6719         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
6720         together with LIB${NAME}, LTLIB${NAME}.
6721         Reported by Sam Steingold <sds@gnu.org>.
6722
6723 2009-06-20  Jim Meyering  <meyering@redhat.com>
6724
6725         tests: make sc_require_test_exit_idiom more generic
6726         * top/maint.mk (Exit_witness_file): New overridable variable.
6727         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
6728         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
6729
6730 2009-06-19  Jim Meyering  <meyering@redhat.com>
6731
6732         hash: reverse order of src/dst parameters in an internal interface
6733         * lib/hash.c (transfer_entries): Reverse order of parameters to
6734         put DST before SRC.  Adjust callers.
6735
6736         tests: test-hash: avoid wholesale duplication
6737         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
6738         Instead, use a loop and add a single conditional.
6739
6740         tests: test-hash: allow seed selection via a command line argument
6741         * tests/test-hash.c (get_seed): New function.
6742         (main): Use it.
6743
6744 2009-06-19  Eric Blake  <ebb9@byu.net>
6745
6746         hash: avoid memory leak on allocation failure
6747         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
6748         failure.  Factor repeated algorithm...
6749         (transfer_entries): ...into new helper routine.
6750         (hash_delete): React to hash_rehash return value.
6751
6752         hash: reduce memory pressure in hash_rehash no-op case
6753         * lib/hash.c (next_prime): Avoid overflow.
6754         (hash_initialize): Factor bucket size computation...
6755         (compute_bucket_size): ...into new helper function.
6756         (hash_rehash): Use new function and open coding to reduce memory
6757         pressure, and avoid a memory leak in USE_OBSTACK code.
6758         Reported by Jim Meyering.
6759
6760 2009-06-18  Eric Blake  <ebb9@byu.net>
6761
6762         hash: make rotation more obvious
6763         * modules/hash (Depends-on): Add bitrotate and stdint.
6764         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
6765         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
6766         (SIZE_MAX): Rely on headers for definition.
6767         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
6768         (raw_hasher): Use rotr_sz.
6769         Suggested by Jim Meyering.
6770
6771         hash: fix memory leak in last patch
6772         * lib/hash.c (hash_rehash): Avoid memory leak.
6773
6774         hash: avoid no-op rehashing
6775         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
6776
6777         hash: provide default callback functions
6778         * lib/hash.c (raw_hasher, raw_comparator): New functions.
6779         (hash_initialize): Use them as defaults.
6780         * tests/test-hash.c (main): Test this.
6781
6782         hash: minor optimization
6783         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
6784         when possible.
6785         (hash_initialize): Document this promise.
6786         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
6787         * tests/test-hash.c (hash_compare_strings): Test this.
6788
6789 2009-06-18  Bruno Haible  <bruno@clisp.org>
6790
6791         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
6792         going to be replaced anyway.
6793
6794 2009-06-18  Bruno Haible  <bruno@clisp.org>
6795
6796         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
6797         in one place.
6798         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
6799         be replaced anyway.
6800
6801 2009-06-18  Eric Blake  <ebb9@byu.net>
6802
6803         hash: check for resize before insertion
6804         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
6805         threshold before insertion, so that a pathological hash_rehash
6806         that fills every bucket can still trigger another rehash.
6807
6808 2009-06-18  Jim Meyering  <meyering@redhat.com>
6809
6810         hash-tests: add a loop around the small tests
6811         * tests/test-hash.c (main): Repeat small tests with selected
6812         small initial table sizes.
6813
6814 2009-06-17  Eric Blake  <ebb9@byu.net>
6815
6816         hash: minor cleanups
6817         * lib/hash.h (hash_entry): Make opaque, by moving...
6818         * lib/hash.c (hash_entry): ...here.
6819         (hash_insert): Clarify restrictions on what can be inserted.
6820         (hash_get_next): Clarify when it is safe to remove an element
6821         during traversal.
6822         (check_tuning): Skip verification when tuning is known safe.
6823         (hash_initialize): Clarify restrictions on tuning.
6824
6825 2009-06-17  Jim Meyering  <jim@meyering.net>
6826         and Eric Blake  <ebb9@byu.net>
6827
6828         hash-tests: new module
6829         * modules/hash-tests: New file.
6830         * tests/test-hash.c: New file.
6831
6832 2009-06-17  Eric Blake  <ebb9@byu.net>
6833
6834         strstr-simple: document new module
6835         * MODULES.html.sh: Document new module.
6836
6837         strstr, strcasestr: replace on platforms with broken memchr
6838         * modules/strstr: Split into...
6839         * modules/strstr-simple: ...new module that does not care about
6840         performance, but does care about glibc bug.
6841         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
6842         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
6843         if platform memchr is broken, per Debian bug 521737.
6844         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
6845         memchr.
6846         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
6847         * doc/posix-functions/strstr.texi (strstr): Document the fix.
6848         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
6849         * modules/mountlist (Depends-on): Add strstr-simple.
6850         * modules/gen-uni-tables (Depends-on): Likewise.
6851         * modules/argz (Depends-on): Add strstr.
6852
6853 2009-06-17  Bruno Haible  <bruno@clisp.org>
6854
6855         * modules/posix_spawn-internal (Depends-on): Add errno.
6856
6857 2009-06-17  Bruno Haible  <bruno@clisp.org>
6858
6859         Define missing ESTALE on Interix 3.5.
6860         * lib/errno.in.h (ESTALE): Assign a value if missing.
6861         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
6862         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
6863         missing.
6864         * doc/posix-headers/errno.texi: Mention the Interix bug.
6865         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
6866
6867 2009-06-15  Eric Blake  <ebb9@byu.net>
6868
6869         memchr, memchr2: add valgrind exception
6870         * lib/memchr.valgrind: New file.
6871         * lib/memchr2.valgrind: New file.
6872         * modules/memchr (Files): Distribute valgrind file.
6873         * modules/memchr2 (Files): Likewise.
6874
6875         docs: memchr is no longer obsolete
6876         * MODULES.html.sh: Move memchr from obsolete to string.h section.
6877         * lib/string.in.h (memchr): Simplify logic.
6878
6879 2009-06-14  Jim Meyering  <meyering@redhat.com>
6880
6881         link-follow: fix the "checking..." message to not mention trailing slash
6882         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
6883         never considered trailing slashes.
6884
6885 2009-06-14  Bruno Haible  <bruno@clisp.org>
6886
6887         * m4/memchr.m4: Mention also the bug on IA-64.
6888         * doc/posix-functions/memchr.texi: Likewise.
6889
6890 2009-06-12  Eric Blake  <ebb9@byu.net>
6891
6892         memchr: detect broken x86_64 and alpha implementations
6893         * modules/memchr-tests (Depends-on): Move mmap detection...
6894         * modules/memchr (Depends-on): ...here.
6895         (configure.ac): Set indicator.
6896         * lib/string.in.h (memchr): Declare replacement.
6897         * modules/string (Makefile.am): Trigger replacement.
6898         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
6899         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
6900         bugs.
6901         * doc/posix-functions/memchr.texi (memchr): Document the bug.
6902         * modules/getpagesize (License): Relax license.
6903
6904 2009-06-11  Bruno Haible  <bruno@clisp.org>
6905
6906         * lib/idpriv.h: Add more references.
6907
6908 2009-06-08  Bruno Haible  <bruno@clisp.org>
6909
6910         Tests for module 'idpriv-droptemp'.
6911         * modules/idpriv-droptemp-tests: New file.
6912         * tests/test-idpriv-droptemp.sh: New file.
6913         * tests/test-idpriv-droptemp.su.sh: New file.
6914         * tests/test-idpriv-droptemp.c: New file.
6915
6916         New module 'idpriv-droptemp'.
6917         * lib/idpriv-droptemp.c: New file.
6918         * modules/idpriv-droptemp: New file.
6919
6920 2009-06-08  Bruno Haible  <bruno@clisp.org>
6921
6922         Tests for module 'idpriv-drop'.
6923         * modules/idpriv-drop-tests: New file.
6924         * tests/test-idpriv-drop.sh: New file.
6925         * tests/test-idpriv-drop.su.sh: New file.
6926         * tests/test-idpriv-drop.c: New file.
6927
6928         New module 'idpriv-drop'.
6929         * lib/idpriv.h: New file.
6930         * lib-idpriv-drop.c: New file.
6931         * m4/idpriv.m4: New file.
6932         * modules/idpriv-drop: New file.
6933
6934 2009-06-08  Bruno Haible  <bruno@clisp.org>
6935
6936         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
6937         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
6938         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
6939         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
6940         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
6941         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
6942         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
6943
6944 2009-06-08  Eric Blake  <ebb9@byu.net>
6945
6946         test-strstr: use memory fence, when possible
6947         * tests/test-strstr.c (main): Use memory fence, in order to be
6948         more likely to trigger Debian bug 521737.
6949         * modules/strstr-tests (Files): Pull in additional files.
6950
6951         memchr: no longer obsolete, for wider field testing
6952         * modules/memchr (Status, Notice): Delete, this module is no
6953         longer obsolete.
6954         * modules/vasnprintf (Depends-on): Add memchr.
6955
6956 2009-06-07  Jim Meyering  <meyering@redhat.com>
6957
6958         hash: declare some functions with the warn_unused_result attribute
6959         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
6960
6961 2009-06-07  Bruno Haible  <bruno@clisp.org>
6962
6963         * tests/test-alignof.c: Don't test int64_t if it does not exist.
6964         Reported by Eric Blake.
6965
6966 2009-06-06  Eric Blake  <ebb9@byu.net>
6967
6968         test-alignof: fix typo with long double
6969         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
6970         compiler error.
6971
6972 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
6973
6974         Escape non-texinfo { and }s.
6975         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
6976         markup error.
6977
6978 2009-06-04  Jim Meyering  <meyering@redhat.com>
6979
6980         gitlog-to-changelog: don't infloop on an empty commit log
6981         * build-aux/gitlog-to-changelog: Warn about an empty log message.
6982         Reported by Boris Petersen <transacid@centerim.org>.
6983
6984 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
6985
6986         version-etc: extend for packagers
6987         Add three new configure options, intended for packagers:
6988           --with-packager="packager name"
6989           --with-packager-version="packager-specific version"
6990           --with-packager-bug-reports="packager bug reporting"
6991         An example with coreutils:
6992           $ ./configure \
6993             --with-packager=Gentoo \
6994             --with-packager-bug-report=http://bugs.gentoo.org/ \
6995             --with-packager-version="patchset 1.6"
6996           $ ./src/ls --version | head -n3
6997           ls (GNU coreutils) 7.1-dirty
6998           Packaged by Gentoo (patchset 1.6)
6999           Copyright (C) 2009 Free Software Foundation, Inc.
7000         Note that the bug reporting info via --help doesn't show up because
7001         coreutils uses its own custom emit_bug_reporting_address() implementation
7002         in src/system.h.  If it didn't, it'd look like:
7003           $ ./src/ls --help | tail -n4
7004           Report bugs to <bug-coreutils@gnu.org>.
7005           Report Gentoo bugs to <http://bugs.gentoo.org/>.
7006           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
7007           General help using GNU software: <http://www.gnu.org/gethelp/>.
7008         * lib/version-etc.c: Print new information, if provided.
7009         * m4/version-etc.m4: New file.
7010         * modules/version-etc (Files): Add m4/version-etc.m4.
7011         (configure.ac): Add gl_VERSION_ETC.
7012
7013 2009-05-31  Bruno Haible  <bruno@clisp.org>
7014
7015         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
7016         and 'int64_t'.
7017         * modules/alignof-tests (Dependencies): Add stdint.
7018         Reported by Eric Blake.
7019
7020 2009-05-31  Bruno Haible  <bruno@clisp.org>
7021
7022         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
7023         restriction due to compiler bugs.
7024         Reported by Eric Blake.
7025
7026 2009-05-31  Simon Josefsson  <simon@josefsson.org>
7027             Bruno Haible  <bruno@clisp.org>
7028
7029         Fix test-alignof failure.
7030         * lib/alignof.h (alignof_slot): New macro.
7031         (alignof_type): New macro, with the same semantics as the previous
7032         'alignof'.
7033         (alignof): Alias to alignof_slot.
7034         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
7035         check that the results are usable as constant expressions.
7036
7037 2009-05-31  Bruno Haible  <bruno@clisp.org>
7038
7039         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
7040         * tests/test-memchr.c (main): Check that memchr does not read past the
7041         first occurrence of the byte.
7042         * tests/test-strstr.c (main): Update comment.
7043         Suggested by Eric Blake.
7044
7045 2009-05-30  Bruno Haible  <bruno@clisp.org>
7046
7047         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
7048         detail how to use dumpbin.
7049         Reported by David Byron <dbyron@dbyron.com>.
7050
7051 2009-06-02  Simon Josefsson  <simon@josefsson.org>
7052
7053         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
7054
7055 2009-06-02  Simon Josefsson  <simon@josefsson.org>
7056
7057         * m4/manywarnings.m4: Add GCC 4.4 warnings.
7058
7059 2009-05-28  Bruno Haible  <bruno@clisp.org>
7060
7061         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
7062         build-aux/ files.
7063
7064 2009-05-28  Simon Josefsson  <simon@josefsson.org>
7065
7066         * gnulib-tool (func_import): Transform license on build-aux/ files too.
7067
7068 2009-05-27  Simon Josefsson  <simon@josefsson.org>
7069
7070         * gnulib-tool (sed_transform_main_lib_file)
7071         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
7072         regexps.
7073
7074 2009-05-26  Simon Josefsson  <simon@josefsson.org>
7075
7076         * tests/test-strstr.c: Add another self-test.
7077         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
7078         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
7079
7080 2009-05-23  Bruno Haible  <bruno@clisp.org>
7081
7082         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
7083         change.
7084
7085 2009-05-21  Bruno Haible  <bruno@clisp.org>
7086
7087         Simplify use of mode_t varargs.
7088         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
7089         uses 'mode_t' or 'int'.
7090         * lib/openat.c (openat): Likewise.
7091         * lib/open-safer.c (open_safer): Likewise.
7092         * m4/mode_t.m4: New file.
7093         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
7094         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
7095         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
7096         * modules/open (Files): Add m4/mode_t.m4.
7097         * modules/openat (Files): Likewise.
7098         * modules/fcntl-safer (Files): Likewise.
7099         Suggested by Eric Blake.
7100
7101 2009-05-21  Pádraig Brady  <P@draigbrady.com>
7102
7103         * doc/glibc-functions/fallocate.texi: New file.
7104         * doc/gnulib.texi: Include it.
7105
7106 2009-05-21  Eric Blake  <ebb9@byu.net>
7107             Bruno Haible  <bruno@clisp.org>
7108
7109         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
7110         invocations.
7111         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
7112
7113 2009-05-21  Eric Blake  <ebb9@byu.net>
7114             Bruno Haible  <bruno@clisp.org>
7115
7116         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
7117         include_next. Fix of 2008-11-20 commit.
7118         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
7119         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
7120         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
7121         NEXT_MATH_H.
7122         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
7123         instead of NEXT_MATH_H.
7124
7125 2009-05-21  Bruno Haible  <bruno@clisp.org>
7126
7127         Avoid redefinition warnings for SIZE_MAX.
7128         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
7129         Reported by Simon Josefsson.
7130
7131 2009-05-21  Bruno Haible  <bruno@clisp.org>
7132
7133         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
7134         AC_CACHE_VAL.
7135
7136 2009-05-20  Bruno Haible  <bruno@clisp.org>
7137
7138         Make zeroptr.h work on mingw.
7139         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
7140         mprotect.
7141         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
7142         * modules/memchr2-tests (configure.ac): Likewise.
7143         * modules/memcmp-tests (configure.ac): Likewise.
7144         * modules/memmem-tests (configure.ac): Likewise.
7145         * modules/memrchr-tests (configure.ac): Likewise.
7146         Reported by Simon Josefsson.
7147
7148 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7149
7150         * tests/test-glob.c: Include string.h for strcmp prototype.
7151
7152 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7153
7154         * modules/getdelim (Depends-on): Add explicit stdint, although it
7155         was implicitly already pulled in via realloc-posix.
7156         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
7157
7158 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7159
7160         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
7161         G. Christensen" <tgc@jupiterrise.com>.
7162         * m4/sys_socket_h.m4: Check for sa_family_t.
7163         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
7164         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
7165         * tests/test-sys_socket.c: Check that sa_family_t works.
7166
7167 2009-05-18  Eric Blake  <ebb9@byu.net>
7168
7169         maint.mk: allow gnulib_dir in VPATH build
7170         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
7171
7172 2009-05-15  Jim Meyering  <meyering@redhat.com>
7173
7174         maint.mk: Give gnulib_dir a default definition.
7175         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
7176         Thus, most packages no longer need to specify this variable in cfg.mk
7177
7178 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
7179
7180         rename.m4: fix typos that would make non-mingw cross-configure fail
7181         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
7182
7183 2009-05-13  Eric Blake  <ebb9@byu.net>
7184
7185         mmap-anon: avoid out-of-order autoconf expansion
7186         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
7187         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
7188         * modules/memchr-tests (Depends-on): Add extensions.
7189         * modules/memchr2-tests (Depends-on): Add extensions.
7190         * modules/memcmp-tests (Depends-on): Add extensions.
7191         * modules/memmem-tests (Depends-on): Add extensions.
7192         * modules/memrchr-tests (Depends-on): Add extensions.
7193
7194 2009-05-13  Bruno Haible  <bruno@clisp.org>
7195
7196         Make some tests ISO C 99 compliant.
7197         * tests/zerosize-ptr.h: New file.
7198         * tests/test-memchr.c: Include zerosize-ptr.h.
7199         (main): Use a zero-size object pointer instead of NULL.
7200         * tests/test-memchr2.c: Include zerosize-ptr.h.
7201         (main): Use a zero-size object pointer instead of NULL.
7202         * tests/test-memcmp.c: Include zerosize-ptr.h.
7203         (main): Use a zero-size object pointer instead of NULL.
7204         * tests/test-memmem.c: Include zerosize-ptr.h.
7205         (main): Use a zero-size object pointer instead of NULL.
7206         * tests/test-memrchr.c: Include zerosize-ptr.h.
7207         (main): Use a zero-size object pointer instead of NULL.
7208         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
7209         m4/mmap-anon.m4.
7210         (Depends-on): Add getpagesize.
7211         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7212         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
7213         m4/mmap-anon.m4.
7214         (Depends-on): Add getpagesize.
7215         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7216         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
7217         m4/mmap-anon.m4.
7218         (Depends-on): Add getpagesize.
7219         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7220         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
7221         m4/mmap-anon.m4.
7222         (Depends-on): Add getpagesize.
7223         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7224         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
7225         m4/mmap-anon.m4.
7226         (Depends-on): Add getpagesize.
7227         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7228
7229 2009-05-12  Bruno Haible  <bruno@clisp.org>
7230
7231         Tests for module 'alignof'.
7232         * modules/alignof-tests: New file.
7233         * tests/test-alignof.c: New file.
7234
7235 2009-05-12  Bruno Haible  <bruno@clisp.org>
7236
7237         Fix alignof macro.
7238         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
7239         vendor compilers that are always correct.
7240
7241 2009-05-12  Bruno Haible  <bruno@clisp.org>
7242
7243         Make the MAP_ANONYMOUS detection work on HP-UX 11.
7244         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
7245         not whether its fully works.
7246
7247 2009-05-12  Bruno Haible  <bruno@clisp.org>
7248
7249         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
7250
7251 2009-05-12  Jim Meyering  <meyering@redhat.com>
7252
7253         * top/maint.mk: Adjust backslash alignment.
7254
7255 2009-05-11  Simon Josefsson  <simon@josefsson.org>
7256
7257         * top/maint.mk: Make $(srcdir)/build-aux configurable.
7258
7259 2009-05-11  Eric Blake  <ebb9@byu.net>
7260
7261         argp: avoid undefined behavior
7262         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
7263         macros.
7264
7265 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7266
7267         * tests/test-vc-list-files-git.sh: Do git config of user.email and
7268         user.name to prevent git commit from complaining.
7269
7270 2009-05-10  Bruno Haible  <bruno@clisp.org>
7271
7272         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
7273         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
7274         it rewrites every file name only once.
7275         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
7276
7277 2009-05-08  Bruno Haible  <bruno@clisp.org>
7278
7279         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
7280         instead of 'max'.
7281
7282 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7283
7284         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
7285         sockaddr_storage test.
7286
7287 2009-05-07  Simon Josefsson  <simon@josefsson.org>
7288
7289         * modules/sys_socket (Makefile.am): Substitute
7290         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
7291         * m4/sys_socket_h.m4: Check for sockaddr_storage.
7292         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
7293         * tests/test-sys_socket.c: Check sockaddr_storage.
7294
7295 2009-05-08  Bruno Haible  <bruno@clisp.org>
7296
7297         New module 'alignof'.
7298         * lib/alignof.h: New file.
7299         * modules/alignof: New file.
7300
7301 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7302             Bruno Haible  <bruno@clisp.org>
7303
7304         Fix test-file-has-acl on FreeBSD.
7305         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
7306         mask is implicitly added.
7307         * tests/test-file-has-acl.c: Include <signal.h>.
7308         (main): Terminate the test after 5 seconds.
7309         * modules/acl-tests (configure.ac): Check for alarm function.
7310
7311 2009-05-04  Bruno Haible  <bruno@clisp.org>
7312
7313         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
7314         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
7315         * modules/errno (configure.ac): Drop AC_REQUIRE.
7316         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
7317         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
7318
7319 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7320
7321         * modules/glob-tests: New module.
7322         * tests/test-glob.c: Add.
7323
7324 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7325
7326         * modules/fnmatch-tests: New module.
7327         * tests/test-fnmatch.c: Add.
7328
7329 2009-05-04  Eric Blake  <ebb9@byu.net>
7330
7331         maint: make the new no-submodule-changes rule VPATH-safe
7332         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
7333
7334 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7335             Bruno Haible  <bruno@clisp.org>
7336
7337         acl: Fix infinite loop on FreeBSD.
7338         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
7339         of return value from acl_get_entry.
7340         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
7341         Likewise.
7342
7343 2009-05-03  Bruno Haible  <bruno@clisp.org>
7344
7345         * lib/acl-internal.h (acl_entries): Clarify return value.
7346         * lib/acl_entries.c (acl_entries): Likewise.
7347
7348 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7349
7350         Bug fix in acl module.
7351         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
7352
7353 2009-05-03  Bruno Haible  <bruno@clisp.org>
7354
7355         Create gperf-generated file in the source dir, not in the build dir.
7356         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
7357         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
7358         * modules/unicase/locale-language (unicase/locale-languages.h):
7359         Likewise.
7360         * modules/unicase/special-casing (unicase/special-casing-table.h):
7361         Likewise.
7362         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
7363         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
7364         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
7365         Reported by Ralf Wildenhues.
7366
7367 2009-05-03  Bruno Haible  <bruno@clisp.org>
7368
7369         * modules/fnmatch (Description, configure.ac): Taken from
7370         fnmatch-posix.
7371         * modules/fnmatch-posix: Turn into a symbolic reference to the
7372         'fnmatch' module, and deprecate.
7373         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
7374
7375 2009-05-03  Bruno Haible  <bruno@clisp.org>
7376
7377         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
7378         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
7379         Reported by Ralf Wildenhues.
7380
7381 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7382
7383         * m4/fnmatch.m4: Fix fnmatch re-define.
7384
7385 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7386
7387         priv-set: new module and tests; adapt write-any-file
7388         * lib/priv-set.c: New file.
7389         * lib/priv-set.h: New file.
7390         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
7391         * lib/write-any-file.c: Simplify by using priv-set module.
7392         * m4/priv-set.m4: New file.
7393         * modules/priv-set: New file.
7394         * modules/unlinkdir: Add dependency on priv-set module.
7395         * modules/write-any-file: Likewise.
7396
7397         Tests for module 'priv-set'.
7398         * modules/priv-set-tests: New file.
7399         * tests/test-priv-set.c: New file.
7400
7401 2009-05-03  Jim Meyering  <meyering@redhat.com>
7402             Bruno Haible  <bruno@clisp.org>
7403
7404         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
7405         use the converted UTF-8 variant of the name instead.
7406
7407 2009-05-03  Jim Meyering  <meyering@redhat.com>
7408
7409         tests: tighten some getdate tests
7410         * tests/test-getdate.c (main): Tighten tests: require equality,
7411         not just greater than.  Set TZ envvar to UTC0.
7412
7413 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
7414
7415         getdate: correctly interpret "next monday" when run on a Monday
7416         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
7417         that e.g., "next tues" (when run on a tuesday) results in a date
7418         that is one week in the future, and not today's date.
7419         I.e., add a week when the wday is the same as the current one.
7420         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
7421         and earlier by Martin Bernreuther and Jan Minář.
7422         * tests/test-getdate.c (main): Check that "next DAY" is always in
7423         the future and that "last DAY" is always in the past.
7424
7425 2009-05-02  Jim Meyering  <meyering@redhat.com>
7426
7427         build: ensure that a release build fails when a submodule is unclean
7428         * top/maint.mk (no-submodule-changes): New rule.
7429         (alpha beta major): Depend on it.
7430
7431 2009-05-02  Bruno Haible  <bruno@clisp.org>
7432
7433         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
7434         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
7435         shell variable gl_fnmatch_required to detect which variant is
7436         requested.
7437         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
7438         gl_FUNC_FNMATCH_POSIX.
7439         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
7440         exclude fnmatch-posix.
7441
7442 2009-05-02  Bruno Haible  <bruno@clisp.org>
7443
7444         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
7445         * modules/mbsrtowcs (License): Change to LGPLv2+.
7446         * modules/strnlen1 (License): Likewise.
7447         Reported by Simon Josefsson.
7448
7449 2009-05-02  Bruno Haible  <bruno@clisp.org>
7450
7451         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
7452         "cross".
7453         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
7454         gnulib-tool was called with option --source-base=lib.
7455
7456 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7457
7458         Use automake *-local hooks without commands, for extensibility.
7459         * modules/localcharset (Makefile.am): Rename install-exec-local
7460         rule to install-exec-localcharset, and make it a prerequisite of
7461         install-exec-local.  Likewise, rename the uninstall-local rule to
7462         uninstall-localcharset, and make it a prerequisite of the former.
7463
7464 2009-05-01  Bruno Haible  <bruno@clisp.org>
7465
7466         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
7467         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7468         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
7469         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
7470         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
7471         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7472         m4/locale-zh.m4, m4/codeset.m4.
7473
7474         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7475         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
7476         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7477         m4/locale-zh.m4.
7478
7479         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
7480         REPLACE_WCRTOMB if mbstate_t must be replaced.
7481         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
7482         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
7483
7484 2009-05-01  Bruno Haible  <bruno@clisp.org>
7485
7486         Avoid compiler warnings when redefining macros defined by <libintl.h>.
7487         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
7488         dngettext, dcngettext, textdomain, bindtextdomain,
7489         bind_textdomain_codeset): Undefine before redefining.
7490
7491 2009-04-30  Bruno Haible  <bruno@clisp.org>
7492
7493         Fix bug introduced on 2009-04-25.
7494         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
7495         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
7496         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
7497         is defined.
7498         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
7499         is defined.
7500         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
7501         is defined.
7502         Reported by Elbert_Pol <elbert.pol@gmail.com>.
7503
7504 2009-04-28  Bruno Haible  <bruno@clisp.org>
7505
7506         Comment tweaks.
7507         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
7508         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
7509         * lib/unicase.h (u*_casexfrm): Likewise.
7510         Reported by Paolo Bonzini.
7511
7512 2009-04-28  Bruno Haible  <bruno@clisp.org>
7513
7514         Fix a compilation error.
7515         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
7516         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
7517         Reported by Jim Meyering.
7518
7519 2009-04-27  Bruno Haible  <bruno@clisp.org>
7520
7521         New module 'libunistring'.
7522         * modules/libunistring: New file.
7523         * m4/libunistring.m4: New file.
7524         * MODULES.html.sh (Unicode string functions): Add it.
7525
7526 2009-04-27  Eric Blake  <ebb9@byu.net>
7527
7528         maint.mk: allow package-specific header to provide <config.h>
7529         * top/maint.mk (sc_require_config_h): New variable.
7530         (sc_require_config_h, sc_require_config_h_first): Use it.
7531
7532 2009-04-27  Simon Josefsson  <simon@josefsson.org>
7533
7534         * top/maint.mk (sc_avoid_if_before_free): Except
7535         useless-if-before-free script.
7536
7537 2009-04-27  Eric Blake  <ebb9@byu.net>
7538
7539         maintainer-makefile: depend on all required helper scripts
7540         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
7541         useless-if-before-free.
7542         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
7543         version, rather than assuming gnulib checkout is available.
7544         Reported by Simen Josefsson.
7545
7546 2009-04-26  Bruno Haible  <bruno@clisp.org>
7547
7548         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
7549         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
7550         "../" or "..".
7551
7552 2009-04-26  Bruno Haible  <bruno@clisp.org>
7553
7554         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
7555         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
7556         AC_LIB_HAVE_LINKFLAGS.
7557
7558 2009-04-26  Bruno Haible  <bruno@clisp.org>
7559
7560         Simplify calling convention of u*_conv_from_encoding.
7561         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
7562         u32_conv_from_encoding): Expect a resultbuf argument and return the
7563         result directly as a pointer.
7564         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
7565         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
7566         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
7567         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
7568         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
7569         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7570         Update.
7571         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
7572         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
7573         * lib/vasnprintf.c (VASNPRINTF): Update.
7574         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
7575         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
7576         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
7577         * NEWS: Mention the change.
7578
7579 2009-04-26  Bruno Haible  <bruno@clisp.org>
7580
7581         Simplify calling convention of u*_conv_to_encoding.
7582         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
7583         u32_conv_to_encoding): Expect a resultbuf argument and return the
7584         result directly as a pointer.
7585         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7586         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
7587         freeing scaled_offsets if mem_iconveha failed.
7588         * lib/unicase/u-casexfrm.h (FUNC): Update.
7589         * lib/uninorm/u-normxfrm.h (FUNC): Update.
7590         * lib/vasnprintf.c (VASNPRINTF): Update.
7591         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
7592         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
7593         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
7594         * NEWS: Mention the change.
7595
7596 2009-04-26  Bruno Haible  <bruno@clisp.org>
7597
7598         Avoid test failures on AIX and OSF/1.
7599         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
7600         malloc(0).
7601         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7602         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7603         Likewise.
7604         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
7605         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
7606         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
7607         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
7608         * doc/posix-functions/malloc.texi: Document the portability problem
7609         related to malloc(0).
7610
7611 2009-04-26  Bruno Haible  <bruno@clisp.org>
7612
7613         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
7614         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
7615         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
7616
7617 2009-04-25  Bruno Haible  <bruno@clisp.org>
7618
7619         Avoid link error when creating a namespace clean library.
7620         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
7621         as macro with arguments if already defined as an alias.
7622         * lib/signbitf.c (gl_signbitf): Don't undefine.
7623         * lib/signbitd.c (gl_signbitd): Don't undefine.
7624         * lib/signbitl.c (gl_signbitl): Don't undefine.
7625
7626 2009-04-25  Jim Meyering  <meyering@redhat.com>
7627
7628         vc-list-files: fix another quoting bug
7629         * build-aux/vc-list-files: Avoid sed backslash expansion
7630         of pathological directory names.
7631
7632 2009-04-25  Eric Blake  <ebb9@byu.net>
7633
7634         vc-list-files: fix shell quoting error
7635         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
7636         timestamp.
7637
7638 2009-04-25  Jim Meyering  <meyering@redhat.com>
7639
7640         vc-list-files: restore lost functionality with subdir argument
7641         * build-aux/vc-list-files: When given a non-"." sub-directory
7642         argument, substitute the $dir/ prefix back onto each resulting name.
7643         Otherwise, coreutils' root_tests check would fail.
7644
7645 2009-04-24  Eric Blake  <ebb9@byu.net>
7646
7647         vc-list-files: ignore git symlinks
7648         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
7649         than ls-files, to ignore git symlinks.
7650
7651         maint.mk: import improvements from m4
7652         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
7653         (move_if_change): Delete unused macro.
7654         (news-date-check, vc-diff-check): Support VPATH builds.
7655         (announcement): Likewise.  Split --bootstrap-tools list...
7656         (boostrap-tools): ...into separate list, which can be overridden
7657         in cfg.mk.
7658         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
7659         requiring dependency on useless-if-before-free module.
7660         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
7661         Support VPATH builds.
7662
7663 2009-04-24  Jim Meyering  <meyering@redhat.com>
7664
7665         maint.mk: remove coreutils-specific rules and variables
7666         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
7667         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
7668         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
7669
7670         maint.mk: remove obsolete rule
7671         * top/maint.mk (rel-check): Remove rule.
7672         (WGET, WGETFLAGS): Remove now-unused variables.
7673
7674 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7675
7676         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
7677         consistency.
7678
7679         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
7680         '$(PATH_SEPARATOR)' instead of ':'.
7681
7682 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7683
7684         * lib/getopt1.c (main): Use 'const' for static array.
7685
7686 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7687
7688         * top/maint.mk: Sync with coreutils.
7689         * NEWS: Explain incompatibilities.
7690
7691 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7692             Bruno Haible  <bruno@clisp.org>
7693
7694         Fix cross-compilation results.
7695         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
7696         statement, as third argument of AC_TRY_RUN.
7697         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
7698         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
7699         Likewise.
7700         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
7701         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
7702         Likewise.
7703         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
7704         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
7705         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
7706
7707 2009-04-20  Bruno Haible  <bruno@clisp.org>
7708
7709         Avoid test failure on mingw.
7710         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
7711
7712 2009-04-20  Bruno Haible  <bruno@clisp.org>
7713
7714         Avoid compilation error on mingw.
7715         * modules/localename-tests (Depends-on): Add locale.
7716
7717 2009-04-19  Bruno Haible  <bruno@clisp.org>
7718
7719         Support for building a shared library on Windows platforms.
7720         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
7721         (main): Test the presence of UNINORM_NFC here.
7722         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
7723         (main): Test the presence of UNINORM_NFD here.
7724         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
7725         (main): Test the presence of UNINORM_NFKC here.
7726         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
7727         (main): Test the presence of UNINORM_NFKD here.
7728
7729 2009-04-19  Bruno Haible  <bruno@clisp.org>
7730
7731         Avoid a compiler warning.
7732         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
7733         Change type of variable 'sequence'.
7734
7735 2009-04-19  Bruno Haible  <bruno@clisp.org>
7736
7737         * modules/configmake (Makefile.am): When the contents of configmake.h
7738         does not change, arrange to preserve its modification time.
7739
7740 2009-04-17  Simon Josefsson  <simon@josefsson.org>
7741
7742         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
7743         gettext domain.
7744
7745 2009-04-16  Jim Meyering  <meyering@redhat.com>
7746
7747         useless-if-before-free: improve conversion code
7748         * build-aux/useless-if-before-free: Adjust code-in-comment to match
7749         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
7750
7751 2009-04-14  Bruno Haible  <bruno@clisp.org>
7752
7753         * modules/fcntl (Depends-on): Add extensions.
7754         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
7755
7756 2009-04-12  Ben Pfaff  <blp@gnu.org>
7757
7758         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
7759         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
7760
7761 2009-03-20  Ben Pfaff  <blp@gnu.org>
7762
7763         Make rename replace existing destinations on Windows.
7764         * m4/rename.m4: Add test for Mingw.
7765         * lib/rename.c: Add rename replacement that uses MoveFileEx with
7766         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
7767         * doc/posix-functions/rename.texi: Document.
7768
7769 2009-04-10  Bruno Haible  <bruno@clisp.org>
7770
7771         New include file "iconveh.h".
7772         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
7773         * lib/striconveh.h: Include it.
7774         (enum iconv_ilseq_handler): Remove definition.
7775         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
7776         striconveh.h.
7777         * lib/striconveha.c: Include striconveh.h.
7778         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
7779         * modules/striconveh (Files): Add lib/iconveh.h.
7780         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
7781         lib/striconveh.h.
7782
7783 2009-04-10  Bruno Haible  <bruno@clisp.org>
7784
7785         * lib/uniconv.h: Update comment.
7786
7787 2009-04-10  Bruno Haible  <bruno@clisp.org>
7788
7789         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
7790         always.
7791         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
7792         * lib/unistr/u16-mbtouc-aux.c: Likewise.
7793         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
7794         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
7795         "unistring-notinline.h", so that the function gets defined always.
7796         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
7797         * lib/unistr/u8-uctomb.c: Likewise.
7798         * lib/unistr/u16-mbtouc.c: Likewise.
7799         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
7800         * lib/unistr/u16-uctomb.c: Likewise.
7801         * lib/unistr/u32-mbtouc.c: Likewise.
7802         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
7803         * lib/unistr/u32-uctomb.c: Likewise.
7804
7805 2009-04-10  Bruno Haible  <bruno@clisp.org>
7806
7807         Mark 'utime' obsolete.
7808         * modules/utime (Status, Notice): New sections.
7809         Suggested by Jim Meyering.
7810
7811         Fix cross-compile guess for utime test.
7812         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
7813         autoconf.
7814         * doc/posix-functions/utime.texi: Give more precisions.
7815         Reported by Jan <ipif@ymail.com>.
7816
7817 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
7818
7819         filevercmp: correct today's change
7820         * lib/filevercmp.c: Also handle coreutils' test inputs.
7821         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
7822
7823         Fix regression in 'filevercmp' module. Thanks Sven Joachim
7824         for reporting it.
7825         * lib/filevercmp.c: Special handle for "", "." and "..".
7826         * tests/test-filevercmp.c: Enlarge the set suite.
7827
7828 2009-04-07  Jim Meyering  <meyering@redhat.com>
7829
7830         useless-if-before-free: show how to remove braced useless free, too
7831         * build-aux/useless-if-before-free: still only in a comment, though.
7832
7833 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
7834
7835         maint.mk: import changes to syntax-check macros from coreutils
7836         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
7837         Use them in the relevant macros.
7838
7839 2009-04-06  Bruno Haible  <bruno@clisp.org>
7840
7841         Fix unportable use of bit-fields.
7842         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
7843         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
7844         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
7845
7846 2009-04-06  Bruno Haible  <bruno@clisp.org>
7847
7848         Avoid test failures on AIX and OSF/1.
7849         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
7850         that malloc(0) = NULL.
7851         * tests/unicase/test-u8-tolower.c (check): Likewise.
7852         * tests/unicase/test-u8-totitle.c (check): Likewise.
7853         * tests/unicase/test-u8-toupper.c (check): Likewise.
7854         * tests/unicase/test-u16-casefold.c (check): Likewise.
7855         * tests/unicase/test-u16-tolower.c (check): Likewise.
7856         * tests/unicase/test-u16-totitle.c (check): Likewise.
7857         * tests/unicase/test-u16-toupper.c (check): Likewise.
7858         * tests/unicase/test-u32-casefold.c (check): Likewise.
7859         * tests/unicase/test-u32-tolower.c (check): Likewise.
7860         * tests/unicase/test-u32-totitle.c (check): Likewise.
7861         * tests/unicase/test-u32-toupper.c (check): Likewise.
7862         * tests/uninorm/test-u8-nfc.c (check): Likewise.
7863         * tests/uninorm/test-u8-nfd.c (check): Likewise.
7864         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
7865         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
7866         * tests/uninorm/test-u16-nfc.c (check): Likewise.
7867         * tests/uninorm/test-u16-nfd.c (check): Likewise.
7868         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
7869         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
7870         * tests/uninorm/test-u32-nfc.c (check): Likewise.
7871         * tests/uninorm/test-u32-nfd.c (check): Likewise.
7872         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
7873         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
7874
7875 2009-04-05  Bruno Haible  <bruno@clisp.org>
7876
7877         Work around an autoconf limitation.
7878         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
7879         comment line if it would be longer than 3 KB.
7880
7881 2009-04-05  Bruno Haible  <bruno@clisp.org>
7882
7883         Avoid test failure with libiconv-1.13.
7884         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
7885         of the expected test results.
7886
7887 2009-04-05  Bruno Haible  <bruno@clisp.org>
7888
7889         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
7890         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
7891         that it should be installed.
7892
7893 2009-04-05  Bruno Haible  <bruno@clisp.org>
7894
7895         * gnulib-tool: New option --copy-file.
7896         (func_usage): Document it.
7897         (func_dest_tmpfilename): Moved out of func_import.
7898         (func_add_file, func_update_file): New functions, extracted from
7899         func_import.
7900         (func_import): Update.
7901
7902 2009-04-05  Karl Berry  <karl@gnu.org>
7903
7904         * README: prominently mention gnulib-tool.
7905         Rearrange sections so getting the code is near the top.
7906
7907 2009-04-05  Bruno Haible  <bruno@clisp.org>
7908
7909         * lib/unicase.h: Mention u*_cmp2.
7910         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7911         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
7912         * lib/unicase/ulc-casecmp.c: Likewise.
7913         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
7914         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
7915         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
7916         unistr/u8-cmp.
7917         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
7918         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
7919         unistr/u16-cmp.
7920         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
7921         unistr/u32-cmp.
7922
7923         * lib/uninorm.h: Mention u*_cmp2.
7924         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7925         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
7926         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
7927         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
7928         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
7929         unistr/u8-cmp.
7930         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
7931         unistr/u16-cmp.
7932         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
7933         unistr/u32-cmp.
7934
7935         New module 'unistr/u32-cmp2'.
7936         * lib/unistr/u32-cmp2.c: New file.
7937         * modules/unistr/u32-cmp2: New file.
7938
7939         New module 'unistr/u16-cmp2'.
7940         * lib/unistr/u16-cmp2.c: New file.
7941         * modules/unistr/u16-cmp2: New file.
7942
7943         New module 'unistr/u8-cmp2'.
7944         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
7945         * lib/unistr/u8-cmp2.c: New file.
7946         * lib/unistr/u-cmp2.h: New file.
7947         * modules/unistr/u8-cmp2: New file.
7948
7949 2009-04-05  Bruno Haible  <bruno@clisp.org>
7950
7951         * lib/unictype.h (uc_property_is_valid): New macro.
7952         * tests/unictype/test-pr_byname.c (main): Use it.
7953
7954         * lib/unistr.h: Doc fixes.
7955         * lib/uniconv.h: Doc fixes.
7956         * lib/unictype.h: Doc fixes.
7957
7958 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
7959
7960         Port coreutils 7.2 to Solaris 8.
7961
7962         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
7963         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
7964         for Solaris 8.  This is a bit of a hack, as it means it's the
7965         caller's responsibility to add -lnsl if needed, but most likely it
7966         won't be needed since only getaddrinfo uses this and getaddrinfo
7967         isn't needed on Solaris 8.
7968
7969         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
7970         problem to Solaris 8 encountered with coreutils 7.2, which
7971         resulted in a message "fnmatch.c:292: warning: passing argument 4
7972         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
7973         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
7974
7975 2009-04-03  Simon Josefsson  <simon@josefsson.org>
7976
7977         * m4/ld-version-script.m4: Add FIXME comment.
7978
7979 2009-04-02  Simon Josefsson  <simon@josefsson.org>
7980
7981         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
7982         SOVERSION variable.
7983
7984 2009-04-02  Bruno Haible  <bruno@clisp.org>
7985
7986         * Makefile (info, html, dvi, pdf): Combine the rules.
7987         Suggested by Jim Meyering.
7988
7989 2009-04-01  Bruno Haible  <bruno@clisp.org>
7990
7991         * Makefile (info, html, dvi, pdf): New targets.
7992         Reported by Reuben Thomas <rrt@sc3d.org>.
7993
7994 2009-04-01  Bruno Haible  <bruno@clisp.org>
7995
7996         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
7997         can be put into PATH.
7998         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
7999
8000 2009-04-01  Bruno Haible  <bruno@clisp.org>
8001
8002         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
8003
8004 2009-04-01  Bruno Haible  <bruno@clisp.org>
8005
8006         Rename module 'visibility'.
8007         * modules/lib-symbol-visibility: Renamed from modules/visibility.
8008         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
8009         * doc/gnulib.texi: Update.
8010         * MODULES.html.sh (Misc): Update.
8011         * NEWS: Mention the change.
8012
8013 2009-04-01  Simon Josefsson  <simon@josefsson.org>
8014
8015         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
8016         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
8017         Eric Blake <ebb9@byu.net> for review.
8018         * MODULES.html.sh: Add lib-msvc-compat.
8019         * doc/gnulib.texi: Link to new section.
8020         * m4/ld-output-def.m4: New file.
8021         * doc/ld-output-def.texi: New file.
8022
8023 2009-04-01  Simon Josefsson  <simon@josefsson.org>
8024
8025         Rename ld-version-script to lib-symbol-versions.  Suggested by
8026         Bruno Haible <bruno@clisp.org>.
8027         * modules/ld-version-script: Renamed to lib-symbol-versions.
8028         * doc/ld-version-script.texi: Fix module name.
8029         * MODULES.html.sh: Add lib-symbol-versions.
8030
8031 2009-03-31  Simon Josefsson  <simon@josefsson.org>
8032
8033         * modules/u64-tests: New file.
8034         * tests/test-u64.c: New file.
8035
8036 2009-03-04  Simon Josefsson  <simon@josefsson.org>
8037
8038         * MODULES.html.sh: Mention u64.
8039         * modules/u64: New module.
8040         * modules/crypto/sha512: Depend on u64 module instead of providing
8041         u64.h.
8042
8043 2009-03-27  Eric Blake  <ebb9@byu.net>
8044
8045         test-strerror: make debugging EAI_SYSTEM easier
8046         * modules/getaddrinfo-tests (Depends-on): Add strerror.
8047         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
8048         failure was EAI_SYSTEM.
8049
8050 2009-03-25  Bruno Haible  <bruno@clisp.org>
8051
8052         Fix a problem with --enable-relocatable on Solaris 7.
8053         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
8054         since 2008-02-24.
8055
8056 2009-03-25  Eric Blake  <ebb9@byu.net>
8057
8058         test-sockets: avoid gcc warning
8059         * tests/test-sockets.c (main): Silence compiler warning.
8060
8061 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
8062
8063         New modules nproc, pthread, contributed by Glen Lenker.
8064
8065         * MODULES.html.sh: Add pthread, nproc.
8066         * lib/nproc.c: New file.
8067         * lib/nproc.h: New file.
8068         * lib/pthread.in.h: New file.
8069         * m4/pthread.m4: New file.
8070         * modules/nproc: New file.
8071         * modules/pthread: New file.
8072
8073 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8074
8075         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
8076         New variable.
8077
8078 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
8079
8080         filevercmp: handle simple~ and numbered.~3~ backup suffixes
8081         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
8082         * tests/test-filevercmp.c: Add tests for backup suffixes.
8083
8084 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8085
8086         * modules/stdlib (Depends-on): Add stdint, needed when defining
8087         struct random_data on, for example, HP-UX 10.20.  Reported by
8088         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8089
8090 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8091
8092         * lib/readline.c (readline): Call fflush on stdout after printing
8093         prompt.
8094
8095 2009-03-20  Bruno Haible  <bruno@clisp.org>
8096
8097         Remove dependency from 'close' module to -lws2_32 on native Windows.
8098         * lib/close-hook.h: New file.
8099         * lib/close-hook.c: New file.
8100         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
8101         w32sock.h.
8102         (_gl_close_fd_maybe_socket): Remove function.
8103         (rpl_close): Invoke execute_all_close_hooks instead of
8104         _gl_close_fd_maybe_socket.
8105         * lib/sockets.c: Include close-hook.h, w32sock.h.
8106         (close_fd_maybe_socket): New function, essentially from lib/close.c.
8107         (close_sockets_hook): New variable.
8108         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
8109         (gl_sockets_cleanup): Unregister it.
8110         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
8111         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
8112         * modules/close-hook: New file.
8113         * modules/close (Files): Remove lib/w32sock.h.
8114         (Depends-on): Add close-hook.
8115         (Link): Remove section.
8116         * modules/sockets (Files): Add lib/w32sock.h.
8117         (Depends-on): Add close-hook.
8118         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
8119         invocation.
8120         * NEWS: Mention that LIB_CLOSE is gone.
8121
8122 2009-03-23  Eric Blake  <ebb9@byu.net>
8123
8124         signal-tests: test previous patch
8125         * tests/test-signal.c: New file.
8126         * modules/signal-tests: Likewise.
8127
8128         signal.h: always support 'volatile sig_atomic_t'
8129         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
8130         (gl_SIGNAL_H_DEFAULTS): Add a default.
8131         * modules/signal (Makefile.am): Substitute if needed.
8132         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
8133         users can blindly add volatile.
8134         * doc/posix-headers/signal.texi (signal.h): Document it.
8135         Reported by Matthew Woehlke.
8136
8137 2009-03-23  Jim Meyering  <meyering@redhat.com>
8138
8139         pathmax: PATH_MAX: use pathconf only when available
8140         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
8141         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
8142         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
8143         This avoids a link failure in a PSP cross-compilation environment
8144         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
8145
8146         * lib/vasnprintf.c (divide): Fix typo in comment.
8147
8148 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8149
8150         * gnulib-tool (func_filter_filelist): Fix comment.
8151
8152 2009-03-20  Bruno Haible  <bruno@clisp.org>
8153
8154         Make sockets.h self-contained.
8155         * lib/sockets.c: Include sockets.h first.
8156         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
8157
8158 2009-03-19  Eric Blake  <ebb9@byu.net>
8159
8160         doc: mention more functions added in cygwin 1.7.0
8161         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
8162         addition.
8163         * doc/posix-functions/log2f.texi: Likewise.
8164
8165 2009-03-19  Jim Meyering  <meyering@redhat.com>
8166
8167         fsusage: avoid syntax error due to statement-before-declaration
8168         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
8169         after all declarations.  Reported by Matthew Woehlke in
8170         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
8171
8172 2009-03-18  Eric Blake  <ebb9@byu.net>
8173
8174         build-aux/compile: sync from automake
8175         * build-aux/compile: New file, from automake.
8176         * config/srclist.txt: Mention build-aux/compile.
8177
8178 2009-03-17  Bruno Haible  <bruno@clisp.org>
8179
8180         * lib/git-merge-changelog.c: Fix typo in comment.
8181         Reported by Reuben Thomas <rrt@sc3d.org>.
8182
8183 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
8184
8185         * m4/regex.m4: update and improve help for
8186         --without-included-regex.
8187
8188 2009-03-17  Simon Josefsson  <simon@josefsson.org>
8189
8190         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
8191         failure on missing include files.
8192
8193 2009-03-17  Eric Blake  <ebb9@byu.net>
8194
8195         doc: mention more functions added in cygwin 1.7.0
8196         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
8197         addition.
8198         * doc/posix-functions/fwscanf.texi: Likewise.
8199         * doc/posix-functions/swprintf.texi: Likewise.
8200         * doc/posix-functions/swscanf.texi: Likewise.
8201         * doc/posix-functions/vfwprintf.texi: Likewise.
8202         * doc/posix-functions/vfwscanf.texi: Likewise.
8203         * doc/posix-functions/vswprintf.texi: Likewise.
8204         * doc/posix-functions/vswscanf.texi: Likewise.
8205         * doc/posix-functions/vwprintf.texi: Likewise.
8206         * doc/posix-functions/vwscanf.texi: Likewise.
8207         * doc/posix-functions/wcscasecmp.texi: Likewise.
8208         * doc/posix-functions/wcsdup.texi: Likewise.
8209         * doc/posix-functions/wcsftime.texi: Likewise.
8210         * doc/posix-functions/wcsncasecmp.texi: Likewise.
8211         * doc/posix-functions/wprintf.texi: Likewise.
8212         * doc/posix-functions/wscanf.texi: Likewise.
8213         * doc/glibc-functions/gethostbyname2.texi: Likewise.
8214
8215 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8216
8217         maint.mk: really add $(AM_MAKEFLAGS)
8218         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
8219         was inadvertently omitted in the last commit.
8220         Spotted by Bruno Haible.
8221
8222         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
8223         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
8224         $(AM_MAKEFLAGS)' rather than plain `make'.
8225
8226         gnulib-tool: execute $MAKE not make
8227         * gnulib-tool: Default $MAKE to 'make'.
8228         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
8229         than make.  Initialize $MAKE in the do-autobuild script.
8230
8231         gnulib-tool: use $MAKE not make in generated files
8232         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
8233         make, in generated files.  Initialize $MAKE in the do-autobuild
8234         script.
8235
8236         * top/GNUmakefile (_have-git-version-gen): Fix typo.
8237
8238         GNUmakefile: disable parallelism only for multiple, recursive targets
8239         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
8240         additions in the Makefile.
8241         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
8242         by Automake.
8243         (.NOTPARALLEL): Only disable parallel builds if multiple targets
8244         are listed on the command line and at least one of them is
8245         listed in $(ALL_RECURSIVE_TARGETS).
8246
8247 2009-03-14  Bruno Haible  <bruno@clisp.org>
8248
8249         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
8250         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
8251         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
8252         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
8253         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
8254         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
8255         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
8256         unistr/u8-uctomb.
8257         * modules/unistr/u8-strchr (Depends-on): Likewise.
8258         * modules/unistr/u8-strrchr (Depends-on): Likewise.
8259         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
8260         unistr/u16-uctomb.
8261         * modules/unistr/u16-strchr (Depends-on): Likewise.
8262         * modules/unistr/u16-strrchr (Depends-on): Likewise.
8263
8264 2009-03-12  Bruno Haible  <bruno@clisp.org>
8265
8266         Work around select() bug on Interix 3.5.
8267         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
8268         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
8269         * m4/select.m4: New file.
8270         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
8271         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
8272         * modules/select (Files): Add m4/select.m4.
8273         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
8274         * modules/nanosleep (Depends-on): Add select.
8275         * modules/poll (Depends-on): Likewise.
8276         * doc/posix-functions/select.texi: Mention the Interix bug.
8277         Reported by Markus Duft <mduft@gentoo.org>.
8278
8279         * lib/select.c: Renamed from lib/winsock-select.c.
8280         * modules/select (Files): Add lib/select.c, remove
8281         lib/winsock-select.c.
8282         (configure.ac): Update.
8283
8284 2009-03-12  Jim Meyering  <meyering@redhat.com>
8285
8286         avoid gcc warnings about unused macro definitions
8287         * lib/readtokens.c (STREQ): Remove unused definition.
8288         * lib/xmalloc.c (SIZE_MAX): Likewise.
8289         * lib/openat-die.c (N_): Likewise.
8290         * lib/mountlist.c (SIZE_MAX): Remove definition.
8291         Instead, include <stdint.h>.
8292         * lib/readutmp.c: Likewise.
8293         * modules/readutmp (Depends-on): Add stdint.
8294         * modules/mountlist (Depends-on): Add stdint.
8295         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
8296
8297 2009-03-10  Bruno Haible  <bruno@clisp.org>
8298
8299         Tests for module 'mbmemcasecoll'.
8300         * modules/mbmemcasecoll-tests: New file.
8301         * tests/test-mbmemcasecoll1.sh: New file.
8302         * tests/test-mbmemcasecoll2.sh: New file.
8303         * tests/test-mbmemcasecoll3.sh: New file.
8304         * tests/test-mbmemcasecoll.c: New file.
8305
8306         New module 'mbmemcasecoll'.
8307         * lib/mbmemcasecoll.h: New file.
8308         * lib/mbmemcasecoll.c: New file.
8309         * modules/mbmemcasecoll: New file.
8310
8311         * tests/test-mbmemcasecmp.h: New file, extracted from
8312         tests/test-mbmemcasecmp.c.
8313         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
8314         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
8315         (main): Update.
8316         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
8317
8318 2009-03-09  Bruno Haible  <bruno@clisp.org>
8319
8320         Tests for module 'mbmemcasecmp'.
8321         * modules/mbmemcasecmp-tests: New file.
8322         * tests/test-mbmemcasecmp1.sh: New file.
8323         * tests/test-mbmemcasecmp2.sh: New file.
8324         * tests/test-mbmemcasecmp3.sh: New file.
8325         * tests/test-mbmemcasecmp.c: New file.
8326
8327         New module 'mbmemcasecmp'.
8328         * lib/mbmemcasecmp.h: New file.
8329         * lib/mbmemcasecmp.c: New file.
8330         * modules/mbmemcasecmp: New file.
8331
8332 2009-03-09  Bruno Haible  <bruno@clisp.org>
8333
8334         Tests for module 'unicase/ulc-casecoll'.
8335         * modules/unicase/ulc-casecoll-tests: New file.
8336         * tests/unicase/test-ulc-casecoll1.sh: New file.
8337         * tests/unicase/test-ulc-casecoll2.sh: New file.
8338         * tests/unicase/test-ulc-casecoll.c: New file.
8339
8340         New module 'unicase/ulc-casecoll'.
8341         * lib/unicase.h (ulc_casecoll): New declaration.
8342         * lib/unicase/ulc-casecoll.c: New file.
8343         * modules/unicase/ulc-casecoll: New file.
8344
8345         New module 'unicase/ulc-casexfrm'.
8346         * lib/unicase.h (ulc_casexfrm): New declaration.
8347         * lib/unicase/ulc-casexfrm.c: New file.
8348         * modules/unicase/ulc-casexfrm: New file.
8349
8350 2009-03-09  Bruno Haible  <bruno@clisp.org>
8351
8352         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
8353         invocations.
8354
8355         * m4/mbscasecmp.m4: Remove file.
8356         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
8357         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
8358
8359         * m4/mbscasestr.m4: Remove file.
8360         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
8361         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
8362
8363         * m4/mbschr.m4: Remove file.
8364         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
8365         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
8366
8367         * m4/mbscspn.m4: Remove file.
8368         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
8369         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
8370
8371         * m4/mbslen.m4: Remove file.
8372         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
8373         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
8374
8375         * m4/mbsncasecmp.m4: Remove file.
8376         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
8377         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
8378
8379         * m4/mbsnlen.m4: Remove file.
8380         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
8381         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
8382
8383         * m4/mbspbrk.m4: Remove file.
8384         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
8385         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
8386
8387         * m4/mbspcasecmp.m4: Remove file.
8388         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
8389         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
8390
8391         * m4/mbsrchr.m4: Remove file.
8392         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
8393         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
8394
8395         * m4/mbssep.m4: Remove file.
8396         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
8397         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
8398
8399         * m4/mbsspn.m4: Remove file.
8400         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
8401         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
8402
8403         * m4/mbsstr.m4: Remove file.
8404         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
8405         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
8406
8407         * m4/mbstok_r.m4: Remove file.
8408         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
8409         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
8410
8411         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
8412
8413         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
8414         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
8415
8416         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
8417
8418 2009-03-08  Bruno Haible  <bruno@clisp.org>
8419
8420         Tests for module 'unicase/ulc-casecmp'.
8421         * modules/unicase/ulc-casecmp-tests: New file.
8422         * tests/unicase/test-ulc-casecmp1.sh: New file.
8423         * tests/unicase/test-ulc-casecmp2.sh: New file.
8424         * tests/unicase/test-ulc-casecmp.c: New file.
8425
8426         New module 'unicase/ulc-casecmp'.
8427         * lib/unicase.h (ulc_casecmp): New declaration.
8428         * lib/unicase/ulc-casecmp.c: New file.
8429         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
8430         'const SRC_UNIT *'.
8431         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
8432         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
8433         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
8434         * modules/unicase/ulc-casecmp: New file.
8435
8436         Tests for module 'unicase/u32-is-cased'.
8437         * modules/unicase/u32-is-cased-tests: New file.
8438         * tests/unicase/test-u32-is-cased.c: New file.
8439
8440         Tests for module 'unicase/u16-is-cased'.
8441         * modules/unicase/u16-is-cased-tests: New file.
8442         * tests/unicase/test-u16-is-cased.c: New file.
8443
8444         Tests for module 'unicase/u8-is-cased'.
8445         * modules/unicase/u8-is-cased-tests: New file.
8446         * tests/unicase/test-u8-is-cased.c: New file.
8447         * tests/unicase/test-is-cased.h: New file.
8448
8449         New module 'unicase/u32-is-cased'.
8450         * lib/unicase/u32-is-cased.c: New file.
8451         * modules/unicase/u32-is-cased: New file.
8452
8453         New module 'unicase/u16-is-cased'.
8454         * lib/unicase/u16-is-cased.c: New file.
8455         * modules/unicase/u16-is-cased: New file.
8456
8457         New module 'unicase/u8-is-cased'.
8458         * lib/unicase/u8-is-cased.c: New file.
8459         * lib/unicase/u-is-cased.h: New file.
8460         * modules/unicase/u8-is-cased: New file.
8461
8462         Tests for module 'unicase/u32-is-casefolded'.
8463         * modules/unicase/u32-is-casefolded-tests: New file.
8464         * tests/unicase/test-u32-is-casefolded.c: New file.
8465
8466         Tests for module 'unicase/u16-is-casefolded'.
8467         * modules/unicase/u16-is-casefolded-tests: New file.
8468         * tests/unicase/test-u16-is-casefolded.c: New file.
8469
8470         Tests for module 'unicase/u8-is-casefolded'.
8471         * modules/unicase/u8-is-casefolded-tests: New file.
8472         * tests/unicase/test-u8-is-casefolded.c: New file.
8473         * tests/unicase/test-is-casefolded.h: New file.
8474
8475         New module 'unicase/u32-is-casefolded'.
8476         * lib/unicase/u32-is-casefolded.c: New file.
8477         * modules/unicase/u32-is-casefolded: New file.
8478
8479         New module 'unicase/u16-is-casefolded'.
8480         * lib/unicase/u16-is-casefolded.c: New file.
8481         * modules/unicase/u16-is-casefolded: New file.
8482
8483         New module 'unicase/u8-is-casefolded'.
8484         * lib/unicase/u8-is-casefolded.c: New file.
8485         * modules/unicase/u8-is-casefolded: New file.
8486
8487         Tests for module 'unicase/u32-is-titlecase'.
8488         * modules/unicase/u32-is-titlecase-tests: New file.
8489         * tests/unicase/test-u32-is-titlecase.c: New file.
8490
8491         Tests for module 'unicase/u16-is-titlecase'.
8492         * modules/unicase/u16-is-titlecase-tests: New file.
8493         * tests/unicase/test-u16-is-titlecase.c: New file.
8494
8495         Tests for module 'unicase/u8-is-titlecase'.
8496         * modules/unicase/u8-is-titlecase-tests: New file.
8497         * tests/unicase/test-u8-is-titlecase.c: New file.
8498         * tests/unicase/test-is-titlecase.h: New file.
8499
8500         New module 'unicase/u32-is-titlecase'.
8501         * lib/unicase/u32-is-titlecase.c: New file.
8502         * modules/unicase/u32-is-titlecase: New file.
8503
8504         New module 'unicase/u16-is-titlecase'.
8505         * lib/unicase/u16-is-titlecase.c: New file.
8506         * modules/unicase/u16-is-titlecase: New file.
8507
8508         New module 'unicase/u8-is-titlecase'.
8509         * lib/unicase/u8-is-titlecase.c: New file.
8510         * modules/unicase/u8-is-titlecase: New file.
8511
8512         Tests for module 'unicase/u32-is-lowercase'.
8513         * modules/unicase/u32-is-lowercase-tests: New file.
8514         * tests/unicase/test-u32-is-lowercase.c: New file.
8515
8516         Tests for module 'unicase/u16-is-lowercase'.
8517         * modules/unicase/u16-is-lowercase-tests: New file.
8518         * tests/unicase/test-u16-is-lowercase.c: New file.
8519
8520         Tests for module 'unicase/u8-is-lowercase'.
8521         * modules/unicase/u8-is-lowercase-tests: New file.
8522         * tests/unicase/test-u8-is-lowercase.c: New file.
8523         * tests/unicase/test-is-lowercase.h: New file.
8524
8525         New module 'unicase/u32-is-lowercase'.
8526         * lib/unicase/u32-is-lowercase.c: New file.
8527         * modules/unicase/u32-is-lowercase: New file.
8528
8529         New module 'unicase/u16-is-lowercase'.
8530         * lib/unicase/u16-is-lowercase.c: New file.
8531         * modules/unicase/u16-is-lowercase: New file.
8532
8533         New module 'unicase/u8-is-lowercase'.
8534         * lib/unicase/u8-is-lowercase.c: New file.
8535         * modules/unicase/u8-is-lowercase: New file.
8536
8537         Tests for module 'unicase/u32-is-uppercase'.
8538         * modules/unicase/u32-is-uppercase-tests: New file.
8539         * tests/unicase/test-u32-is-uppercase.c: New file.
8540
8541         Tests for module 'unicase/u16-is-uppercase'.
8542         * modules/unicase/u16-is-uppercase-tests: New file.
8543         * tests/unicase/test-u16-is-uppercase.c: New file.
8544
8545         Tests for module 'unicase/u8-is-uppercase'.
8546         * modules/unicase/u8-is-uppercase-tests: New file.
8547         * tests/unicase/test-u8-is-uppercase.c: New file.
8548         * tests/unicase/test-is-uppercase.h: New file.
8549
8550         New module 'unicase/u32-is-uppercase'.
8551         * lib/unicase/u32-is-uppercase.c: New file.
8552         * modules/unicase/u32-is-uppercase: New file.
8553
8554         New module 'unicase/u16-is-uppercase'.
8555         * lib/unicase/u16-is-uppercase.c: New file.
8556         * modules/unicase/u16-is-uppercase: New file.
8557
8558         New module 'unicase/u8-is-uppercase'.
8559         * lib/unicase/u8-is-uppercase.c: New file.
8560         * modules/unicase/u8-is-uppercase: New file.
8561
8562         New module 'unicase/u32-is-invariant'.
8563         * lib/unicase/u32-is-invariant.c: New file.
8564         * modules/unicase/u32-is-invariant: New file.
8565
8566         New module 'unicase/u16-is-invariant'.
8567         * lib/unicase/u16-is-invariant.c: New file.
8568         * modules/unicase/u16-is-invariant: New file.
8569
8570         New module 'unicase/u8-is-invariant'.
8571         * lib/unicase/u8-is-invariant.c: New file.
8572         * lib/unicase/invariant.h: New file.
8573         * lib/unicase/u-is-invariant.h: New file.
8574         * modules/unicase/u8-is-invariant: New file.
8575
8576         Tests for module 'unicase/u32-casecoll'.
8577         * modules/unicase/u32-casecoll-tests: New file.
8578         * tests/unicase/test-u32-casecoll.c: New file.
8579
8580         Tests for module 'unicase/u16-casecoll'.
8581         * modules/unicase/u16-casecoll-tests: New file.
8582         * tests/unicase/test-u16-casecoll.c: New file.
8583
8584         Tests for module 'unicase/u8-casecoll'.
8585         * modules/unicase/u8-casecoll-tests: New file.
8586         * tests/unicase/test-u8-casecoll.c: New file.
8587
8588         New module 'unicase/u32-casecoll'.
8589         * lib/unicase/u32-casecoll.c: New file.
8590         * modules/unicase/u32-casecoll: New file.
8591
8592         New module 'unicase/u16-casecoll'.
8593         * lib/unicase/u16-casecoll.c: New file.
8594         * modules/unicase/u16-casecoll: New file.
8595
8596         New module 'unicase/u8-casecoll'.
8597         * lib/unicase/u8-casecoll.c: New file.
8598         * lib/unicase/u-casecoll.h: New file.
8599         * modules/unicase/u8-casecoll: New file.
8600
8601         New module 'unicase/u32-casexfrm'.
8602         * lib/unicase/u32-casexfrm.c: New file.
8603         * modules/unicase/u32-casexfrm: New file.
8604
8605         New module 'unicase/u16-casexfrm'.
8606         * lib/unicase/u16-casexfrm.c: New file.
8607         * modules/unicase/u16-casexfrm: New file.
8608
8609         New module 'unicase/u8-casexfrm'.
8610         * lib/unicase/u8-casexfrm.c: New file.
8611         * lib/unicase/u-casexfrm.h: New file.
8612         * modules/unicase/u8-casexfrm: New file.
8613
8614         Tests for module 'unicase/u32-casecmp'.
8615         * modules/unicase/u32-casecmp-tests: New file.
8616         * tests/unicase/test-u32-casecmp.c: New file.
8617
8618         Tests for module 'unicase/u16-casecmp'.
8619         * modules/unicase/u16-casecmp-tests: New file.
8620         * tests/unicase/test-u16-casecmp.c: New file.
8621
8622         Tests for module 'unicase/u8-casecmp'.
8623         * modules/unicase/u8-casecmp-tests: New file.
8624         * tests/unicase/test-u8-casecmp.c: New file.
8625         * tests/unicase/test-casecmp.h: New file.
8626
8627         New module 'unicase/u32-casecmp'.
8628         * lib/unicase/u32-casecmp.c: New file.
8629         * modules/unicase/u32-casecmp: New file.
8630
8631         New module 'unicase/u16-casecmp'.
8632         * lib/unicase/u16-casecmp.c: New file.
8633         * modules/unicase/u16-casecmp: New file.
8634
8635         New module 'unicase/u8-casecmp'.
8636         * lib/unicase/u8-casecmp.c: New file.
8637         * lib/unicase/u-casecmp.h: New file.
8638         * modules/unicase/u8-casecmp: New file.
8639
8640         Tests for module 'unicase/u32-casefold'.
8641         * modules/unicase/u32-casefold-tests: New file.
8642         * tests/unicase/test-u32-casefold.c: New file.
8643
8644         Tests for module 'unicase/u16-casefold'.
8645         * modules/unicase/u16-casefold-tests: New file.
8646         * tests/unicase/test-u16-casefold.c: New file.
8647
8648         Tests for module 'unicase/u8-casefold'.
8649         * modules/unicase/u8-casefold-tests: New file.
8650         * tests/unicase/test-u8-casefold.c: New file.
8651
8652         New module 'unicase/u32-casefold'.
8653         * lib/unicase/u32-casefold.c: New file.
8654         * modules/unicase/u32-casefold: New file.
8655
8656         New module 'unicase/u16-casefold'.
8657         * lib/unicase/u16-casefold.c: New file.
8658         * modules/unicase/u16-casefold: New file.
8659
8660         New module 'unicase/u8-casefold'.
8661         * lib/unicase/u8-casefold.c: New file.
8662         * lib/unicase/u-casefold.h: New file.
8663         * modules/unicase/u8-casefold: New file.
8664
8665         New module 'unicase/tocasefold'.
8666         * lib/unicase/casefold.h: New file.
8667         * lib/unicase/tocasefold.c: New file.
8668         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
8669         * modules/unicase/tocasefold: New file.
8670
8671         Tests for module 'unicase/u32-totitle'.
8672         * modules/unicase/u32-totitle-tests: New file.
8673         * tests/unicase/test-u32-totitle.c: New file.
8674
8675         Tests for module 'unicase/u16-totitle'.
8676         * modules/unicase/u16-totitle-tests: New file.
8677         * tests/unicase/test-u16-totitle.c: New file.
8678
8679         Tests for module 'unicase/u8-totitle'.
8680         * modules/unicase/u8-totitle-tests: New file.
8681         * tests/unicase/test-u8-totitle.c: New file.
8682
8683         New module 'unicase/u32-totitle'.
8684         * lib/unicase/u32-totitle.c: New file.
8685         * modules/unicase/u32-totitle: New file.
8686
8687         New module 'unicase/u16-totitle'.
8688         * lib/unicase/u16-totitle.c: New file.
8689         * modules/unicase/u16-totitle: New file.
8690
8691         New module 'unicase/u8-totitle'.
8692         * lib/unicase/u8-totitle.c: New file.
8693         * lib/unicase/u-totitle.h: New file.
8694         * modules/unicase/u8-totitle: New file.
8695
8696         Tests for module 'unicase/u32-tolower'.
8697         * modules/unicase/u32-tolower-tests: New file.
8698         * tests/unicase/test-u32-tolower.c: New file.
8699
8700         Tests for module 'unicase/u16-tolower'.
8701         * modules/unicase/u16-tolower-tests: New file.
8702         * tests/unicase/test-u16-tolower.c: New file.
8703
8704         Tests for module 'unicase/u8-tolower'.
8705         * modules/unicase/u8-tolower-tests: New file.
8706         * tests/unicase/test-u8-tolower.c: New file.
8707
8708         New module 'unicase/u32-tolower'.
8709         * lib/unicase/u32-tolower.c: New file.
8710         * modules/unicase/u32-tolower: New file.
8711
8712         New module 'unicase/u16-tolower'.
8713         * lib/unicase/u16-tolower.c: New file.
8714         * modules/unicase/u16-tolower: New file.
8715
8716         New module 'unicase/u8-tolower'.
8717         * lib/unicase/u8-tolower.c: New file.
8718         * modules/unicase/u8-tolower: New file.
8719
8720         Tests for module 'unicase/u32-toupper'.
8721         * modules/unicase/u32-toupper-tests: New file.
8722         * tests/unicase/test-u32-toupper.c: New file.
8723
8724         Tests for module 'unicase/u16-toupper'.
8725         * modules/unicase/u16-toupper-tests: New file.
8726         * tests/unicase/test-u16-toupper.c: New file.
8727
8728         Tests for module 'unicase/u8-toupper'.
8729         * modules/unicase/u8-toupper-tests: New file.
8730         * tests/unicase/test-u8-toupper.c: New file.
8731
8732         New module 'unicase/u32-toupper'.
8733         * lib/unicase/u32-toupper.c: New file.
8734         * modules/unicase/u32-toupper: New file.
8735
8736         New module 'unicase/u16-toupper'.
8737         * lib/unicase/u16-toupper.c: New file.
8738         * modules/unicase/u16-toupper: New file.
8739
8740         New module 'unicase/u8-toupper'.
8741         * lib/unicase/u8-toupper.c: New file.
8742         * modules/unicase/u8-toupper: New file.
8743
8744         New module 'unicase/u32-casemap'.
8745         * lib/unicase/u32-casemap.c: New file.
8746         * modules/unicase/u32-casemap: New file.
8747
8748         New module 'unicase/u16-casemap'.
8749         * lib/unicase/u16-casemap.c: New file.
8750         * modules/unicase/u16-casemap: New file.
8751
8752         New module 'unicase/u8-casemap'.
8753         * lib/unicase/unicasemap.h: New file.
8754         * lib/unicase/u8-casemap.c: New file.
8755         * lib/unicase/u-casemap.h: New file.
8756         * modules/unicase/u8-casemap: New file.
8757
8758         New module 'unicase/special-casing'.
8759         * lib/unicase/special-casing.h: New file.
8760         * lib/unicase/special-casing.c: New file.
8761         * lib/unicase/special-casing-table.gperf: New file, generated by
8762         gen-uni-tables.c.
8763         * modules/unicase/special-casing: New file.
8764
8765         Tests for module 'unicase/locale-language'.
8766         * modules/unicase/locale-language-tests: New file.
8767         * tests/unicase/test-locale-language.sh: New file.
8768         * tests/unicase/test-locale-language.c: New file.
8769
8770         New module 'unicase/locale-language'.
8771         * lib/unicase/locale-language.c: New file.
8772         * lib/unicase/locale-languages.gperf: New file.
8773         * modules/unicase/locale-language: New file.
8774
8775         Generate more tables for case conversion and case folding.
8776         * lib/gen-uni-tables.c (SCC_*): New enum items.
8777         (struct special_casing_rule): New type.
8778         (casing_rules, num_casing_rules, allocated_casing_rules): New
8779         variables.
8780         (add_casing_rule, fill_casing_rules): New functions.
8781         (struct casefold_rule): New type.
8782         (casefolding_rules, num_casefolding_rules,
8783         allocated_casefolding_rules): New variables.
8784         (fill_casefolding_rules): New function.
8785         (unicode_casefold): New variable.
8786         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
8787         sort_casing_rules, output_casing_rules): New functions.
8788         (main): Accept to more arguments: SpecialCasing.txt and
8789         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
8790         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
8791         Output mapping for casefolding.
8792
8793         * lib/unicase.h: Include stdbool.h, uninorm.h.
8794         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
8795         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
8796         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
8797         arguments.
8798         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
8799         resultp arguments.
8800         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
8801         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
8802         resultp arguments.
8803         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
8804         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
8805         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
8806         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
8807         declarations.
8808         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
8809
8810 2009-03-08  Bruno Haible  <bruno@clisp.org>
8811
8812         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8813         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
8814         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
8815         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8816
8817 2009-03-07  Bruno Haible  <bruno@clisp.org>
8818
8819         Adjust u*_normcmp, u*_normcoll API.
8820         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8821         u16_normcoll, u32_normcoll): Change failure conventions.
8822         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
8823         errno and return -1.
8824         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8825
8826 2009-03-07  Bruno Haible  <bruno@clisp.org>
8827
8828         Tests for module 'uninorm/u32-normcoll'.
8829         * modules/uninorm/u32-normcoll-tests: New file.
8830         * tests/uninorm/test-u32-normcoll.c: New file.
8831
8832         Tests for module 'uninorm/u16-normcoll'.
8833         * modules/uninorm/u16-normcoll-tests: New file.
8834         * tests/uninorm/test-u16-normcoll.c: New file.
8835
8836         Tests for module 'uninorm/u8-normcoll'.
8837         * modules/uninorm/u8-normcoll-tests: New file.
8838         * tests/uninorm/test-u8-normcoll.c: New file.
8839
8840 2009-03-07  Bruno Haible  <bruno@clisp.org>
8841
8842         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
8843         tests/uninorm/test-u32-normcmp.c.
8844         * tests/uninorm/test-u32-normcmp.c: Include it.
8845         (test_nonascii): New function, extracted from main. Add some more
8846         tests.
8847         (main): Invoke test_ascii and test_nonascii.
8848         * modules/uninorm/u32-normcmp-tests (Files): Add
8849         tests/uninorm/test-u32-normcmp.h.
8850         (Depends-on): Remove uninorm/u32-normcmp.
8851
8852         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
8853         tests/uninorm/test-u16-normcmp.c.
8854         * tests/uninorm/test-u16-normcmp.c: Include it.
8855         (test_nonascii): New function, extracted from main. Add some more
8856         tests.
8857         (main): Invoke test_ascii and test_nonascii.
8858         * modules/uninorm/u16-normcmp-tests (Files): Add
8859         tests/uninorm/test-u16-normcmp.h.
8860         (Depends-on): Remove uninorm/u16-normcmp.
8861
8862         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
8863         tests/uninorm/test-u8-normcmp.c.
8864         * tests/uninorm/test-u8-normcmp.c: Include it.
8865         (test_nonascii): New function, extracted from main. Add some more
8866         tests.
8867         (main): Invoke test_ascii and test_nonascii.
8868         * modules/uninorm/u8-normcmp-tests (Files): Add
8869         tests/uninorm/test-u8-normcmp.h.
8870         (Depends-on): Remove uninorm/u8-normcmp.
8871
8872 2009-03-07  Bruno Haible  <bruno@clisp.org>
8873
8874         New module 'uninorm/u32-normcoll'.
8875         * lib/uninorm/u32-normcoll.c: New file.
8876         * modules/uninorm/u32-normcoll: New file.
8877
8878         New module 'uninorm/u16-normcoll'.
8879         * lib/uninorm/u16-normcoll.c: New file.
8880         * modules/uninorm/u16-normcoll: New file.
8881
8882         New module 'uninorm/u8-normcoll'.
8883         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
8884         declarations.
8885         * lib/uninorm/u8-normcoll.c: New file.
8886         * lib/uninorm/u-normcoll.h: New file.
8887         * modules/uninorm/u8-normcoll: New file.
8888
8889         New module 'uninorm/u32-normxfrm'.
8890         * lib/uninorm/u32-normxfrm.c: New file.
8891         * modules/uninorm/u32-normxfrm: New file.
8892
8893         New module 'uninorm/u16-normxfrm'.
8894         * lib/uninorm/u16-normxfrm.c: New file.
8895         * modules/uninorm/u16-normxfrm: New file.
8896
8897         New module 'uninorm/u8-normxfrm'.
8898         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
8899         declarations.
8900         * lib/uninorm/u8-normxfrm.c: New file.
8901         * lib/uninorm/u-normxfrm.h: New file.
8902         * modules/uninorm/u8-normxfrm: New file.
8903
8904 2009-03-07  Bruno Haible  <bruno@clisp.org>
8905
8906         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
8907         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
8908         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
8909
8910 2009-03-07  Bruno Haible  <bruno@clisp.org>
8911
8912         New module 'memxfrm'.
8913         * lib/memxfrm.h: New file.
8914         * lib/memxfrm.c: New file.
8915         * modules/memxfrm: New file.
8916
8917 2009-03-07  Bruno Haible  <bruno@clisp.org>
8918
8919         New module 'memcmp2'.
8920         * lib/memcmp2.h: New file.
8921         * lib/memcmp2.c: New file.
8922         * modules/memcmp2: New file.
8923
8924 2009-03-07  Bruno Haible  <bruno@clisp.org>
8925
8926         Tests for module 'uninorm/decomposing-form'.
8927         * modules/uninorm/decomposing-form-tests: New file.
8928         * tests/uninorm/test-decomposing-form.c: New file.
8929
8930         New module 'uninorm/decomposing-form'.
8931         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
8932         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
8933         Add 'decomposing_variant' field.
8934         * lib/uninorm/decomposing-form.c: New file.
8935         * lib/uninorm/nfc.c (uninorm_nfc): Update.
8936         * lib/uninorm/nfd.c (uninorm_nfd): Update.
8937         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
8938         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
8939         * modules/uninorm/decomposing-form: New file.
8940         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
8941         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
8942
8943 2009-03-07  Bruno Haible  <bruno@clisp.org>
8944
8945         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
8946         strings.
8947
8948 2009-03-06  Bruno Haible  <bruno@clisp.org>
8949
8950         Tests for module 'uninorm/u32-normcmp'.
8951         * tests/uninorm/test-u32-normcmp.c: New file.
8952         * modules/uninorm/u32-normcmp-tests: New file.
8953
8954         Tests for module 'uninorm/u16-normcmp'.
8955         * tests/uninorm/test-u16-normcmp.c: New file.
8956         * modules/uninorm/u16-normcmp-tests: New file.
8957
8958         Tests for module 'uninorm/u8-normcmp'.
8959         * tests/uninorm/test-u8-normcmp.c: New file.
8960         * modules/uninorm/u8-normcmp-tests: New file.
8961
8962         New module 'uninorm/u32-normcmp'.
8963         * lib/uninorm/u32-normcmp.c: New file.
8964         * modules/uninorm/u32-normcmp: New file.
8965
8966         New module 'uninorm/u16-normcmp'.
8967         * lib/uninorm/u16-normcmp.c: New file.
8968         * modules/uninorm/u16-normcmp: New file.
8969
8970         New module 'uninorm/u8-normcmp'.
8971         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
8972         declarations.
8973         * lib/uninorm/u8-normcmp.c: New file.
8974         * lib/uninorm/u-normcmp.h: New file.
8975         * modules/uninorm/u8-normcmp: New file.
8976
8977 2009-03-06  Bruno Haible  <bruno@clisp.org>
8978
8979         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
8980         Reported by Eric Blake.
8981
8982 2009-03-06  Eric Blake  <ebb9@byu.net>
8983             Bruno Haible  <bruno@clisp.org>
8984
8985         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
8986         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
8987         condition.
8988         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
8989         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
8990         condition.
8991         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
8992
8993 2009-03-06  Eric Blake  <ebb9@byu.net>
8994
8995         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
8996         to avoid compiler warnings.
8997         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
8998
8999 2009-03-05  Bruno Haible  <bruno@clisp.org>
9000
9001         * tests/test-ftell.c (main): Disable test beyond end of file on
9002         FreeMiNT.
9003         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9004
9005 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
9006
9007         * lib/filevercmp.c: Move hidden files up in ordering.
9008         * tests/test-filevercmp.c: Add tests for hidden files.
9009
9010 2009-03-04  Bruno Haible  <bruno@clisp.org>
9011
9012         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
9013         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
9014         AM_CFLAGS.
9015         Reported by Simon Josefsson.
9016
9017 2009-03-03  Bruno Haible  <bruno@clisp.org>
9018
9019         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
9020         Reported by Simon Josefsson.
9021
9022         * doc/ld-version-script.texi: Update node reference.
9023
9024 2009-03-03  Bruno Haible  <bruno@clisp.org>
9025
9026         * modules/visibility (License): Change to 'unlimited'.
9027         Suggested by Simon Josefsson.
9028
9029 2009-03-03  Jim Meyering  <meyering@redhat.com>
9030
9031         unlinkdir: cannot_unlink_dir may modify process state
9032         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
9033         it's neither thread-safe nor appropriate for use in a library.
9034
9035 2009-03-03  Eric Blake  <ebb9@byu.net>
9036
9037         test-closein: silence test under Darwin
9038         * tests/test-closein.sh: Ignore stderr from cat, since we don't
9039         care if it dies from EPIPE or EBADF.
9040
9041 2009-03-03  Bruno Haible  <bruno@clisp.org>
9042
9043         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
9044         earlier.
9045         * doc/visibility.texi: Fix @node and @section.
9046
9047 2009-03-03  Simon Josefsson  <simon@josefsson.org>
9048
9049         * doc/gnulib.texi: Link to sections for ld version script and
9050         visibility.
9051         * doc/visibility.texi: Add @node and @section.
9052         * modules/ld-version-script: New module.
9053         * m4/ld-version-script.m4: New file.
9054         * doc/ld-version-script.texi: New file.
9055
9056 2009-03-02  David Lutterkort  <lutter@redhat.com>
9057
9058         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
9059         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9060
9061 2009-03-02  Bruno Haible  <bruno@clisp.org>
9062
9063         * doc/visibility.texi: Mention libtool's -export-symbols option.
9064
9065 2009-03-02  Jim Meyering  <meyering@redhat.com>
9066
9067         announce-gen: new option: --no-print-checksums
9068         * build-aux/announce-gen (usage): Describe it.
9069         (print_checksums): Print a newline here, not in the [*] footnote.
9070         (main): Honor it.
9071
9072 2009-03-01  Bruno Haible  <bruno@clisp.org>
9073
9074         Use socklen_t in the native Windows replacements prototypes.
9075         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
9076         instead of 'int'.
9077         * lib/getsockopt.c (rpl_getsockopt): Likewise.
9078         * lib/setsockopt.c (rpl_setsockopt): Likewise.
9079         * modules/getsockopt (Depends-on): Add socklen.
9080         * modules/setsockopt (Depends-on): Add socklen.
9081
9082 2009-03-01  Bruno Haible  <bruno@clisp.org>
9083
9084         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
9085         least 4.2.
9086
9087 2009-03-01  Eric Blake  <ebb9@byu.net>
9088             Bruno Haible  <bruno@clisp.org>
9089
9090         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
9091         error messages.
9092         * lib/wait-process.c (wait_subprocess): Omit error message about
9093         deadly signal sent to the child of termsigp != NULL.
9094
9095 2009-03-01  Eric Blake  <ebb9@byu.net>
9096
9097         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
9098
9099 2009-03-01  Bruno Haible  <bruno@clisp.org>
9100
9101         Avoid a gcc warning.
9102         * tests/test-sched.c (b): Make global.
9103         Reported by Eric Blake.
9104
9105 2009-01-19  Martin Lambers  <marlam@marlam.de>
9106
9107         Provide POSIX semantics for socket timeout options on W32.
9108         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
9109         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
9110         * modules/setsockopt: Depend on sys_time module for struct timeval.
9111         * modules/getsockopt: Depend on sys_time module for struct timeval.
9112
9113 2009-03-01  Simon Josefsson  <simon@josefsson.org>
9114
9115         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
9116         __USE_GNU, for consistency with netdb.in.h.
9117         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9118
9119 2009-03-01  Bruno Haible  <bruno@clisp.org>
9120
9121         More support for FreeMiNT.
9122         * lib/fseeko.c (rpl_fseeko): Complete last commit.
9123         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9124
9125 2009-03-01  Bruno Haible  <bruno@clisp.org>
9126
9127         More support for FreeMiNT.
9128         * lib/fpurge.c (fpurge): Correct last commit.
9129         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9130
9131 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9132
9133         Fix unportable awk script in vc-list-files.
9134         * build-aux/vc-list-files: In the replacement awk script, use
9135         substr with a second argument of 1, not zero.
9136         Report by Simon Josefsson.
9137
9138 2009-02-28  Bruno Haible  <bruno@clisp.org>
9139
9140         More support for FreeMiNT.
9141         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
9142         to FreeMiNT today.
9143         * lib/fwriting.c (fwriting): Likewise.
9144         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
9145
9146 2009-02-28  Bruno Haible  <bruno@clisp.org>
9147
9148         * tests/test-freadseek.c (main): Disable test beyond end of file on
9149         FreeMiNT.
9150         * tests/test-ftello.c (main): Likewise.
9151         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9152
9153 2009-02-28  Bruno Haible  <bruno@clisp.org>
9154
9155         Add tentative support for FreeMiNT.
9156         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
9157         * lib/fpurge.c (fpurge): Likewise.
9158         * lib/freadable.c (freadable): Likewise.
9159         * lib/freading.c (freading): Likewise.
9160         * lib/freadptr.c (freadptr): Likewise.
9161         * lib/freadseek.c (freadptrinc): Likewise.
9162         * lib/fseeko.c (rpl_fseeko): Likewise.
9163         * lib/fseterr.c (fseterr): Likewise.
9164         * lib/fwritable.c (fwritable): Likewise.
9165         * lib/fwriting.c (fwriting): Likewise.
9166         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
9167         Hourihane.
9168         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9169
9170 2009-02-28  Bruno Haible  <bruno@clisp.org>
9171
9172         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
9173         SIGCHLD.
9174         Reported by Jim Meyering.
9175
9176 2009-02-28  Bruno Haible  <bruno@clisp.org>
9177
9178         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
9179         Mention the results of these tests on various platforms.
9180         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
9181         order.
9182         * doc/posix-functions/printf.texi: Likewise.
9183         * doc/posix-functions/snprintf.texi: Likewise.
9184         * doc/posix-functions/sprintf.texi: Likewise.
9185         * doc/posix-functions/vfprintf.texi: Likewise.
9186         * doc/posix-functions/vprintf.texi: Likewise.
9187         * doc/posix-functions/vsnprintf.texi: Likewise.
9188         * doc/posix-functions/vsprintf.texi: Likewise.
9189         * doc/glibc-functions/obstack_printf.texi: Likewise.
9190         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
9191
9192 2009-02-28  Bruno Haible  <bruno@clisp.org>
9193
9194         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
9195         Reported by Loïc Minier <lool@dooz.org>.
9196
9197 2009-02-27  Bruno Haible  <bruno@clisp.org>
9198
9199         * gnulib-tool (func_import): Make the sed expression used to create the
9200         sed script for updating the .gitignore file POSIX compliant.
9201         Reported by Eric Blake.
9202
9203 2009-02-27  Bruno Haible  <bruno@clisp.org>
9204
9205         * gnulib-tool (sed): Don't alias as "sed --posix".
9206         Reported by Eric Blake.
9207
9208 2009-02-27  Bruno Haible  <bruno@clisp.org>
9209
9210         Avoid test link errors.
9211         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
9212         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
9213         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
9214         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
9215         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9216
9217 2009-02-27  Bruno Haible  <bruno@clisp.org>
9218
9219         Avoid spurious "(cached)" in configure output.
9220         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
9221         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
9222         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
9223         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
9224         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
9225         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
9226         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
9227         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
9228         Reported by Eric Blake.
9229
9230 2009-02-27  Eric Blake  <ebb9@byu.net>
9231
9232         printf: fix regression in previous patch
9233         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
9234
9235 2009-02-27  Bruno Haible  <bruno@clisp.org>
9236
9237         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
9238         value.
9239         * lib/stdint.in.h: Likewise.
9240         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
9241
9242 2009-02-27  Eric Blake  <ebb9@byu.net>
9243
9244         doc: mention more functions added in cygwin 1.7.0
9245         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
9246         addition.
9247         * doc/posix-functions/open_wmemstream.texi: Likewise.
9248         * doc/posix-functions/wcsnlen.texi: Likewise.
9249         * doc/posix-functions/wcsnrtombs.texi: Likewise.
9250         * doc/posix-functions/wcstod.texi: Likewise.
9251         * doc/posix-functions/wcstof.texi: Likewise.
9252         * doc/posix-functions/wcstoimax.texi: Likewise.
9253         * doc/posix-functions/wcstok.texi: Likewise.
9254         * doc/posix-functions/wcstoumax.texi: Likewise.
9255
9256         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
9257         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
9258         * doc/posix-functions/fprintf.texi: Update.
9259         * doc/posix-functions/printf.texi: Update.
9260         * doc/posix-functions/snprintf.texi: Update.
9261         * doc/posix-functions/sprintf.texi: Update.
9262         * doc/posix-functions/vfprintf.texi: Update.
9263         * doc/posix-functions/vprintf.texi: Update.
9264         * doc/posix-functions/vsnprintf.texi: Update.
9265         * doc/posix-functions/vsprintf.texi: Update.
9266         * doc/glibc-functions/obstack_printf.texi: Update.
9267         * doc/glibc-functions/obstack_vprintf.texi: Update.
9268
9269 2009-02-26  Eric Blake  <ebb9@byu.net>
9270
9271         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
9272         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
9273         compilation bug by using runtime conversion.
9274         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
9275         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
9276         * modules/ceill-tests (Files): Use nan.h.
9277         * modules/floorl-tests (Files): Likewise.
9278         * modules/frexpl-tests (Files): Likewise.
9279         * modules/isnanl-tests (Files): Likewise.
9280         * modules/ldexpl-tests (Files): Likewise.
9281         * modules/roundl-tests (Files): Likewise.
9282         * modules/truncl-tests (Files): Likewise.
9283         * tests/test-ceill.c (main): Use a working NaN.
9284         * tests/test-floorl.c (main): Likewise.
9285         * tests/test-frexpl.c (main): Likewise.
9286         * tests/test-isnan.c (test_long_double): Likewise.
9287         * tests/test-isnanl.h (main): Likewise.
9288         * tests/test-ldexpl.h (main): Likewise.
9289         * tests/test-roundl.h (main): Likewise.
9290         * tests/test-truncl.h (main): Likewise.
9291         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
9292
9293 2009-02-26  Eric Blake  <ebb9@byu.net>
9294             Bruno Haible  <bruno@clisp.org>
9295
9296         Work around a *printf bug with %ls on Solaris.
9297         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
9298         precision is specified, sprintf stops converting the wide string
9299         argument when the number of bytes that have been produced by this
9300         conversion equals or exceeds the precision.
9301         * doc/posix-functions/fprintf.texi: Update.
9302         * doc/posix-functions/printf.texi: Update.
9303         * doc/posix-functions/snprintf.texi: Update.
9304         * doc/posix-functions/sprintf.texi: Update.
9305         * doc/posix-functions/vfprintf.texi: Update.
9306         * doc/posix-functions/vprintf.texi: Update.
9307         * doc/posix-functions/vsnprintf.texi: Update.
9308         * doc/posix-functions/vsprintf.texi: Update.
9309         * doc/glibc-functions/obstack_printf.texi: Update.
9310         * doc/glibc-functions/obstack_vprintf.texi: Update.
9311
9312 2009-02-26  Eric Blake  <ebb9@byu.net>
9313
9314         stdlib: favor compiler check of random.h
9315         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
9316         to avoid an ObjC random.h installed by Swarm.
9317
9318 2009-02-26  Bruno Haible  <bruno@clisp.org>
9319
9320         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
9321         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
9322         Reported by Gary V. Vaughan <gary@gnu.org>.
9323
9324 2009-02-26  Bruno Haible  <bruno@clisp.org>
9325
9326         Fix *printf behaviour regarding the %ls directive.
9327         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
9328         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
9329         NEED_PRINTF_DIRECTIVE_LS.
9330         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
9331         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
9332         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9333         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
9334         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
9335         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
9336         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
9337         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9338         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9339         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9340         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9341         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
9342         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9343         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9344         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9345         * doc/posix-functions/fprintf.texi: Update.
9346         * doc/posix-functions/printf.texi: Update.
9347         * doc/posix-functions/snprintf.texi: Update.
9348         * doc/posix-functions/sprintf.texi: Update.
9349         * doc/posix-functions/vfprintf.texi: Update.
9350         * doc/posix-functions/vprintf.texi: Update.
9351         * doc/posix-functions/vsnprintf.texi: Update.
9352         * doc/posix-functions/vsprintf.texi: Update.
9353         * doc/glibc-functions/obstack_printf.texi: Update.
9354         * doc/glibc-functions/obstack_vprintf.texi: Update.
9355         Reported by Eric Blake.
9356
9357 2009-02-25  Bruno Haible  <bruno@clisp.org>
9358
9359         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
9360         with known value.
9361         Reported by Gary V. Vaughan <gary@gnu.org>.
9362
9363 2009-02-25  Bruno Haible  <bruno@clisp.org>
9364
9365         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
9366         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
9367         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
9368         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
9369         Reported by Gary V. Vaughan <gary@gnu.org>.
9370
9371 2009-02-25  Bruno Haible  <bruno@clisp.org>
9372
9373         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
9374         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
9375         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
9376         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
9377         Reported by Gary V. Vaughan <gary@gnu.org>.
9378
9379 2009-02-25  Eric Blake  <ebb9@byu.net>
9380
9381         tests: skip fseek/ftell tests if ungetc is broken
9382         * m4/ungetc.m4: New file.
9383         * modules/fseek-tests: Split test, so ungetc dependency is
9384         separate from rest of test.
9385         * modules/fseeko-tests: Likewise.
9386         * modules/ftell-tests: Likewise.
9387         * modules/ftello-tests: Likewise.
9388         * tests/test-fseek.c (main): Isolate ungetc dependency.
9389         * tests/test-fseeko.c (main): Likewise.
9390         * tests/test-ftell.c (main): Likewise.
9391         * tests/test-ftello.c (main): Likewise.
9392         * tests/test-fseek2.sh: New file.
9393         * tests/test-fseeko2.sh: Likewise.
9394         * tests/test-ftell2.sh: Likewise.
9395         * tests/test-ftello2.sh: Likewise.
9396
9397 2009-02-25  Ondřej Vašík  <ovasik@redhat.com>
9398
9399         test-getaddrinfo: fix usage of skip return code 77
9400         * tests/test-gettaddrinfo.c: Return skip code 77 only
9401         for first occurance of skip (4x77 is not 77)
9402
9403 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
9404
9405         strtod: avoid C99 decl-after-statement
9406         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
9407
9408 2009-02-24  Eric Blake  <ebb9@byu.net>
9409
9410         strtod: detect HP-UX 11.31 bug
9411         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
9412         Reported by Gary V. Vaughan.
9413
9414 2009-02-23  Bruno Haible  <bruno@clisp.org>
9415
9416         Fix invalid read past end of memory block.
9417         * lib/vasnprintf.c (DCHAR_SET): Define.
9418         (local_wcslen): Define only when needed.
9419         (local_strnlen, local_wcsnlen): New functions.
9420         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
9421         directives that involve a conversion ourselves.
9422         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
9423         wcsnlen, mbrtowc, wcrtomb.
9424         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
9425         * tests/test-vasprintf-posix.c (test_function): Likewise.
9426         * tests/test-snprintf-posix.h (test_function): Likewise.
9427         * tests/test-sprintf-posix.h (test_function): Likewise.
9428         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9429
9430 2009-02-22  Bruno Haible  <bruno@clisp.org>
9431
9432         Implement new clarified decomposition of Hangul syllables.
9433         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
9434         of type LTV, return only a pairwise decomposition.
9435         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
9436         Likewise.
9437         * tests/uninorm/test-decomposition.c (main): Updated expected result.
9438         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
9439         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
9440
9441 2009-02-22  Bruno Haible  <bruno@clisp.org>
9442
9443         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
9444         zero-length results and shrink excess allocated memory.
9445         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
9446         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
9447         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
9448         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
9449         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
9450         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
9451         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
9452         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
9453         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
9454         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
9455         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
9456         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
9457
9458 2009-02-21  Bruno Haible  <bruno@clisp.org>
9459
9460         * doc/gnulib.texi: Include safe-alloc.texi earlier.
9461         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
9462         spaces after a period. Put a space between a macro name and its
9463         argument list. Trivial rewordings.
9464         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
9465         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
9466         (main): Return 0 explicitly.
9467
9468 2009-02-21  Bruno Haible  <bruno@clisp.org>
9469
9470         Tests for module 'uninorm/filter'.
9471         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
9472         * modules/uninorm/filter-tests: New file.
9473
9474         New module 'uninorm/filter'.
9475         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
9476         uninorm_filter_flush, uninorm_filter_free): New declarations.
9477         * lib/uninorm/uninorm-filter.c: New file.
9478         * modules/uninorm/filter: New file.
9479
9480 2009-02-21  Bruno Haible  <bruno@clisp.org>
9481
9482         Tests for module 'uninorm/nfkc'.
9483         * tests/uninorm/test-nfkc.c: New file.
9484         * tests/uninorm/test-u8-nfkc.c: New file.
9485         * tests/uninorm/test-u16-nfkc.c: New file.
9486         * tests/uninorm/test-u32-nfkc.c: New file.
9487         * tests/uninorm/test-u32-nfkc-big.sh: New file.
9488         * tests/uninorm/test-u32-nfkc-big.c: New file.
9489         * modules/uninorm/nfkc-tests: New file.
9490
9491         New module 'uninorm/nfkc'.
9492         * lib/uninorm/nfkc.c: New file.
9493         * modules/uninorm/nfkc: New file.
9494
9495         Tests for module 'uninorm/nfkd'.
9496         * tests/uninorm/test-nfkd.c: New file.
9497         * tests/uninorm/test-u8-nfkd.c: New file.
9498         * tests/uninorm/test-u16-nfkd.c: New file.
9499         * tests/uninorm/test-u32-nfkd.c: New file.
9500         * tests/uninorm/test-u32-nfkd-big.sh: New file.
9501         * tests/uninorm/test-u32-nfkd-big.c: New file.
9502         * modules/uninorm/nfkd-tests: New file.
9503
9504         New module 'uninorm/nfkd'.
9505         * lib/uninorm/nfkd.c: New file.
9506         * modules/uninorm/nfkd: New file.
9507
9508         Tests for module 'uninorm/nfc'.
9509         * tests/uninorm/test-nfc.c: New file.
9510         * tests/uninorm/test-u8-nfc.c: New file.
9511         * tests/uninorm/test-u16-nfc.c: New file.
9512         * tests/uninorm/test-u32-nfc.c: New file.
9513         * tests/uninorm/test-u32-nfc-big.sh: New file.
9514         * tests/uninorm/test-u32-nfc-big.c: New file.
9515         * modules/uninorm/nfc-tests: New file.
9516
9517         New module 'uninorm/nfc'.
9518         * lib/uninorm/nfc.c: New file.
9519         * modules/uninorm/nfc: New file.
9520
9521         Tests for module 'uninorm/nfd'.
9522         * tests/uninorm/test-nfd.c: New file.
9523         * tests/uninorm/test-u8-nfd.c: New file.
9524         * tests/uninorm/test-u16-nfd.c: New file.
9525         * tests/uninorm/test-u32-nfd.c: New file.
9526         * tests/uninorm/test-u32-nfd-big.sh: New file.
9527         * tests/uninorm/test-u32-nfd-big.c: New file.
9528         * tests/uninorm/test-u32-normalize-big.h: New file.
9529         * tests/uninorm/test-u32-normalize-big.c: New file.
9530         * tests/uninorm/NormalizationTest.txt: New file, created from
9531         Unicode 5.1.0 NormalizationTest.txt.
9532         * modules/uninorm/nfd-tests: New file.
9533
9534         New module 'uninorm/nfd'.
9535         * lib/uninorm/nfd.c: New file.
9536         * modules/uninorm/nfd: New file.
9537
9538         New module 'uninorm/u32-normalize'.
9539         * lib/uninorm/u32-normalize.c: New file.
9540         * modules/uninorm/u32-normalize: New file.
9541
9542         New module 'uninorm/u16-normalize'.
9543         * lib/uninorm/u16-normalize.c: New file.
9544         * modules/uninorm/u16-normalize: New file.
9545
9546         New module 'uninorm/u8-normalize'.
9547         * lib/uninorm/u8-normalize.c: New file.
9548         * lib/uninorm/normalize-internal.h: New file.
9549         * lib/uninorm/u-normalize-internal.h: New file.
9550         * modules/uninorm/u8-normalize: New file.
9551
9552         New module 'uninorm/decompose-internal'.
9553         * lib/uninorm/decompose-internal.c: New file.
9554         * modules/uninorm/decompose-internal: New file.
9555
9556         Tests for module 'uninorm/composition'.
9557         * tests/uninorm/test-composition.c: New file.
9558         * modules/uninorm/composition-tests: New file.
9559
9560         New module 'uninorm/composition'.
9561         * lib/uninorm/composition.c: New file.
9562         * lib/uninorm/composition-table.gperf: New file, generated by
9563         gen-uni-tables.
9564         * modules/uninorm/composition: New file.
9565
9566         Tests for module 'uninorm/compat-decomposition'.
9567         * tests/uninorm/test-compat-decomposition.c: New file.
9568         * modules/uninorm/compat-decomposition-tests: New file.
9569
9570         New module 'uninorm/compat-decomposition'.
9571         * lib/uninorm/decompose-internal.h: New file.
9572         * lib/uninorm/compat-decomposition.c: New file.
9573         * modules/uninorm/compat-decomposition: New file.
9574
9575         Tests for module 'uninorm/canonical-decomposition'.
9576         * tests/uninorm/test-canonical-decomposition.c: New file.
9577         * modules/uninorm/canonical-decomposition-tests: New file.
9578
9579         New module 'uninorm/canonical-decomposition'.
9580         * lib/uninorm/canonical-decomposition.c: New file.
9581         * modules/uninorm/canonical-decomposition: New file.
9582
9583         Tests for module 'uninorm/decomposition'.
9584         * tests/uninorm/test-decomposition.c: New file.
9585         * modules/uninorm/decomposition-tests: New file.
9586
9587         New module 'uninorm/decomposition'.
9588         * lib/uninorm/decomposition.c: New file.
9589         * modules/uninorm/decomposition: New file.
9590
9591         New module 'uninorm/decomposition-table'.
9592         * lib/uninorm/decomposition-table.h: New file.
9593         * lib/uninorm/decomposition-table.c: New file.
9594         * lib/uninorm/decomposition-table1.h: New file, generated by
9595         gen-uni-tables.
9596         * lib/uninorm/decomposition-table2.h: New file, generated by
9597         gen-uni-tables.
9598         * modules/uninorm/decomposition-table: New file.
9599
9600         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
9601         (UC_DECOMP_*): New enumeration items.
9602         (get_decomposition): New function.
9603         (struct decomp_table): New type.
9604         (output_decomposition, output_decomposition_tables): New functions.
9605         (unicode_composition_exclusions): New variable.
9606         (fill_composition_exclusions, debug_output_composition_tables): New
9607         functions.
9608         (main): Accept one more argument. Invoke fill_composition_exclusions.
9609         Output decomposition and composition tables.
9610
9611         New module 'uninorm/base'.
9612         * lib/uninorm.h: New file.
9613         * lib/unictype.h: Update comment.
9614         * modules/uninorm/base: New file.
9615
9616 2009-02-21  David Lutterkort  <lutter@redhat.com>
9617
9618         Tests for module 'safe-alloc'.
9619         * tests/test-safe-alloc.c: New file.
9620         * modules/safe-alloc-tests: New file.
9621
9622         New module 'safe-alloc'.
9623         * lib/safe-alloc.h: New file.
9624         * lib/safe-alloc.c: New file.
9625         * m4/safe-alloc.m4: New file.
9626         * modules/safe-alloc: New file.
9627         * doc/safe-alloc.texi: New file.
9628         * doc/gnulib.texi: Include it.
9629         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
9630         safe-alloc.
9631
9632 2009-02-18  Bruno Haible  <bruno@clisp.org>
9633
9634         Fix link error on non-glibc systems.
9635         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
9636         variable.
9637         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9638
9639 2009-02-18  Jim Meyering  <meyering@redhat.com>
9640
9641         fts: avoid used-uninitialized error due to recent change
9642         * lib/fts.c (fts_read): Guard uses of the new member,
9643         parent->fts_n_dirs_remaining, since it's not relevant for
9644         the parent of a directory specified on the command-line.
9645
9646 2009-02-17  James Youngman  <jay@gnu.org>
9647             Bruno Haible  <bruno@clisp.org>
9648
9649         * m4/include_next.m4: Reformulate comment.
9650
9651 2009-02-16  Jim Meyering  <meyering@redhat.com>
9652
9653         fts: add #if guards so that the fts_lgpl module still builds
9654         * lib/fts.c: Guard just-added hash-table-using parts with
9655         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
9656         Reported by Simon Josefsson.
9657
9658 2009-02-15  Bruno Haible  <bruno@clisp.org>
9659
9660         * modules/array-mergesort-tests: New file.
9661         * tests/test-array-mergesort.c: New file.
9662
9663         New module 'array-mergesort'.
9664         * modules/array-mergesort: New file.
9665         * lib/array-mergesort.h: New file.
9666
9667 2009-02-15  Bruno Haible  <bruno@clisp.org>
9668
9669         Fix 2009-02-07 commit.
9670         * lib/gen-uni-tables.c (output_predicate, output_category,
9671         output_combclass, output_bidi_category, output_decimal_digit,
9672         output_digit, output_numeric, output_mirror, output_scripts,
9673         output_ident_category, output_simple_mapping): Fix format directives.
9674         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
9675
9676 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
9677
9678         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
9679         fixes are available from IBM.
9680
9681 2009-02-13  Jim Meyering  <meyering@redhat.com>
9682
9683         fts: arrange not to stat non-directories in more cases
9684         This makes GNU find (when it doesn't need to stat each file)
9685         *much* more efficient at traversing reiserfs file systems.
9686         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
9687         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
9688         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
9689         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
9690         (leaf_optimization_applies): New function.
9691         (LCO_hash, LCO_compare): New helper functions.
9692         (link_count_optimize_ok): New function.
9693         (fts_stat): Initialize new member (if dir).
9694         (fts_read): Decrement parent's fts_n_dirs_remaining count if
9695         we've just stat'ed a directory.  Skip the stat call when possible.
9696         ---
9697         Note this AFS-related exchange:
9698         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
9699         and note find's pioctl call in find/fstype.c.
9700         But that is necessary only if you want to enable the
9701         optimization for AFS, and for now, I don't.
9702
9703         fts: move a function definition "up" (no semantic change)
9704         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
9705         "up" to precede upcoming use of a related function.
9706
9707 2009-02-11  Jim Meyering  <meyering@redhat.com>
9708
9709         fts: correct internal computation of nlinks (optimization-related)
9710         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
9711         whether the current entry is a directory, so don't test it.
9712
9713 2009-02-10  Bruno Haible  <bruno@clisp.org>
9714
9715         Tests for module 'uniwbrk/ulc-wordbreaks'.
9716         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
9717         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
9718         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
9719
9720         Tests for module 'uniwbrk/u32-wordbreaks'.
9721         * modules/uniwbrk/u32-wordbreaks-tests: New file.
9722         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
9723
9724         Tests for module 'uniwbrk/u16-wordbreaks'.
9725         * modules/uniwbrk/u16-wordbreaks-tests: New file.
9726         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
9727
9728         Tests for module 'uniwbrk/u8-wordbreaks'.
9729         * modules/uniwbrk/u8-wordbreaks-tests: New file.
9730         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
9731
9732 2009-02-10  Bruno Haible  <bruno@clisp.org>
9733
9734         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
9735         property.
9736         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
9737         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
9738         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
9739
9740 2009-02-10  Simon Josefsson  <simon@josefsson.org>
9741
9742         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
9743         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
9744
9745 2009-02-10  Bruno Haible  <bruno@clisp.org>
9746
9747         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
9748         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
9749         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
9750         * lib/unilbrk/u8-possible-linebreaks.c: Update.
9751         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
9752         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
9753
9754 2009-02-09  Simon Josefsson  <simon@josefsson.org>
9755
9756         * lib/sockets.h (gl_fd_to_handle): New function.
9757
9758         * tests/test-sockets.c: Call gl_fd_to_handle.
9759
9760 2009-02-09  Bruno Haible  <bruno@clisp.org>
9761
9762         * doc/havelib.texi: Document the conventions on bi-arch systems.
9763
9764 2009-02-08  Bruno Haible  <bruno@clisp.org>
9765
9766         Document the AC_LIB_LINKFLAGS macro.
9767         * doc/havelib.texi: New file, mostly written on 2005-05-24.
9768         * doc/gnulib.texi: Include it.
9769
9770 2009-02-08  Bruno Haible  <bruno@clisp.org>
9771
9772         Fix wrong order of sections, compared to TOC.
9773         * doc/gnulib.texi: Include relocatable-maint.texi after the
9774         "Regular expressions" node, not before.
9775
9776 2009-02-08  Bruno Haible  <bruno@clisp.org>
9777
9778         Tests for module 'unicase/totitle'.
9779         * modules/unicase/totitle-tests: New file.
9780
9781         Tests for module 'unicase/tolower'.
9782         * modules/unicase/tolower-tests: New file.
9783
9784         Tests for module 'unicase/toupper'.
9785         * modules/unicase/toupper-tests: New file.
9786         * tests/unicase/test-mapping-part1.h: New file.
9787         * tests/unicase/test-mapping-part2.h: New file.
9788
9789         New module 'unicase/totitle'.
9790         * modules/unicase/totitle: New file.
9791         * lib/unicase/totitle.c: New file.
9792
9793         New module 'unicase/tolower'.
9794         * modules/unicase/tolower: New file.
9795         * lib/unicase/tolower.c: New file.
9796
9797         New module 'unicase/toupper'.
9798         * modules/unicase/toupper: New file.
9799         * lib/unicase/toupper.c: New file.
9800         * lib/unicase/simple-mapping.h: New file.
9801
9802         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
9803         (mapping_table): New structure.
9804         (output_simple_mapping): New function.
9805         (main): Invoke output_simple_mapping_test and output_simple_mapping.
9806         * modules/gen-uni-tables (Description): Update.
9807         * lib/unicase/toupper.h: New file, automatically generated by
9808         gen-uni-tables.
9809         * lib/unicase/tolower.h: New file, automatically generated by
9810         gen-uni-tables.
9811         * lib/unicase/totitle.h: New file, automatically generated by
9812         gen-uni-tables.
9813         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
9814         gen-uni-tables.
9815         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
9816         gen-uni-tables.
9817         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
9818         gen-uni-tables.
9819
9820         New module 'unicase/base'.
9821         * modules/unicase/base: New file.
9822         * lib/unicase.h: New file.
9823
9824 2009-02-08  Bruno Haible  <bruno@clisp.org>
9825
9826         New module 'uniwbrk/ulc-wordbreaks'.
9827         * modules/uniwbrk/ulc-wordbreaks: New file.
9828         * lib/uniwbrk/ulc-wordbreaks.c: New file.
9829
9830         New module 'uniwbrk/u32-wordbreaks'.
9831         * modules/uniwbrk/u32-wordbreaks: New file.
9832         * lib/uniwbrk/u32-wordbreaks.c: New file.
9833
9834         New module 'uniwbrk/u16-wordbreaks'.
9835         * modules/uniwbrk/u16-wordbreaks: New file.
9836         * lib/uniwbrk/u16-wordbreaks.c: New file.
9837
9838         New module 'uniwbrk/u8-wordbreaks'.
9839         * modules/uniwbrk/u8-wordbreaks: New file.
9840         * lib/uniwbrk/u8-wordbreaks.c: New file.
9841         * lib/uniwbrk/u-wordbreaks.h: New file.
9842
9843         New module 'uniwbrk/table'.
9844         * modules/uniwbrk/table: New file.
9845         * lib/uniwbrk/wbrktable.h: New file.
9846         * lib/uniwbrk/wbrktable.c: New file.
9847
9848         New module 'uniwbrk/wordbreak-property'.
9849         * modules/uniwbrk/wordbreak-property: New file.
9850         * lib/uniwbrk/wordbreak-property.c: New file.
9851
9852         * lib/gen-uni-tables.c (WBP_*): New enum items.
9853         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
9854         (unicode_org_wbp): New variable.
9855         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
9856         New functions.
9857         (wbp_table): New structure.
9858         (output_wbp, output_wbrk_tables): New functions.
9859         (main): Accept additional argument. Invoke fill_org_wbp,
9860         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
9861         output_wbrk_tables.
9862         * modules/gen-uni-tables (Description): Update.
9863         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
9864         gen-uni-tables.
9865
9866         New module 'uniwbrk/base'.
9867         * modules/uniwbrk/base: New file.
9868         * lib/uniwbrk.h: New file.
9869
9870 2009-02-08  Bruno Haible  <bruno@clisp.org>
9871
9872         Update to Unicode 5.1.0.
9873         * lib/gen-uni-tables.c (is_property_alphabetic): Include
9874         U+2185..U+2188.
9875         (is_property_default_ignorable_code_point): Don't include characters
9876         of category Cc or Cs and not-a-characters.
9877         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
9878         U+0D79, U+109E, U+109F, U+A60C.
9879         * lib/unictype/bidi_of.h: Regenerated.
9880         * lib/unictype/blocks.h: Regenerated.
9881         * lib/unictype/categ_C.h: Regenerated.
9882         * lib/unictype/categ_Cf.h: Regenerated.
9883         * lib/unictype/categ_Cn.h: Regenerated.
9884         * lib/unictype/categ_L.h: Regenerated.
9885         * lib/unictype/categ_Ll.h: Regenerated.
9886         * lib/unictype/categ_Lm.h: Regenerated.
9887         * lib/unictype/categ_Lo.h: Regenerated.
9888         * lib/unictype/categ_Lu.h: Regenerated.
9889         * lib/unictype/categ_M.h: Regenerated.
9890         * lib/unictype/categ_Mc.h: Regenerated.
9891         * lib/unictype/categ_Me.h: Regenerated.
9892         * lib/unictype/categ_Mn.h: Regenerated.
9893         * lib/unictype/categ_N.h: Regenerated.
9894         * lib/unictype/categ_Nd.h: Regenerated.
9895         * lib/unictype/categ_Nl.h: Regenerated.
9896         * lib/unictype/categ_No.h: Regenerated.
9897         * lib/unictype/categ_P.h: Regenerated.
9898         * lib/unictype/categ_Pd.h: Regenerated.
9899         * lib/unictype/categ_Pe.h: Regenerated.
9900         * lib/unictype/categ_Pf.h: Regenerated.
9901         * lib/unictype/categ_Pi.h: Regenerated.
9902         * lib/unictype/categ_Po.h: Regenerated.
9903         * lib/unictype/categ_Ps.h: Regenerated.
9904         * lib/unictype/categ_S.h: Regenerated.
9905         * lib/unictype/categ_Sk.h: Regenerated.
9906         * lib/unictype/categ_Sm.h: Regenerated.
9907         * lib/unictype/categ_So.h: Regenerated.
9908         * lib/unictype/categ_of.h: Regenerated.
9909         * lib/unictype/combining.h: Regenerated.
9910         * lib/unictype/ctype_alnum.h: Regenerated.
9911         * lib/unictype/ctype_alpha.h: Regenerated.
9912         * lib/unictype/ctype_graph.h: Regenerated.
9913         * lib/unictype/ctype_lower.h: Regenerated.
9914         * lib/unictype/ctype_print.h: Regenerated.
9915         * lib/unictype/ctype_punct.h: Regenerated.
9916         * lib/unictype/ctype_upper.h: Regenerated.
9917         * lib/unictype/decdigit.h: Regenerated.
9918         * lib/unictype/digit.h: Regenerated.
9919         * lib/unictype/mirror.h: Regenerated.
9920         * lib/unictype/numeric.h: Regenerated.
9921         * lib/unictype/pr_alphabetic.h: Regenerated.
9922         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
9923         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
9924         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
9925         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
9926         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
9927         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
9928         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
9929         * lib/unictype/pr_combining.h: Regenerated.
9930         * lib/unictype/pr_dash.h: Regenerated.
9931         * lib/unictype/pr_decimal_digit.h: Regenerated.
9932         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
9933         * lib/unictype/pr_deprecated.h: Regenerated.
9934         * lib/unictype/pr_diacritic.h: Regenerated.
9935         * lib/unictype/pr_extender.h: Regenerated.
9936         * lib/unictype/pr_format_control.h: Regenerated.
9937         * lib/unictype/pr_grapheme_base.h: Regenerated.
9938         * lib/unictype/pr_grapheme_extend.h: Regenerated.
9939         * lib/unictype/pr_grapheme_link.h: Regenerated.
9940         * lib/unictype/pr_id_continue.h: Regenerated.
9941         * lib/unictype/pr_id_start.h: Regenerated.
9942         * lib/unictype/pr_ideographic.h: Regenerated.
9943         * lib/unictype/pr_ignorable_control.h: Regenerated.
9944         * lib/unictype/pr_lowercase.h: Regenerated.
9945         * lib/unictype/pr_math.h: Regenerated.
9946         * lib/unictype/pr_numeric.h: Regenerated.
9947         * lib/unictype/pr_other_alphabetic.h: Regenerated.
9948         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
9949         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
9950         * lib/unictype/pr_other_id_continue.h: Regenerated.
9951         * lib/unictype/pr_other_lowercase.h: Regenerated.
9952         * lib/unictype/pr_other_math.h: Regenerated.
9953         * lib/unictype/pr_punctuation.h: Regenerated.
9954         * lib/unictype/pr_sentence_terminal.h: Regenerated.
9955         * lib/unictype/pr_soft_dotted.h: Regenerated.
9956         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
9957         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
9958         * lib/unictype/pr_unified_ideograph.h: Regenerated.
9959         * lib/unictype/pr_uppercase.h: Regenerated.
9960         * lib/unictype/pr_xid_continue.h: Regenerated.
9961         * lib/unictype/pr_xid_start.h: Regenerated.
9962         * lib/unictype/pr_zero_width.h: Regenerated.
9963         * lib/unictype/scripts.h: Regenerated.
9964         * lib/unictype/scripts_byname.gperf: Regenerated.
9965         * lib/unictype/sy_java_ident.h: Regenerated.
9966         * lib/unilbrk/lbrkprop1.h: Regenerated.
9967         * lib/unilbrk/lbrkprop2.h: Regenerated.
9968         * tests/unictype/test-categ_C.c: Regenerated.
9969         * tests/unictype/test-categ_Cf.c: Regenerated.
9970         * tests/unictype/test-categ_Cn.c: Regenerated.
9971         * tests/unictype/test-categ_L.c: Regenerated.
9972         * tests/unictype/test-categ_Ll.c: Regenerated.
9973         * tests/unictype/test-categ_Lm.c: Regenerated.
9974         * tests/unictype/test-categ_Lo.c: Regenerated.
9975         * tests/unictype/test-categ_Lu.c: Regenerated.
9976         * tests/unictype/test-categ_M.c: Regenerated.
9977         * tests/unictype/test-categ_Mc.c: Regenerated.
9978         * tests/unictype/test-categ_Me.c: Regenerated.
9979         * tests/unictype/test-categ_Mn.c: Regenerated.
9980         * tests/unictype/test-categ_N.c: Regenerated.
9981         * tests/unictype/test-categ_Nd.c: Regenerated.
9982         * tests/unictype/test-categ_Nl.c: Regenerated.
9983         * tests/unictype/test-categ_No.c: Regenerated.
9984         * tests/unictype/test-categ_P.c: Regenerated.
9985         * tests/unictype/test-categ_Pd.c: Regenerated.
9986         * tests/unictype/test-categ_Pe.c: Regenerated.
9987         * tests/unictype/test-categ_Pf.c: Regenerated.
9988         * tests/unictype/test-categ_Pi.c: Regenerated.
9989         * tests/unictype/test-categ_Po.c: Regenerated.
9990         * tests/unictype/test-categ_Ps.c: Regenerated.
9991         * tests/unictype/test-categ_S.c: Regenerated.
9992         * tests/unictype/test-categ_Sk.c: Regenerated.
9993         * tests/unictype/test-categ_Sm.c: Regenerated.
9994         * tests/unictype/test-categ_So.c: Regenerated.
9995         * tests/unictype/test-ctype_alnum.c: Regenerated.
9996         * tests/unictype/test-ctype_alpha.c: Regenerated.
9997         * tests/unictype/test-ctype_graph.c: Regenerated.
9998         * tests/unictype/test-ctype_lower.c: Regenerated.
9999         * tests/unictype/test-ctype_print.c: Regenerated.
10000         * tests/unictype/test-ctype_punct.c: Regenerated.
10001         * tests/unictype/test-ctype_upper.c: Regenerated.
10002         * tests/unictype/test-decdigit.h: Regenerated.
10003         * tests/unictype/test-digit.h: Regenerated.
10004         * tests/unictype/test-numeric.h: Regenerated.
10005         * tests/unictype/test-pr_alphabetic.c: Regenerated.
10006         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
10007         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
10008         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
10009         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
10010         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
10011         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
10012         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
10013         * tests/unictype/test-pr_combining.c: Regenerated.
10014         * tests/unictype/test-pr_dash.c: Regenerated.
10015         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
10016         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
10017         * tests/unictype/test-pr_deprecated.c: Regenerated.
10018         * tests/unictype/test-pr_diacritic.c: Regenerated.
10019         * tests/unictype/test-pr_extender.c: Regenerated.
10020         * tests/unictype/test-pr_format_control.c: Regenerated.
10021         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
10022         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
10023         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
10024         * tests/unictype/test-pr_id_continue.c: Regenerated.
10025         * tests/unictype/test-pr_id_start.c: Regenerated.
10026         * tests/unictype/test-pr_ideographic.c: Regenerated.
10027         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
10028         * tests/unictype/test-pr_lowercase.c: Regenerated.
10029         * tests/unictype/test-pr_math.c: Regenerated.
10030         * tests/unictype/test-pr_numeric.c: Regenerated.
10031         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
10032         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
10033         Regenerated.
10034         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
10035         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
10036         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
10037         * tests/unictype/test-pr_other_math.c: Regenerated.
10038         * tests/unictype/test-pr_punctuation.c: Regenerated.
10039         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
10040         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
10041         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
10042         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
10043         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
10044         * tests/unictype/test-pr_uppercase.c: Regenerated.
10045         * tests/unictype/test-pr_xid_continue.c: Regenerated.
10046         * tests/unictype/test-pr_xid_start.c: Regenerated.
10047         * tests/unictype/test-pr_zero_width.c: Regenerated.
10048
10049         Update to Unicode 5.1.0.
10050         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
10051         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
10052         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
10053         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
10054         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
10055         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
10056         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
10057         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
10058         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
10059         (nonspacing_table_ind): Update.
10060         * tests/uniwidth/test-uc_width2.sh: Update expected result.
10061
10062         Update to Unicode 5.1.0.
10063         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
10064         code transform.
10065         * lib/uniname/uniname.c (unicode_character_name,
10066         unicode_name_character): Add the range 0x1Fxxx to the code transform.
10067         * lib/uniname/uninames.h: Regenerated.
10068         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
10069
10070 2009-02-07  Bruno Haible  <bruno@clisp.org>
10071
10072         Merge gen-ctype and gen-lbrk into a single program.
10073         * lib/gen-uni-tables.c: New file, incorporating
10074         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
10075         Add directory prefixes to the names of the generated files.
10076         * lib/unictype/gen-ctype.c: Remove file.
10077         * lib/unilbrk/gen-lbrk.c: Remove file.
10078         * modules/gen-uni-tables: New file.
10079         * modules/unictype/gen-ctype: Remove file.
10080         * modules/unilbrk/gen-lbrk: Remove file.
10081
10082 2009-02-07  Bruno Haible  <bruno@clisp.org>
10083
10084         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
10085
10086         New module 'unistr/u32-strcoll'.
10087         * modules/unistr/u32-strcoll: New file.
10088         * lib/unistr/u32-strcoll.c: New file.
10089
10090         New module 'unistr/u16-strcoll'.
10091         * modules/unistr/u16-strcoll: New file.
10092         * lib/unistr/u16-strcoll.c: New file.
10093
10094         New module 'unistr/u8-strcoll'.
10095         * modules/unistr/u8-strcoll: New file.
10096         * lib/unistr/u8-strcoll.c: New file.
10097         * lib/unistr/u-strcoll.h: New file.
10098
10099 2009-02-07  Bruno Haible  <bruno@clisp.org>
10100
10101         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
10102         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10103         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10104         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
10105         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
10106         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
10107
10108 2009-02-07  Bruno Haible  <bruno@clisp.org>
10109
10110         Make 64-bit clean.
10111         * lib/unictype/gen-ctype.c (output_predicate, output_category,
10112         output_combclass, output_bidi_category, output_decimal_digit,
10113         output_digit, output_numeric, output_mirror, output_scripts,
10114         output_ident_category): Use proper width specifier in format strings.
10115
10116 2009-02-07  Bruno Haible  <bruno@clisp.org>
10117
10118         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
10119         failure behaviour.
10120
10121 2009-02-07  Jim Meyering  <meyering@redhat.com>
10122
10123         regex: avoid compilation failure with upcoming gcc-4.4
10124         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
10125         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
10126         "... error: integer overflow in preprocessor expression".
10127
10128 2009-02-05  Ben Pfaff  <blp@gnu.org>
10129
10130         Fix link errors on Windows when close module is used.
10131         * modules/close: Add $(LIB_CLOSE) to Link section.
10132         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
10133         $(LIB_CLOSE) on Windows.
10134
10135 2009-02-05  Jim Meyering  <meyering@redhat.com>
10136
10137         still avoid unused-parameter warnings, but do it cleanly
10138         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
10139         (get_fs_usage): Cast to void instead.
10140         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
10141         (dev_from_mount_options, read_file_system_list): Cast to void.
10142         Prompted by Bruno Haible.
10143
10144 2009-02-04  Jim Meyering  <meyering@redhat.com>
10145
10146         fsusage.c: correct copyright year
10147         * lib/fsusage.c: Reflect year in which the change is pushed into
10148
10149         avoid misc. warnings
10150         * lib/fsusage.c (UNUSED_PARAM): Define.
10151         (get_fs_usage): Mark parameter "disk" as unused.
10152         * lib/getugroups.c (getgrent): Use "void" in prototype.
10153         * lib/mountlist.c: Mark unused parameters.
10154         (read_file_system_list): Declare a local with "const".
10155         * lib/nanosleep.c (getnow): Declare static.
10156         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
10157
10158         dirfd: set errno upon failure
10159         * lib/dirfd.c: Include <errno.h>.
10160         Set errno to ENOTSUP when returning -1.
10161         * modules/dirfd (Depends-on): Add errno.
10162         Suggested by John Kodis <kodis@comcast.net>.
10163
10164 2009-02-01  Bruno Haible  <bruno@clisp.org>
10165
10166         Don't assume sizeof (long) >= sizeof (void *).
10167         * lib/memcmp.c: Include stdint.h.
10168         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
10169         srcp2 to 'const byte *'.
10170         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
10171         types to uintptr_t.
10172         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
10173         * modules/memcmp (Depends-on): Add stdint.
10174         Reported by Ozkan Sezer <sezeroz@gmail.com>.
10175
10176 2009-01-30  Eric Blake  <ebb9@byu.net>
10177
10178         fix more require-before-expand issues
10179         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
10180         expand, AC_PROG_AWK.
10181         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
10182
10183 2009-01-28  Eric Blake  <ebb9@byu.net>
10184
10185         version-etc: use consistent URL formatting
10186         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
10187         Improve formatting.  Use fputs for string without %.
10188
10189 2009-01-28  Jim Meyering  <meyering@redhat.com>
10190
10191         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
10192         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
10193         "underquoted definition of NAME" from autoconf-2.59.
10194
10195 2009-01-28  Bruno Haible  <bruno@clisp.org>
10196
10197         * doc/gnulib.texi: Add "Obsolete modules" to index.
10198
10199 2009-01-28  Jim Meyering  <meyering@redhat.com>
10200
10201         useless-if-before-free: recognize more variants
10202         * build-aux/useless-if-before-free: Also recognize e.g.,
10203         if (NULL != p) free (p);
10204
10205 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
10206
10207         test-getaddrinfo: skip (don't fail) this test when there's no network
10208         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
10209         on the presumption that it means you lack network access.
10210
10211 2009-01-26  Jim Meyering  <meyering@redhat.com>
10212
10213         fflush: avoid warnings on modern systems
10214         * lib/fflush.c (rpl_fflush): Move declarations of locals,
10215         pos and result, into scopes where they're used.
10216
10217 2009-01-26  Eric Blake  <ebb9@byu.net>
10218
10219         Silence warning reintroduced by recent extensions patch.
10220         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
10221         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
10222         autoconf.
10223
10224         Backport improved autoconf semantics of AC_DEFUN_ONCE.
10225         * m4/00gnulib.m4: New file.
10226         * gnulib-tool (func_get_filelist): Always use it.
10227         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
10228         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
10229
10230 2009-01-25  Bruno Haible  <bruno@clisp.org>
10231
10232         Make test-quotearg work on MacOS X and AIX.
10233         * tests/test-quotearg.sh: New file.
10234         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
10235         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
10236         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
10237         include <libintl.h>.
10238         (fake_locale): Remove variable.
10239         (gettext, dgettext, dcgettext): Remove functions.
10240         (main): Instead of setting a fake locale, set a real locale. Call
10241         textdomain and bindtextdomain.
10242         * modules/quotearg-tests (Files): Add the new files.
10243         (Depends-on): Add gettext, setenv, unsetenv.
10244         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
10245         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
10246         Augment TESTS_ENVIRONMENT.
10247
10248 2009-01-25  Bruno Haible  <bruno@clisp.org>
10249
10250         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
10251         fr_FR.ISO8859-1 locale on MacOS X.
10252         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
10253         ja_JP.eucJP locale on MacOS X.
10254         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
10255         zh_CN.GB18030 locale on MacOS X.
10256
10257 2009-01-25  Bruno Haible  <bruno@clisp.org>
10258
10259         Avoid link errors on MacOS X 10.3.
10260         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
10261         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
10262
10263 2009-01-25  Bruno Haible  <bruno@clisp.org>
10264
10265         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10266         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
10267         * modules/pipe (Files): Remove m4/posix_spawn.m4.
10268         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10269         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
10270         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10271         posix_spawnattr_init, posix_spawnattr_setsigmask,
10272         posix_spawnattr_setflags, posix_spawnattr_destroy.
10273
10274         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10275         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
10276         * modules/execute (Files): Remove m4/posix_spawn.m4.
10277         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10278         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10279         posix_spawnattr_init, posix_spawnattr_setsigmask,
10280         posix_spawnattr_setflags, posix_spawnattr_destroy.
10281
10282 2009-01-25  Bruno Haible  <bruno@clisp.org>
10283
10284         * lib/glthread/threadlib.c: Include <stdlib.h>.
10285
10286 2009-01-25  Bruno Haible  <bruno@clisp.org>
10287
10288         * lib/glthread/threadlib.c (dummy): New declaration.
10289
10290 2009-01-25  Bruno Haible  <bruno@clisp.org>
10291
10292         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
10293         multibyte characters also for the GB18030 encoding. Don't crash when
10294         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
10295
10296 2009-01-25  Bruno Haible  <bruno@clisp.org>
10297
10298         Avoid redefining 'struct random_data' on OSF/1 5.1.
10299         * lib/stdlib.in.h: Include <random.h> if it exists.
10300         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
10301         HAVE_RANDOM_H. Include <random.h> when testing whether
10302         'struct random_data' exists.
10303         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
10304
10305 2009-01-25  Bruno Haible  <bruno@clisp.org>
10306
10307         Don't install charset.alias on MacOS X >= 10.3.
10308         * lib/localcharset.c (DARWIN7): New macro.
10309         (get_charset_aliases): Hardcode the result for Darwin7.
10310         * modules/localcharset (install-exec-local): Don't install
10311         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
10312
10313 2009-01-25  Bruno Haible  <bruno@clisp.org>
10314
10315         Don't install charset.alias on mingw and Cygwin.
10316         * modules/localcharset (install-exec-local): Don't install
10317         charset.alias on mingw and Cygwin, if the file does not yet exist.
10318         The result for these platforms is hardcoded in localcharset.c.
10319
10320 2009-01-25  Bruno Haible  <bruno@clisp.org>
10321
10322         Make it possible again to use AC_GNU_SOURCE together with gnulib.
10323         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
10324         before requiring AC_USE_SYSTEM_EXTENSIONS.
10325
10326 2009-01-25  Jim Meyering  <meyering@redhat.com>
10327
10328         c-strtod: avoid warnings
10329         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
10330         "assignment discards qualifiers from pointer target type" warnings.
10331
10332 2009-01-24  Bruno Haible  <bruno@clisp.org>
10333
10334         Add support for non-UTF-8 locales on MacOS X.
10335         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
10336         canonical encodings. For Darwin 7 and newer, don't map traditional
10337         encodings to UTF-8.
10338         Reported by Vincent Lefevre <vincent@vinc17.org>
10339         at <http://savannah.gnu.org/bugs/?25235>.
10340
10341 2009-01-24  Bruno Haible  <bruno@clisp.org>
10342
10343         * doc/gnulib.texi (Obsolete modules): New section.
10344         Reported by Mike Frysinger <vapier@gentoo.org>.
10345
10346 2009-01-24  Bruno Haible  <bruno@clisp.org>
10347
10348         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
10349         (%.dvi): New rule.
10350
10351 2009-01-24  Bruno Haible  <bruno@clisp.org>
10352
10353         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
10354         Reported by Eric Blake.
10355
10356 2009-01-24  Bruno Haible  <bruno@clisp.org>
10357
10358         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
10359         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
10360         Reported by Gary V. Vaughan <gary@gnu.org>.
10361
10362 2009-01-24  Bruno Haible  <bruno@clisp.org>
10363
10364         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
10365
10366 2009-01-23  Bruno Haible  <bruno@clisp.org>
10367
10368         Make c-strtod, c-strtold usable in libraries.
10369         * lib/c-strtod.c: Include string.h instead of xalloc.h.
10370         (C_STRTOD): Call strdup instead of xstrdup.
10371         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
10372         * modules/c-strtold (Depends-on): Likewise.
10373         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
10374         * NEWS: Mention the change.
10375         Reported by Michael Gold <mgold@ncf.ca>.
10376
10377 2009-01-23  Jim Meyering  <meyering@redhat.com>
10378
10379         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
10380         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
10381         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
10382
10383 2009-01-23  Simon Josefsson  <simon@josefsson.org>
10384
10385         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
10386         GNU CoreUtils.
10387         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
10388         * modules/version-etc (Description): Update.
10389
10390 2009-01-22  Bruno Haible  <bruno@clisp.org>
10391
10392         Cache the C locale object.
10393         * lib/c-strtod.c (c_locale_cache): New variable.
10394         (c_locale): New function.
10395         (C_STRTOD): Use it, and don't call freelocale.
10396         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
10397         Suggested by Paolo Bonzini.
10398
10399 2009-01-21  Bruno Haible  <bruno@clisp.org>
10400
10401         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
10402         conditions other than overflow.
10403
10404 2009-01-21  Bruno Haible  <bruno@clisp.org>
10405
10406         * lib/c-strtod.c: Include errno.h.
10407         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
10408         value from STRTOD_L and STRTOD.
10409
10410 2009-01-21  Bruno Haible  <bruno@clisp.org>
10411         and Jim Meyering  <meyering@redhat.com>
10412
10413         nanosleep: skip configure test (fail it) for apple universal builds
10414         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
10415         universal builds, assume that nanosleep does not work.
10416         * modules/nanosleep (Depends-on): Add multiarch.
10417
10418         mktime: skip configure test (fail it) for apple universal builds
10419         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
10420         universal builds, assume that mktime does not work.
10421         * modules/mktime (Depends-on): Add multiarch.
10422
10423 2009-01-21  Eric Blake  <ebb9@byu.net>
10424
10425         multiarch: avoid expand-before-require warning
10426         * modules/multiarch (configure.ac): Require, rather than expand,
10427         gl_MULTIARCH.
10428         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
10429         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
10430         enforce that all clients require it.  Partial reversion of
10431         2008-12-29 patch.
10432
10433         error: avoid expand-before-require warning
10434         * modules/errno (configure.ac): Require, rather than expand,
10435         gl_HEADER_ERRNO_H.
10436         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
10437         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
10438         enforce that all clients require it.
10439
10440         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
10441         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
10442         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
10443         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
10444
10445 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
10446
10447         Revert:
10448         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10449
10450         regex: do not depend on obsolete modules.
10451         * modules/regex: Remove memcmp and memmove.
10452
10453 2009-01-20  Bruno Haible  <bruno@clisp.org>
10454
10455         Make the 'link' module link on Windows NT 4.
10456         * lib/link.c (_WIN32_WINNT): Don't define.
10457         (CreateHardLinkFuncType): New type.
10458         (CreateHardLinkFunc, initialized): New variables.
10459         (initialize): New function.
10460         (link): Invoke CreateHardLink indirectly through the function pointer.
10461
10462 2009-01-20  Bruno Haible  <bruno@clisp.org>
10463
10464         Fix compilation failure on mingw.
10465         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
10466
10467 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
10468
10469         * doc/c-strtod.texi: Mention a couple of restrictions.
10470
10471 2009-01-20  Jim Meyering  <meyering@redhat.com>
10472
10473         gettimeofday: move more declarations out of functions
10474         * lib/gettimeofday.c: Move extern declarations of tzset and
10475         gmtime out of containing functions.  Prompted by Bruno Haible.
10476
10477 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10478
10479         regex: do not depend on obsolete modules.
10480         * modules/regex: Remove memcmp and memmove.
10481
10482 2009-01-19  Bruno Haible  <bruno@clisp.org>
10483
10484         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10485         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
10486         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10487         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
10488         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
10489
10490 2009-01-19  Bruno Haible  <bruno@clisp.org>
10491
10492         * tests/test-link.c: Include <errno.h>.
10493         (main): Exit with code 77 when a hard link cannot be created due to
10494         the file system.
10495         * tests/test-link.sh: Skip test when a hard link cannot be created due
10496         to the file system.
10497         Suggested by Eric Blake.
10498
10499 2009-01-19  Martin Lambers  <marlam@marlam.de>
10500
10501         * modules/link-tests: New file.
10502         * tests/test-link.sh: New file.
10503         * tests/test-link.c: New file.
10504
10505 2009-01-19  Eric Blake  <ebb9@byu.net>
10506
10507         doc: mention another function added in cygwin 1.7.0
10508         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
10509         Another new function in cygwin 1.7.
10510
10511 2009-01-19  Bruno Haible  <bruno@clisp.org>
10512
10513         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10514         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
10515         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
10516         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10517         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10518         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
10519         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
10520         * m4/md4.m4 (gl_MD4): Likewise.
10521         * m4/md5.m4 (gl_MD5): Likewise.
10522         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
10523         * m4/sha1.m4 (gl_SHA1): Likewise.
10524         * m4/sha256.m4 (gl_SHA256): Likewise.
10525         * m4/sha512.m4 (gl_SHA512): Likewise.
10526
10527 2009-01-19  Bruno Haible  <bruno@clisp.org>
10528
10529         * modules/uniname/uniname-tests (Depends-on): Add progname.
10530         * tests/uniname/test-uninames.c: Include progname.h.
10531         (main): Call set_program_name.
10532
10533         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
10534         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
10535         (main): Call set_program_name.
10536
10537         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
10538         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
10539         (main): Call set_program_name.
10540
10541         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
10542         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
10543         (main): Call set_program_name.
10544
10545         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
10546         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
10547         (main): Call set_program_name.
10548
10549         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
10550         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
10551         (main): Call set_program_name.
10552
10553         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
10554         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
10555         (main): Call set_program_name.
10556
10557         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
10558         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
10559         (main): Call set_program_name.
10560
10561         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
10562         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
10563         (main): Call set_program_name.
10564
10565 2009-01-19  Eric Blake  <ebb9@byu.net>
10566
10567         test-unistd: test previous patch
10568         * tests/test-unistd.c: Test *_FILENO macros.
10569
10570         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
10571         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10572         Guarantee a definition.
10573         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
10574         * modules/unistd-safer (Depends-on): Add dependency on unistd.
10575         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
10576         * lib/dup-safer.c (STDERR_FILENO): Likewise.
10577         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10578         Likewise.
10579         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
10580         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
10581         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10582         Likewise.
10583         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
10584         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
10585         (STDERR_FILENO): Likewise.
10586         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
10587         (STDERR_FILENO): Likewise.
10588         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
10589         (STDERR_FILENO): Likewise.
10590         Reported by Elbert Pol.
10591
10592 2009-01-19  Eric Blake  <ebb9@byu.net>
10593
10594         doc: mention more functions added in cygwin 1.7.0
10595         * doc/posix-functions/abort.texi (abort): Update wording related
10596         to cygwin.
10597         * doc/posix-functions/daylight.texi (daylight): Likewise.
10598         * doc/posix-functions/optarg.texi (optarg): Likewise.
10599         * doc/posix-functions/optarg.texi (opterr): Likewise.
10600         * doc/posix-functions/optarg.texi (optind): Likewise.
10601         * doc/posix-functions/optarg.texi (optopt): Likewise.
10602         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
10603         worked in 1.5.x, and was withdrawn in 1.7.
10604         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
10605         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
10606         cygwin versions.
10607         * doc/posix-functions/perror.texi (perror): Likewise.
10608         * doc/posix-functions/printf.texi (printf): Likewise.
10609         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
10610         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
10611         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
10612         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
10613         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
10614         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
10615         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
10616         Likewise.
10617         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
10618         Likewise.
10619         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
10620         this function.
10621         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
10622         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
10623         Likewise.
10624         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
10625         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
10626         * doc/posix-functions/confstr.texi (confstr): Likewise.
10627         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
10628         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
10629         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
10630         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
10631         * doc/posix-functions/fputws.texi (fputws): Likewise.
10632         * doc/posix-functions/fwide.texi (fwide): Likewise.
10633         * doc/posix-functions/getwc.texi (getwc): Likewise.
10634         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
10635         * doc/posix-functions/putwc.texi (putwc): Likewise.
10636         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
10637         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
10638         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
10639         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
10640         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
10641         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
10642         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
10643         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
10644         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
10645         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
10646         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
10647
10648 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10649
10650         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
10651         * lib/ioctl.c: Include <sys/ioctl.h>.
10652
10653 2009-01-19  Simon Josefsson  <simon@josefsson.org>
10654
10655         * modules/getdate-tests (Depends-on): Add progname.
10656         * tests/test-getdate.c: Use progname module, to avoid link errors
10657         on non-glibc systems.
10658
10659 2009-01-18  Simon Josefsson  <simon@josefsson.org>
10660
10661         * modules/filenamecat-tests (Depends-on): Add progname.
10662         * modules/fstrcmp-tests (Depends-on): Likewise.
10663
10664         * tests/test-filenamecat.c: Use progname module, to avoid link
10665         errors on non-glibc systems.
10666         * tests/test-fstrcmp.c: Likewise.
10667
10668 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10669
10670         gettimeofday: avoid warning: nested extern declaration of 'localtime'
10671         * lib/gettimeofday.c: Move extern declaration out of function.
10672
10673 2009-01-18  Bruno Haible  <bruno@clisp.org>
10674
10675         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
10676         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
10677         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
10678
10679 2009-01-18  Bruno Haible  <bruno@clisp.org>
10680
10681         * lib/strftime.c (MEMPCPY): Remove unused macro.
10682         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
10683
10684 2009-01-18  Martin Lambers  <marlam@marlam.de>
10685
10686         New module 'link'.
10687         * lib/unistd.in.h (link): New declaration.
10688         * lib/link.c: New file.
10689         * m4/link.m4: New file.
10690         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
10691         HAVE_LINK.
10692         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
10693         * modules/link: New file.
10694         * doc/posix-functions/link.texi: Mention the new module.
10695
10696 2009-01-18  Bruno Haible  <bruno@clisp.org>
10697
10698         * tests/test-avltree_list.c (main): Call set_program_name.
10699         * tests/test-avltree_oset.c (main): Likewise.
10700         * tests/test-obstack-printf.c: Include progname.h.
10701         (main): Call set_program_name.
10702         * tests/test-quotearg.c: Include progname.h.
10703         (main): Call set_program_name.
10704         * tests/test-xmemdup0.c: Include progname.h.
10705         (main): Call set_program_name.
10706
10707 2009-01-18  Bruno Haible  <bruno@clisp.org>
10708
10709         New module 'alphasort'.
10710         * lib/dirent.in.h (alphasort): New declaration.
10711         * lib/alphasort.c: New file, from glibc with modifications.
10712         * m4/alphasort.m4: New file.
10713         * modules/alphasort: New file.
10714         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
10715         HAVE_ALPHASORT.
10716         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
10717         HAVE_ALPHASORT.
10718         * doc/posix-functions/alphasort.texi: Mention the new module and the
10719         portability problems.
10720
10721 2009-01-18  Bruno Haible  <bruno@clisp.org>
10722
10723         New module 'scandir'.
10724         * lib/dirent.in.h (scandir): New declaration.
10725         * lib/scandir.c: New file, from glibc with modifications.
10726         * m4/scandir.m4: New file.
10727         * modules/scandir: New file.
10728         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
10729         HAVE_SCANDIR.
10730         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
10731         HAVE_SCANDIR.
10732         * doc/posix-functions/scandir.texi: Mention the new module and the
10733         portability problems.
10734
10735 2009-01-17  Bruno Haible  <bruno@clisp.org>
10736
10737         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
10738         Update documentation.
10739         (func_remove_suffix): Escape all dots in the suffix. Update
10740         documentation.
10741         (func_filter_filelist): Update documentation.
10742         Reported by Ralf Wildenhues.
10743
10744 2009-01-17  Bruno Haible  <bruno@clisp.org>
10745
10746         * modules/dprintf-posix-tests: New file.
10747         * tests/test-dprintf-posix.sh: New file.
10748         * tests/test-dprintf-posix.c: New file.
10749
10750         New modules 'dprintf', 'dprintf-posix'.
10751         * lib/stdio.in.h (dprintf): New declaration.
10752         * lib/dprintf.c: New file.
10753         * m4/dprintf.m4: New file.
10754         * m4/dprintf-posix.m4: New file.
10755         * modules/dprintf: New file.
10756         * modules/dprintf-posix: New file.
10757         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
10758         HAVE_DPRINTF, REPLACE_DPRINTF.
10759         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
10760         HAVE_DPRINTF, REPLACE_DPRINTF.
10761         * doc/posix-functions/dprintf.texi: Mention the new modules.
10762
10763 2009-01-17  Bruno Haible  <bruno@clisp.org>
10764
10765         * modules/vdprintf-posix-tests: New file.
10766         * tests/test-vdprintf-posix.sh: New file.
10767         * tests/test-vdprintf-posix.c: New file.
10768
10769         New modules 'vdprintf', 'vdprintf-posix'.
10770         * lib/stdio.in.h (vdprintf): New declaration.
10771         * lib/vdprintf.c: New file.
10772         * m4/vdprintf.m4: New file.
10773         * m4/vdprintf-posix.m4: New file.
10774         * modules/vdprintf: New file.
10775         * modules/vdprintf-posix: New file.
10776         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
10777         HAVE_VDPRINTF, REPLACE_VDPRINTF.
10778         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
10779         HAVE_VDPRINTF, REPLACE_VDPRINTF.
10780         * doc/posix-functions/vdprintf.texi: Mention the new modules.
10781
10782 2009-01-17  Bruno Haible  <bruno@clisp.org>
10783
10784         Fix replacement of fopen on mingw.
10785         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
10786         mingw.
10787
10788 2009-01-17  Bruno Haible  <bruno@clisp.org>
10789
10790         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
10791         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
10792
10793 2009-01-17  Bruno Haible  <bruno@clisp.org>
10794
10795         Avoid test-fflush2.sh failure on mingw.
10796         * tests/test-fflush2.c: Include binary-io.h.
10797         (main): Put standard input into binary mode.
10798         * modules/fflush-tests (Depends-on): Add binary-io.
10799
10800 2009-01-17  Bruno Haible  <bruno@clisp.org>
10801
10802         * lib/wchar.in.h: In another particular situation, include only the
10803         system's <wchar.h> file.
10804         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
10805         Reported by Albert Chin-A-Young <china@thewrittenword.com>
10806         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
10807
10808 2009-01-17  Bruno Haible  <bruno@clisp.org>
10809
10810         Support for stripping executables in --enable-relocatable.
10811         * build-aux/install-reloc: Expect one more argument, or an environment
10812         variable RELOC_STRIP_PROG. If set, strip the destination program and
10813         its wrapper.
10814         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
10815         RELOC_STRIP_PROG.
10816         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
10817         to set RELOCATABLE_STRIP.
10818         * NEWS: Mention the new Makefile requirement.
10819
10820 2009-01-17  Bruno Haible  <bruno@clisp.org>
10821
10822         * build-aux/install-reloc: Remove debugging information left over by
10823         C compiler on MacOS X.
10824
10825 2009-01-17  Bruno Haible  <bruno@clisp.org>
10826
10827         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
10828         * lib/progreloc.c (find_executable): Fix type of pointer passed to
10829         _NSGetExecutablePath.
10830
10831 2009-01-16  Jim Meyering  <meyering@redhat.com>
10832
10833         strerror: avoid warnings about discarding "const"
10834         * lib/strerror.c (rpl_strerror): Instead of returning a const
10835         string from each and every "case", use a variable, and add a single
10836         cast after the switch.
10837
10838 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
10839
10840         * lib/arpa_inet.in.h: Add extern "C" block for C++.
10841
10842 2009-01-16  Bruno Haible  <bruno@clisp.org>
10843
10844         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
10845         array initializer syntax that also works in C++ mode.
10846         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10847
10848 2009-01-16  Jim Meyering  <meyering@redhat.com>
10849
10850         poll: suppress a warning
10851         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
10852         to ignore "...unsigned expression < 0 is always false" warnings.
10853
10854 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
10855
10856         poll: remove declarations of unused variables
10857         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
10858         sockbuf and optlen.
10859
10860 2009-01-15  Bruno Haible  <bruno@clisp.org>
10861
10862         Make fflush-after-ungetc POSIX compliant on BSD systems.
10863         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
10864         (clear_ungetc_buffer): Implement also for other systems.
10865         (rpl_fflush): On glibc systems, invoke
10866         clear_ungetc_buffer_preserving_position. Otherwise, invoke
10867         clear_ungetc_buffer after fetching the stream's position, not before.
10868
10869 2009-01-15  Bruno Haible  <bruno@clisp.org>
10870
10871         Make fflush-after-ungetc POSIX compliant on glibc systems.
10872         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
10873         after ungetc.
10874         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
10875         (rpl_fflush): On glibc systems, simply call the system's fflush
10876         function after clearing the ungetc buffer.
10877         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
10878         Instead, lseek only to the end of file, then use the system's fseeko
10879         for the rest. On glibc systems, reset the EOF indicator bit.
10880
10881 2009-01-15  Jim Meyering  <meyering@redhat.com>
10882
10883         openmp.m4: revert quote-adding change, for portability to older autoconf
10884         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
10885         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
10886         Simon Josefsson noticed the problem when using autoconf-2.61.
10887
10888 2009-01-15  Bruno Haible  <bruno@clisp.org>
10889
10890         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
10891         * tests/test-fflush2.c (ASSERT): Always fail.
10892         (main): Add two tests for fflush() after ungetc(), taking into account
10893         the Austin Group's clarification.
10894         Suggested by Eric Blake.
10895
10896 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
10897
10898         mktime.m4: remove K&R-style function prototypes
10899         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
10900         for the Sun C++ compiler.
10901
10902 2009-01-14  Bruno Haible  <bruno@clisp.org>
10903
10904         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
10905         while including <wchar.h>.
10906         * lib/wchar.in.h: In two particular situations on HP-UX, include only
10907         the system's <wchar.h> file.
10908         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10909
10910 2009-01-14  Bruno Haible  <bruno@clisp.org>
10911
10912         * m4/csharp.m4: Don't mention gettext on the serial number line.
10913         * m4/csharpexec.m4: Likewise.
10914         * m4/eaccess.m4: Likewise.
10915         * m4/javaexec.m4: Likewise.
10916         * m4/sig_atomic_t.m4: Likewise.
10917         * m4/tmpdir.m4: Likewise.
10918         * m4/intldir.m4: Bump gettext version.
10919         * m4/lib-ld.m4: Likewise.
10920
10921 2009-01-14  Bruno Haible  <bruno@clisp.org>
10922
10923         * lib/progname.c (set_program_name): Add more comments.
10924         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
10925
10926 2009-01-14  Simon Josefsson  <simon@josefsson.org>
10927
10928         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
10929         were sys/stat.h does not define it.
10930
10931 2009-01-14  Jim Meyering  <meyering@redhat.com>
10932
10933         many *.m4 files: improve m4 quoting
10934         99% of this change was performed by running the following commands:
10935         git ls-files | grep '\.m4$' | xargs perl -pi \
10936           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
10937           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10938           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10939           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
10940         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
10941         The remainder were to add Copyright dates, increment serial numbers,
10942         undo some changes in comments, exclude m4/intl.m4, and add quotes
10943         around the "1" in ",1" where the unusual spacing prohibited the
10944         above regexps from doing the job.  For more details, see
10945         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
10946         * m4/acl.m4: Modified.
10947         * m4/afs.m4: Likewise.
10948         * m4/alloca.m4: Likewise.
10949         * m4/argp.m4: Likewise.
10950         * m4/argz.m4: Likewise.
10951         * m4/atexit.m4: Likewise.
10952         * m4/bison-i18n.m4: Likewise.
10953         * m4/bison.m4: Likewise.
10954         * m4/byteswap.m4: Likewise.
10955         * m4/c-stack.m4: Likewise.
10956         * m4/c-strtod.m4: Likewise.
10957         * m4/calloc.m4: Likewise.
10958         * m4/canonicalize-lgpl.m4: Likewise.
10959         * m4/chown.m4: Likewise.
10960         * m4/clock_time.m4: Likewise.
10961         * m4/codeset.m4: Likewise.
10962         * m4/copy-file.m4: Likewise.
10963         * m4/csharp.m4: Likewise.
10964         * m4/csharpcomp.m4: Likewise.
10965         * m4/csharpexec.m4: Likewise.
10966         * m4/d-ino.m4: Likewise.
10967         * m4/d-type.m4: Likewise.
10968         * m4/dirfd.m4: Likewise.
10969         * m4/double-slash-root.m4: Likewise.
10970         * m4/eaccess.m4: Likewise.
10971         * m4/eealloc.m4: Likewise.
10972         * m4/environ.m4: Likewise.
10973         * m4/errno_h.m4: Likewise.
10974         * m4/euidaccess.m4: Likewise.
10975         * m4/execute.m4: Likewise.
10976         * m4/fatal-signal.m4: Likewise.
10977         * m4/fchdir.m4: Likewise.
10978         * m4/fcntl_h.m4: Likewise.
10979         * m4/fileblocks.m4: Likewise.
10980         * m4/filenamecat.m4: Likewise.
10981         * m4/findprog.m4: Likewise.
10982         * m4/flexmember.m4: Likewise.
10983         * m4/fnmatch.m4: Likewise.
10984         * m4/fopen.m4: Likewise.
10985         * m4/fpending.m4: Likewise.
10986         * m4/fprintf-posix.m4: Likewise.
10987         * m4/free.m4: Likewise.
10988         * m4/frexp.m4: Likewise.
10989         * m4/frexpl.m4: Likewise.
10990         * m4/fsusage.m4: Likewise.
10991         * m4/ftruncate.m4: Likewise.
10992         * m4/gc-camellia.m4: Likewise.
10993         * m4/gc-random.m4: Likewise.
10994         * m4/gc.m4: Likewise.
10995         * m4/getaddrinfo.m4: Likewise.
10996         * m4/getcwd-abort-bug.m4: Likewise.
10997         * m4/getcwd-path-max.m4: Likewise.
10998         * m4/getdate.m4: Likewise.
10999         * m4/getdomainname.m4: Likewise.
11000         * m4/getgroups.m4: Likewise.
11001         * m4/gethostname.m4: Likewise.
11002         * m4/gethrxtime.m4: Likewise.
11003         * m4/getline.m4: Likewise.
11004         * m4/getloadavg.m4: Likewise.
11005         * m4/getndelim2.m4: Likewise.
11006         * m4/getpass.m4: Likewise.
11007         * m4/gettext.m4: Likewise.
11008         * m4/gettime.m4: Likewise.
11009         * m4/gettimeofday.m4: Likewise.
11010         * m4/gnulib-common.m4: Likewise.
11011         * m4/group-member.m4: Likewise.
11012         * m4/host-os.m4: Likewise.
11013         * m4/iconv.m4: Likewise.
11014         * m4/iconv_open.m4: Likewise.
11015         * m4/inet_ntop.m4: Likewise.
11016         * m4/inet_pton.m4: Likewise.
11017         * m4/inline.m4: Likewise.
11018         * m4/intldir.m4: Likewise.
11019         * m4/intlmacosx.m4: Likewise.
11020         * m4/intmax.m4: Likewise.
11021         * m4/intmax_t.m4: Likewise.
11022         * m4/inttypes.m4: Likewise.
11023         * m4/inttypes_h.m4: Likewise.
11024         * m4/inttypes-pri.m4: Likewise.
11025         * m4/isapipe.m4: Likewise.
11026         * m4/isnand.m4: Likewise.
11027         * m4/isnanf.m4: Likewise.
11028         * m4/isnanl.m4: Likewise.
11029         * m4/javacomp.m4: Likewise.
11030         * m4/javaexec.m4: Likewise.
11031         * m4/jm-winsz1.m4: Likewise.
11032         * m4/jm-winsz2.m4: Likewise.
11033         * m4/lchown.m4: Likewise.
11034         * m4/lcmessage.m4: Likewise.
11035         * m4/ldexpl.m4: Likewise.
11036         * m4/lib-ld.m4: Likewise.
11037         * m4/lib-link.m4: Likewise.
11038         * m4/libsigsegv.m4: Likewise.
11039         * m4/link-follow.m4: Likewise.
11040         * m4/localcharset.m4: Likewise.
11041         * m4/locale-fr.m4: Likewise.
11042         * m4/locale-ja.m4: Likewise.
11043         * m4/locale-tr.m4: Likewise.
11044         * m4/locale-zh.m4: Likewise.
11045         * m4/lock.m4: Likewise.
11046         * m4/longlong.m4: Likewise.
11047         * m4/ls-mntd-fs.m4: Likewise.
11048         * m4/lstat.m4: Likewise.
11049         * m4/malloc.m4: Likewise.
11050         * m4/mathl.m4: Likewise.
11051         * m4/mbrtowc.m4: Likewise.
11052         * m4/mbstate_t.m4: Likewise.
11053         * m4/mbswidth.m4: Likewise.
11054         * m4/memchr.m4: Likewise.
11055         * m4/memcmp.m4: Likewise.
11056         * m4/memcpy.m4: Likewise.
11057         * m4/memmem.m4: Likewise.
11058         * m4/memmove.m4: Likewise.
11059         * m4/mempcpy.m4: Likewise.
11060         * m4/memrchr.m4: Likewise.
11061         * m4/memset.m4: Likewise.
11062         * m4/minmax.m4: Likewise.
11063         * m4/mkdir-slash.m4: Likewise.
11064         * m4/mkdtemp.m4: Likewise.
11065         * m4/mktime.m4: Likewise.
11066         * m4/mmap-anon.m4: Likewise.
11067         * m4/mountlist.m4: Likewise.
11068         * m4/nanosleep.m4: Likewise.
11069         * m4/nls.m4: Likewise.
11070         * m4/nocrash.m4: Likewise.
11071         * m4/open.m4: Likewise.
11072         * m4/openat.m4: Likewise.
11073         * m4/openmp.m4: Likewise.
11074         * m4/pathmax.m4: Likewise.
11075         * m4/perl.m4: Likewise.
11076         * m4/physmem.m4: Likewise.
11077         * m4/pipe.m4: Likewise.
11078         * m4/po.m4: Likewise.
11079         * m4/poll.m4: Likewise.
11080         * m4/posixtm.m4: Likewise.
11081         * m4/posixver.m4: Likewise.
11082         * m4/printf-frexp.m4: Likewise.
11083         * m4/printf-frexpl.m4: Likewise.
11084         * m4/printf-posix.m4: Likewise.
11085         * m4/printf-posix-rpl.m4: Likewise.
11086         * m4/printf.m4: Likewise.
11087         * m4/progtest.m4: Likewise.
11088         * m4/putenv.m4: Likewise.
11089         * m4/readline.m4: Likewise.
11090         * m4/readlink.m4: Likewise.
11091         * m4/readutmp.m4: Likewise.
11092         * m4/realloc.m4: Likewise.
11093         * m4/regex.m4: Likewise.
11094         * m4/relocatable.m4: Likewise.
11095         * m4/relocatable-lib.m4: Likewise.
11096         * m4/rename-dest-slash.m4: Likewise.
11097         * m4/rename.m4: Likewise.
11098         * m4/rmdir-errno.m4: Likewise.
11099         * m4/rmdir.m4: Likewise.
11100         * m4/roundf.m4: Likewise.
11101         * m4/roundl.m4: Likewise.
11102         * m4/rpmatch.m4: Likewise.
11103         * m4/save-cwd.m4: Likewise.
11104         * m4/selinux-selinux-h.m4: Likewise.
11105         * m4/setenv.m4: Likewise.
11106         * m4/settime.m4: Likewise.
11107         * m4/sig2str.m4: Likewise.
11108         * m4/sig_atomic_t.m4: Likewise.
11109         * m4/signalblocking.m4: Likewise.
11110         * m4/signbit.m4: Likewise.
11111         * m4/sigpipe.m4: Likewise.
11112         * m4/sockets.m4: Likewise.
11113         * m4/sockpfaf.m4: Likewise.
11114         * m4/st_dm_mode.m4: Likewise.
11115         * m4/stat-time.m4: Likewise.
11116         * m4/stdbool.m4: Likewise.
11117         * m4/stdint.m4: Likewise.
11118         * m4/stdint_h.m4: Likewise.
11119         * m4/stpcpy.m4: Likewise.
11120         * m4/stpncpy.m4: Likewise.
11121         * m4/strcase.m4: Likewise.
11122         * m4/strchrnul.m4: Likewise.
11123         * m4/strcspn.m4: Likewise.
11124         * m4/strdup.m4: Likewise.
11125         * m4/strftime.m4: Likewise.
11126         * m4/strndup.m4: Likewise.
11127         * m4/strnlen.m4: Likewise.
11128         * m4/strpbrk.m4: Likewise.
11129         * m4/strptime.m4: Likewise.
11130         * m4/strsep.m4: Likewise.
11131         * m4/strtod.m4: Likewise.
11132         * m4/strtoimax.m4: Likewise.
11133         * m4/strtok_r.m4: Likewise.
11134         * m4/strtol.m4: Likewise.
11135         * m4/strtoll.m4: Likewise.
11136         * m4/strtoul.m4: Likewise.
11137         * m4/strtoull.m4: Likewise.
11138         * m4/strtoumax.m4: Likewise.
11139         * m4/strverscmp.m4: Likewise.
11140         * m4/threadlib.m4: Likewise.
11141         * m4/timegm.m4: Likewise.
11142         * m4/tm_gmtoff.m4: Likewise.
11143         * m4/tmpdir.m4: Likewise.
11144         * m4/tmpfile.m4: Likewise.
11145         * m4/tzset.m4: Likewise.
11146         * m4/uintmax_t.m4: Likewise.
11147         * m4/unlinkdir.m4: Likewise.
11148         * m4/unlocked-io.m4: Likewise.
11149         * m4/uptime.m4: Likewise.
11150         * m4/userspec.m4: Likewise.
11151         * m4/utimbuf.m4: Likewise.
11152         * m4/utime.m4: Likewise.
11153         * m4/utimes-null.m4: Likewise.
11154         * m4/utimes.m4: Likewise.
11155         * m4/vararrays.m4: Likewise.
11156         * m4/vasnprintf.m4: Likewise.
11157         * m4/vfprintf-posix.m4: Likewise.
11158         * m4/vprintf-posix.m4: Likewise.
11159         * m4/wait-process.m4: Likewise.
11160         * m4/wchar_t.m4: Likewise.
11161         * m4/wint_t.m4: Likewise.
11162         * m4/write-any-file.m4: Likewise.
11163         * m4/yield.m4: Likewise.
11164
11165 2009-01-13  Bruno Haible  <bruno@clisp.org>
11166
11167         Avoid test-copy-file.sh failures when ACL support insufficient.
11168         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
11169         TESTS_ENVIRONMENT.
11170         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
11171         Reported by Jim Meyering.
11172
11173 2009-01-13  Bruno Haible  <bruno@clisp.org>
11174
11175         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
11176         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
11177         * modules/unistdio/u8-printf-parse (Files): Likewise.
11178         * modules/unistdio/u32-printf-parse (Files): Likewise.
11179         * modules/unistdio/ulc-printf-parse (Files): Likewise.
11180
11181 2009-01-13  Simon Josefsson  <simon@josefsson.org>
11182
11183         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
11184         and m4/inttypes_h.m4 too.
11185
11186 2009-01-12  Eric Blake  <ebb9@byu.net>
11187
11188         tests: IRIX 6.2 cc can't compile -0.0 into .data
11189         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
11190         rather than at compile-time.
11191         * tests/test-floorl.c (minus_zero): Likewise.
11192         * tests/test-frexpl.c (minus_zero): Likewise.
11193         * tests/test-isnan.c (minus_zerol): Likewise.
11194         * tests/test-isnanl.h (minus_zero): Likewise.
11195         * tests/test-ldexpl.c (minus_zero): Likewise.
11196         * tests/test-roundl.c (minus_zero): Likewise.
11197         * tests/test-signbit.c (minus_zerol): Likewise.
11198         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
11199         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
11200         * tests/test-truncl.c (minus_zero): Likewise.
11201         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
11202         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
11203         Reported by Tom G. Christensen and Nelson H. F. Beebe.
11204
11205 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11206
11207         regex: fix glibc bug 9697
11208         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
11209         handling.
11210
11211 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11212
11213         regex: fix glibc bug 697
11214         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
11215         being NULL also if there are no backreferences.
11216
11217 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11218
11219         regex: merge glibc changes
11220         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
11221         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
11222         re_string_skip_chars, re_string_reconstruct): Likewise.
11223         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
11224
11225 2009-01-07  Jim Meyering  <meyering@redhat.com>
11226
11227         poll: filter through cppi
11228         * lib/poll.c: Indent cpp directives to reflect nesting.
11229
11230 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
11231
11232         poll: don't return uninitialized
11233         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
11234
11235 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
11236
11237         avoid compile failure on AIX 6.1
11238         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
11239         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
11240
11241 2009-01-04  Jim Meyering  <meyering@redhat.com>
11242
11243         remove duplicate inclusion of <stdio.h>
11244         * tests/test-fprintf-posix.c: Likewise.
11245         * tests/test-printf-posix.c: Likewise.
11246         * tests/test-snprintf-posix.c: Likewise.
11247         * tests/test-sprintf-posix.c: Likewise.
11248         * tests/test-vasprintf-posix.c: Likewise.
11249         * tests/test-vfprintf-posix.c: Likewise.
11250         * tests/test-vprintf-posix.c: Likewise.
11251         * tests/test-vsnprintf-posix.c: Likewise.
11252         * tests/test-vsprintf-posix.c: Likewise.
11253
11254 2009-01-03  Jim Meyering  <meyering@redhat.com>
11255
11256         gnulib-tool: fix sed-based filtering
11257         * gnulib-tool (func_filter_filelist): Remove extra backslash
11258         in sed_fff_filter definition.
11259
11260 2009-01-02  Jim Meyering  <meyering@redhat.com>
11261
11262         strftime: avoid compilation failure on Solaris 2.6
11263         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
11264         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
11265         Don't #define mbrlen or mbsinit, since now they're guaranteed to
11266         be available.  Reported by Tom G. Christensen.  Details in
11267         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
11268
11269 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11270             Bruno Haible  <bruno@clisp.org>
11271
11272         Speed up gnulib-tool by doing more string processing through shell
11273         built-ins.
11274         * gnulib-tool (fast_func_append): New variable.
11275         (func_remove_prefix, func_remove_suffix): New functions.
11276         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
11277         (func_filter_filelist): New function.
11278         (func_get_dependencies): Use func_remove_suffix instead of sed.
11279         (func_get_automake_snippet): Use func_filter_filelist instead of a
11280         subshell and sed invocation.
11281
11282 2009-01-01  Bruno Haible  <bruno@clisp.org>
11283
11284         Fix a security bug.
11285         * gnulib-tool (func_import, import, update): Don't allow the characters
11286         '"', '$', '`', '\' in macro arguments that become part of commands that
11287         are evaluated.
11288
11289 2009-01-01  Bruno Haible  <bruno@clisp.org>
11290
11291         * gnulib-tool (func_reset_sigpipe): Add more comments.
11292
11293 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11294
11295         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
11296         func_emit_tests_Makefile_am, func_import): Abort loops early if we
11297         already know the answer.
11298
11299 2009-01-01  Jim Meyering  <meyering@redhat.com>
11300
11301         * lib/version-etc.c (version_etc_va): Update copyright year.
11302
11303 2008-12-30  Bruno Haible  <bruno@clisp.org>
11304
11305         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
11306         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
11307         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
11308
11309 2008-12-29  Eric Blake  <ebb9@byu.net>
11310
11311         multiarch: avoid autoconf AC_REQUIRE bug
11312         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
11313         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
11314         2.63 and older.
11315         Reported by Bruno Haible, and analyzed in
11316         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
11317
11318 2008-12-29  Bruno Haible  <bruno@clisp.org>
11319
11320         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
11321         files in subdirectories correctly.
11322         Reported by Ralf Wildenhues.
11323
11324 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11325
11326         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
11327         rather than 'join FILE -', for Solaris join.
11328
11329 2008-12-29  Bruno Haible  <bruno@clisp.org>
11330
11331         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
11332         quoting.
11333         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
11334         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
11335         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
11336         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
11337         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
11338         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
11339         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
11340         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
11341         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
11342         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
11343         * m4/nls.m4 (AM_NLS): Likewise.
11344         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
11345         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
11346         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
11347         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
11348         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
11349         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
11350         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
11351         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
11352         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
11353         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
11354         * m4/xsize.m4 (gl_XSIZE): Likewise.
11355         Suggested by Jim Meyering.
11356
11357 2008-11-17  Bruce Korb  <bkorb@gnu.org>
11358
11359         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
11360         * lib/parse-duration.c: use a switch instead of cascading if's.
11361
11362 2008-12-29  Eric Blake  <ebb9@byu.net>
11363
11364         wchar.h: supply WEOF on Irix 5.3
11365         * lib/wchar.in.h (wint_t): Also supply WEOF.
11366         * lib/wctype.in.h (wint_t): Likewise.
11367         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
11368         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
11369         Reported by Tom G. Christensen.
11370
11371 2008-12-26  Bruno Haible  <bruno@clisp.org>
11372
11373         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
11374         i486, i586, i686.
11375
11376 2008-12-26  Bruno Haible  <bruno@clisp.org>
11377
11378         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
11379
11380 2008-12-26  Bruno Haible  <bruno@clisp.org>
11381
11382         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
11383         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
11384         not __STDC_CONSTANT_MACROS.
11385         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
11386
11387 2008-12-25  Bruno Haible  <bruno@clisp.org>
11388
11389         Add support for universal builds to vasnprintf.
11390         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
11391         universal builds, guess no.
11392         * modules/vasnprintf-posix (Depends-on): Add multiarch.
11393         * modules/vasprintf-posix (Depends-on): Likewise.
11394         * modules/fprintf-posix (Depends-on): Likewise.
11395         * modules/vfprintf-posix (Depends-on): Likewise.
11396         * modules/snprintf-posix (Depends-on): Likewise.
11397         * modules/vsnprintf-posix (Depends-on): Likewise.
11398         * modules/sprintf-posix (Depends-on): Likewise.
11399         * modules/vsprintf-posix (Depends-on): Likewise.
11400         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
11401         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
11402         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
11403         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
11404         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
11405         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
11406         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
11407
11408         Add support for universal builds to <inttypes.h>.
11409         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
11410         _SCNu64_PREFIX): In Apple
11411         universal builds, define directly, using _LP64.
11412         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
11413         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
11414         * modules/inttypes (Depends-on): Add multiarch.
11415         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11416
11417         Add support for universal builds to <stdint.h>.
11418         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
11419         universal builds, define directly, using _LP64.
11420         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
11421         Apple universal builds, don't test for the size and suffix of ptrdiff_t
11422         and size_t.
11423         * modules/stdint (Depends-on): Add multiarch.
11424         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11425
11426         New module 'multiarch'.
11427         * modules/multiarch: New file.
11428         * m4/multiarch.m4: New file.
11429
11430 2008-12-25  Bruno Haible  <bruno@clisp.org>
11431
11432         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
11433
11434 2008-12-25  Bruno Haible  <bruno@clisp.org>
11435
11436         * modules/btowc (License): Relicense under LGPLv2+.
11437         * modules/mbsinit (License): Likewise.
11438         * modules/mbrtowc (License): Likewise.
11439         * modules/wcrtomb (License): Likewise.
11440         * modules/streq (License): Likewise.
11441         Reported by David Lutterkort <lutter@redhat.com>.
11442
11443 2008-12-23  Bruno Haible  <bruno@clisp.org>
11444
11445         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
11446
11447 2008-12-23  Bruno Haible  <bruno@clisp.org>
11448
11449         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
11450         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
11451         GETADDRINFO_LIB, not in LIBS.
11452         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
11453         * modules/canon-host (Link): Likewise.
11454         * NEWS: Mention the change.
11455         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
11456         GETADDRINFO_LIB.
11457
11458 2008-12-22  Bruno Haible  <bruno@clisp.org>
11459
11460         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
11461         * doc/posix-functions/iswalpha_l.texi: Likewise.
11462         * doc/posix-functions/iswblank_l.texi: Likewise.
11463         * doc/posix-functions/iswcntrl_l.texi: Likewise.
11464         * doc/posix-functions/iswctype_l.texi: Likewise.
11465         * doc/posix-functions/iswdigit_l.texi: Likewise.
11466         * doc/posix-functions/iswgraph_l.texi: Likewise.
11467         * doc/posix-functions/iswlower_l.texi: Likewise.
11468         * doc/posix-functions/iswprint_l.texi: Likewise.
11469         * doc/posix-functions/iswpunct_l.texi: Likewise.
11470         * doc/posix-functions/iswspace_l.texi: Likewise.
11471         * doc/posix-functions/iswupper_l.texi: Likewise.
11472         * doc/posix-functions/iswxdigit_l.texi: Likewise.
11473         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
11474         * doc/posix-functions/open_wmemstream.texi: Likewise.
11475         * doc/posix-functions/swscanf.texi: Likewise.
11476         * doc/posix-functions/towctrans_l.texi: Likewise.
11477         * doc/posix-functions/towlower.texi: Likewise.
11478         * doc/posix-functions/towlower_l.texi: Likewise.
11479         * doc/posix-functions/towupper.texi: Likewise.
11480         * doc/posix-functions/towupper_l.texi: Likewise.
11481         * doc/posix-functions/vfwprintf.texi: Likewise.
11482         * doc/posix-functions/vfwscanf.texi: Likewise.
11483         * doc/posix-functions/vswscanf.texi: Likewise.
11484         * doc/posix-functions/vwprintf.texi: Likewise.
11485         * doc/posix-functions/vwscanf.texi: Likewise.
11486         * doc/posix-functions/wcpcpy.texi: Likewise.
11487         * doc/posix-functions/wcpncpy.texi: Likewise.
11488         * doc/posix-functions/wcscasecmp.texi: Likewise.
11489         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
11490         * doc/posix-functions/wcscoll_l.texi: Likewise.
11491         * doc/posix-functions/wcsdup.texi: Likewise.
11492         * doc/posix-functions/wcsncasecmp.texi: Likewise.
11493         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
11494         * doc/posix-functions/wcsnlen.texi: Likewise.
11495         * doc/posix-functions/wcsnrtombs.texi: Likewise.
11496         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
11497         * doc/posix-functions/wctrans_l.texi: Likewise.
11498         * doc/posix-functions/wctype_l.texi: Likewise.
11499         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
11500         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
11501         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
11502         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
11503         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
11504         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
11505         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
11506         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
11507         * doc/glibc-functions/wcschrnul.texi: Likewise.
11508         * doc/glibc-functions/wcsftime_l.texi: Likewise.
11509         * doc/glibc-functions/wcstod_l.texi: Likewise.
11510         * doc/glibc-functions/wcstof_l.texi: Likewise.
11511         * doc/glibc-functions/wcstol_l.texi: Likewise.
11512         * doc/glibc-functions/wcstold_l.texi: Likewise.
11513         * doc/glibc-functions/wcstoll_l.texi: Likewise.
11514         * doc/glibc-functions/wcstoq.texi: Likewise.
11515         * doc/glibc-functions/wcstoul_l.texi: Likewise.
11516         * doc/glibc-functions/wcstoull_l.texi: Likewise.
11517         * doc/glibc-functions/wcstouq.texi: Likewise.
11518         * doc/glibc-functions/wmempcpy.texi: Likewise.
11519
11520 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
11521             Eric Blake  <ebb9@byu.net>
11522             Paolo Bonzini  <bonzini@gnu.org>
11523             Bruno Haible  <bruno@clisp.org>
11524
11525         Make c-stack work on Haiku.
11526         * lib/c-stack.c (SA_ONSTACK): Define fallback.
11527         (c_stack_action): Use SA_ONSTACK flag.
11528
11529 2008-12-22  Bruno Haible  <bruno@clisp.org>
11530
11531         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
11532
11533 2008-12-22  Bruno Haible  <bruno@clisp.org>
11534
11535         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
11536         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
11537         being overridden.
11538         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
11539         New macros.
11540         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
11541         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
11542         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
11543         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
11544
11545 2008-12-22  Bruno Haible  <bruno@clisp.org>
11546
11547         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
11548         from test code.
11549
11550 2008-12-22  Eric Blake  <ebb9@byu.net>
11551
11552         Avoid gcc warnings on cygwin.
11553         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
11554         Avoid unused variable.
11555         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
11556         Likewise.
11557
11558 2008-12-22  Bruno Haible  <bruno@clisp.org>
11559
11560         Remove HAVE_MBRTOWC conditionals.
11561         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
11562         (mbscasecmp): Assume mbrtowc function.
11563         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
11564         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
11565         * lib/mbschr.c: Include mbuiter.h unconditionally.
11566         (mbschr): Assume mbrtowc function.
11567         * lib/mbscspn.c: Include mbuiter.h unconditionally.
11568         (mbscspn): Assume mbrtowc function.
11569         * lib/mbslen.c: Include mbuiter.h unconditionally.
11570         (mbslen): Assume mbrtowc function.
11571         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
11572         (mbsncasecmp): Assume mbrtowc function.
11573         * lib/mbsnlen.c: Include mbiter.h unconditionally.
11574         (mbsnlen): Assume mbrtowc function.
11575         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
11576         (mbspbrk): Assume mbrtowc function.
11577         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
11578         (mbspcasecmp): Assume mbrtowc function.
11579         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
11580         (mbsrchr): Assume mbrtowc function.
11581         * lib/mbssep.c: Include mbuiter.h unconditionally.
11582         (mbssep): Assume mbrtowc function.
11583         * lib/mbsspn.c: Include mbuiter.h unconditionally.
11584         (mbsspn): Assume mbrtowc function.
11585         * lib/mbsstr.c: Include mbuiter.h unconditionally.
11586         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
11587         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
11588         (mbstok_r): Assume mbrtowc function.
11589         * lib/propername.c: Include mbuiter.h unconditionally.
11590         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
11591         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
11592         (trim2): Assume mbrtowc function.
11593         * lib/mbswidth.c (mbsinit): Remove fallback definition.
11594         (mbsnwidth): Assume mbrtowc function.
11595         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
11596         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
11597         fallback definitions.
11598         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
11599
11600 2008-12-22  Bruno Haible  <bruno@clisp.org>
11601
11602         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
11603
11604 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
11605
11606         * modules/regex: Request emulations for the mb*/wc* functions we need.
11607         * m4/regex.m4: Don't look for those functions here.
11608         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
11609
11610 2008-12-22  Bruno Haible  <bruno@clisp.org>
11611
11612         * modules/fnmatch (Depends-on): Remove duplicated dependency.
11613
11614 2008-12-21  Bruno Haible  <bruno@clisp.org>
11615
11616         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
11617         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
11618         (Include): Remove conditionalization.
11619         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
11620         (Include): Remove conditionalization.
11621         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
11622         (Include): Remove conditionalization.
11623         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
11624         * m4/mbfile.m4 (gl_MBFILE): Likewise.
11625         * NEWS: Mention the change.
11626         Reported by Alan Hourihane <alanh@fairlite.co.uk>
11627         via Sergey Poznyakoff <gray@gnu.org.ua>.
11628
11629 2008-12-21  Bruno Haible  <bruno@clisp.org>
11630
11631         * MODULES.html.sh (Extended multibyte and wide character utilities
11632         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
11633         wcrtomb, wcsrtombs.
11634         (Support for systems lacking POSIX:2008): Add accept, bind, close,
11635         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
11636         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
11637         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
11638
11639 2008-12-21  Bruno Haible  <bruno@clisp.org>
11640
11641         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
11642
11643 2008-12-21  Bruno Haible  <bruno@clisp.org>
11644
11645         * modules/wcsnrtombs-tests: New file.
11646         * tests/test-wcsnrtombs1.sh: New file.
11647         * tests/test-wcsnrtombs2.sh: New file.
11648         * tests/test-wcsnrtombs3.sh: New file.
11649         * tests/test-wcsnrtombs4.sh: New file.
11650         * tests/test-wcsnrtombs.c: New file.
11651
11652         New module 'wcsnrtombs'.
11653         * lib/wchar.in.h (wcsnrtombs): New declaration.
11654         * lib/wcsnrtombs.c: New file.
11655         * lib/wcsrtombs-state.c: New file.
11656         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
11657         (internal_state): Remove variable.
11658         * m4/wcsnrtombs.m4: New file.
11659         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
11660         compilation units.
11661         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
11662         HAVE_WCSNRTOMBS.
11663         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
11664         HAVE_WCSNRTOMBS.
11665         * modules/wcsnrtombs: New file.
11666         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
11667         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
11668
11669 2008-12-21  Bruno Haible  <bruno@clisp.org>
11670
11671         * modules/wcsrtombs-tests: New file.
11672         * tests/test-wcsrtombs1.sh: New file.
11673         * tests/test-wcsrtombs2.sh: New file.
11674         * tests/test-wcsrtombs3.sh: New file.
11675         * tests/test-wcsrtombs4.sh: New file.
11676         * tests/test-wcsrtombs.c: New file.
11677
11678         New module 'wcsrtombs'.
11679         * lib/wchar.in.h (wcsrtombs): New declaration.
11680         * lib/wcsrtombs.c: New file.
11681         * m4/wcsrtombs.m4: New file.
11682         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
11683         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11684         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
11685         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11686         * modules/wcsrtombs: New file.
11687         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
11688         bugs.
11689
11690 2008-12-21  Bruno Haible  <bruno@clisp.org>
11691
11692         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
11693         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
11694         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
11695         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
11696         if not correct.
11697         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
11698         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
11699         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11700         m4/locale-zh.m4, m4/codeset.m4.
11701         * doc/posix-functions/wcrtomb.texi: Document the bug.
11702
11703 2008-12-21  Bruno Haible  <bruno@clisp.org>
11704
11705         Work around a btowc() bug on IRIX 6.5.
11706         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
11707         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
11708         REPLACE_WTOBC if not.
11709         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
11710         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
11711         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
11712
11713 2008-12-21  Bruno Haible  <bruno@clisp.org>
11714
11715         * modules/wcrtomb-tests: New file.
11716         * tests/test-wcrtomb.sh: New file.
11717         * tests/test-wcrtomb.c: New file.
11718
11719         New module 'wcrtomb'.
11720         * lib/wchar.in.h (wcrtomb): New declaration.
11721         * lib/wcrtomb.c: New file.
11722         * m4/wcrtomb.m4: New file.
11723         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
11724         HAVE_WCRTOMB.
11725         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
11726         HAVE_WCRTOMB.
11727         * modules/wcrtomb: New file.
11728         * doc/posix-functions/wcrtomb.texi: Mention the new module.
11729
11730 2008-12-21  Bruno Haible  <bruno@clisp.org>
11731
11732         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
11733         * modules/mbsrtowcs (Files): Likewise.
11734         * modules/wctob (Files): Likewise.
11735         * modules/c-strcase-tests (Files): Likewise.
11736         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
11737         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
11738         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
11739         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
11740         * modules/vasnprintf-posix-tests (Files): Likewise.
11741
11742 2008-12-21  William Pursell  <bill.pursell@gmail.com>
11743
11744         gitlog-to-changelog: pass all command-line arguments to git-log
11745         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
11746         it is sometimes convenient to filter the commits in various ways.
11747         gitlog-to-changelog only allows --since to specify a start date,
11748         but git-log itself supports many other filtering mechanisms.
11749         At the moment, I want to filter by branch name.  Rather than
11750         adding a --branch option to gitlog-to-changelog, it seems more
11751         flexible to simply pass all options directly to git-log and let
11752         git do the work.  Notice that this effectively makes --since a
11753         redundant option for gitlog-to-changelog, but removing it would
11754         require current usage to change since calls would then require
11755         an additional '--'.
11756
11757 2008-12-21  Bruno Haible  <bruno@clisp.org>
11758
11759         * modules/mbsnrtowcs-tests: New file.
11760         * tests/test-mbsnrtowcs1.sh: New file.
11761         * tests/test-mbsnrtowcs2.sh: New file.
11762         * tests/test-mbsnrtowcs3.sh: New file.
11763         * tests/test-mbsnrtowcs4.sh: New file.
11764         * tests/test-mbsnrtowcs.c: New file.
11765
11766         New module 'mbsnrtowcs'.
11767         * lib/wchar.in.h (mbsnrtowcs): New declaration.
11768         * lib/mbsnrtowcs.c: New file.
11769         * lib/mbsrtowcs-state.c: New file.
11770         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
11771         (internal_state): Remove variable.
11772         * m4/mbsnrtowcs.m4: New file.
11773         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
11774         compilation units.
11775         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
11776         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
11777         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
11778         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
11779         * modules/mbsnrtowcs: New file.
11780         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
11781         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
11782         portability problem.
11783
11784 2008-12-21  Bruno Haible  <bruno@clisp.org>
11785
11786         Work around mbsrtowcs bug.
11787         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
11788         (gl_FUNC_MBSRTOWCS): Invoke it.
11789         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11790         m4/locale-zh.m4.
11791         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
11792
11793 2008-12-21  Bruno Haible  <bruno@clisp.org>
11794
11795         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
11796
11797 2008-12-21  Bruno Haible  <bruno@clisp.org>
11798
11799         Update doc for AIX.
11800         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
11801         16-bit wchar_t type.
11802         * doc/posix-functions/btowc.texi: Likewise.
11803         * doc/posix-functions/fgetwc.texi: Likewise.
11804         * doc/posix-functions/fgetws.texi: Likewise.
11805         * doc/posix-functions/fputwc.texi: Likewise.
11806         * doc/posix-functions/fputws.texi: Likewise.
11807         * doc/posix-functions/fwide.texi: Likewise.
11808         * doc/posix-functions/fwprintf.texi: Likewise.
11809         * doc/posix-functions/fwscanf.texi: Likewise.
11810         * doc/posix-functions/getwchar.texi: Likewise.
11811         * doc/posix-functions/getwc.texi: Likewise.
11812         * doc/posix-functions/iswalnum.texi: Likewise.
11813         * doc/posix-functions/iswalpha.texi: Likewise.
11814         * doc/posix-functions/iswblank.texi: Likewise.
11815         * doc/posix-functions/iswcntrl.texi: Likewise.
11816         * doc/posix-functions/iswctype.texi: Likewise.
11817         * doc/posix-functions/iswdigit.texi: Likewise.
11818         * doc/posix-functions/iswgraph.texi: Likewise.
11819         * doc/posix-functions/iswlower.texi: Likewise.
11820         * doc/posix-functions/iswprint.texi: Likewise.
11821         * doc/posix-functions/iswpunct.texi: Likewise.
11822         * doc/posix-functions/iswspace.texi: Likewise.
11823         * doc/posix-functions/iswupper.texi: Likewise.
11824         * doc/posix-functions/iswxdigit.texi: Likewise.
11825         * doc/posix-functions/mbrtowc.texi: Likewise.
11826         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11827         * doc/posix-functions/mbstowcs.texi: Likewise.
11828         * doc/posix-functions/mbtowc.texi: Likewise.
11829         * doc/posix-functions/putwchar.texi: Likewise.
11830         * doc/posix-functions/putwc.texi: Likewise.
11831         * doc/posix-functions/swprintf.texi: Likewise.
11832         * doc/posix-functions/tolower.texi: Likewise.
11833         * doc/posix-functions/toupper.texi: Likewise.
11834         * doc/posix-functions/towctrans.texi: Likewise.
11835         * doc/posix-functions/ungetwc.texi: Likewise.
11836         * doc/posix-functions/vswprintf.texi: Likewise.
11837         * doc/posix-functions/wcrtomb.texi: Likewise.
11838         * doc/posix-functions/wcscat.texi: Likewise.
11839         * doc/posix-functions/wcschr.texi: Likewise.
11840         * doc/posix-functions/wcscmp.texi: Likewise.
11841         * doc/posix-functions/wcscoll.texi: Likewise.
11842         * doc/posix-functions/wcscpy.texi: Likewise.
11843         * doc/posix-functions/wcscspn.texi: Likewise.
11844         * doc/posix-functions/wcsftime.texi: Likewise.
11845         * doc/posix-functions/wcslen.texi: Likewise.
11846         * doc/posix-functions/wcsncat.texi: Likewise.
11847         * doc/posix-functions/wcsncmp.texi: Likewise.
11848         * doc/posix-functions/wcsncpy.texi: Likewise.
11849         * doc/posix-functions/wcspbrk.texi: Likewise.
11850         * doc/posix-functions/wcsrchr.texi: Likewise.
11851         * doc/posix-functions/wcsrtombs.texi: Likewise.
11852         * doc/posix-functions/wcsspn.texi: Likewise.
11853         * doc/posix-functions/wcsstr.texi: Likewise.
11854         * doc/posix-functions/wcstod.texi: Likewise.
11855         * doc/posix-functions/wcstof.texi: Likewise.
11856         * doc/posix-functions/wcstoimax.texi: Likewise.
11857         * doc/posix-functions/wcstok.texi: Likewise.
11858         * doc/posix-functions/wcstold.texi: Likewise.
11859         * doc/posix-functions/wcstoll.texi: Likewise.
11860         * doc/posix-functions/wcstol.texi: Likewise.
11861         * doc/posix-functions/wcstombs.texi: Likewise.
11862         * doc/posix-functions/wcstoull.texi: Likewise.
11863         * doc/posix-functions/wcstoul.texi: Likewise.
11864         * doc/posix-functions/wcstoumax.texi: Likewise.
11865         * doc/posix-functions/wcswidth.texi: Likewise.
11866         * doc/posix-functions/wcsxfrm.texi: Likewise.
11867         * doc/posix-functions/wctob.texi: Likewise.
11868         * doc/posix-functions/wctomb.texi: Likewise.
11869         * doc/posix-functions/wctrans.texi: Likewise.
11870         * doc/posix-functions/wctype.texi: Likewise.
11871         * doc/posix-functions/wcwidth.texi: Likewise.
11872         * doc/posix-functions/wmemchr.texi: Likewise.
11873         * doc/posix-functions/wmemcmp.texi: Likewise.
11874         * doc/posix-functions/wmemcpy.texi: Likewise.
11875         * doc/posix-functions/wmemmove.texi: Likewise.
11876         * doc/posix-functions/wmemset.texi: Likewise.
11877         * doc/posix-functions/wprintf.texi: Likewise.
11878         * doc/posix-functions/wscanf.texi: Likewise.
11879
11880 2008-12-21  Bruno Haible  <bruno@clisp.org>
11881
11882         Update doc for HP-UX 11.11.
11883         * doc/posix-functions/btowc.texi: Clarify that the function is missing
11884         in HP-UX version 11.00, not in all versions of HP-UX 11.
11885         * doc/posix-functions/fwide.texi: Likewise.
11886         * doc/posix-functions/fwprintf.texi: Likewise.
11887         * doc/posix-functions/fwscanf.texi: Likewise.
11888         * doc/posix-functions/inet_ntop.texi: Likewise.
11889         * doc/posix-functions/inet_pton.texi: Likewise.
11890         * doc/posix-functions/mbrlen.texi: Likewise.
11891         * doc/posix-functions/mbrtowc.texi: Likewise.
11892         * doc/posix-functions/mbsinit.texi: Likewise.
11893         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11894         * doc/posix-functions/swprintf.texi: Likewise.
11895         * doc/posix-functions/swscanf.texi: Likewise.
11896         * doc/posix-functions/towctrans.texi: Likewise.
11897         * doc/posix-functions/vfwprintf.texi: Likewise.
11898         * doc/posix-functions/vswprintf.texi: Likewise.
11899         * doc/posix-functions/vwprintf.texi: Likewise.
11900         * doc/posix-functions/wcrtomb.texi: Likewise.
11901         * doc/posix-functions/wcsrtombs.texi: Likewise.
11902         * doc/posix-functions/wcsstr.texi: Likewise.
11903         * doc/posix-functions/wctob.texi: Likewise.
11904         * doc/posix-functions/wctrans.texi: Likewise.
11905         * doc/posix-functions/wmemchr.texi: Likewise.
11906         * doc/posix-functions/wmemcmp.texi: Likewise.
11907         * doc/posix-functions/wmemcpy.texi: Likewise.
11908         * doc/posix-functions/wmemmove.texi: Likewise.
11909         * doc/posix-functions/wmemset.texi: Likewise.
11910         * doc/posix-functions/wprintf.texi: Likewise.
11911         * doc/posix-functions/wscanf.texi: Likewise.
11912
11913 2008-12-21  Bruno Haible  <bruno@clisp.org>
11914
11915         Work around a portability problem.
11916         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
11917         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
11918
11919 2008-12-20  Bruno Haible  <bruno@clisp.org>
11920
11921         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
11922         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
11923         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
11924         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
11925         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
11926
11927         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
11928         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
11929         set.
11930         (GNULIB_defined_mbstate_t): New macro.
11931         (mbsinit): Redefine if REPLACE_MBSINIT is set.
11932         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
11933         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
11934         reuses the system's mbrtowc function but works around the bugs.
11935         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
11936         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
11937         macros.
11938         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
11939         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
11940         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
11941         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
11942         REPLACE_MBSINIT if mbsinit needs to be overridden.
11943         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
11944         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11945         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
11946         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11947         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11948         m4/locale-zh.m4.
11949         (Depends): Add mbsinit.
11950         * modules/mbsinit (Depends): Add mbrtowc.
11951         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
11952
11953 2008-12-20  Bruno Haible  <bruno@clisp.org>
11954
11955         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
11956         so that there are no conversion errors on AIX.
11957         * tests/test-mbsrtowcs.c (main): LIkewise.
11958
11959 2008-12-20  Bruno Haible  <bruno@clisp.org>
11960
11961         Work around wctob bug on Solaris <= 9.
11962         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
11963         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
11964         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
11965         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
11966         * modules/wctob (Files): Add m4/locale-fr.m4.
11967         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
11968
11969 2008-12-20  Bruno Haible  <bruno@clisp.org>
11970
11971         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
11972         /dev/null.
11973         * tests/test-select-in.sh: Likewise.
11974         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11975
11976 2008-12-20  Bruno Haible  <bruno@clisp.org>
11977
11978         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
11979         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
11980         Cygwin 1.5.x.
11981
11982 2008-12-20  Bruno Haible  <bruno@clisp.org>
11983
11984         Ensure mbstate_t is defined on HP-UX 11.11.
11985         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
11986         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
11987         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
11988         AC_USE_SYSTEM_EXTENSIONS.
11989         * modules/fnmatch (Depends-on): Add extensions.
11990         * modules/mbrlen (Depends-on): Likewise.
11991         * modules/mbrtowc (Depends-on): Likewise.
11992         * modules/mbsinit (Depends-on): Likewise.
11993         * modules/mbsrtowcs (Depends-on): Likewise.
11994         * modules/mbswidth (Depends-on): Likewise.
11995         * modules/quotearg (Depends-on): Likewise.
11996         * modules/strftime (Depends-on): Likewise.
11997
11998 2008-12-20  Bruno Haible  <bruno@clisp.org>
11999
12000         Ensure wctob is declared on IRIX 6.5.
12001         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
12002         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
12003         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
12004         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
12005         of HAVE_WCTOB.
12006         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
12007         HAVE_WCTOB.
12008         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
12009
12010 2008-12-19  Bruno Haible  <bruno@clisp.org>
12011
12012         * modules/mbsrtowcs-tests: New file.
12013         * tests/test-mbsrtowcs1.sh: New file.
12014         * tests/test-mbsrtowcs2.sh: New file.
12015         * tests/test-mbsrtowcs3.sh: New file.
12016         * tests/test-mbsrtowcs4.sh: New file.
12017         * tests/test-mbsrtowcs.c: New file.
12018
12019         New module 'mbsrtowcs'.
12020         * lib/wchar.in.h (mbsrtowcs): New declaration.
12021         * lib/mbsrtowcs.c: New file.
12022         * m4/mbsrtowcs.m4: New file.
12023         * modules/mbsrtowcs: New file.
12024         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
12025         HAVE_MBSRTOWCS.
12026         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
12027         HAVE_MBSRTOWCS.
12028         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
12029
12030 2008-12-19  Bruno Haible  <bruno@clisp.org>
12031
12032         New module 'mbrlen'.
12033         * lib/wchar.in.h (mbrlen): New declaration.
12034         * lib/mbrlen.c: New file.
12035         * m4/mbrlen.m4: New file.
12036         * modules/mbrlen: New file.
12037         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
12038         HAVE_MBRLEN.
12039         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
12040         HAVE_MBRLEN.
12041         * doc/posix-functions/mbrlen.texi: Document the new module.
12042
12043 2008-12-19  Bruno Haible  <bruno@clisp.org>
12044
12045         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
12046         * modules/mbrtowc (Depends-on): Add verify.
12047         Suggested by Paul Eggert.
12048
12049 2008-12-18  Bruno Haible  <bruno@clisp.org>
12050
12051         * modules/mbsinit-tests: New file.
12052         * tests/test-mbsinit.sh: New file.
12053         * tests/test-mbsinit.c: New file.
12054
12055 2008-12-18  Bruno Haible  <bruno@clisp.org>
12056
12057         * modules/mbrtowc-tests: New file.
12058         * tests/test-mbrtowc1.sh: New file.
12059         * tests/test-mbrtowc2.sh: New file.
12060         * tests/test-mbrtowc3.sh: New file.
12061         * tests/test-mbrtowc4.sh: New file.
12062         * tests/test-mbrtowc.c: New file.
12063
12064         New module 'mbrtowc'.
12065         * lib/wchar.in.h (mbstate_t): Override when the system does not have
12066         mbsinit and mbrtowc.
12067         (mbrtowc): New declaration.
12068         * lib/mbrtowc.c: New file.
12069         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
12070         * modules/mbrtowc: New file.
12071         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
12072         HAVE_MBRTOWC.
12073         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
12074         HAVE_MBRTOWC.
12075         * doc/posix-functions/mbrtowc.texi: Document the new module.
12076
12077 2008-12-18  Bruno Haible  <bruno@clisp.org>
12078
12079         New module 'wctob'.
12080         * lib/wchar.in.h (wctob): New declaration.
12081         * lib/wctob.c: New file.
12082         * m4/wctob.m4: New file.
12083         * modules/wctob: New file.
12084         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
12085         HAVE_WCTOB.
12086         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
12087         * doc/posix-functions/wctob.texi: Document the new module.
12088
12089 2008-12-18  Bruno Haible  <bruno@clisp.org>
12090
12091         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
12092         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
12093
12094 2008-12-18  Simon Josefsson  <simon@josefsson.org>
12095
12096         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
12097         G. Christensen" <tgc@jupiterrise.com>.
12098
12099         * lib/flock.c: Need to include errno.h.  Reported by "Tom
12100         G. Christensen" <tgc@jupiterrise.com>.
12101
12102         * lib/flock.c: Need to include string.h.  Reported by "Tom
12103         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
12104         <ebb9@byu.net>.
12105
12106 2008-12-18  Bruno Haible  <bruno@clisp.org>
12107
12108         * m4/locale-ja.m4: New file, from GNU gettext.
12109
12110 2008-12-17  Bruno Haible  <bruno@clisp.org>
12111
12112         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
12113         Suggested by Eric Blake.
12114
12115 2008-12-17  Bruno Haible  <bruno@clisp.org>
12116
12117         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
12118
12119 2008-12-17  Bruno Haible  <bruno@clisp.org>
12120
12121         * lib/mbsinit.c: Include verify.h. Verify an assumption.
12122         * modules/mbsinit (Depends-on): Add verify.
12123         Suggested by Paul Eggert.
12124
12125 2008-12-17  Bruno Haible  <bruno@clisp.org>
12126
12127         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
12128         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
12129         gl_FUNC_MBRTOWC.
12130         * m4/mbiter.m4 (gl_MBITER): LIkewise.
12131         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
12132         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
12133         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
12134         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
12135         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
12136         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
12137         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
12138         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
12139         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
12140         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
12141         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
12142         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
12143         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
12144         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
12145         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
12146         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
12147         * modules/trim (configure.ac): Likewise.
12148
12149 2008-12-17  Bruno Haible  <bruno@clisp.org>
12150
12151         * modules/btowc-tests: New file.
12152         * tests/test-btowc1.sh: New file.
12153         * tests/test-btowc2.sh: New file.
12154         * tests/test-btowc.c: New file.
12155
12156         New module 'btowc'.
12157         * lib/wchar.in.h (btowc): New declaration.
12158         * lib/btowc.c: New file.
12159         * m4/btowc.m4: New file.
12160         * modules/btowc: New file.
12161         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
12162         HAVE_BTOWC.
12163         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
12164         * doc/posix-functions/btowc.texi: Document the new module.
12165
12166 2008-12-17  Bruno Haible  <bruno@clisp.org>
12167
12168         New module 'mbsinit'.
12169         * lib/wchar.in.h (mbsinit): New declaration.
12170         * lib/mbsinit.c: New file.
12171         * m4/mbsinit.m4: New file.
12172         * modules/mbsinit: New file.
12173         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
12174         HAVE_MBSINIT.
12175         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
12176         HAVE_MBSINIT.
12177         * doc/posix-functions/mbsinit.texi: Document the new module.
12178
12179 2008-12-16  Bruno Haible  <bruno@clisp.org>
12180
12181         * lib/unistd.in.h: Add comment.
12182         * tests/test-environ.c: Don't include <stdlib.h>.
12183
12184 2008-12-16  Bruno Haible  <bruno@clisp.org>
12185
12186         * lib/parse-duration.h (parse_duration): Document return value
12187         convention.
12188         * lib/parse-duration.c: Include specification header first. Add
12189         comments.
12190         (_): Remove macro.
12191         (parse_year_month_day, parse_hour_minute_second): Move side effects
12192         outside of strchr call.
12193         (parse_non_iso8601): Move side effects outside of isspace call.
12194         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
12195         call.
12196
12197 2008-12-16  Bruno Haible  <bruno@clisp.org>
12198
12199         * tests/test-parse-duration.sh: Produce no output when the test
12200         succeeds.
12201
12202 2008-12-16  Bruno Haible  <bruno@clisp.org>
12203
12204         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
12205         expressions.
12206
12207 2008-12-15  Bruno Haible  <bruno@clisp.org>
12208
12209         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
12210         * doc/glibc-functions/flistxattr.texi: Likewise.
12211         * doc/glibc-functions/fopencookie.texi: Likewise.
12212         * doc/glibc-functions/fremovexattr.texi: Likewise.
12213         * doc/glibc-functions/fsetxattr.texi: Likewise.
12214         * doc/glibc-functions/getxattr.texi: Likewise.
12215         * doc/glibc-functions/lgetxattr.texi: Likewise.
12216         * doc/glibc-functions/listxattr.texi: Likewise.
12217         * doc/glibc-functions/llistxattr.texi: Likewise.
12218         * doc/glibc-functions/lremovexattr.texi: Likewise.
12219         * doc/glibc-functions/lsetxattr.texi: Likewise.
12220         * doc/glibc-functions/removexattr.texi: Likewise.
12221         * doc/glibc-functions/setxattr.texi: Likewise.
12222         * doc/posix-functions/open_memstream.texi: Likewise.
12223
12224 2008-12-15  Eric Blake  <ebb9@byu.net>
12225
12226         Update doc for cygwin 1.7.
12227         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
12228         functions.
12229         * doc/posix-functions/fchmodat.texi: Likewise.
12230         * doc/posix-functions/fchownat.texi: Likewise.
12231         * doc/posix-functions/fdopendir.texi: Likewise.
12232         * doc/posix-functions/fmemopen.texi: Likewise.
12233         * doc/posix-functions/freeaddrinfo.texi: Likewise.
12234         * doc/posix-functions/fstatat.texi: Likewise.
12235         * doc/posix-functions/futimens.texi: Likewise.
12236         * doc/posix-functions/gai_strerror.texi: Likewise.
12237         * doc/posix-functions/getaddrinfo.texi: Likewise.
12238         * doc/posix-functions/getnameinfo.texi: Likewise.
12239         * doc/posix-functions/if_freenameindex.texi: Likewise.
12240         * doc/posix-functions/if_indextoname.texi: Likewise.
12241         * doc/posix-functions/if_nameindex.texi: Likewise.
12242         * doc/posix-functions/if_nametoindex.texi: Likewise.
12243         * doc/posix-functions/insque.texi: Likewise.
12244         * doc/posix-functions/linkat.texi: Likewise.
12245         * doc/posix-functions/llrint.texi: Likewise.
12246         * doc/posix-functions/llrintf.texi: Likewise.
12247         * doc/posix-functions/llrintl.texi: Likewise.
12248         * doc/posix-functions/lockf.texi: Likewise.
12249         * doc/posix-functions/lrintl.texi: Likewise.
12250         * doc/posix-functions/mkdirat.texi: Likewise.
12251         * doc/posix-functions/mkfifoat.texi: Likewise.
12252         * doc/posix-functions/mknodat.texi: Likewise.
12253         * doc/posix-functions/mq_close.texi: Likewise.
12254         * doc/posix-functions/mq_getattr.texi: Likewise.
12255         * doc/posix-functions/mq_notify.texi: Likewise.
12256         * doc/posix-functions/mq_open.texi: Likewise.
12257         * doc/posix-functions/mq_receive.texi: Likewise.
12258         * doc/posix-functions/mq_send.texi: Likewise.
12259         * doc/posix-functions/mq_setattr.texi: Likewise.
12260         * doc/posix-functions/mq_timedreceive.texi: Likewise.
12261         * doc/posix-functions/mq_timedsend.texi: Likewise.
12262         * doc/posix-functions/mq_unlink.texi: Likewise.
12263         * doc/posix-functions/open_memstream.texi: Likewise.
12264         * doc/posix-functions/openat.texi: Likewise.
12265         * doc/posix-functions/posix_fadvise.texi: Likewise.
12266         * doc/posix-functions/posix_fallocate.texi: Likewise.
12267         * doc/posix-functions/posix_madvise.texi: Likewise.
12268         * doc/posix-functions/posix_memalign.texi: Likewise.
12269         * doc/posix-functions/posix_openpt.texi: Likewise.
12270         * doc/posix-functions/readlinkat.texi: Likewise.
12271         * doc/posix-functions/remque.texi: Likewise.
12272         * doc/posix-functions/renameat.texi: Likewise.
12273         * doc/posix-functions/rintl.texi: Likewise.
12274         * doc/posix-functions/sem_unlink.texi: Likewise.
12275         * doc/posix-functions/shm_open.texi: Likewise.
12276         * doc/posix-functions/shm_unlink.texi: Likewise.
12277         * doc/posix-functions/signgam.texi: Likewise.
12278         * doc/posix-functions/sigset.texi: Likewise.
12279         * doc/posix-functions/stpcpy.texi: Likewise.
12280         * doc/posix-functions/stpncpy.texi: Likewise.
12281         * doc/posix-functions/strerror.texi: Likewise.
12282         * doc/posix-functions/strtod.texi: Likewise.
12283         * doc/posix-functions/symlinkat.texi: Likewise.
12284         * doc/posix-functions/unlinkat.texi: Likewise.
12285         * doc/posix-functions/utimensat.texi: Likewise.
12286         * doc/glibc-functions/bindresvport.texi: Likewise.
12287         * doc/glibc-functions/dn_expand.texi: Likewise.
12288         * doc/glibc-functions/exp10.texi: Likewise.
12289         * doc/glibc-functions/exp10f.texi: Likewise.
12290         * doc/glibc-functions/fgetxattr.texi: Likewise.
12291         * doc/glibc-functions/flistxattr.texi: Likewise.
12292         * doc/glibc-functions/fopencookie.texi: Likewise.
12293         * doc/glibc-functions/freeifaddrs.texi: Likewise.
12294         * doc/glibc-functions/fremovexattr.texi: Likewise.
12295         * doc/glibc-functions/fsetxattr.texi: Likewise.
12296         * doc/glibc-functions/getifaddrs.texi: Likewise.
12297         * doc/glibc-functions/getxattr.texi: Likewise.
12298         * doc/glibc-functions/lgetxattr.texi: Likewise.
12299         * doc/glibc-functions/listxattr.texi: Likewise.
12300         * doc/glibc-functions/llistxattr.texi: Likewise.
12301         * doc/glibc-functions/lremovexattr.texi: Likewise.
12302         * doc/glibc-functions/lsetxattr.texi: Likewise.
12303         * doc/glibc-functions/pow10.texi: Likewise.
12304         * doc/glibc-functions/pow10f.texi: Likewise.
12305         * doc/glibc-functions/rcmd_af.texi: Likewise.
12306         * doc/glibc-functions/removexattr.texi: Likewise.
12307         * doc/glibc-functions/res_init.texi: Likewise.
12308         * doc/glibc-functions/res_mkquery.texi: Likewise.
12309         * doc/glibc-functions/res_query.texi: Likewise.
12310         * doc/glibc-functions/res_querydomain.texi: Likewise.
12311         * doc/glibc-functions/res_send.texi: Likewise.
12312         * doc/glibc-functions/rresvport_af.texi: Likewise.
12313         * doc/glibc-functions/setxattr.texi: Likewise.
12314         * doc/glibc-functions/strcasestr.texi: Likewise.
12315
12316 2008-12-15  Bruno Haible  <bruno@clisp.org>
12317
12318         Fix compilation error on OSF/1 4.0.
12319         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
12320         <sys/time.h>, simply delegate to the system header.
12321         Reported by Daniel Richard G. <oss@teragram.com>.
12322
12323 2008-12-15  Bruno Haible  <bruno@clisp.org>
12324
12325         * doc/posix-functions/openat.texi: Mention the 'openat' module.
12326         * doc/posix-functions/fchmodat.texi: Likewise.
12327         * doc/posix-functions/fchownat.texi: Likewise.
12328         * doc/posix-functions/fdopendir.texi: Likewise.
12329         * doc/posix-functions/fstatat.texi: Likewise.
12330         * doc/posix-functions/mkdirat.texi: Likewise.
12331         * doc/posix-functions/unlinkat.texi: Likewise.
12332
12333 2008-12-14  Bruno Haible  <bruno@clisp.org>
12334
12335         Update doc for POSIX:2008.
12336         * doc/posix-functions/faccessat.texi: New file.
12337         * doc/posix-functions/fchmodat.texi: New file.
12338         * doc/posix-functions/fchownat.texi: New file.
12339         * doc/posix-functions/fdopendir.texi: New file.
12340         * doc/posix-functions/fstatat.texi: New file.
12341         * doc/posix-functions/futimens.texi: New file.
12342         * doc/posix-functions/linkat.texi: New file.
12343         * doc/posix-functions/mkdirat.texi: New file.
12344         * doc/posix-functions/mkfifoat.texi: New file.
12345         * doc/posix-functions/mknodat.texi: New file.
12346         * doc/posix-functions/open_wmemstream.texi: New file.
12347         * doc/posix-functions/openat.texi: New file.
12348         * doc/posix-functions/psiginfo.texi: New file.
12349         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
12350         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
12351         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
12352         * doc/posix-functions/readlinkat.texi: New file.
12353         * doc/posix-functions/renameat.texi: New file.
12354         * doc/posix-functions/strerror_l.texi: New file.
12355         * doc/posix-functions/symlinkat.texi: New file.
12356         * doc/posix-functions/unlinkat.texi: New file.
12357         * doc/posix-functions/utimensat.texi: New file.
12358         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12359
12360 2008-12-14  Bruno Haible  <bruno@clisp.org>
12361
12362         Update doc for POSIX:2008.
12363         * doc/posix-functions/alphasort.texi: Renamed from
12364         doc/glibc-functions/alphasort.texi.
12365         * doc/posix-functions/dirfd.texi: Renamed from
12366         doc/glibc-functions/dirfd.texi.
12367         * doc/posix-functions/dprintf.texi: Renamed from
12368         doc/glibc-functions/dprintf.texi.
12369         * doc/posix-functions/duplocale.texi: Renamed from
12370         doc/glibc-functions/duplocale.texi.
12371         * doc/posix-functions/fexecve.texi: Renamed from
12372         doc/glibc-functions/fexecve.texi.
12373         * doc/posix-functions/fmemopen.texi: Renamed from
12374         doc/glibc-functions/fmemopen.texi.
12375         * doc/posix-functions/freelocale.texi: Renamed from
12376         doc/glibc-functions/freelocale.texi.
12377         * doc/posix-functions/getdate_err.texi: Renamed from
12378         doc/glibc-functions/getdate_err.texi.
12379         * doc/posix-functions/isalnum_l.texi: Renamed from
12380         doc/glibc-functions/isalnum_l.texi.
12381         * doc/posix-functions/isalpha_l.texi: Renamed from
12382         doc/glibc-functions/isalpha_l.texi.
12383         * doc/posix-functions/isblank_l.texi: Renamed from
12384         doc/glibc-functions/isblank_l.texi.
12385         * doc/posix-functions/iscntrl_l.texi: Renamed from
12386         doc/glibc-functions/iscntrl_l.texi.
12387         * doc/posix-functions/isdigit_l.texi: Renamed from
12388         doc/glibc-functions/isdigit_l.texi.
12389         * doc/posix-functions/isgraph_l.texi: Renamed from
12390         doc/glibc-functions/isgraph_l.texi.
12391         * doc/posix-functions/islower_l.texi: Renamed from
12392         doc/glibc-functions/islower_l.texi.
12393         * doc/posix-functions/isprint_l.texi: Renamed from
12394         doc/glibc-functions/isprint_l.texi.
12395         * doc/posix-functions/ispunct_l.texi: Renamed from
12396         doc/glibc-functions/ispunct_l.texi.
12397         * doc/posix-functions/isspace_l.texi: Renamed from
12398         doc/glibc-functions/isspace_l.texi.
12399         * doc/posix-functions/isupper_l.texi: Renamed from
12400         doc/glibc-functions/isupper_l.texi.
12401         * doc/posix-functions/iswalnum_l.texi: Renamed from
12402         doc/glibc-functions/iswalnum_l.texi.
12403         * doc/posix-functions/iswalpha_l.texi: Renamed from
12404         doc/glibc-functions/iswalpha_l.texi.
12405         * doc/posix-functions/iswblank_l.texi: Renamed from
12406         doc/glibc-functions/iswblank_l.texi.
12407         * doc/posix-functions/iswcntrl_l.texi: Renamed from
12408         doc/glibc-functions/iswcntrl_l.texi.
12409         * doc/posix-functions/iswctype_l.texi: Renamed from
12410         doc/glibc-functions/iswctype_l.texi.
12411         * doc/posix-functions/iswdigit_l.texi: Renamed from
12412         doc/glibc-functions/iswdigit_l.texi.
12413         * doc/posix-functions/iswgraph_l.texi: Renamed from
12414         doc/glibc-functions/iswgraph_l.texi.
12415         * doc/posix-functions/iswlower_l.texi: Renamed from
12416         doc/glibc-functions/iswlower_l.texi.
12417         * doc/posix-functions/iswprint_l.texi: Renamed from
12418         doc/glibc-functions/iswprint_l.texi.
12419         * doc/posix-functions/iswpunct_l.texi: Renamed from
12420         doc/glibc-functions/iswpunct_l.texi.
12421         * doc/posix-functions/iswspace_l.texi: Renamed from
12422         doc/glibc-functions/iswspace_l.texi.
12423         * doc/posix-functions/iswupper_l.texi: Renamed from
12424         doc/glibc-functions/iswupper_l.texi.
12425         * doc/posix-functions/iswxdigit_l.texi: Renamed from
12426         doc/glibc-functions/iswxdigit_l.texi.
12427         * doc/posix-functions/isxdigit_l.texi: Renamed from
12428         doc/glibc-functions/isxdigit_l.texi.
12429         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
12430         doc/glibc-functions/mbsnrtowcs.texi.
12431         * doc/posix-functions/mkdtemp.texi: Renamed from
12432         doc/glibc-functions/mkdtemp.texi.
12433         * doc/posix-functions/newlocale.texi: Renamed from
12434         doc/glibc-functions/newlocale.texi.
12435         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
12436         doc/glibc-functions/nl_langinfo_l.texi.
12437         * doc/posix-functions/open_memstream.texi: Renamed from
12438         doc/glibc-functions/open_memstream.texi.
12439         * doc/posix-functions/opterr.texi: Renamed from
12440         doc/glibc-functions/opterr.texi.
12441         * doc/posix-functions/optind.texi: Renamed from
12442         doc/glibc-functions/optind.texi.
12443         * doc/posix-functions/optopt.texi: Renamed from
12444         doc/glibc-functions/optopt.texi.
12445         * doc/posix-functions/psignal.texi: Renamed from
12446         doc/glibc-functions/psignal.texi.
12447         * doc/posix-functions/scandir.texi: Renamed from
12448         doc/glibc-functions/scandir.texi.
12449         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
12450         doc/glibc-functions/sched_get_priority_min.texi.
12451         * doc/posix-functions/signgam.texi: Renamed from
12452         doc/glibc-functions/signgam.texi.
12453         * doc/posix-functions/stpcpy.texi: Renamed from
12454         doc/glibc-functions/stpcpy.texi.
12455         * doc/posix-functions/stpncpy.texi: Renamed from
12456         doc/glibc-functions/stpncpy.texi.
12457         * doc/posix-functions/strcasecmp_l.texi: Renamed from
12458         doc/glibc-functions/strcasecmp_l.texi.
12459         * doc/posix-functions/strcoll_l.texi: Renamed from
12460         doc/glibc-functions/strcoll_l.texi.
12461         * doc/posix-functions/strfmon_l.texi: Renamed from
12462         doc/glibc-functions/strfmon_l.texi.
12463         * doc/posix-functions/strftime_l.texi: Renamed from
12464         doc/glibc-functions/strftime_l.texi.
12465         * doc/posix-functions/strncasecmp_l.texi: Renamed from
12466         doc/glibc-functions/strncasecmp_l.texi.
12467         * doc/posix-functions/strndup.texi: Renamed from
12468         doc/glibc-functions/strndup.texi.
12469         * doc/posix-functions/strnlen.texi: Renamed from
12470         doc/glibc-functions/strnlen.texi.
12471         * doc/posix-functions/strsignal.texi: Renamed from
12472         doc/glibc-functions/strsignal.texi.
12473         * doc/posix-functions/strxfrm_l.texi: Renamed from
12474         doc/glibc-functions/strxfrm_l.texi.
12475         * doc/posix-functions/timer_gettime.texi: Renamed from
12476         doc/glibc-functions/timer_gettime.texi.
12477         * doc/posix-functions/tolower_l.texi: Renamed from
12478         doc/glibc-functions/tolower_l.texi.
12479         * doc/posix-functions/toupper_l.texi: Renamed from
12480         doc/glibc-functions/toupper_l.texi.
12481         * doc/posix-functions/towctrans_l.texi: Renamed from
12482         doc/glibc-functions/towctrans_l.texi.
12483         * doc/posix-functions/towlower_l.texi: Renamed from
12484         doc/glibc-functions/towlower_l.texi.
12485         * doc/posix-functions/towupper_l.texi: Renamed from
12486         doc/glibc-functions/towupper_l.texi.
12487         * doc/posix-functions/uselocale.texi: Renamed from
12488         doc/glibc-functions/uselocale.texi.
12489         * doc/posix-functions/vdprintf.texi: Renamed from
12490         doc/glibc-functions/vdprintf.texi.
12491         * doc/posix-functions/wcpcpy.texi:
12492         Renamed from doc/glibc-functions/wcpcpy.texi.
12493         * doc/posix-functions/wcpncpy.texi: Renamed from
12494         doc/glibc-functions/wcpncpy.texi.
12495         * doc/posix-functions/wcscasecmp.texi: Renamed from
12496         doc/glibc-functions/wcscasecmp.texi.
12497         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
12498         doc/glibc-functions/wcscasecmp_l.texi.
12499         * doc/posix-functions/wcscoll_l.texi: Renamed from
12500         doc/glibc-functions/wcscoll_l.texi.
12501         * doc/posix-functions/wcsdup.texi: Renamed from
12502         doc/glibc-functions/wcsdup.texi.
12503         * doc/posix-functions/wcsncasecmp.texi: Renamed from
12504         doc/glibc-functions/wcsncasecmp.texi.
12505         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
12506         doc/glibc-functions/wcsncasecmp_l.texi.
12507         * doc/posix-functions/wcsnlen.texi: Renamed from
12508         doc/glibc-functions/wcsnlen.texi.
12509         * doc/posix-functions/wcsnrtombs.texi: Renamed from
12510         doc/glibc-functions/wcsnrtombs.texi.
12511         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
12512         doc/glibc-functions/wcsxfrm_l.texi.
12513         * doc/posix-functions/wctrans_l.texi: Renamed from
12514         doc/glibc-functions/wctrans_l.texi.
12515         * doc/posix-functions/wctype_l.texi: Renamed from
12516         doc/glibc-functions/wctype_l.texi.
12517         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12518         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
12519         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
12520         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
12521         these subsections.
12522         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
12523         Remove sections.
12524
12525 2008-12-14  Bruno Haible  <bruno@clisp.org>
12526
12527         Update doc for POSIX:2008.
12528         * doc/posix-functions/*.texi: Update URL of POSIX specification.
12529
12530 2008-12-14  Bruno Haible  <bruno@clisp.org>
12531
12532         Update doc for POSIX:2008.
12533         * doc/pastposix-functions/bcmp.texi: Renamed from
12534         doc/posix-functions/bcmp.texi.
12535         * doc/pastposix-functions/bcopy.texi: Renamed from
12536         doc/posix-functions/bcopy.texi.
12537         * doc/pastposix-functions/bsd_signal.texi: Renamed from
12538         doc/posix-functions/bsd_signal.texi.
12539         * doc/pastposix-functions/bzero.texi: Renamed from
12540         doc/posix-functions/bzero.texi.
12541         * doc/pastposix-functions/ecvt.texi: Renamed from
12542         doc/posix-functions/ecvt.texi.
12543         * doc/pastposix-functions/fcvt.texi: Renamed from
12544         doc/posix-functions/fcvt.texi.
12545         * doc/pastposix-functions/ftime.texi: Renamed from
12546         doc/posix-functions/ftime.texi.
12547         * doc/pastposix-functions/gcvt.texi: Renamed from
12548         doc/posix-functions/gcvt.texi.
12549         * doc/pastposix-functions/getcontext.texi: Renamed from
12550         doc/posix-functions/getcontext.texi.
12551         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
12552         doc/posix-functions/gethostbyaddr.texi.
12553         * doc/pastposix-functions/gethostbyname.texi: Renamed from
12554         doc/posix-functions/gethostbyname.texi.
12555         * doc/pastposix-functions/getwd.texi: Renamed from
12556         doc/posix-functions/getwd.texi.
12557         * doc/pastposix-functions/h_errno.texi: Renamed from
12558         doc/posix-functions/h_errno.texi.
12559         * doc/pastposix-functions/index.texi: Renamed from
12560         doc/posix-functions/index.texi.
12561         * doc/pastposix-functions/makecontext.texi: Renamed from
12562         doc/posix-functions/makecontext.texi.
12563         * doc/pastposix-functions/mktemp.texi: Renamed from
12564         doc/posix-functions/mktemp.texi.
12565         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
12566         doc/posix-functions/pthread_attr_getstackaddr.texi.
12567         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
12568         doc/posix-functions/pthread_attr_setstackaddr.texi.
12569         * doc/pastposix-functions/rindex.texi: Renamed from
12570         doc/posix-functions/rindex.texi.
12571         * doc/pastposix-functions/scalb.texi: Renamed from
12572         doc/posix-functions/scalb.texi.
12573         * doc/pastposix-functions/setcontext.texi: Renamed from
12574         doc/posix-functions/setcontext.texi.
12575         * doc/pastposix-functions/swapcontext.texi: Renamed from
12576         doc/posix-functions/swapcontext.texi.
12577         * doc/pastposix-functions/ualarm.texi: Renamed from
12578         doc/posix-functions/ualarm.texi.
12579         * doc/pastposix-functions/usleep.texi: Renamed from
12580         doc/posix-functions/usleep.texi.
12581         * doc/pastposix-functions/vfork.texi: Renamed from
12582         doc/posix-functions/vfork.texi.
12583         * doc/pastposix-functions/wcswcs.texi: Renamed from
12584         doc/posix-functions/wcswcs.texi.
12585         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
12586         (Function Substitutes): Update.
12587
12588 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12589
12590         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
12591         m4/strerror.m4.
12592
12593 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12594             Bruno Haible  <bruno@clisp.org>
12595
12596         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
12597
12598 2008-12-13  Bruno Haible  <bruno@clisp.org>
12599
12600         * modules/strtoull (Depends-on): Remove unistd.
12601
12602 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12603
12604         * modules/strtoull (Depends-on): Add stdlib.
12605
12606 2008-12-11  Simon Josefsson  <simon@josefsson.org>
12607
12608         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
12609
12610 2008-12-10  Jim Meyering  <meyering@redhat.com>
12611
12612         gl_ASSERT: don't say assertions are disabled when they're not
12613         * m4/assert.m4 (gl_ASSERT): Do not make configure report
12614         "checking whether to enable assertions... no", when they are in
12615         fact enabled.  This is solely a bug in the output of configure.
12616         In spite of saying "no", NDEBUG was not defined in that case.
12617         Also, as noted by Eric Blake, leave assertions enabled upon
12618         --enable-assert=INVALID.
12619
12620 2008-12-10  Bruno Haible  <bruno@clisp.org>
12621
12622         Change MODULES.html to refer to POSIX:2008 where possible.
12623         * MODULES.html.sh (POSIX2008_URL): New variable.
12624         (posix_headers): Remove sys/timeb, ucontext.
12625         (posix2001_headers): New variable.
12626         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
12627         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
12628         index, makecontext, mktemp, pthread_attr_getstackaddr,
12629         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
12630         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
12631         (posix2001_functions): New variable.
12632         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
12633         otherwise.
12634
12635 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12636
12637         add missing include to parse-duration.c
12638         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
12639         * modules/parse-duration (Depends-on): Add xalloc.
12640
12641         fix sed script reading maint.mk
12642         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
12643         (syntax-check-rules): Use it.
12644
12645 2008-12-09  Bruno Haible  <bruno@clisp.org>
12646
12647         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
12648         MacOS X 10.4/PowerPC.
12649         Reported by Simon Josefsson.
12650
12651 2008-12-08  Jim Meyering  <meyering@redhat.com>
12652
12653         work around mingw's lack of some S_IF definitions
12654         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
12655         Reported by Simon Josefsson.
12656
12657 2008-12-08  Bruno Haible  <bruno@clisp.org>
12658
12659         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
12660         applied to variables. Needed on MacOS X 10.4/PowerPC.
12661         Reported by Simon Josefsson.
12662
12663 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
12664         and Eric Blake  <ebb9@byu.net>
12665
12666         assert: honor --enable-assert
12667         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
12668         order to honor --enable-assert, rather than treating it as a
12669         synonym for --disable-assert.
12670
12671 2008-12-08  Jim Meyering  <meyering@redhat.com>
12672
12673         * lib/posixtm.c: Remove now-useless declaration of mktime.
12674
12675         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
12676
12677 2008-12-07  Bruno Haible  <bruno@clisp.org>
12678
12679         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
12680         test_once): Mark functions as static.
12681         * tests/test-tls.c (test_tls): Likewise.
12682
12683 2008-12-07  Bruno Haible  <bruno@clisp.org>
12684
12685         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
12686         iconv_register_autodetect.
12687
12688 2008-12-07  Jim Meyering  <meyering@redhat.com>
12689
12690         posixtm.c: avoid a warning
12691         * lib/posixtm.c (posixtime): Don't initialize tm0.
12692         It's no longer needed to placate gcc4's -Wuninitialized,
12693         and the attempt to placate would elicit a new warning.
12694
12695         unicodeio.c: mark unused parameters
12696         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12697         (fallback_failure_callback): Likewise.
12698
12699 2008-12-07  Bruno Haible  <bruno@clisp.org>
12700
12701         * gnulib-tool (func_create_testdir): When building the tests
12702         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
12703         Reported by Simon Josefsson.
12704
12705 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12706
12707         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
12708
12709 2008-12-06  Bruno Haible  <bruno@clisp.org>
12710
12711         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
12712         Suggested by Eric Blake.
12713
12714 2008-12-06  Bruno Haible  <bruno@clisp.org>
12715
12716         Fix a c-stack test failure on MacOS X.
12717         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
12718         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
12719         handler for SIGBUS as well.
12720         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
12721         install a signal handler for SIGBUS as well.
12722         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
12723
12724 2008-12-06  Bruno Haible  <bruno@clisp.org>
12725
12726         Advocacy documentation.
12727         * doc/gnulib-intro.texi (Benefits): New section.
12728         * doc/gnulib.texi: Update.
12729
12730 2008-12-06  Bruno Haible  <bruno@clisp.org>
12731
12732         Document the 'manywarnings' module.
12733         * doc/manywarnings.texi: New file.
12734         * doc/gnulib.texi: Include it.
12735
12736 2008-12-05  Eric Blake  <ebb9@byu.net>
12737
12738         tests: silence some gcc warnings
12739         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
12740         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
12741         type mismatches.
12742
12743 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12744             Bruno Haible  <bruno@clisp.org>
12745
12746         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
12747
12748 2008-11-29  Jim Meyering  <meyering@redhat.com>
12749
12750         unicodeio.c: mark unused parameters
12751         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12752         (fallback_failure_callback): Likewise.
12753
12754         fts: fix a thinko
12755         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
12756         (set_stat_type): Return S_IF*-valued "type" directly.
12757         Prompted by James Youngman's spotting a related bug.
12758         Confirmed by further testing through find.
12759
12760         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
12761         * lib/fts.c (D_TYPE): Define.
12762         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
12763         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
12764         (s_ifmt_shift_bits): New function.
12765         (set_stat_type): New function.
12766         (fts_build): When not calling fts_stat, call set_stat_type
12767         to propagate dirent.d_type info to fts_read caller.
12768         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
12769         fts_statp->st_mode type information may be valid.
12770
12771 2008-11-28  Simon Josefsson  <simon@josefsson.org>
12772
12773         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
12774         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
12775         <sds@gnu.org>.
12776
12777 2008-11-20  Bruno Haible  <bruno@clisp.org>
12778
12779         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
12780         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
12781         INCLUDE_NEXT.
12782         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
12783         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
12784         * modules/math (Makefile.am): Substitute
12785         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
12786         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
12787
12788 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
12789             Bruno Haible  <bruno@clisp.org>
12790
12791         * lib/stdint.in.h: Define all type macros so that their expansion is
12792         a single typedef'ed token. Fixes a compilation failure in Boost which
12793         does "using ::int8_t;".
12794
12795 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12796
12797         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
12798         gl_MANYWARN_ALL_GCC.
12799         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
12800         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
12801         * modules/manywarnings: New file.
12802         * MODULES.html.sh: Mention manywarnings module.
12803
12804 2008-11-18  Bruno Haible  <bruno@clisp.org>
12805
12806         * doc/gnulib-tool.texi (Unit tests): New section.
12807
12808 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12809
12810         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
12811         paths like 'lib/po/foo.po'.
12812
12813 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12814
12815         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
12816         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
12817
12818 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12819
12820         * m4/warnings.m4: Use CPPFLAGS to really check whether the
12821         parameter works.
12822
12823 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12824
12825         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
12826
12827 2008-11-17  Bruce Korb  <bkorb@gnu.org>
12828
12829         * modules/parse-duration-tests: New file.
12830         * tests/test-parse-duration.sh: New file.
12831         * tests/test-parse-duration.c: New file.
12832
12833         New module 'parse-duration'.
12834         * lib/parse-duration.h: New file.
12835         * lib/parse-duration.c: New file.
12836         * modules/parse-duration: New file.
12837
12838 2008-11-17  Bruno Haible  <bruno@clisp.org>
12839
12840         * tests/test-select-out.sh: Comment out the first pipe test.
12841         Reported by Simon Josefsson.
12842
12843 2008-11-17  Bruno Haible  <bruno@clisp.org>
12844
12845         * modules/getaddrinfo (Depends-on): Add servent, hostent.
12846         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
12847         gl_HOSTENT.
12848
12849 2008-11-17  Bruno Haible  <bruno@clisp.org>
12850
12851         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
12852         -lnetwork and -lnet. Needed for Haiku and BeOS.
12853
12854 2008-11-16  Bruno Haible  <bruno@clisp.org>
12855
12856         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
12857
12858 2008-11-16  Bruno Haible  <bruno@clisp.org>
12859
12860         Avoid test failure on Haiku.
12861         * tests/test-fsync.c: Include <errno.h>.
12862         (main): Don't require that fsync (0) fails.
12863
12864 2008-11-15  Bruno Haible  <bruno@clisp.org>
12865
12866         New module 'hostent'.
12867         * modules/hostent: New file.
12868         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
12869
12870 2008-11-15  Bruno Haible  <bruno@clisp.org>
12871
12872         New module 'servent'.
12873         * modules/servent: New file.
12874         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
12875
12876 2008-11-15  Bruno Haible  <bruno@clisp.org>
12877
12878         Avoid generating same test program with two different rules.
12879         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
12880         test-frexp to test-frexp-nolibm.
12881         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
12882         test-frexpl to test-frexpl-nolibm.
12883
12884 2008-11-15  Bruno Haible  <bruno@clisp.org>
12885
12886         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
12887         $(FREXPL_LIBM).
12888
12889 2008-11-15  Bruno Haible  <bruno@clisp.org>
12890
12891         * lib/netdb.in.h: Activate the definitions also when the system's
12892         <netdb.h> has 'struct addrinfo'.
12893         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
12894         EAI_OVERFLOW or AI_NUMERICSERV.
12895         * doc/posix-headers/netdb.texi: Document the problem.
12896
12897 2008-11-15  Bruno Haible  <bruno@clisp.org>
12898
12899         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
12900
12901         Make the 'sched' module work on platforms where <sched.h> exists but
12902         is incomplete (such as Haiku).
12903         * lib/sched.in.h; Include the system's <sched.h> if it exists.
12904         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
12905         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
12906         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
12907         HAVE_STRUCT_SCHED_PARAM.
12908         * modules/sched (Depends-on): Add include_next.
12909         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
12910         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
12911         * doc/posix-headers/sched.texi: Document the issue.
12912
12913 2008-11-13  Jim Meyering  <meyering@redhat.com>
12914
12915         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
12916         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
12917         test would fail due to the difference in the Report bugs to ...
12918         line.  The expected address is empty, "<>", while the actual
12919         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
12920
12921 2008-11-12  Bruno Haible  <bruno@clisp.org>
12922
12923         lstat: don't compile lstat.c on systems lacking lstat
12924         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
12925         which don't have lstat; this is handled by lib/sys_stat.in.h already.
12926         Reported by Daniel P. Berrange via Jim Meyering.
12927
12928 2008-11-12  Jim Meyering  <meyering@redhat.com>
12929
12930         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
12931
12932 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12933
12934         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
12935         instead.
12936
12937 2008-11-12  Bruno Haible  <bruno@clisp.org>
12938
12939         * lib/unicodeio.c: Include unistr.h.
12940         (utf8_wctomb): Remove function.
12941         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
12942
12943 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12944
12945         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
12946         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
12947         <bruno@clisp.org>.
12948         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
12949
12950 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12951
12952         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
12953         * doc/gnulib.texi: Add section for warnings.
12954
12955 2008-11-11  Bruno Haible  <bruno@clisp.org>
12956
12957         * lib/sockets.h: Add a comment.
12958
12959 2008-11-11  Karl Berry  <karl@gnu.org>
12960
12961         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
12962
12963 2008-11-11  Eric Blake  <ebb9@byu.net>
12964
12965         fdl.texi: avoid git symlinks
12966         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
12967
12968 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12969
12970         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
12971
12972 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12973
12974         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
12975         (gl_WARN_ADD): Substitute $2 if literal.
12976
12977 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12978
12979         * m4/warning.m4: Remove.
12980
12981 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12982
12983         * m4/warnings.m4: Almost complete rewrite. :-)
12984
12985 2008-11-10  Simon Josefsson  <simon@josefsson.org>
12986
12987         * modules/warnings: New module.
12988         * m4/warnings.m4: New file.
12989         * MODULES.html.sh: Mention warnings module.
12990         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
12991         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12992
12993 2008-11-10  Eric Blake  <ebb9@byu.net>
12994
12995         fdl.texi: make a symlink to the latest version
12996         * doc/standards.texi: Revert today's earlier change.
12997         * doc/fdl-1.2.texi: Rename from old fdl.texi...
12998         * doc/fdl.texi: ...and replace this with a symlink to the newer
12999         fdl-1.3.texi.
13000
13001 2008-11-10  Bruno Haible  <bruno@clisp.org>
13002
13003         * tests/test-select-fd.c (main): Accept the result file name as fourth
13004         argument.
13005         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
13006         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
13007
13008 2008-11-10  Bruno Haible  <bruno@clisp.org>
13009
13010         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
13011         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
13012         as autoconf-substituted macros.
13013         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
13014         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
13015         gl_NETDB_H_DEFAULTS. Set these variables.
13016         * modules/netdb (Makefile.am): Substitute these variables.
13017
13018 2008-11-10  Eric Blake  <ebb9@byu.net>
13019
13020         standards.texi: include correct file for FDL 1.3
13021         * doc/standards.texi (GNU Free Documentation License): Change
13022         include file to pull in FDL 1.3, not 1.2.
13023
13024         fdl.texi: revert accidental change to license
13025         * doc/fdl.texi: This is FDL 1.2, not 1.3.
13026
13027 2008-11-10  Bruno Haible  <bruno@clisp.org>
13028
13029         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
13030         cross-compiling guesses also when the native compile gives no result.
13031
13032 2008-11-10  Bruno Haible  <bruno@clisp.org>
13033
13034         * lib/spawni.c (__spawni): Force variable into the stack.
13035
13036 2008-11-10  Bruno Haible  <bruno@clisp.org>
13037
13038         Add support for Haiku.
13039         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
13040         glibc and BeOS, but also on Haiku.
13041         * lib/fpurge.c (fpurge): Likewise.
13042         * lib/freadable.c (freadable): Likewise.
13043         * lib/freadahead.c (freadahead): Likewise.
13044         * lib/freading.c (freading): Likewise.
13045         * lib/freadptr.c (freadptr): Likewise.
13046         * lib/freadseek.c (freadptrinc): Likewise.
13047         * lib/fseeko.c (rpl_fseeko): Likewise.
13048         * lib/fseterr.c (fseterr): Likewise.
13049         * lib/fwritable.c (fwritable): Likewise.
13050         * lib/fwriting.c (fwriting): Likewise.
13051         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
13052
13053 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
13054
13055         * lib/config.charset: Treat Haiku like BeOS.
13056
13057 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
13058
13059         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
13060         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
13061
13062 2008-11-08  Bruno Haible  <bruno@clisp.org>
13063
13064         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
13065         AC_CACHE_CHECK.
13066
13067 2008-11-08  Bruno Haible  <bruno@clisp.org>
13068
13069         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
13070
13071 2008-11-08  Bruno Haible  <bruno@clisp.org>
13072
13073         * tests/test-select-fd.c: New file.
13074         * tests/test-select-in.sh: New file.
13075         * tests/test-select-out.sh: New file.
13076         * tests/test-select-stdin.c: New file.
13077         * modules/select-tests (Files): Add the new files.
13078         (Depends-on): Add gettimeofday.
13079         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
13080         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
13081         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
13082
13083 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
13084             Bruno Haible  <bruno@clisp.org>
13085
13086         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
13087
13088 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
13089
13090         * build-aux/pmccabe2html: Added support for C++ source files.
13091
13092 2008-11-05  Ben Pfaff  <blp@gnu.org>
13093
13094         Fix lib/close.c build on Windows.
13095         * modules/close (Files): Add lib/w32sock.h.
13096
13097 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
13098
13099         Accept Bison's NEWS format.
13100         * build-aux/announce-gen (print_news_deltas): Tweak
13101         $re_prefix.
13102
13103 2008-11-04  Bruno Haible  <bruno@clisp.org>
13104
13105         * modules/random_r (Maintainer): Add glibc.
13106
13107 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13108
13109         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
13110         by karl@freefriends.org (Karl Berry).
13111         * doc/alloca.texi: Likewise.
13112         * doc/c-ctype.texi: Likewise.
13113         * doc/c-strcase.texi: Likewise.
13114         * doc/c-strcaseeq.texi: Likewise.
13115         * doc/c-strcasestr.texi: Likewise.
13116         * doc/c-strstr.texi: Likewise.
13117         * doc/c-strtod.texi: Likewise.
13118         * doc/c-strtold.texi: Likewise.
13119         * doc/ctime.texi: Likewise.
13120         * doc/error.texi: Likewise.
13121         * doc/fdl.texi: Likewise.
13122         * doc/gcd.texi: Likewise.
13123         * doc/getdate.texi: Likewise.
13124         * doc/gnulib-intro.texi: Likewise.
13125         * doc/gnulib-tool.texi: Likewise.
13126         * doc/gnulib.texi: Likewise.
13127         * doc/inet_ntoa.texi: Likewise.
13128         * doc/maintain.texi: Likewise.
13129         * doc/make-stds.texi: Likewise.
13130         * doc/quote.texi: Likewise.
13131         * doc/regexprops-generic.texi: Likewise.
13132         * doc/standards.texi: Likewise.
13133         * doc/verify.texi: Likewise.
13134         * doc/visibility.texi: Likewise.
13135         * doc/gnulib.texi (GNU Free Documentation License): Include
13136         fdl-1.3.texi instead of fdl.texi.
13137
13138 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13139
13140         * doc/fdl-1.3.texi: New file, from
13141         <http://www.gnu.org/licenses/fdl-1.3.texi>.
13142         * modules/fdl-1.3: Add.
13143         * MODULES.html.sh: Add fdl-1.3.
13144
13145 2008-11-03  Bruno Haible  <bruno@clisp.org>
13146
13147         Make determination of absolute name of header file work with AIX xlc.
13148         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
13149         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
13150         preprocessing.
13151         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13152         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
13153
13154 2008-11-03  Simon Josefsson  <simon@josefsson.org>
13155
13156         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
13157         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
13158         <ludo@gnu.org>.
13159
13160 2008-11-02  Bruno Haible  <bruno@clisp.org>
13161
13162         Mark 'strpbrk' obsolete.
13163         * modules/strpbrk (Status, Notice): New sections.
13164         * modules/strtok_r (Depends-on): Add strpbrk.
13165
13166 2008-11-02  Bruno Haible  <bruno@clisp.org>
13167
13168         Mark 'strdup' obsolete.
13169         * modules/strdup (Status, Notice): New sections.
13170         * modules/findprog (Depends-on): Add strdup.
13171         * modules/getaddrinfo (Depends-on): Likewise.
13172         * modules/localename (Depends-on): Likewise.
13173         * modules/relocatable-lib (Depends-on): Likewise.
13174         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
13175         * modules/relocatable-prog (Depends-on): Likewise.
13176         * modules/trim (Depends-on): Likewise.
13177         * modules/unictype/gen-ctype (Depends-on): Likewise.
13178         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13179
13180 2008-11-02  Bruno Haible  <bruno@clisp.org>
13181
13182         Mark 'strcspn' obsolete.
13183         * modules/strcspn (Status, Notice): New sections.
13184
13185 2008-11-02  Bruno Haible  <bruno@clisp.org>
13186
13187         Mark 'rmdir' obsolete.
13188         * modules/rmdir (Status, Notice): New sections.
13189         * modules/clean-temp (Depends-on): Add rmdir.
13190         * modules/openat (Depends-on): Likewise.
13191
13192 2008-11-02  Bruno Haible  <bruno@clisp.org>
13193
13194         Mark 'raise' obsolete.
13195         * modules/raise (Status, Notice): New sections.
13196         (Include): Specify <signal.h>.
13197         * modules/stdio (Depends-on): Add raise.
13198         * modules/write (Depends-on): Likewise.
13199
13200 2008-11-02  Bruno Haible  <bruno@clisp.org>
13201
13202         Mark 'memset' obsolete.
13203         * modules/memset (Status, Notice): New sections.
13204
13205 2008-11-02  Bruno Haible  <bruno@clisp.org>
13206
13207         Mark 'memmove' obsolete.
13208         * modules/memmove (Status, Notice): New sections.
13209         * modules/argp (Depends-on): Add memmove.
13210         * modules/argz (Depends-on): Likewise.
13211         * modules/canonicalize (Depends-on): Likewise.
13212         * modules/canonicalize-lgpl (Depends-on): Likewise.
13213         * modules/fts (Depends-on): Likewise.
13214         * modules/getcwd (Depends-on): Likewise.
13215         * modules/human (Depends-on): Likewise.
13216         * modules/regex (Depends-on): Likewise.
13217         * modules/striconveh (Depends-on): Likewise.
13218         * modules/trim (Depends-on): Likewise.
13219         * modules/unistr/u8-move (Depends-on): Likewise.
13220         * modules/unistr/u16-move (Depends-on): Likewise.
13221         * modules/unistr/u32-move (Depends-on): Likewise.
13222
13223 2008-11-02  Bruno Haible  <bruno@clisp.org>
13224
13225         Mark 'memcpy' obsolete.
13226         * modules/memcpy (Status, Notice): New sections.
13227
13228 2008-11-02  Bruno Haible  <bruno@clisp.org>
13229
13230         Mark 'memcmp' obsolete.
13231         * modules/memcmp (Status, Notice): New sections.
13232         * modules/argmatch (Depends-on): Add memchr.
13233         * modules/backupfile (Depends-on): Likewise.
13234         * modules/c-strcasestr (Depends-on): Likewise.
13235         * modules/crypto/des (Depends-on): Likewise.
13236         * modules/csharpcomp (Depends-on): Likewise.
13237         * modules/fnmatch (Depends-on): Likewise.
13238         * modules/git-merge-changelog (Depends-on): Likewise.
13239         * modules/isnand (Depends-on): Likewise.
13240         * modules/isnand-nolibm (Depends-on): Likewise.
13241         * modules/isnanf (Depends-on): Likewise.
13242         * modules/isnanf-nolibm (Depends-on): Likewise.
13243         * modules/isnanl (Depends-on): Likewise.
13244         * modules/isnanl-nolibm (Depends-on): Likewise.
13245         * modules/mbchar (Depends-on): Likewise.
13246         * modules/memcoll (Depends-on): Likewise.
13247         * modules/quotearg (Depends-on): Likewise.
13248         * modules/regex (Depends-on): Likewise.
13249         * modules/relocatable-prog (Depends-on): Likewise.
13250         * modules/same (Depends-on): Likewise.
13251         * modules/signbit (Depends-on): Likewise.
13252         * modules/strcasestr-simple (Depends-on): Likewise.
13253         * modules/unictype/gen-ctype (Depends-on): Likewise.
13254         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13255         * modules/uniname/uniname (Depends-on): Likewise.
13256         * modules/unistr/u8-cmp (Depends-on): Likewise.
13257
13258 2008-11-02  Bruno Haible  <bruno@clisp.org>
13259
13260         Mark 'memchr' obsolete.
13261         * modules/memchr (Status, Notice): New sections.
13262         * modules/argp (Depends-on): Add memchr.
13263         * modules/base64 (Depends-on): Likewise.
13264         * modules/c-strcasestr (Depends-on): Likewise.
13265         * modules/chdir-long (Depends-on): Likewise.
13266         * modules/fnmatch (Depends-on): Likewise.
13267         * modules/getsubopt (Depends-on): Likewise.
13268         * modules/git-merge-changelog (Depends-on): Likewise.
13269         * modules/glob (Depends-on): Likewise.
13270         * modules/strcasestr-simple (Depends-on): Likewise.
13271         * modules/strnlen (Depends-on): Likewise.
13272
13273 2008-11-02  Bruno Haible  <bruno@clisp.org>
13274
13275         Mark 'atexit' obsolete.
13276         * modules/atexit (Status, Notice): New sections.
13277         * modules/chdir-long (Depends-on): Add atexit.
13278         * modules/wait-process (Depends-on): Likewise.
13279
13280 2008-11-02  Bruno Haible  <bruno@clisp.org>
13281
13282         * gnulib-tool: New option --with-obsolete.
13283         (func_usage): Document it.
13284         (func_modules_transitive_closure): Drop obsolete dependencies if
13285         incobsolete is not true.
13286         (func_import): Read and save the incobsolete variable to the cache.
13287
13288 2008-11-02  Bruno Haible  <bruno@clisp.org>
13289
13290         * modules/TEMPLATE-EXTENDED: New field 'Status'.
13291         * gnulib-tool: New option --extract-status.
13292         (func_usage): Document it.
13293         (sed_extract_prog): Recognize it.
13294         (func_get_status): New function.
13295
13296 2008-10-30  Simon Josefsson  <simon@josefsson.org>
13297
13298         * modules/sockets (License): Change from LGPL to LGPLv2+.
13299
13300 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13301
13302         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
13303
13304 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13305
13306         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13307         Mention times and sys_times.
13308         * modules/sys_times, modules/sys_times-tests: New modules.
13309         * modules/times, modules/times-tests: Likewise
13310         * m4/sys_times_h.m4: New file.
13311         * lib/sys_times.in.h: Likewise
13312         * lib/times.c: Likewise.
13313         * tests/test-sys_times.c: Likewise.
13314         * tests/test-times.c: Likewise.
13315         * doc/posix-headers/sys_times.texi: Update.
13316         * doc/posix-functions/times.texi: Update.
13317
13318 2008-10-28  Jim Meyering  <meyering@redhat.com>
13319
13320         * modules/tempname (Depends-on): Add lstat.
13321
13322         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
13323
13324 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13325
13326         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
13327         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
13328         using idiom used elsewhere in gnulib.
13329
13330 2008-10-27  Jim Meyering  <meyering@redhat.com>
13331
13332         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
13333
13334 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13335
13336         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
13337         TESTS_ENVIRONMENT, for shell scripts that needs to call built
13338         programs.
13339         * tests/test-argp-2.sh: Use $EXEEXT when needed.
13340
13341 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13342
13343         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
13344
13345 2008-10-27  Bruno Haible  <bruno@clisp.org>
13346
13347         * tests/test-lstat.c: Include <stdio.h>.
13348
13349 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13350
13351         * modules/lstat-tests: New module.
13352         * tests/test-lstat.c: New file.
13353
13354 2008-10-26  Jim Meyering  <meyering@redhat.com>
13355
13356         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
13357
13358 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13359             Bruno Haible  <bruno@clisp.org>
13360
13361         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
13362         * modules/configmake (Include): Add a note that the include must come
13363         after all system headers.
13364         * lib/javaversion.c: Include configmake.h after all other includes.
13365
13366 2008-10-26  Bruno Haible  <bruno@clisp.org>
13367
13368         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
13369         HAVE_STRUCT_RANDOM_DATA to 1.
13370         (gl_STDLIB_H): Simplify.
13371
13372 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13373
13374         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
13375         substitute HAVE_STRUCT_RANDOM_DATA.
13376         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
13377         random_data.
13378         * modules/stdlib (Makefile.am): Substitute
13379         HAVE_STRUCT_RANDOM_DATA.
13380
13381 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13382
13383         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
13384         * doc/gnulib-intro.texi (Copyright): Likewise.
13385
13386 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13387
13388         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
13389         findings.
13390
13391 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
13392             Bruno Haible  <bruno@clisp.org>
13393
13394         * lib/unistd.in.h: Include <winsock2.h>.
13395         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
13396         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
13397         Provide dummy declarations.
13398         (gethostname): Override.
13399         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
13400         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
13401         gl_PREREQ_SYS_H_WINSOCK2.
13402         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
13403         * doc/posix-functions/gethostname.texi: More details.
13404
13405 2008-10-25  Bruno Haible  <bruno@clisp.org>
13406
13407         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
13408         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
13409         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
13410
13411         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
13412         here ...
13413         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
13414         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
13415         gl_UNISTD_H_DEFAULTS.
13416
13417 2008-10-25  Eric Blake  <ebb9@byu.net>
13418
13419         signbit: avoid spurious compiler failure
13420         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
13421         declarations inside function.
13422
13423 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13424             Bruno Haible  <bruno@clisp.org>
13425
13426         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
13427         * modules/random_r (Depends-on): Add stdint.
13428
13429 2008-10-24  Bruno Haible  <bruno@clisp.org>
13430
13431         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
13432         Eggert.
13433         * modules/strerror (License): Likewise.
13434
13435 2008-10-24  Jim Meyering  <meyering@redhat.com>
13436
13437         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
13438         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
13439
13440 2008-10-24  Eric Blake  <ebb9@byu.net>
13441
13442         getgroups: fix compilation when getgroups is available
13443         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
13444         but with <config.h> override of getgroups disabled.
13445
13446 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13447
13448         * doc/gnulib.texi (Header files): Add note about C++ problems.
13449         Explained by Bruno Haible <bruno@clisp.org>.
13450
13451 2008-10-23  Bruno Haible  <bruno@clisp.org>
13452
13453         Define a dummy SA_NODEFER macro on Interix.
13454         * lib/signal.in.h (SA_NODEFER): Define fallback.
13455         Reported by Aleksey Cheusov <cheusov@tut.by> via
13456         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
13457
13458 2008-10-23  Bruno Haible  <bruno@clisp.org>
13459
13460         * modules/freadahead (License): Change to LGPLv2+.
13461         Suggested by Simon Josefsson.
13462
13463 2008-10-23  Jim Meyering  <meyering@redhat.com>
13464
13465         random_r: new module
13466         * modules/random_r: New file.
13467         * m4/random_r.m4: New file.
13468         * lib/random_r.c: New file, from glibc.
13469         * modules/random_r-tests: New file.
13470         * tests/test-random_r.c: New file.
13471         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
13472          Declare.
13473         (RAND_MAX): Define.
13474         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
13475         * modules/stdlib: Substitute them, too.
13476         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
13477         * doc/glibc-functions/initstate_r.texi: Mention the new module.
13478         * doc/glibc-functions/random_r.texi: Likewise.
13479         * doc/glibc-functions/setstate_r.texi: Likewise.
13480         * doc/glibc-functions/srandom_r.texi: Likewise.
13481         * config/srclist.txt: Mention it.
13482
13483 2008-10-23  David Lutterkort  <lutter@redhat.com>
13484
13485         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
13486         link requirement
13487
13488 2008-10-23  Jim Meyering  <meyering@redhat.com>
13489
13490         selinux-h: mark parameters of stub functions as intentionally unused
13491         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
13492         * lib/se-context.in.h: Likewise.
13493
13494 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13495
13496         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
13497
13498 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13499
13500         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
13501
13502 2008-10-22  Eric Blake  <ebb9@byu.net>
13503
13504         glthread/thread: avoid compiler warning
13505         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
13506         Add unreachable abort to silence compiler.
13507
13508 2008-10-22  Eric Blake  <ebb9@byu.net>
13509
13510         netdb: also supply struct addrinfo for cygwin 1.5.x
13511         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
13512         older cygwin.
13513         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
13514         cygwin.
13515         * doc/posix-headers/netdb.texi (netdb.h): Document this.
13516
13517 2008-10-22  Bruno Haible  <bruno@clisp.org>
13518
13519         * users.txt: Update entry about pspp.
13520
13521 2008-10-21  Bruno Haible  <bruno@clisp.org>
13522
13523         Simplification.
13524         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
13525         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
13526
13527         Simplification.
13528         * lib/ioctl.c (ioctl): Don't undefine.
13529         * lib/socket.c (socket): Don't undefine.
13530
13531         Remove unused module indicator macros.
13532         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
13533         GNULIB_$1 as a C macro.
13534
13535         * doc/posix-functions/close.texi: Undo last change.
13536         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
13537         Windows platforms.
13538
13539 2008-10-21  Bruno Haible  <bruno@clisp.org>
13540
13541         Add gethostname() declaration to <unistd.h>.
13542         * lib/unistd.in.h (gethostname): New declaration.
13543         * lib/gethostname.c: Include <unistd.h>.
13544         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
13545         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
13546         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
13547         and HAVE_GETHOSTNAME.
13548         * modules/gethostname (Depends-on): Add unistd.
13549         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13550         (Include): Specify <unistd.h>.
13551         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
13552         HAVE_GETHOSTNAME.
13553         * tests/test-gethostname.c: Include <unistd.h> first.
13554
13555 2008-10-21  Bruno Haible  <bruno@clisp.org>
13556
13557         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
13558         * modules/select-tests (Depends-on): Likewise.
13559         Reported by Simon Josefsson.
13560
13561 2008-10-21  Simon Josefsson  <simon@josefsson.org>
13562
13563         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
13564         * lib/accept.c: New file, based on winsock.c.
13565         * lib/bind.c: New file, based on winsock.c.
13566         * lib/connect.c: New file, based on winsock.c.
13567         * lib/getpeername.c: New file, based on winsock.c.
13568         * lib/getsockname.c: New file, based on winsock.c.
13569         * lib/getsockopt.c: New file, based on winsock.c.
13570         * lib/ioctl.c: New file, based on winsock.c.
13571         * lib/listen.c: New file, based on winsock.c.
13572         * lib/recv.c: New file, based on winsock.c.
13573         * lib/recvfrom.c: New file, based on winsock.c.
13574         * lib/send.c: New file, based on winsock.c.
13575         * lib/sendto.c: New file, based on winsock.c.
13576         * lib/setsockopt.c: New file, based on winsock.c.
13577         * lib/shutdown.c: New file, based on winsock.c.
13578         * lib/socket.c: New file, based on winsock.c.
13579         * lib/w32sock.h: New file, based on winsock.c.
13580         * lib/winsock.c: Remove file.
13581         * modules/accept: Likewise.
13582         * modules/bind: Likewise.
13583         * modules/connect: Likewise.
13584         * modules/getpeername: Likewise.
13585         * modules/getsockname: Likewise.
13586         * modules/getsockopt: Likewise.
13587         * modules/ioctl: Likewise.
13588         * modules/listen: Likewise.
13589         * modules/recv: Likewise.
13590         * modules/recvfrom: Likewise.
13591         * modules/send: Likewise.
13592         * modules/sendto: Likewise.
13593         * modules/setsockopt: Likewise.
13594         * modules/shutdown: Likewise.
13595         * modules/socket: Use socket.c instead of winsock.c.
13596         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
13597         * doc/posix-functions/accept.texi: Doc fix.
13598         * doc/posix-functions/bind.texi: Doc fix.
13599         * doc/posix-functions/close.texi: Doc fix.
13600         * doc/posix-functions/connect.texi: Doc fix.
13601         * doc/posix-functions/getpeername.texi: Doc fix.
13602         * doc/posix-functions/getsockname.texi: Doc fix.
13603         * doc/posix-functions/getsockopt.texi: Doc fix.
13604         * doc/posix-functions/ioctl.texi: Doc fix.
13605         * doc/posix-functions/listen.texi: Doc fix.
13606         * doc/posix-functions/recv.texi: Doc fix.
13607         * doc/posix-functions/recvfrom.texi: Doc fix.
13608         * doc/posix-functions/send.texi: Doc fix.
13609         * doc/posix-functions/sendto.texi: Doc fix.
13610         * doc/posix-functions/setsockopt.texi: Doc fix.
13611         * doc/posix-functions/shutdown.texi: Doc fix.
13612         * doc/posix-functions/socket.texi: Doc fix.
13613
13614 2008-10-20  Bruno Haible  <bruno@clisp.org>
13615
13616         Take into account the role of SIGABRT_COMPAT on Windows 2008.
13617         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
13618         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
13619         as an alias for SIGABRT.
13620         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
13621         (sigaction): Map it to SIGABRT.
13622         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
13623
13624 2008-10-20  Bruno Haible  <bruno@clisp.org>
13625
13626         * lib/fts.c: Don't include lstat.h.
13627         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
13628
13629         Move the lstat() declaration to <sys/stat.h>.
13630         * lib/lstat.h: Remove file.
13631         * lib/sys_stat.in.h: Add special invocation convention.
13632         (lstat): New declaration.
13633         * lib/lstat.c (orig_lstat): New function.
13634         (rpl_lstat): Use orig_lstat instead of lstat.
13635         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
13636         AC_C_INLINE. Set REPLACE_LSTAT.
13637         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
13638         and REPLACE_LSTAT.
13639         * modules/lstat (Files): Remove lib/lstat.h.
13640         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13641         (Include): Specify <sys/stat.h> instead of lstat.h.
13642         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
13643         REPLACE_LSTAT.
13644         * NEWS: Mention the change.
13645
13646 2008-10-20  Bruno Haible  <bruno@clisp.org>
13647
13648         * modules/posix_spawn-tests: New file.
13649         * tests/test-posix_spawn3.c: New file.
13650
13651 2008-10-20  Bruno Haible  <bruno@clisp.org>
13652
13653         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
13654         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13655         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
13656         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13657         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
13658
13659 2008-10-20  Bruno Haible  <bruno@clisp.org>
13660
13661         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
13662         of posix_spawn on AIX 5.3.
13663
13664 2008-10-20  Bruno Haible  <bruno@clisp.org>
13665
13666         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
13667
13668 2008-10-20  Bruno Haible  <bruno@clisp.org>
13669
13670         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
13671         of AC_LANG_PROGRAM.
13672
13673 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13674
13675         * lib/netdb.in.h: Don't define GNU specific constants until they
13676         are supported or needed.  Reported by Bruno Haible
13677         <bruno@clisp.org>.
13678
13679 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13680
13681         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
13682
13683 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13684
13685         * lib/getaddrinfo.h: Remove file.
13686         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
13687         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
13688         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
13689         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
13690         * modules/netdb: Substitute GNULIB_GETADDRINFO.
13691         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
13692         * tests/test-getaddrinfo.c: Likewise.
13693         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
13694         * NEWS: Mention change.
13695
13696 2008-10-19  Bruno Haible  <bruno@clisp.org>
13697
13698         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
13699
13700 2008-10-19  Bruno Haible  <bruno@clisp.org>
13701
13702         * lib/wait-process.c: Include simply <sys/wait.h>.
13703         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
13704         WIFSTOPPED): Remove fallback definitions.
13705         * modules/wait-process (Depends-on): Add sys_wait.
13706
13707         New module 'sys_wait'.
13708         * modules/sys_wait: New file.
13709         * lib/sys_wait.in.h: New file, partially copied from
13710         lib/wait-process.c.
13711         * m4/sys_wait_h.m4: New file.
13712         * doc/posix-headers/sys_wait.texi: Mention the new module.
13713
13714 2008-10-19  Bruno Haible  <bruno@clisp.org>
13715
13716         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
13717
13718 2008-10-19  Bruno Haible  <bruno@clisp.org>
13719
13720         Assume that waitpid() fills an 'int' status, not a 'union wait'.
13721         * lib/wait-process.c (WAIT_T): Remove type.
13722         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
13723         (wait_subprocess): Update.
13724
13725 2008-10-19  Bruno Haible  <bruno@clisp.org>
13726
13727         New module 'atoll'.
13728         * modules/atoll: New file.
13729         * lib/stdlib.in.h (atoll): New declaration.
13730         * lib/atoll.c: New file, from glibc with modifications.
13731         * m4/atoll.m4: New file.
13732         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
13733         HAVE_ATOLL.
13734         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
13735         * doc/posix-functions/atoll.texi: Mention the new module.
13736
13737 2008-10-19  Bruno Haible  <bruno@clisp.org>
13738
13739         Add strtoull() declaration to <stdlib.h>.
13740         * lib/stdlib.in.h (strtoull): New declaration.
13741         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
13742         Set HAVE_STRTOULL.
13743         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
13744         HAVE_STRTOULL.
13745         * modules/strtoull (Depends-on): Add stdlib.
13746         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13747         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
13748         HAVE_STRTOULL.
13749
13750 2008-10-19  Bruno Haible  <bruno@clisp.org>
13751
13752         Add strtoll() declaration to <stdlib.h>.
13753         * lib/stdlib.in.h (strtoll): New declaration.
13754         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
13755         Set HAVE_STRTOLL.
13756         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
13757         HAVE_STRTOLL.
13758         * modules/strtoll (Depends-on): Add stdlib.
13759         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13760         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
13761
13762 2008-10-19  Bruno Haible  <bruno@clisp.org>
13763
13764         * modules/bcopy (Depends-on): Add strings.
13765         (Include): Specify <strings.h>.
13766
13767 2008-10-19  Bruno Haible  <bruno@clisp.org>
13768
13769         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
13770
13771 2008-10-19  Bruno Haible  <bruno@clisp.org>
13772
13773         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
13774         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
13775         mingw.
13776
13777 2008-10-19  Bruno Haible  <bruno@clisp.org>
13778
13779         * lib/atanl.c: Don't include isnanl.h.
13780         * lib/cosl.c: Likewise.
13781         * lib/ldexpl.c: Likewise.
13782         * lib/logl.c: Likewise.
13783         * lib/sinl.c: Likewise.
13784         * lib/sqrtl.c: Likewise.
13785         * lib/tanl.c: Likewise.
13786
13787         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
13788         * lib/isnanf.h: Remove file.
13789         * lib/isnand.h: Remove file.
13790         * lib/isnanl.h: Remove file.
13791         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
13792         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
13793         macros.
13794         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
13795         HAVE_ISNANF, don't define it as a C macro.
13796         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
13797         HAVE_ISNAND, don't define it as a C macro.
13798         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
13799         HAVE_ISNANL, don't define it as a C macro.
13800         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
13801         HAVE_ISNAN[FDL].
13802         * modules/isnanf (Files): Remove lib/isnanf.h.
13803         (Depends-on): Add math.
13804         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13805         (Include): Specify <math.h> instead of isnanf.h.
13806         * modules/isnand (Files): Remove lib/isnand.h.
13807         (Depends-on): Add math.
13808         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13809         (Include): Specify <math.h> instead of isnand.h.
13810         * modules/isnanl (Files): Remove lib/isnanl.h.
13811         (Depends-on): Add math.
13812         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13813         (Include): Specify <math.h> instead of isnanl.h.
13814         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
13815         HAVE_ISNAN[FDL].
13816         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
13817         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
13818         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
13819         * NEWS: Mention the change.
13820
13821 2008-10-18  Bruno Haible  <bruno@clisp.org>
13822
13823         Add getusershell(), setusershell(), endusershell() declarations to
13824         <unistd.h>.
13825         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
13826         declarations.
13827         * lib/getusershell.c: Include unistd.h.
13828         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
13829         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13830         HAVE_GETUSERSHELL.
13831         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
13832         and HAVE_GETUSERSHELL.
13833         * modules/getusershell (Depends-on): Add unistd, extensions.
13834         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13835         (Include): Specify <unistd.h>.
13836         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
13837         HAVE_GETUSERSHELL.
13838
13839 2008-10-18  Bruno Haible  <bruno@clisp.org>
13840
13841         Add a getloadavg() declaration to <stdlib.h>.
13842         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
13843         getloadavg declaration.
13844         (getloadavg): New declaration.
13845         * lib/getloadavg.c: Include <stdlib.h> first.
13846         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
13847         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
13848         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
13849         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
13850         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13851         * modules/getloadavg (Depends-on): Add stdlib, extensions.
13852         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13853         (Include): Specify <stdlib.h>.
13854         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
13855         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13856
13857 2008-10-18  Bruno Haible  <bruno@clisp.org>
13858
13859         * lib/dirchownmod.c: Don't include lchmod.h.
13860
13861         Move the lchmod() declaration to <sys/stat.h>.
13862         * lib/lchmod.h: Remove file.
13863         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
13864         (lchmod): New declaration, moved here from lib/lchown.h.
13865         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
13866         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
13867         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
13868         and HAVE_LCHMOD.
13869         * modules/lchmod (Files): Remove lib/lchmod.h.
13870         (Depends-on): Add sys_stat, extensions.
13871         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13872         (Include): Specify <sys/stat.h> instead of lchmod.h.
13873         * modules/sys_stat (Depends-on): Add link-warning.
13874         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
13875         definition of GL_LINK_WARNING.
13876         * NEWS: Mention the change.
13877
13878 2008-10-18  Bruno Haible  <bruno@clisp.org>
13879
13880         * lib/fchdir.c: Don't include dirfd.h.
13881         * lib/fts.c: Likewise.
13882         * lib/getcwd.c: Likewise.
13883         * lib/glob.c: Likewise.
13884
13885         Move the dirfd() declaration to <dirent.h>.
13886         * lib/dirfd.h: Remove file.
13887         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
13888         (dirfd): New declaration.
13889         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
13890         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
13891         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
13892         HAVE_DECL_DIRFD.
13893         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
13894         HAVE_DECL_DIRFD.
13895         * modules/dirfd (Files): Remove lib/dirfd.h.
13896         (Depends-on): Add dirent, extensions.
13897         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
13898         (Include): Specify <dirent.h> instead of dirfd.h.
13899         * modules/dirent (Depends-on): Add link-warning.
13900         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
13901         definition of GL_LINK_WARNING.
13902         * NEWS: Mention the change.
13903
13904 2008-10-18  Bruno Haible  <bruno@clisp.org>
13905
13906         Move the euidaccess() declaration to <unistd.h>.
13907         * lib/euidaccess.h: Remove file.
13908         * lib/unistd.in.h (euidaccess): New declaration.
13909         * lib/euidaccess.c: Don't include euidaccess.h.
13910         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
13911         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
13912         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
13913         and HAVE_EUIDACCESS.
13914         * modules/euidaccess (Files): Remove lib/euidaccess.h.
13915         (Depends-on): Add unistd.
13916         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13917         (Include): Specify <unistd.h> instead of euidaccess.h.
13918         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
13919         HAVE_EUIDACCESS.
13920         * NEWS: Mention the change.
13921
13922 2008-10-18  Bruno Haible  <bruno@clisp.org>
13923
13924         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
13925
13926         Move the getdomainname() declaration to <unistd.h>.
13927         * lib/getdomainname.h: Remove file.
13928         * lib/unistd.in.h (getdomainname): New declaration.
13929         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
13930         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
13931         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13932         HAVE_GETDOMAINNAME.
13933         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13934         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
13935         * modules/getdomainname (Files): Remove lib/getdomainname.h.
13936         (Depends-on): Add unistd, extensions.
13937         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13938         (Includes): Specify <unistd.h> instead of getdomainname.h.
13939         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
13940         HAVE_GETDOMAINNAME.
13941         * NEWS: Mention the change.
13942
13943 2008-10-18  Bruno Haible  <bruno@clisp.org>
13944
13945         * modules/dirent: New file.
13946         * m4/dirent_h.m4: New file.
13947         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
13948         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
13949         * modules/fchdir (Files): Remove lib/dirent.in.h.
13950         (Depends-on): Add dirent.
13951         (Makefile.am): Move rules to modules/dirent.
13952         * doc/posix-headers/dirent.texi: Mention the new module.
13953
13954 2008-10-18  Bruno Haible  <bruno@clisp.org>
13955
13956         Avoid -Wunused-parameter warnings in public gnulib header files.
13957         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
13958         macro.
13959         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
13960
13961 2008-10-18  Bruno Haible  <bruno@clisp.org>
13962
13963         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
13964         * doc/glibc-functions/error.texi: Mention the module 'error'.
13965         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
13966         * doc/glibc-functions/getdomainname.texi: Mention the module
13967         'getdomainname'.
13968         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
13969         * doc/glibc-functions/getpagesize.texi: Mention the module
13970         'getpagesize'.
13971         * doc/glibc-functions/getusershell.texi: Mention the module
13972         'getusershell'.
13973         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
13974         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
13975         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
13976         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
13977         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
13978         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
13979         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
13980         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
13981         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
13982         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
13983         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
13984         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
13985         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
13986         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
13987
13988 2008-10-17  Bruno Haible  <bruno@clisp.org>
13989
13990         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
13991         HP-UX and IRIX, use -0.0L.
13992         * tests/test-ceill.c (minus_zero): Likewise.
13993         * tests/test-floorl.c (minus_zero): Likewise.
13994         * tests/test-frexpl.c (minus_zero): Likewise.
13995         * tests/test-isnan.c (minus_zerol): Likewise.
13996         * tests/test-isnanl.h (minus_zero): Likewise.
13997         * tests/test-ldexpl.c (minus_zero): Likewise.
13998         * tests/test-roundl.c (minus_zero): Likewise.
13999         * tests/test-signbit.c (minus_zerol): Likewise.
14000         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
14001         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
14002         * tests/test-truncl.c (minus_zero): Likewise.
14003         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
14004         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
14005         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
14006         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
14007
14008 2008-10-17  Bruno Haible  <bruno@clisp.org>
14009
14010         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
14011         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
14012         that it gets activated only for gcc >= 3.0.
14013         * lib/dirent.in.h: Likewise.
14014         * lib/errno.in.h: Likewise.
14015         * lib/fcntl.in.h: Likewise.
14016         * lib/float.in.h: Likewise.
14017         * lib/iconv.in.h: Likewise.
14018         * lib/inttypes.in.h: Likewise.
14019         * lib/locale.in.h: Likewise.
14020         * lib/math.in.h: Likewise.
14021         * lib/netdb.in.h: Likewise.
14022         * lib/netinet_in.in.h: Likewise.
14023         * lib/search.in.h: Likewise.
14024         * lib/signal.in.h: Likewise.
14025         * lib/spawn.in.h: Likewise.
14026         * lib/stdarg.in.h: Likewise.
14027         * lib/stdint.in.h: Likewise.
14028         * lib/stdio.in.h: Likewise.
14029         * lib/stdlib.in.h: Likewise.
14030         * lib/string.in.h: Likewise.
14031         * lib/strings.in.h: Likewise.
14032         * lib/sys_file.in.h: Likewise.
14033         * lib/sys_ioctl.in.h: Likewise.
14034         * lib/sys_select.in.h: Likewise.
14035         * lib/sys_socket.in.h: Likewise.
14036         * lib/sys_stat.in.h: Likewise.
14037         * lib/sys_time.in.h: Likewise.
14038         * lib/sysexits.in.h: Likewise.
14039         * lib/time.in.h: Likewise.
14040         * lib/unistd.in.h: Likewise.
14041         * lib/wchar.in.h: Likewise.
14042         * lib/wctype.in.h: Likewise.
14043         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14044
14045 2008-10-17  Jim Meyering  <meyering@redhat.com>
14046
14047         ignore-value: don't depend on inline module
14048         * modules/ignore-value (Depends-on): Remove 'inline'.
14049         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
14050         Suggestion from Bruno Haible.
14051
14052 2008-10-17  Bruno Haible  <bruno@clisp.org>
14053
14054         New implementation of condition variables for Win32.
14055         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
14056         (gl_linked_waitqueue_t): New type.
14057         (gl_cond_t): Use it.
14058         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
14059         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
14060         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
14061         (glthread_cond_init_func, glthread_cond_wait_func,
14062         glthread_cond_timedwait_func, glthread_cond_signal_func,
14063         glthread_cond_broadcast_func, glthread_cond_destroy_func):
14064         Reimplemented on the basis of gl_linked_waitqueue_t.
14065         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
14066         gl_waitqueue_t.
14067         (gl_rwlock_t): Update.
14068         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
14069
14070 2008-10-17  Simon Josefsson  <simon@josefsson.org>
14071
14072         * modules/recvfrom (Depends-on): Add dependency on getpeername.
14073         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14074
14075 2008-10-17  Jim Meyering  <meyering@redhat.com>
14076
14077         ignore-value: new module
14078         * modules/ignore-value: New file.
14079         * lib/ignore-value.h: New file.
14080         * MODULES.html.sh (Compiler warning management): New section,
14081         just for this module.  More to come.
14082
14083 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
14084
14085         open-safer.c: avoid 'signed and unsigned in conditional...' warning
14086         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
14087         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
14088
14089 2008-10-16  Jim Meyering  <meyering@redhat.com>
14090
14091         openat-die.c: avoid 'no previous prototype' warning
14092         * lib/openat-die.c: Include "openat.h".
14093         Reported by Reuben Thomas <rrt@sc3d.org>.
14094
14095 2008-10-16  Simon Josefsson  <simon@josefsson.org>
14096
14097         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
14098         * lib/netdb.in.h: Fix typo.
14099         Reported by Bruno Haible  <bruno@clisp.org>
14100
14101         * lib/netdb.in.h: Include sys/socket.h for platforms without
14102         netdb.h, to get structures like hostent on MinGW.
14103         * modules/netdb (Depends-on): Add sys_socket.
14104
14105 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14106
14107         * modules/netdb, modules/netdb-tests: New file.
14108         * m4/netdb_h.m4: New file.
14109         * lib/netdb.in.h: Add, currently just an empty file pending
14110         definitions.
14111         * tests/test-netdb.c: New file.
14112         * doc/posix-headers/netdb.texi: Mention that we replace it if
14113         needed.
14114         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14115         netdb.
14116
14117 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14118
14119         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
14120         with code.
14121
14122 2008-10-13  Bruno Haible  <bruno@clisp.org>
14123
14124         * lib/glthread/cond.c (glthread_cond_wait_func,
14125         glthread_cond_timedwait_func): Add a comment.
14126
14127 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14128
14129         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
14130         * tests/test-select.c: Likewise,
14131
14132 2008-10-13  Bruno Haible  <bruno@clisp.org>
14133
14134         * lib/glthread/cond.c (glthread_cond_wait_func,
14135         glthread_cond_timedwait_func): Fix variable name.
14136         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14137
14138 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
14139
14140         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
14141         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
14142         struct sockaddr.sa_len.
14143         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
14144
14145 2008-10-13  Simon Josefsson  <simon@josefsson.org>
14146
14147         * build-aux/pmccabe2html: Add css and css_url parameters.
14148
14149 2008-10-12  Bruno Haible  <bruno@clisp.org>
14150
14151         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
14152         calling aclx_get.
14153         Reported by Rainer Tammer <tammer@tammer.net>.
14154
14155 2008-10-12  Bruno Haible  <bruno@clisp.org>
14156
14157         Use msvcrt aware primitives for creation/termination of Win32 threads.
14158         * lib/glthread/thread.c: Include <process.h>.
14159         (glthread_create_func): Use _beginthreadex instead of CreateThread.
14160         (wrapper_func): Update signature.
14161         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
14162
14163 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14164             Bruno Haible  <bruno@clisp.org>
14165
14166         Provide a Win32 implementation of the 'cond' module.
14167         * lib/glthread/cond.h [USE_WIN32]: New implementation.
14168         * lib/glthread/cond.c (glthread_cond_init_func,
14169         glthread_cond_wait_func, glthread_cond_timedwait_func,
14170         glthread_cond_signal_func, glthread_cond_broadcast_func,
14171         glthread_cond_destroy_func) [USE_WIN32]: New functions.
14172         * modules/cond (Dependencies): Add gettimeofday.
14173
14174 2008-10-11  Bruno Haible  <bruno@clisp.org>
14175
14176         Make sleep work on older versions of mingw.
14177         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
14178         only whether it exists.
14179         * doc/posix-functions/sleep.texi: Mention the problem with older
14180         versions of mingw.
14181
14182 2008-10-11  Bruno Haible  <bruno@clisp.org>
14183
14184         New module 'shutdown'.
14185         * modules/shutdown: New file.
14186         * lib/sys_socket.in.h (shutdown): New declaration.
14187         * lib/winsock.c (shutdown): New function.
14188         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
14189         GNULIB_SHUTDOWN.
14190         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
14191         * doc/posix-functions/shutdown.texi: Document the new module.
14192
14193 2008-10-11  Jim Meyering  <meyering@redhat.com>
14194
14195         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
14196
14197 2008-10-11  Bruno Haible  <bruno@clisp.org>
14198
14199         New module 'fclose'.
14200         * modules/fclose: New file.
14201         * lib/stdio.in.h (fclose): New declaration.
14202         * lib/fclose.c: New file.
14203         * m4/fclose.m4: New file.
14204         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
14205         REPLACE_FCLOSE.
14206         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
14207         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
14208         REPLACE_FCLOSE.
14209         * modules/close (Depends-on): fclose.
14210         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
14211
14212 2008-10-11  Bruno Haible  <bruno@clisp.org>
14213
14214         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
14215         set errno and don't call _close.
14216
14217 2008-10-10  Bruno Haible  <bruno@clisp.org>
14218
14219         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
14220         ACL, not afterwards. Fixes test failure on Cygwin.
14221
14222 2008-10-09  Ben Pfaff  <blp@gnu.org>
14223
14224         * build-aux/announce-gen: Fix gnulib version related part of usage
14225         message.  Die with a useful error message if no tarballs are
14226         found.
14227
14228 2008-10-10  Jim Meyering  <meyering@redhat.com>
14229
14230         bootstrap: use git's --depth=N option only if it's supported
14231         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
14232         recognize the --depth option.  Reported by Pádraig Brady.
14233
14234 2008-10-09  Bruno Haible  <bruno@clisp.org>
14235
14236         New module 'ioctl'.
14237         * modules/ioctl: New file.
14238         * lib/sys_socket.in.h (ioctl): Remove declaration.
14239         * lib/winsock.c: Include <sys/ioctl.h>.
14240         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
14241         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
14242         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
14243         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
14244         * doc/posix-functions/ioctl.texi: Mention the new module.
14245
14246 2008-10-09  Bruno Haible  <bruno@clisp.org>
14247
14248         New module 'sys_ioctl'.
14249         * lib/sys_ioctl.in.h: New file.
14250         * m4/sys_ioctl_h.m4: New file.
14251         * modules/sys_ioctl: New file.
14252         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
14253
14254 2008-10-09  Bruno Haible  <bruno@clisp.org>
14255
14256         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
14257         * lib/winsock.c: Include <stdarg.h>.
14258         (rpl_ioctl): Change to second argument 'int' and then varargs.
14259
14260 2008-10-09  Bruno Haible  <bruno@clisp.org>
14261
14262         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
14263         when the sys_socket module is present and the system has <winsock2.h>.
14264
14265 2008-10-09  Bruno Haible  <bruno@clisp.org>
14266
14267         * doc/posix-functions/close.texi: Mention module 'close' instead of
14268         module 'sys_socket'.
14269
14270 2008-10-09  Bruno Haible  <bruno@clisp.org>
14271
14272         * doc/glibc-headers/sys_ioctl.texi: New file.
14273         * doc/gnulib.texi: Include it.
14274
14275 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14276             Bruno Haible  <bruno@clisp.org>
14277
14278         Combine the two replacements of 'close'.
14279         * lib/sys_socket.in.h (close): Define to a reminder to include
14280         <unistd.h>.
14281         (_gl_close_fd_maybe_socket): New declaration.
14282         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
14283         * lib/winsock.c (close): Remove undefinition.
14284         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
14285         needed for the gnulib module 'close'.
14286         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
14287         define to an error symbol or to a warning, if suitable.
14288         * lib/close.c: Include <sys/socket.h>.
14289         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
14290         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
14291         UNISTD_H_HAVE_WINSOCK2_H.
14292         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
14293         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14294         UNISTD_H_HAVE_WINSOCK2_H.
14295         * modules/sys_socket (Files): Add m4/unistd_h.m4.
14296         (configure.ac): Set a module indicator.
14297         (Makefile.am): Substitute GNULIB_CLOSE.
14298         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
14299         * modules/poll-tests (Depends-on): Add close.
14300         * modules/select-tests (Depends-on): Likewise.
14301
14302 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14303             Bruno Haible  <bruno@clisp.org>
14304
14305         New module 'close'.
14306         * modules/close: New file.
14307         * lib/unistd.in.h (close): Move declaration out of the
14308         FCHDIR_REPLACEMENT scope.
14309         (_gl_unregister_fd): New declaration.
14310         * lib/close.c: New file.
14311         * lib/fchdir.c (rpl_close): Remove function.
14312         * m4/close.m4: New file.
14313         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14314         close.
14315         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
14316         REPLACE_CLOSE.
14317         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
14318         REPLACE_CLOSE.
14319         * modules/fchdir (Depends-on): Add close.
14320
14321 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14322             Bruno Haible  <bruno@clisp.org>
14323
14324         * lib/fcntl.in.h (open): Simplify conditionals.
14325         (_gl_register_fd): New declaration.
14326         * lib/fchdir.c (rpl_open): Remove function.
14327         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
14328         also.
14329         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
14330         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14331         open.
14332
14333 2008-10-09  Jim Meyering  <meyering@redhat.com>
14334
14335         GNUmakefile: use the more name-space-friendly "_version"
14336         * top/GNUmakefile (_dummy): Update.
14337         (_version): Rename from "version".
14338
14339 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14340             Bruno Haible  <bruno@clisp.org>
14341
14342         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
14343         rpl_close.
14344         (_gl_register_fd): New function, extracted from rpl_open.
14345         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
14346         (rpl_open, rpl_opendir): Use _gl_register_fd.
14347
14348 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14349
14350         Fix organization of 'open' replacement.
14351         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
14352         (gl_FUNC_OPEN): Use it.
14353         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
14354
14355 2008-10-08  Bruno Haible  <bruno@clisp.org>
14356
14357         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
14358
14359 2008-10-08  Simon Josefsson  <simon@josefsson.org>
14360
14361         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
14362         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
14363         listen).
14364
14365 2008-10-08  Eric Blake  <ebb9@byu.net>
14366
14367         GNUmakefile: add 'make version' target
14368         * top/GNUmakefile (_curr-ver): Split version update rules...
14369         (version): ...into a target.
14370
14371 2008-10-07  Bruno Haible  <bruno@clisp.org>
14372
14373         Use a more portable replacement expression for -0.0L.
14374         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
14375         instead of -0.0L. Fix m4 quotation.
14376
14377         * tests/test-signbit.c: Include <float.h>.
14378         (minus_zero): New variable.
14379         (test_signbitl): Use minus_zero instead of -zero.
14380         * modules/signbit-tests (Depends-on): Add float.
14381
14382         * tests/test-ceill.c: Include <float.h>.
14383         (zero): Remove variable.
14384         (minus_zero): New variable.
14385         (main): Use minus_zero instead of -zero.
14386         * modules/ceill-tests (Depends-on): Add float.
14387
14388         * tests/test-floorl.c: Include <float.h>.
14389         (zero): Remove variable.
14390         (minus_zero): New variable.
14391         (main): Use minus_zero instead of -zero.
14392         * modules/floorl-tests (Depends-on): Add float.
14393
14394         * tests/test-roundl.c: Include <float.h>.
14395         (zero): Remove variable.
14396         (minus_zero): New variable.
14397         (main): Use minus_zero instead of -zero.
14398         * modules/roundl-tests (Depends-on): Add float.
14399
14400         * tests/test-truncl.c: Include <float.h>.
14401         (zero): Remove variable.
14402         (minus_zero): New variable.
14403         (main): Use minus_zero instead of -zero.
14404         * modules/truncl-tests (Depends-on): Add float.
14405
14406         * tests/test-frexpl.c (zero): Remove variable.
14407         (minus_zero): New variable.
14408         (main): Use minus_zero instead of -zero.
14409         * modules/frexpl-tests (Depends-on): Add float.
14410
14411         * tests/test-isnan.c (zerol): Remove variable.
14412         (minus_zerol): New variable.
14413         (test_long_double): Use minus_zerol instead of -zerol.
14414         * modules/isnan-tests (Depends-on): Add float.
14415
14416         * tests/test-isnanl.h (zero): Remove variable.
14417         (minus_zero): New variable.
14418         (main): Use minus_zero instead of -zero.
14419         * modules/isnanl-nolibm-tests (Depends-on): Add float.
14420         * modules/isnanl-tests (Depends-on): Add float.
14421
14422         * tests/test-ldexpl.c (zero): Remove variable.
14423         (minus_zero): New variable.
14424         (main): Use minus_zero instead of -zero.
14425         * modules/ldexpl-tests (Depends-on): Add float.
14426
14427         * tests/test-snprintf-posix.h (zerol): Remove variable.
14428         (minus_zerol): New variable.
14429         (test_function): Use minus_zerol instead of -zerol.
14430         * modules/snprintf-posix-tests (Depends-on): Add float.
14431         * modules/vsnprintf-posix-tests (Depends-on): Add float.
14432
14433         * tests/test-sprintf-posix.h (zerol): Remove variable.
14434         (minus_zerol): New variable.
14435         (test_function): Use minus_zerol instead of -zerol.
14436         * modules/sprintf-posix-tests (Depends-on): Add float.
14437         * modules/vsprintf-posix-tests (Depends-on): Add float.
14438
14439         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
14440         (minus_zerol): New variable.
14441         (test_function): Use minus_zerol instead of -zerol.
14442         * modules/vasnprintf-posix-tests (Depends-on): Add float.
14443
14444         * tests/test-vasprintf-posix.c (zerol): Remove variable.
14445         (minus_zerol): New variable.
14446         (test_function): Use minus_zerol instead of -zerol.
14447         * modules/vasprintf-posix-tests (Depends-on): Add float.
14448
14449 2008-10-07  Simon Josefsson  <simon@josefsson.org>
14450
14451         * MODULES.html.sh (Support for building documentation): Mention
14452         pmccabe2html.  Sort entries.
14453
14454         Add pmccabe2html module, from gnupdf.
14455         * build-aux/pmccabe.css: New file.
14456         * build-aux/pmccabe2html: New file.
14457         * m4/pmccabe2html.m4: New file.
14458         * modules/pmccabe2html: New file.
14459
14460 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
14461
14462         flock: new module
14463         * MODULES.html.sh: Add to list of modules.
14464         * lib/flock.c: flock implementation for Windows and Unix systems
14465         which have fcntl.
14466         * doc/glibc-functions/flock.texi: Update documentation.
14467         * lib/sys_file.in.h: <sys/file.h> header file.
14468         * m4/flock.m4: M4 macros.
14469         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
14470         * modules/flock: flock module.
14471         * modules/flock-tests: flock tests module.
14472         * modules/sys_file: sys/file.h module.
14473         * tests/test-flock.c: test suite for flock.
14474
14475 2008-10-06  Jim Meyering  <meyering@redhat.com>
14476
14477         bootstrap: check for LT_INIT more portably still ;-)
14478         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
14479         Spotted by Bruno Haible.
14480
14481 2008-10-06  Eric Blake  <ebb9@byu.net>
14482
14483         test-signbit: avoid tripping Irix cc bug on -0.0L
14484         * tests/test-signbit.c (minus_zerol): Delete, and replace with
14485         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
14486         entire testsuite consistent and avoids an Irix 6.2 bug.
14487
14488 2008-10-05  Bruno Haible  <bruno@clisp.org>
14489             Jim Meyering  <jim@meyering.net>
14490
14491         Add an option for ignoring EPIPE during close_stdout.
14492         * lib/closeout.h: Include <stdbool.h>.
14493         (close_stdout_set_ignore_EPIPE): New declaration.
14494         * lib/closeout.c: Include <stdbool.h>.
14495         (ignore_EPIPE): New variable.
14496         (close_stdout_set_ignore_EPIPE): New function.
14497         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
14498         * lib/close-stream.c (close_stream): Mention the possible EPIPE
14499         failure.
14500         * modules/closeout (Depends-on): Add stdbool.
14501
14502 2008-10-05  Bruno Haible  <bruno@clisp.org>
14503
14504         * modules/accept: New file.
14505         * modules/bind: New file.
14506         * modules/connect: New file.
14507         * modules/getpeername: New file.
14508         * modules/getsockname: New file.
14509         * modules/getsockopt: New file.
14510         * modules/listen: New file.
14511         * modules/recv: New file.
14512         * modules/recvfrom: New file.
14513         * modules/send: New file.
14514         * modules/sendto: New file.
14515         * modules/setsockopt: New file.
14516         * modules/socket: New file.
14517         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
14518         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
14519         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
14520         the particular module is requested. Add a link warning when the
14521         particular module is not requested.
14522         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
14523         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
14524         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
14525         the particular module is requested.
14526         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
14527         gl_SYS_SOCKET_H_DEFAULTS): New macros.
14528         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
14529         * modules/sys_socket (Depends-on): Add link-warning.
14530         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
14531         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
14532         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
14533         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
14534         GL_LINK_WARNING.
14535         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
14536         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
14537         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
14538         * doc/posix-functions/getpeername.texi: Mention the new module
14539         'getpeername'.
14540         * doc/posix-functions/getsockname.texi: Mention the new module
14541         'getsockname'.
14542         * doc/posix-functions/getsockopt.texi: Mention the new module
14543         'getsockopt'.
14544         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
14545         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
14546         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
14547         * doc/posix-functions/send.texi: Mention the new module 'send'.
14548         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
14549         * doc/posix-functions/setsockopt.texi: Mention the new module
14550         'setsockopt'.
14551         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
14552         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
14553         listen, connect, accept.
14554         * modules/select-tests (Depends-on): Likewise.
14555
14556 2008-10-05  Bruno Haible  <bruno@clisp.org>
14557
14558         * lib/winsock.c (strerror): Remove unused #undef.
14559         (rpl_close): Remove unused local variable.
14560
14561         * modules/sys_socket (Depends-on); Add errno.
14562
14563 2008-10-05  Bruno Haible  <bruno@clisp.org>
14564
14565         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
14566         (select): Add a link warning when the 'select' module is not used.
14567         * modules/sys_select (Depends-on): Add link-warning.
14568         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
14569         Suggested by Paolo Bonzini.
14570
14571 2008-10-05  Jim Meyering  <meyering@redhat.com>
14572
14573         bootstrap: check for LT_INIT more portably
14574         * build-aux/bootstrap: Avoid using grep -E, since it's not
14575         portable enough.  Suggestion from Bruno Haible.
14576
14577 2008-10-05  Bruno Haible  <bruno@clisp.org>
14578
14579         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
14580         as being fixed by gnulib.
14581
14582 2008-10-05  Bruno Haible  <bruno@clisp.org>
14583
14584         * modules/select-tests: New file, mostly copied from
14585         modules/sys_select-tests.
14586         * tests/test-select.c: New file, mostly copied from
14587         tests/test-sys_select.c.
14588         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
14589         * modules/sys_select-tests (Depends-on): Remove all dependencies.
14590         (Makefile.am): Remove test_sys_select_LDADD.
14591
14592         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
14593         to an undefined symbol, for an error message.
14594         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
14595         (gl_SYS_SELECT_H_DEFAULTS): New macro.
14596         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
14597         winsock-select.c here.
14598         * modules/sys_select (Files): Remove lib/winsock-select.c.
14599         (Depends-on): Remove alloca.
14600         (Makefile.am): Substitute GNULIB_SELECT.
14601         * modules/select: New file.
14602         * doc/posix-functions/select.texi: Update.
14603
14604 2008-10-05  Bruno Haible  <bruno@clisp.org>
14605
14606         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
14607         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
14608         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
14609         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
14610         getdtablesize.
14611         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
14612         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
14613
14614 2008-10-05  Bruno Haible  <bruno@clisp.org>
14615
14616         * modules/getdtablesize-tests: New file.
14617         * tests/test-getdtablesize.c: New file.
14618
14619         New module 'getdtablesize'.
14620         * lib/unistd.in.h (getdtablesize): New declaration.
14621         * lib/getdtablesize.c: New file.
14622         * m4/getdtablesize.m4: New file.
14623         * modules/getdtablesize: New file.
14624         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14625         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
14626         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
14627         HAVE_GETDTABLESIZE.
14628         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
14629
14630 2008-10-05  Bruno Haible  <bruno@clisp.org>
14631
14632         * modules/sched (Makefile.am): Fix typo.
14633         Reported by Simon Josefsson.
14634
14635 2008-10-05  Jim Meyering  <meyering@redhat.com>
14636
14637         bootstrap: check for LT_INIT, too
14638         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
14639         are deprecated.  Suggestion from Ralf Wildenhues.
14640
14641 2008-10-05  Bruno Haible  <bruno@clisp.org>
14642
14643         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
14644         overriding them by ours.
14645         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
14646
14647 2008-10-05  Jim Meyering  <meyering@redhat.com>
14648
14649         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
14650         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
14651         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
14652
14653 2008-10-04  Bruno Haible  <bruno@clisp.org>
14654
14655         * modules/dup2 (License): Change to LGPLv2+.
14656         * modules/sleep (License): Likewise.
14657         * modules/perror (License): Likewise.
14658         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
14659         Blake.
14660         * modules/signal (License): Likewise.
14661         * modules/sigprocmask (License): Likewise.
14662         * modules/raise (License): Change to LGPLv2+, with approval by Jim
14663         Meyering.
14664
14665 2008-10-04  Bruno Haible  <bruno@clisp.org>
14666
14667         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
14668         Reported by Rainer Tammer <tammer@tammer.net>.
14669
14670 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
14671             Bruno Haible  <bruno@clisp.org>
14672
14673         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
14674         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
14675         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
14676
14677 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
14678
14679         filevercmp: new module
14680         * lib/filevercmp.h: New function filevercmp comparing version strings.
14681         * lib/filevercmp.c: Implementation of filevercmp function.
14682         * modules/filevercmp: Module metadata.
14683         * tests/test-filevercmp.c: Unit test for new module.
14684         * modules/filevercmp-tests: Unit test metadata.
14685         * MODULES.html.sh: Add filevercmp module.
14686
14687 2008-10-03  Bruno Haible  <bruno@clisp.org>
14688
14689         * lib/c-ctype.h: Add comment.
14690         Reported by Jim Meyering.
14691
14692 2008-10-02  Bruno Haible  <bruno@clisp.org>
14693
14694         * modules/posix_spawn-internal (Depends-on): Add 'open'.
14695
14696 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14697
14698         * build-aux/bootstrap: Allow renaming bootstrap, and change the
14699         name of bootstrap.conf accordingly.
14700
14701 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14702
14703         * build-aux/bootstrap: Install git-merge-changelog configuration
14704         items into .gitconfig if needed.
14705
14706 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14707
14708         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
14709         git repository, and initialize/update it accordingly.
14710
14711 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
14712
14713         * modules/fsync-tests: New file.
14714         * tests/test-fsync.c: New file.
14715
14716         New module 'fsync'.
14717         * lib/fsync.c: New file.
14718         * m4/fsync.m4: New file.
14719         * modules/fsync: New file.
14720         * lib/unistd.in.h (fsync): New declaration.
14721         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
14722         GNULIB_FSYNC and HAVE_FSYNC.
14723         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
14724         * MODULES.html.sh (posix_functions): Add fsync.
14725         * doc/posix-functions/fsync.texi: Mention the new module.
14726
14727 2008-10-02  Jim Meyering  <meyering@redhat.com>
14728
14729         fts.c: sync with similar code from coreutils' remove.c
14730         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
14731         Guard also with "#if defined __linux__", since for now at least,
14732         this code is Linux-kernel-specific.
14733
14734 2008-10-02  Jim Meyering  <meyering@redhat.com>
14735
14736         fts: bug fixes
14737         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
14738         Include <sys/vfs.h>, not <sys/statfs.h>.
14739
14740         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
14741         Include <sys/vfs.h>, not <sys/statfs.h>.
14742
14743 2008-10-01  Bruno Haible  <bruno@clisp.org>
14744
14745         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
14746         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
14747         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
14748         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
14749         * doc/posix-functions/posix_spawnp.texi: Likewise.
14750         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
14751         whether posix_spawn actually works.
14752         * m4/pipe.m4 (gl_PIPE): Likewise.
14753         * modules/execute (Files): Add m4/posix_spawn.m4.
14754         * modules/pipe (Files): Add m4/posix_spawn.m4.
14755         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
14756
14757 2008-10-01  Jim Meyering  <meyering@redhat.com>
14758
14759         remove trailing spaces
14760         * NEWS: Likewise.
14761         * lib/poll.c (poll): Likewise.
14762         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
14763         * lib/winsock.c (rpl_close): Likewise.
14764         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
14765         * modules/yield: Likewise.
14766         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
14767         * tests/test-sys_select.c (connect_to_socket): Likewise.
14768
14769         fts.c: adjust a new interface to be more generally useful
14770         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
14771         (fts_build): Adjust caller.
14772
14773 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14774
14775         * modules/cond-tests: New file.
14776         * tests/test-cond.c: New file.
14777
14778 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14779             Bruno Haible  <bruno@clisp.org>
14780
14781         * modules/cond (Dependencies): Add errno, time.
14782         * lib/glthread/cond.h: Include <time.h>.
14783         (gl_cond_define, gl_cond_define_initialized): Use the same definition
14784         across platforms.
14785
14786 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14787             Bruno Haible  <bruno@clisp.org>
14788
14789         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
14790
14791 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14792             Bruno Haible  <bruno@clisp.org>
14793
14794         * modules/tls-tests (Depends-on): Add thread, yield.
14795         (configure.ac): Remove all checks.
14796         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
14797         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14798         gl_thread_self): Remove definitions. Include glthread/thread.h and
14799         glthread/yield.h instead.
14800         (test_tls): Pass an additional NULL argument to gl_thread_join.
14801
14802 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14803             Bruno Haible  <bruno@clisp.org>
14804
14805         * modules/lock-tests (Depends-on): Add thread, yield.
14806         (configure.ac): Remove all checks.
14807         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
14808         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14809         gl_thread_self): Remove definitions. Include glthread/thread.h and
14810         glthread/yield.h instead.
14811         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
14812         additional NULL argument to gl_thread_join.
14813
14814 2008-09-30  Bruno Haible  <bruno@clisp.org>
14815
14816         Fix the Win32 implementation of the 'thread' module.
14817         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
14818         pointer type.
14819         (gl_thread_self): Invoke gl_thread_self_func.
14820         (gl_thread_self_func): New declaration.
14821         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
14822         (do_init_self_key, init_self_key): New functions.
14823         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
14824         Remove some fields.
14825         (running_threads, running_lock): Remove variables.
14826         (get_current_thread_handle): New function.
14827         (gl_thread_self_func, wrapper_func, glthread_create_func,
14828         glthread_join_func, gl_thread_exit_func): Largely rewritten and
14829         simplified.
14830
14831 2008-09-30  Bruno Haible  <bruno@clisp.org>
14832
14833         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
14834         files.
14835
14836 2008-09-30  Jim Meyering  <meyering@redhat.com>
14837
14838         fts.m4: correct the test for statfs.f_type
14839         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
14840         when checking for statfs.f_type.
14841
14842 2008-09-15  Simon Josefsson  <simon@josefsson.org>
14843
14844         tests: avoid some compiler warnings
14845         * tests/test-memchr.c (main): Pass NULL indirectly.
14846         * tests/test-getdate.c (main): Remove unused variable 'ret'.
14847
14848 2008-09-29  Ondřej Vašík  <ovasik@redhat.com>
14849
14850         getdate.y: disallow countable dayshifts like "4 yesterday ago"
14851         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
14852         exactly specified dayshifts.
14853         (dayshift): New rule.
14854         (rel): Add dayshift.
14855         (relative_time_table) [tomorrow, yesterday, today, now]:
14856         Use tDAY_SHIFT in place of tDAY_UNIT.
14857         * tests/test-getdate.c: Add tests for now-disallowed countable
14858         dayshifts, e.g., "4 yesterday ago".
14859
14860 2008-09-29  Bruno Haible  <bruno@clisp.org>
14861
14862         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
14863         * tests/test-posix_spawn1.in.sh: Renamed from
14864         tests/test-posix_spawn.in.sh.
14865         * tests/test-posix_spawn2.c: New file.
14866         * tests/test-posix_spawn2.in.sh: New file.
14867         * modules/posix_spawnp-tests (Files): Update.
14868         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
14869
14870 2008-09-29  Bruno Haible  <bruno@clisp.org>
14871
14872         Propagate effects of putenv/setenv/unsetenv to child processes.
14873         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
14874         * lib/pipe.c (create_pipe): Likewise.
14875
14876 2008-09-29  Bruno Haible  <bruno@clisp.org>
14877
14878         Enable use of shell scripts as executables in mingw.
14879         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
14880         run the program as a shell script.
14881         * lib/pipe.c (create_pipe): Likewise.
14882         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
14883         resulting array.
14884
14885 2008-09-29  Eric Blake  <ebb9@byu.net>
14886
14887         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
14888
14889 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
14890
14891         * doc/posix-functions/accept.texi: Update mingw problems.
14892         * doc/posix-functions/bind.texi: Update mingw problems.
14893         * doc/posix-functions/close.texi: Update mingw problems.
14894         * doc/posix-functions/connect.texi: Update mingw problems.
14895         * doc/posix-functions/getpeername.texi: Update mingw problems.
14896         * doc/posix-functions/getsockname.texi: Update mingw problems.
14897         * doc/posix-functions/getsockopt.texi: Update mingw problems.
14898         * doc/posix-functions/ioctl.texi: Update mingw problems.
14899         * doc/posix-functions/listen.texi: Update mingw problems.
14900         * doc/posix-functions/recv.texi: Update mingw problems.
14901         * doc/posix-functions/recvfrom.texi: Update mingw problems.
14902         * doc/posix-functions/select.texi: Update mingw problems.
14903         * doc/posix-functions/send.texi: Update mingw problems.
14904         * doc/posix-functions/sendto.texi: Update mingw problems.
14905         * doc/posix-functions/setsockopt.texi: Update mingw problems.
14906         * doc/posix-functions/socket.texi: Update mingw problems.
14907
14908 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
14909             Bruno Haible  <bruno@clisp.org>
14910
14911         * lib/sys_select.in.h: Include sys/time.h.
14912         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
14913         * modules/sys_select: Depend on sys_time.
14914         * tests/test-sys_select.c: Test that sys/select.h defines struct
14915         timeval fully.
14916
14917 2008-09-29  Bruno Haible  <bruno@clisp.org>
14918
14919         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
14920         * lib/sys_select.in.h: Likewise.
14921
14922 2008-09-29  Bruno Haible  <bruno@clisp.org>
14923
14924         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
14925
14926 2008-09-29  Bruno Haible  <bruno@clisp.org>
14927
14928         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
14929         Set LIBSOCKET instead of augmenting LIBS.
14930         * modules/sockets (Link): New section.
14931         * modules/sockets-tests (test_sockets_LDADD): New variable.
14932         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
14933         * modules/poll-tests (test_poll_LDADD): New variable.
14934         * NEWS: Document the change.
14935
14936 2008-09-29  Bruno Haible  <bruno@clisp.org>
14937
14938         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
14939         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
14940         ARPA_INET_H directly.
14941         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14942
14943 2008-09-28  Bruno Haible  <bruno@clisp.org>
14944
14945         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
14946         from gl_HEADER_SYS_SOCKET.
14947         (gl_HEADER_SYS_SOCKET): Invoke it.
14948         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
14949
14950 2008-09-28  Bruno Haible  <bruno@clisp.org>
14951
14952         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
14953         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
14954         Needed on OSF/1 4.0.
14955
14956 2008-09-28  Bruno Haible  <bruno@clisp.org>
14957
14958         Override open more carefully.
14959         * lib/open.c (orig_open): New function.
14960         (rpl_open): Use orig_open instead of open.
14961         * lib/fcntl.in.h: Add special invocation convention.
14962         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
14963         (gl_FUNC_OPEN): Invoke it.
14964
14965         Override freopen more carefully.
14966         * lib/freopen.c (orig_freopen): New function.
14967         (rpl_freopen): Use orig_freopen instead of freopen.
14968         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
14969         (gl_FUNC_FREOPEN): Invoke it.
14970
14971         Override fopen more carefully.
14972         * lib/fopen.c (orig_fopen): New function.
14973         (rpl_fopen): Use orig_fopen instead of fopen.
14974         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
14975         (gl_FUNC_FOPEN): Invoke it.
14976         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
14977
14978 2008-09-28  Bruno Haible  <bruno@clisp.org>
14979
14980         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
14981         SIGPIPE.
14982
14983 2008-09-28  Bruno Haible  <bruno@clisp.org>
14984
14985         * tests/test-sigaction.c (handler, main): Disable the check whether
14986         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
14987         glibc systems with LinuxThreads.
14988
14989 2008-09-28  Bruno Haible  <bruno@clisp.org>
14990
14991         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
14992
14993         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
14994         with AIX xlc.
14995         * lib/fcntl.in.h (open): Likewise.
14996         Reported by Rainer Tammer <tammer@tammer.net>.
14997
14998 2008-09-28  Bruno Haible  <bruno@clisp.org>
14999
15000         * modules/posix_spawnp-tests: New file.
15001         * tests/test-posix_spawn.c: New file.
15002         * tests/test-posix_spawn.in.sh: New file.
15003
15004         New module 'posix_spawnp'.
15005         * modules/posix_spawnp: New file.
15006         * lib/spawnp.c: New file, from GNU libc with modifications.
15007         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
15008
15009         New module 'posix_spawn'.
15010         * modules/posix_spawn: New file.
15011         * lib/spawn.c: New file, from GNU libc with modifications.
15012         * doc/posix-functions/posix_spawn.texi: Mention the new module.
15013
15014         New module 'posix_spawnattr_destroy'.
15015         * modules/posix_spawnattr_destroy: New file.
15016         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
15017         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
15018         module.
15019
15020         New module 'posix_spawnattr_setsigmask'.
15021         * modules/posix_spawnattr_setsigmask: New file.
15022         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
15023         modifications.
15024         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
15025         new module.
15026
15027         New module 'posix_spawnattr_getsigmask'.
15028         * modules/posix_spawnattr_getsigmask: New file.
15029         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
15030         modifications.
15031         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
15032         new module.
15033
15034         New module 'posix_spawnattr_setsigdefault'.
15035         * modules/posix_spawnattr_setsigdefault: New file.
15036         * lib/spawnattr_setdefault.c: New file, from GNU libc with
15037         modifications.
15038         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
15039         new module.
15040
15041         New module 'posix_spawnattr_getsigdefault'.
15042         * modules/posix_spawnattr_getsigdefault: New file.
15043         * lib/spawnattr_getdefault.c: New file, from GNU libc with
15044         modifications.
15045         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
15046         new module.
15047
15048         New module 'posix_spawnattr_setschedpolicy'.
15049         * modules/posix_spawnattr_setschedpolicy: New file.
15050         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
15051         modifications.
15052         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
15053         new module.
15054
15055         New module 'posix_spawnattr_getschedpolicy'.
15056         * modules/posix_spawnattr_getschedpolicy: New file.
15057         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
15058         modifications.
15059         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
15060         new module.
15061
15062         New module 'posix_spawnattr_setschedparam'.
15063         * modules/posix_spawnattr_setschedparam: New file.
15064         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
15065         modifications.
15066         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
15067         new module.
15068
15069         New module 'posix_spawnattr_getschedparam'.
15070         * modules/posix_spawnattr_getschedparam: New file.
15071         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
15072         modifications.
15073         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
15074         new module.
15075
15076         New module 'posix_spawnattr_setpgroup'.
15077         * modules/posix_spawnattr_setpgroup: New file.
15078         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
15079         modifications.
15080         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
15081         module.
15082
15083         New module 'posix_spawnattr_getpgroup'.
15084         * modules/posix_spawnattr_getpgroup: New file.
15085         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
15086         modifications.
15087         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
15088         module.
15089
15090         New module 'posix_spawnattr_setflags'.
15091         * modules/posix_spawnattr_setflags: New file.
15092         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
15093         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
15094         module.
15095
15096         New module 'posix_spawnattr_getflags'.
15097         * modules/posix_spawnattr_getflags: New file.
15098         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
15099         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
15100         module.
15101
15102         New module 'posix_spawnattr_init'.
15103         * modules/posix_spawnattr_init: New file.
15104         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
15105         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
15106         module.
15107
15108         New module 'posix_spawn_file_actions_destroy'.
15109         * modules/posix_spawn_file_actions_destroy: New file.
15110         * lib/spawn_faction_destroy.c: New file, from GNU libc with
15111         modifications.
15112         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
15113         the new module.
15114
15115         New module 'posix_spawn_file_actions_addopen'.
15116         * modules/posix_spawn_file_actions_addopen: New file.
15117         * lib/spawn_faction_addopen.c: New file, from GNU libc with
15118         modifications.
15119         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
15120         the new module.
15121
15122         New module 'posix_spawn_file_actions_adddup2'.
15123         * modules/posix_spawn_file_actions_adddup2: New file.
15124         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
15125         modifications.
15126         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
15127         the new module.
15128
15129         New module 'posix_spawn_file_actions_addclose'.
15130         * modules/posix_spawn_file_actions_addclose: New file.
15131         * lib/spawn_faction_addclose.c: New file, from GNU libc with
15132         modifications.
15133         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
15134         the new module.
15135
15136         New module 'posix_spawn_file_actions_init'.
15137         * modules/posix_spawn_file_actions_init: New file.
15138         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
15139         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
15140         new module.
15141
15142         New module 'posix_spawn-internal'.
15143         * modules/posix_spawn-internal: New file.
15144         * lib/spawn_int.h: New file, from GNU libc with modifications.
15145         * lib/spawni.c: New file, from GNU libc with modifications.
15146         * m4/posix_spawn.m4: New file.
15147
15148         New module 'spawn'.
15149         * modules/spawn: New file.
15150         * lib/spawn.in.h: New file, from GNU libc with modifications.
15151         * m4/spawn_h.m4: New file.
15152         * doc/posix-headers/spawn.texi: Mention the new module.
15153
15154 2008-09-28  Bruno Haible  <bruno@clisp.org>
15155
15156         * modules/sched-tests: New file.
15157         * tests/test-sched.c: New file.
15158
15159         New module 'sched'.
15160         * modules/sched: New file.
15161         * lib/sched.in.h: New file.
15162         * m4/sched_h.m4: New file.
15163         * doc/posix-headers/sched.texi: Mention the new module.
15164
15165 2008-09-27  Eric Blake  <ebb9@byu.net>
15166
15167         Fix previous patch, and tweak references to $0.
15168         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
15169         (func_version, func_gnulib_dir): Don't call this program
15170         gnulib-tool.
15171         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
15172         with using $0 in function.
15173         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
15174         (func_fatal_error): Reuse the name the user invoked us with.
15175
15176 2008-09-27  Bruno Haible  <bruno@clisp.org>
15177
15178         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
15179         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
15180         (gl_ICONV_H): Not here.
15181         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
15182         instead of assigning ICONV_H directly.
15183
15184         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
15185         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
15186         WCHAR_H directly.
15187
15188 2008-09-27  Bruno Haible  <bruno@clisp.org>
15189
15190         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
15191         * modules/arpa_inet (Depends-on): Add link-warning.
15192         (Makefile.am): Insert the definition of GL_LINK-WARNING.
15193         * modules/unistd (Makefile.am): Likewise.
15194
15195 2008-09-26  Bruno Haible  <bruno@clisp.org>
15196
15197         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
15198         variables.
15199         (func_version): Essentially copied from gnulib-tool.
15200         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
15201         func_readlink): Copied from gnulib-tool.
15202
15203 2008-09-26  Bruno Haible  <bruno@clisp.org>
15204
15205         * gnulib-tool (func_version): Change directory to $gnulib_dir before
15206         invoking git-version-gen.
15207
15208 2008-09-26  Bruno Haible  <bruno@clisp.org>
15209
15210         * posix-modules: Update to directory names changed on 2008-01-19.
15211         Remove commas in output before splitting into words. No more need to
15212         avoid 'ftruncate' since 2007-02-19.
15213
15214 2008-09-26  Bruno Haible  <bruno@clisp.org>
15215
15216         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
15217
15218 2008-09-26  Bruno Haible  <bruno@clisp.org>
15219
15220         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
15221         * modules/fwriteerror (Depends-on): Add errno.
15222
15223 2008-09-26  Bruno Haible  <bruno@clisp.org>
15224
15225         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
15226         * tests/test-vc-list-files-cvs.sh: Likewise.
15227
15228 2008-09-26  Bruno Haible  <bruno@clisp.org>
15229
15230         * doc/posix-headers/sys_resource.texi: Reorder items.
15231
15232 2008-09-26  Jim Meyering  <meyering@redhat.com>
15233
15234         fts: tweak inode comparison function
15235         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
15236         inode numbers, as documented.
15237
15238         fts: sort dirent entries on inode number before traversing
15239         This avoids a quadratic, seek-related performance penalty when
15240         operating on a directory containing many entries (measurable at 10k;
15241         3.5 hours at 2 million entries with a cold cache) on certain types
15242         of file systems, including ext3 and ext4, but not tmpfs.
15243         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
15244         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
15245         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
15246         (fs_handles_readdir_ordered_dirents_efficiently): New function.
15247         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
15248         (fts_build): Set the stat.st_ino member from D_INO.
15249         If it is likely to be useful, sort dirent entries on inode number.
15250
15251         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
15252         and the struct statfs.f_type member.
15253         * modules/fts (Depends-on): Add d-ino.
15254
15255 2008-09-26  Bruno Haible  <bruno@clisp.org>
15256
15257         * modules/sigpipe-die (Depends-on): Add sigpipe.
15258
15259         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
15260         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
15261         and GNULIB_STDIO_H_SIGPIPE are set.
15262         * lib/stdio-write.c: New file.
15263         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
15264         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15265         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15266         REPLACE_STDIO_WRITE_FUNCS.
15267         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
15268         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15269         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15270         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15271         * modules/stdio (Files): Add lib/stdio-write.c.
15272         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
15273         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15274         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15275         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15276         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
15277         REPLACE_FPRINTF_POSIX.
15278         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
15279         REPLACE_PRINTF_POSIX.
15280         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
15281         REPLACE_VFPRINTF_POSIX.
15282         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
15283         REPLACE_VPRINTF_POSIX.
15284         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
15285         SIGPIPE issue.
15286         * doc/posix-functions/fputc.texi: Likewise.
15287         * doc/posix-functions/fputs.texi: Likewise.
15288         * doc/posix-functions/fwrite.texi: Likewise.
15289         * doc/posix-functions/printf.texi: Likewise.
15290         * doc/posix-functions/putc.texi: Likewise.
15291         * doc/posix-functions/putchar.texi: Likewise.
15292         * doc/posix-functions/puts.texi: Likewise.
15293         * doc/posix-functions/vfprintf.texi: Likewise.
15294         * doc/posix-functions/vprintf.texi: Likewise.
15295
15296         * modules/safe-write (Depends-on): Add write.
15297
15298         * modules/sigpipe-tests: New file.
15299         * tests/test-sigpipe.c: New file.
15300         * tests/test-sigpipe.sh: New file.
15301
15302         * modules/write: New file.
15303         * lib/unistd.in.h: Include <sys/types.h>.
15304         (write): New declaration.
15305         * lib/write.c: New file.
15306         * m4/write.m4: New file.
15307         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
15308         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
15309         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
15310         GNULIB_WRITE, REPLACE_WRITE.
15311         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
15312         and the SIGPIPE issue.
15313
15314         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
15315         (raise): New declaration.
15316         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
15317         (ext_signal): New function.
15318         (rpl_raise): New function.
15319         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
15320         GNULIB_SIGNAL_H_SIGPIPE.
15321         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
15322         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
15323
15324         * modules/sigpipe: New file.
15325         * m4/sigpipe.m4: New file.
15326
15327 2008-09-25  Derek Price  <derek@ximbiot.com>
15328             Bruno Haible  <bruno@clisp.org>
15329
15330         * gnulib-tool (func_import): Report all license incompatibilities, not
15331         just the first one.
15332
15333 2008-09-25  Bruno Haible  <bruno@clisp.org>
15334
15335         * gnulib-tool (func_import): When computing the edits, consider not
15336         only the Makefile.ams that exist but also those that will be generated.
15337
15338 2008-09-25  Simon Josefsson  <simon@josefsson.org>
15339
15340         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
15341         fixes gnulib-tool --test warning about duplicate dependency.
15342
15343 2008-09-25  Bruno Haible  <bruno@clisp.org>
15344
15345         * gnulib-tool: Don't ask the user to perform edits in the generated
15346         Makefile.ams.
15347         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
15348         apply to the Makefile.am being generated.
15349         (func_emit_tests_Makefile_am): Execute edits that apply to the
15350         Makefile.am being generated.
15351         (func_import): Setup list of Makefile.am edits before emitting the
15352         Makefile.ams, not at the end.
15353         (func_create_testdir): Update.
15354         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15355
15356 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15357
15358         * gnulib-tool (func_import): Store the --tests-base option in the
15359         comment in gnulib-cache.m4.
15360
15361 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
15362
15363         * NEWS: Document increased portability that sys_select now provides.
15364
15365         * lib/sys_select.in.h: Install select wrapper.
15366         * lib/sys_socket.in.h: Use more descriptive name when there is no
15367         select wrapper.
15368         * lib/winsock-select.c: New.
15369         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
15370         Require gl_HEADER_SYS_SOCKET.
15371         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
15372         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
15373         * tests/test-sys_select.c: Add functional tests.
15374
15375 2008-09-24  Eric Blake  <ebb9@byu.net>
15376
15377         open, fopen: close fd leak in last patch
15378         * lib/open.c (rpl_open): Close fd before returning error.
15379         * lib/fopen.c (rpl_fopen): Close fd before returning error.
15380         * doc/posix-functions/open.texi (open): Document that Irix also
15381         has the bug.
15382         * doc/posix-functions/fopen.texi (fopen): Likewise.
15383         Reported by Paolo Bonzini.
15384
15385 2008-09-24  Bruno Haible  <bruno@clisp.org>
15386
15387         Ensure that a filename ending in a slash cannot be used to access a
15388         non-directory.
15389         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
15390         to check whether it's really a directory.
15391         * lib/fopen.c: Include fcntl.h, unistd.h.
15392         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
15393         and fdopen().
15394         * modules/fopen (Depends-on): Add unistd.
15395         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
15396         * tests/test-fopen.c (main): Likewise.
15397         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
15398         * doc/posix-functions/fopen.texi: Likewise.
15399         Reported by Eric Blake.
15400
15401 2008-09-23  Eric Blake  <ebb9@byu.net>
15402
15403         c-stack: avoid compiler optimizations when provoking overflow
15404         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
15405         recursion harder to optimize, to ensure a stack overflow occurs.
15406         * tests/test-c-stack.c (recurse): Likewise.
15407         Borrowed from libsigsegv.
15408
15409         c-stack: work around Irix sigaltstack bug
15410         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
15411         whether sigaltstack uses wrong end of stack_t (copied in part from
15412         libsigsegv).
15413         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
15414         Irix bug, without requiring an over-allocation.
15415         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
15416         bug.
15417
15418         fopen: document mingw bug on directories
15419         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
15420         not allowing a stream visiting a directory, even though reading
15421         from such a stream is not portable.
15422
15423 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15424
15425         * lib/poll.c: Rewrite.
15426         * modules/poll: Depend on alloca.
15427
15428 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15429
15430         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
15431         instead define prototypes for a full set of wrappers.  Ensure
15432         that Cygwin does not use the compatibility code, which is only
15433         for MinGW.
15434         * lib/winsock.c: New.
15435         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
15436         * modules/sys_socket: Add lib/winsock.c.
15437
15438         * modules/poll-tests: Add errno and perror.
15439         * tests/test-poll.c: Use ioctl, not ioctlsocket.
15440
15441 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15442
15443         * tests/test-poll.c: Downgrade minimum needed Winsock version.
15444
15445 2008-09-23  Bruno Haible  <bruno@clisp.org>
15446
15447         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
15448         * doc/glibc-functions/*: Likewise.
15449
15450 2008-09-23  Simon Josefsson  <simon@josefsson.org>
15451
15452         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
15453         success.
15454
15455 2008-09-22  Eric Blake  <ebb9@byu.net>
15456             Bruno Haible  <bruno@clisp.org>
15457
15458         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
15459         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
15460         supply %A but mishandle pseudo-NaN.
15461         Reported by Simon Josefsson.
15462
15463 2008-09-21  Bruno Haible  <bruno@clisp.org>
15464
15465         * tests/test-lock.c (main): Tweak skip message.
15466         * tests/test-tls.c (main): Likewise.
15467
15468 2008-09-21  Bruno Haible  <bruno@clisp.org>
15469
15470         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
15471         whether 'struct sigaction' has sa_sigaction here...
15472         (gl_PREREQ_SIG_HANDLER_H): ... not here.
15473         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
15474
15475 2008-09-21  Bruno Haible  <bruno@clisp.org>
15476
15477         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
15478         section.
15479         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
15480         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
15481         the new section.
15482         (Support for obsolete systems lacking POSIX:2001): New section.
15483         (String handling <string.h>): Move strdup to the new section.
15484         Suggested by Simon Josefsson and Paolo Bonzini.
15485
15486 2008-09-21  Bruno Haible  <bruno@clisp.org>
15487
15488         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
15489         exponents in %e and %g results on 'long double'. Needed for mingw's
15490         improved *printf functions.
15491         * tests/test-vasprintf-posix.c (test_function): Likewise.
15492         * tests/test-snprintf-posix.h (test_function): Likewise.
15493         * tests/test-sprintf-posix.h (test_function): Likewise.
15494         Reported by Eric Blake.
15495
15496 2008-09-21  Bruno Haible  <bruno@clisp.org>
15497
15498         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
15499         * tests/test-sprintf-posix.h (test_function): Likewise.
15500
15501 2008-09-21  Bruno Haible  <bruno@clisp.org>
15502
15503         * modules/getpass (Depends-on): Add strdup-posix.
15504
15505         New module 'strdup-posix'.
15506         * modules/strdup-posix: New file.
15507         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
15508         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
15509         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15510         REPLACE_STRDUP.
15511         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
15512         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
15513         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15514         strdup-posix.
15515
15516         * modules/strdup (Depends-on): Remove malloc-posix.
15517
15518 2008-09-20  Bruno Haible  <bruno@clisp.org>
15519
15520         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
15521         Wildenhues.
15522
15523 2008-09-20  Bruno Haible  <bruno@clisp.org>
15524
15525         Ensure that wint_t gets defined on IRIX 5.3.
15526         * lib/wchar.in.h (wint_t): Define if not defined by the system.
15527         * lib/wctype.in.h (wint_t): Likewise.
15528         (__wctype_wint_t): Remove type.
15529         (isw*): Use wint_t instead of __wctype_wint_t.
15530         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
15531         * modules/wchar (Files): Add m4/wint_t.m4.
15532         (Makefile.am): Substitute HAVE_WINT_T.
15533         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
15534         * tests/test-wctype.c: Check that wint_t is defined.
15535         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
15536         * doc/posix-headers/wctype.texi: Likewise.
15537         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15538
15539 2008-09-18  Bruno Haible  <bruno@clisp.org>
15540
15541         * gnulib-tool (func_exit): Update comment.
15542
15543 2008-09-18  Simon Josefsson  <simon@josefsson.org>
15544
15545         * modules/getaddrinfo (Depends-on): Remove strdup, this module
15546         assumes strdup exists and does not depend on strdup to return
15547         ENOMEM on out of memory conditions.
15548
15549 2008-09-18  Bruno Haible  <bruno@clisp.org>
15550
15551         * lib/vasnprintf.c (VASNPRINTF): When printing ±0.0L in
15552         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
15553         digits for the exponent.
15554
15555 2008-09-18  Jim Meyering  <meyering@redhat.com>
15556             Bruno Haible  <bruno@clisp.org>
15557
15558         * lib/vasnprintf.c (decimal_point_char): Define also if
15559         NEED_PRINTF_INFINITE_LONG_DOUBLE.
15560
15561 2008-09-16  Bruno Haible  <bruno@clisp.org>
15562         and Eric Blake  <ebb9@byu.net>
15563
15564         vasnprintf: support Irix 5.3
15565         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
15566         that mishandle long double infinity.
15567         Reported by Tom G. Christensen.
15568
15569 2008-09-16  Bruno Haible  <bruno@clisp.org>
15570
15571         * doc/glibc-functions/scandir.texi: Mention the function is missing on
15572         Solaris 9.
15573         * doc/glibc-functions/alphasort.texi: Likewise.
15574         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
15575
15576 2008-09-16  Jim Meyering  <meyering@redhat.com>
15577
15578         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
15579         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
15580         a umask modification leak out of a subshell.  Otherwise, the
15581         opensolaris /bin/sh would be accepted and thus cause unwarranted
15582         failures in the coreutils test suite.
15583
15584 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
15585
15586         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
15587         to succeed.
15588
15589 2008-09-16  Jim Meyering  <meyering@redhat.com>
15590
15591         avoid spurious test failure when library is built without ACL support
15592         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
15593         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
15594         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
15595         * tests/test-copy-acl.sh: Likewise.
15596
15597 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15598
15599         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
15600         based on character occurrence counts.
15601
15602 2008-09-15  Eric Blake  <ebb9@byu.net>
15603
15604         tests: avoid some compiler warnings
15605         * tests/test-memchr.c (main): Pass NULL indirectly.
15606         * tests/test-closein.c (main): Avoid unused variable.
15607
15608 2008-09-15  Bruno Haible  <bruno@clisp.org>
15609
15610         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
15611         are missing on OpenBSD 4.0 individually.
15612         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15613
15614 2008-09-15  Bruno Haible  <bruno@clisp.org>
15615
15616         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
15617         * doc/posix-functions/strerror.texi: Mention also Cygwin.
15618         * doc/posix-functions/perror.texi: Likewise.
15619         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
15620         is missing.
15621         Reported by Eric Blake.
15622
15623         * lib/errno.in.h: Use replacement values >= 2000.
15624         Reported by Eric Blake.
15625
15626 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15627
15628         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
15629         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
15630         limit.
15631         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
15632         compareseq was aborted.
15633
15634 2008-09-14  Bruno Haible  <bruno@clisp.org>
15635
15636         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
15637         yvec_edit_count.
15638         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
15639         (fstrcmp_bounded): Simplify result computation accordingly.
15640
15641 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15642
15643         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
15644         (fstrcmp): Define in terms of fstrcmp_bounded.
15645         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
15646         lower_bound argument.
15647         Return quickly if the result is certainly < lower_bound.
15648         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
15649
15650 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15651
15652         * lib/diffseq.h (EARLY_ABORT): New macro.
15653         (compareseq): Change return type to bool. Return true when EARLY_ABORT
15654         evaluates to true.
15655
15656 2008-09-14  Bruno Haible  <bruno@clisp.org>
15657
15658         * modules/perror-tests: New file.
15659         * tests/test-perror.sh: New file.
15660         * tests/test-perror.c: New file.
15661
15662         New module 'perror'.
15663         * lib/stdio.in.h (perror): New declaration.
15664         * lib/perror.c: New file.
15665         * m4/perror.m4: New file.
15666         * modules/perror: New file.
15667         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
15668         * doc/posix-functions/perror.texi: Mention the perror module.
15669         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
15670         REPLACE_PERROR.
15671         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
15672         REPLACE_PERROR.
15673
15674 2008-09-14  Bruno Haible  <bruno@clisp.org>
15675
15676         * modules/stdio (Makefile.am): Reorder to match the order in
15677         lib/stdio.in.h.
15678         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
15679
15680 2008-09-13  Bruno Haible  <bruno@clisp.org>
15681
15682         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
15683
15684 2008-09-13  Bruno Haible  <bruno@clisp.org>
15685
15686         Extend strerror to cover the added errno values.
15687         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
15688         (rpl_strerror): Provide error messages for the added errno values and
15689         for the WSA* values.
15690         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
15691         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
15692         strerror.
15693         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
15694         * modules/strerror (Depends-on): Add errno.
15695         * doc/posix-functions/strerror.texi: Document the change.
15696         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
15697         and EOVERFLOW.
15698
15699 2008-09-13  Bruno Haible  <bruno@clisp.org>
15700
15701         * modules/EOVERFLOW: Remove file.
15702         * m4/eoverflow.m4: Remove file.
15703         * modules/EOVERFLOW-tests: Remove file.
15704         * tests/test-EOVERFLOW.c: Remove file.
15705         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
15706         * modules/ftell (Depends-on): Likewise.
15707         * modules/getdelim (Depends-on): Likewise.
15708         * modules/getugroups (Depends-on): Likewise.
15709         * modules/poll (Depends-on): Likewise.
15710         * modules/snprintf (Depends-on): Likewise.
15711         * modules/sprintf-posix (Depends-on): Likewise.
15712         * modules/vasnprintf (Depends-on): Likewise.
15713         * modules/vasprintf (Depends-on): Likewise.
15714         * modules/vfprintf-posix (Depends-on): Likewise.
15715         * modules/vsnprintf (Depends-on): Likewise.
15716         * modules/vsprintf-posix (Depends-on): Likewise.
15717         * modules/xvasprintf (Depends-on): Likewise.
15718         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
15719         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
15720         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
15721         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
15722         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
15723         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
15724         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
15725         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
15726         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
15727         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
15728         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
15729         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
15730         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
15731         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
15732         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
15733         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
15734         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
15735         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
15736         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
15737         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
15738         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
15739         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
15740         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
15741         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
15742         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
15743         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
15744         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
15745         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
15746         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
15747         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
15748         * MODULES.html.sh: Remove EOVERFLOW.
15749         * NEWS: Mention the change.
15750
15751 2008-09-13  Bruno Haible  <bruno@clisp.org>
15752
15753         * modules/errno-tests: New file.
15754         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
15755
15756         * lib/errno.in.h: New file.
15757         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
15758         * modules/errno: New file.
15759         * doc/posix-headers/errno.texi: Update documentation.
15760         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
15761
15762 2008-09-13  Bruno Haible  <bruno@clisp.org>
15763
15764         * tests/test-poll.c: Use #if for native Windows, rather than testing
15765         __MSVCRT__.
15766
15767 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15768             Bruno Haible  <bruno@clisp.org>
15769
15770         * lib/glob.c: Don't include <pwd.h> on native Windows.
15771         (WINDOWS32): New macro.
15772         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
15773
15774 2008-09-13  Bruno Haible  <bruno@clisp.org>
15775
15776         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
15777         (ETIMEDOUT): Remove macro.
15778         (glthread_cond_timedwait_multithreaded): New declaration.
15779         (glthread_cond_timedwait): Use it.
15780         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
15781         (glthread_cond_timedwait_multithreaded): New function.
15782
15783 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15784
15785         * modules/poll-tests: Do not check for io.h.
15786         * tests/test-poll.c: Check for __MSVCRT__ instead.
15787
15788 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15789
15790         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
15791         * modules/poll-tests: Add inet_pton, stdbool, sockets.
15792         * tests/test-poll.c: Use them.  Use _pipe on Windows.
15793
15794 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15795
15796         * modules/poll-tests: New.
15797         * tests/test-poll.c: New.
15798
15799 2008-09-12  Eric Blake  <ebb9@byu.net>
15800
15801         frexp: test for NetBSD failure on -0.0
15802         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
15803         not all, bugs from NetBSD 3.0 have been fixed.
15804         * doc/posix-functions/frexp.texi (frexp): Document bug.
15805         Reported by Thomas Klausner.
15806
15807         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
15808         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
15809         literal -0.0.
15810         Reported by Jonathan C. Patschke <jp@centtech.com>.
15811
15812 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15813
15814         * lib/glthread/cond.h: Use dummy implementation also if
15815         USE_WIN32_THREADS.
15816
15817 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15818
15819         * modules/fnmatch-posix (License): Change to LGPLv2+.
15820         * modules/fnmatch-gnu (License): Likewise.
15821
15822 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15823
15824         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
15825
15826 2008-09-11  Jim Meyering  <meyering@redhat.com>
15827
15828         * users.txt: Add gtk-vnc.
15829
15830 2008-09-08  Simon Josefsson  <simon@josefsson.org>
15831
15832         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
15833         rotate amounts.
15834
15835         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
15836         required for 16-bit and 8-bit rotates.
15837         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
15838         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
15839         UINT8_MAX instead of hard-coded constants.
15840         Suggested by Paul Eggert.
15841
15842 2008-09-07  Bruno Haible  <bruno@clisp.org>
15843
15844         * tests/test-striconveh.c (main): Check behaviour when converting from
15845         UTF-7.
15846
15847         Make striconveh work better with stateful encodings.
15848         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
15849         that iconv does not increment the inptr when returning -1/EINVAL.
15850
15851 2008-09-07  Bruno Haible  <bruno@clisp.org>
15852
15853         * build-aux/config.rpath: Update according to libtool-2.2.6.
15854         * build-aux/config.libpath: Likewise.
15855
15856 2008-09-06  Bruno Haible  <bruno@clisp.org>
15857
15858         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
15859         * lib/freadptr.c (freadptr): Likewise.
15860         * lib/freadseek.c (freadptrinc): Likewise.
15861         Reported by Simon Josefsson.
15862
15863 2008-09-06  Bruno Haible  <bruno@clisp.org>
15864
15865         * modules/freadptr (License): Change to LGPLv2+.
15866         * modules/freadseek (License): Likewise.
15867         Suggested by Eric Blake.
15868
15869         * modules/memchr2 (License): Change to LGPLv2+.
15870         Approved by Eric Blake.
15871
15872 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15873             Bruno Haible  <bruno@clisp.org>
15874
15875         Make gnulib-tool work with native 'sed' on AIX.
15876         * gnulib-tool (sed_noop): New variable.
15877         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
15878         func_add_or_update, func_create_testdir): Use it to initialize sed
15879         script variables.
15880         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15881
15882 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
15883             Bruno Haible  <bruno@clisp.org>
15884
15885         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
15886         also works after #include directives.
15887
15888 2008-09-04  Ondřej Vašík  <ovasik@redhat.com>
15889
15890         getdate.y: reject an out-of-range timezone value
15891         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
15892         the range [-24...+24].  When specified with only one or two digits,
15893         * tests/test-getdate.c: Tests for the fix.
15894         * doc/getdate.texi: Document this change.
15895
15896 2008-09-03  Bruno Haible  <bruno@clisp.org>
15897
15898         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
15899
15900 2008-09-02  Simon Josefsson  <simon@josefsson.org>
15901
15902         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
15903         <bruce.korb@gmail.com> with ideas from Ben Pfaff
15904         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
15905         Blake <ebb9@byu.net>.
15906
15907         * tests/test-bitrotate.c: Add more test vectors.
15908
15909 2008-09-02  Eric Blake  <ebb9@byu.net>
15910
15911         vasnprintf-posix: handle large precision via %.*d
15912         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
15913         when handling it ourselves.
15914         * tests/test-vasnprintf-posix.c (test_function): Add test.
15915         * tests/test-snprintf-posix.h (test_function): Likewise.
15916         * tests/test-sprintf-posix.h (test_function): Likewise.
15917         * tests/test-vasprintf-posix.c (test_function): Likewise.
15918         Reported by Alain Guibert.
15919
15920 2008-09-01  Eric Blake  <ebb9@byu.net>
15921
15922         c-stack: make configure-time check more robust
15923         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
15924         successful sigaction call.
15925         Reported by Tom G. Christensen.
15926
15927 2008-09-01  Bruno Haible  <bruno@clisp.org>
15928
15929         New module 'findprog-lgpl'.
15930         * modules/findprog-lgpl: New file.
15931         * lib/findprog-lgpl.c: New file.
15932         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
15933         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
15934         to decide whether to use strdup or xstrdup, concatenated_filename or
15935         xconcatenated_filename.
15936
15937 2008-09-01  Bruno Haible  <bruno@clisp.org>
15938
15939         Split module 'concat-filename' into 'concat-filename' (LGPL) and
15940         'xconcat-filename' (GPL).
15941         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
15942         (License): Change to LGPLv2+.
15943         * modules/xconcat-filename: New file.
15944         * lib/concat-filename.h (concatenated_filename): Change specification.
15945         (xconcatenated_filename): New declaration.
15946         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
15947         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
15948         memory situations.
15949         * lib/xconcat-filename.c: New file.
15950         * NEWS: Mention the change.
15951         * lib/findprog.c: Include concat-filename.h, not filename.h.
15952         (find_in_path): Use xconcatenated_filename instead of
15953         concatenated_filename.
15954         * lib/javacomp.c: Include concat-filename.h, not filename.h.
15955         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
15956         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
15957         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
15958         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
15959         instead of concatenated_filename.
15960         * lib/javaexec.c: Include concat-filename.h, not filename.h.
15961         (execute_java_class): Use xconcatenated_filename instead of
15962         concatenated_filename.
15963         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
15964         * modules/javacomp (Depends-on): Likewise.
15965         * modules/javaexec (Depends-on): Likewise.
15966
15967 2008-09-01  Bruno Haible  <bruno@clisp.org>
15968
15969         Split module 'filename' into 'filename' and 'concat-filename'.
15970         * modules/filename: Keep only lib/filename.h.
15971         (License): Change to LGPLv2+.
15972         * modules/concat-filename: New file, extracted from modules/filename.
15973         * lib/filename.h (concatenated_filename): Remove declaration.
15974         * lib/concat-filename.h: New file, extracted from lib/filename.h.
15975         * lib/concat-filename.c: Include concat-filename.h.
15976         * NEWS: Mention the change.
15977
15978 2008-09-01  Simon Josefsson  <simon@josefsson.org>
15979
15980         * lib/bitrotate.h (rotl8, rotr8): Add.
15981
15982         * modules/bitrotate (configure.ac): Need
15983         AC_REQUIRE([AC_C_INLINE]).
15984         (Description): Mention stdint.h.  Reported by Bruno Haible
15985         <bruno@clisp.org>.
15986
15987         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
15988         Paolo Bonzini <bonzini@gnu.org>.
15989
15990 2008-08-31  Bruno Haible  <bruno@clisp.org>
15991
15992         Assume Solaris specific bi-arch conventions on Solaris systems.
15993         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
15994         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
15995         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
15996         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
15997         like acl_libdirstem.
15998         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
15999         acl_libdirstem.
16000         * NEWS: Mention the change.
16001         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
16002
16003 2008-08-31  Jim Meyering  <meyering@redhat.com>
16004
16005         * lib/strftime.h: Add comments describing the two added arguments.
16006
16007         remove duplicate #include directives
16008         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
16009         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
16010
16011 2008-08-31  Bruno Haible  <bruno@clisp.org>
16012
16013         New module 'sigpipe-die'.
16014         * modules/sigpipe-die: New file.
16015         * lib/sigpipe-die.h: New file.
16016         * lib/sigpipe-die.c: New file.
16017         * MODULES.html.sh (Signal handling): Add sigpipe-die.
16018
16019 2008-08-31  Bruno Haible  <bruno@clisp.org>
16020
16021         Don't override previously installed signal handlers.
16022         * lib/fatal-signal.c (saved_sigactions): New variable.
16023         (uninstall_handlers): Reset the signal to the saved handler, not
16024         to SIG_DFL (except when ignored).
16025         (install_handlers): Save the previous handlers.
16026
16027 2008-08-30  Bruno Haible  <bruno@clisp.org>
16028
16029         * gnulib-tool (func_reset_sigpipe): New function.
16030         (func_get_automake_snippet, func_modules_transitive_closure,
16031         func_import): Invoke it before a join command that reads from stdin,
16032         to avoid "echo: write error: Broken pipe" error messages on stderr.
16033         Reported by Sam Steingold <sds@gnu.org>.
16034
16035 2008-08-30  Bruno Haible  <bruno@clisp.org>
16036
16037         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
16038         Code copied from m4/open.m4.
16039         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
16040         access and the filename ends in a slash. Code copied from lib/open.c.
16041         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
16042         * tests/test-fopen.c (main): Check against bug with trailing slash.
16043
16044 2008-08-29  Bruno Haible  <bruno@clisp.org>
16045
16046         Avoid some "gcc -pedantic" warnings.
16047         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
16048         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
16049         * lib/dirent.in.h: Likewise.
16050         * lib/fcntl.in.h: Likewise.
16051         * lib/float.in.h: Likewise.
16052         * lib/iconv.in.h: Likewise.
16053         * lib/inttypes.in.h: Likewise.
16054         * lib/locale.in.h: Likewise.
16055         * lib/math.in.h: Likewise.
16056         * lib/netinet_in.in.h: Likewise.
16057         * lib/search.in.h: Likewise.
16058         * lib/signal.in.h: Likewise.
16059         * lib/stdarg.in.h: Likewise.
16060         * lib/stdint.in.h: Likewise.
16061         * lib/stdio.in.h: Likewise.
16062         * lib/stdlib.in.h: Likewise.
16063         * lib/string.in.h: Likewise.
16064         * lib/strings.in.h: Likewise.
16065         * lib/sys_select.in.h: Likewise.
16066         * lib/sys_socket.in.h: Likewise.
16067         * lib/sys_stat.in.h: Likewise.
16068         * lib/sys_time.in.h: Likewise.
16069         * lib/sysexits.in.h: Likewise.
16070         * lib/time.in.h: Likewise.
16071         * lib/unistd.in.h: Likewise.
16072         * lib/wchar.in.h: Likewise.
16073         * lib/wctype.in.h: Likewise.
16074         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
16075         * modules/fchdir (Makefile.am): Likewise.
16076         * modules/fcntl (Makefile.am): Likewise.
16077         * modules/float (Makefile.am): Likewise.
16078         * modules/iconv_open (Makefile.am): Likewise.
16079         * modules/inttypes (Makefile.am): Likewise.
16080         * modules/locale (Makefile.am): Likewise.
16081         * modules/math (Makefile.am): Likewise.
16082         * modules/netinet_in (Makefile.am): Likewise.
16083         * modules/search (Makefile.am): Likewise.
16084         * modules/signal (Makefile.am): Likewise.
16085         * modules/stdarg (Makefile.am): Likewise.
16086         * modules/stdint (Makefile.am): Likewise.
16087         * modules/stdio (Makefile.am): Likewise.
16088         * modules/stdlib (Makefile.am): Likewise.
16089         * modules/string (Makefile.am): Likewise.
16090         * modules/strings (Makefile.am): Likewise.
16091         * modules/sys_select (Makefile.am): Likewise.
16092         * modules/sys_socket (Makefile.am): Likewise.
16093         * modules/sys_stat (Makefile.am): Likewise.
16094         * modules/sys_time (Makefile.am): Likewise.
16095         * modules/sysexits (Makefile.am): Likewise.
16096         * modules/time (Makefile.am): Likewise.
16097         * modules/unistd (Makefile.am): Likewise.
16098         * modules/wchar (Makefile.am): Likewise.
16099         * modules/wctype (Makefile.am): Likewise.
16100         Reported by Reuben Thomas <rrt@sc3d.org>.
16101
16102 2008-08-29  Bruno Haible  <bruno@clisp.org>
16103
16104         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
16105         any more.
16106
16107 2008-08-29  Simon Josefsson  <simon@josefsson.org>
16108
16109         * MODULES.html.sh (Misc): Add bitrotate.
16110
16111         * modules/bitrotate: New file.
16112
16113         * lib/bitrotate.h: New file.
16114
16115         * modules/bitrotate-tests: New file.
16116
16117         * tests/test-bitrotate.c: New file.
16118
16119         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
16120         on the bitrotate module.
16121
16122         * lib/arctwo.c: Use new bitrotate module.
16123
16124 2008-08-29  Jim Meyering  <meyering@redhat.com>
16125
16126         bootstrap: merge changes from coreutils
16127         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
16128         of copied files.  Remove a kludge, now that this is fixed.
16129         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
16130         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
16131         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
16132
16133 2008-08-29  Bruno Haible  <bruno@clisp.org>
16134
16135         * MODULES.html.sh: Remove --cvs-urls option.
16136
16137 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
16138
16139         maint.mk: adjust to file name change
16140         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
16141
16142 2008-08-28  Jim Meyering  <meyering@redhat.com>
16143
16144         * modules/getndelim2 (License): Relicense to LGPLv2+.
16145         Approved by Richard Stallman for the version of 1995, and by
16146         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
16147
16148 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
16149
16150         * lib/getdelim.c (flockfile, funlockfile): Make all of them
16151         dummy if one is not available.  Do not touch them if
16152         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
16153         (getc_maybe_unlocked): New.
16154         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
16155
16156 2008-08-26  Eric Blake  <ebb9@byu.net>
16157
16158         doc/INSTALL: resync from autoconf
16159         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
16160         (INSTALL_PRELUDE): Delete; this is done more efficiently by
16161         moving...
16162         * install.texi [!autoconf]: ...here.  Resync from autoconf.
16163         * INSTALL: Regenerate.
16164         * INSTALL.ISO: New file.
16165         * INSTALL.UTF-8: Likewise.
16166
16167 2008-08-26  Jim Meyering  <meyering@redhat.com>
16168
16169         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
16170         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
16171         these definitions conditional, so that they may be overridden, too.
16172
16173 2008-08-26  Bruno Haible  <bruno@clisp.org>
16174
16175         Generate INSTALL file variants with prettier quotes.
16176         * doc/Makefile (INSTALL_PRELUDE): New macro.
16177         (INSTALL): Use it.
16178         (INSTALL.ISO, INSTALL.UTF-8): New rules.
16179
16180 2008-08-26  Bruno Haible  <bruno@clisp.org>
16181
16182         Run makeinfo in an English locale.
16183         * doc/Makefile (MAKEINFO): New variable.
16184
16185 2008-08-26  Bruno Haible  <bruno@clisp.org>
16186
16187         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
16188         Suggested by Eric Blake.
16189
16190 2008-08-25  Bruno Haible  <bruno@clisp.org>
16191
16192         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
16193
16194 2008-08-25  Eric Blake  <ebb9@byu.net>
16195
16196         c-stack: test that stack overflow can be caught
16197         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
16198         that platform allows handling stack overflow; at least OS/2 EMX
16199         has sigaltstack, but crashes before transferring control to
16200         handler on stack overflow.
16201         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
16202         check for HAVE_STACK_OVERFLOW_HANDLING.
16203         Reported by Elbert Pol.
16204
16205 2008-08-25  Bruno Haible  <bruno@clisp.org>
16206
16207         * doc/posix-functions/strftime.texi: Fix description of strftime
16208         module.
16209
16210 2008-08-24  Bruno Haible  <bruno@clisp.org>
16211
16212         * tests/uniwidth/test-uc_width2.c: New file.
16213         * tests/uniwidth/test-uc_width2.sh: New file.
16214         * modules/uniwidth/width-tests (Files): Add the new files.
16215         (TESTS): Add uniwidth/test-uc_width2.sh.
16216         (TESTS_ENVIRONMENT): New variable.
16217         (check_PROGRAMS): Add test-uc_width2.
16218         (test_uc_width2_SOURCES): New variable.
16219
16220         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
16221         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
16222         not 0x00AB.
16223         Reported by Alexander V. Lukyanov <lav@netis.ru>.
16224
16225 2008-08-22  Eric Blake  <ebb9@byu.net>
16226
16227         test-lock, test-tls: mention why a test is skipped
16228         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
16229         skipped.
16230         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
16231
16232         count-one-bits: relax license
16233         * modules/count-one-bits (License): Relicense to LGPLv2+.
16234         Suggested by Ludovic Courtès, approved by Ben Pfaff.
16235
16236 2008-08-22  Andreas Schwab  <schwab@suse.de>
16237
16238         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
16239         Remove spurious space in assignment.
16240
16241 2008-08-21  Simon Josefsson  <simon@josefsson.org>
16242
16243         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
16244         Paul Eggert <eggert@CS.UCLA.EDU>.
16245
16246 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
16247
16248         * modules/gettext: Add m4/threadlib.m4.
16249
16250 2008-08-19  Eric Blake  <ebb9@byu.net>
16251
16252         test-c-stack: fix compilation failure on FreeBSD 5.0
16253         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
16254         headers before <sys/resource.h>.
16255         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
16256         the bug.
16257         Reported by Nelson H. F. Beebe.
16258
16259         strverscmp: migrate from "strverscmp.h" to <string.h>
16260         * modules/string (Makefile.am): Add new hooks.
16261         * modules/strverscmp (Files): Remove strverscmp.h.
16262         (Depends-on): Add string.
16263         (configure.ac): Add indicator.
16264         (Include): Mention new header.
16265         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
16266         defaults.
16267         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
16268         results.
16269         * lib/strverscmp.h: Delete.
16270         * lib/string.in.h (strverscmp): Provide declaration, when needed.
16271         * tests/test-strverscmp.c (includes): Adjust client.
16272         * lib/check-version.c (includes): Likewise.
16273         * NEWS: Document the change.
16274
16275         strverscmp: add unit test
16276         * modules/strverscmp-tests: New file.
16277         * tests/test-strverscmp.c: Likewise.
16278
16279 2008-08-19  Simon Josefsson  <simon@josefsson.org>
16280
16281         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
16282         regarding Windows crypto stuff, from Mono.
16283
16284 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
16285
16286         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
16287         if present, for intel RND.  Return error on failures.
16288
16289 2008-08-18  Ben Pfaff  <blp@gnu.org>
16290
16291         gitlog-to-changelog: give better diagnostic for failed pipe-open
16292         * build-aux/gitlog-to-changelog: Improve error message: suggest
16293         that the version of Git may be too old.
16294
16295 2008-08-18  Simon Josefsson  <simon@josefsson.org>
16296
16297         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
16298         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
16299
16300 2008-08-18  Bruno Haible  <bruno@clisp.org>
16301
16302         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
16303         pthread_in_use().
16304
16305 2008-08-18  Bruno Haible  <bruno@clisp.org>
16306
16307         * lib/glthread/threadlib.c: Include <pthread.h>.
16308
16309 2008-08-18  Bruno Haible  <bruno@clisp.org>
16310
16311         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
16312         glthread_recursive_lock_* macros.
16313         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
16314         Fix syntax error.
16315
16316 2008-08-18  Bruno Haible  <bruno@clisp.org>
16317
16318         * lib/glthread/thread.c: Avoid forcing a context switch right after
16319         thread creation.
16320
16321 2008-08-17  Bruno Haible  <bruno@clisp.org>
16322
16323         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
16324         * lib/glthread/thread.h: Provide Win32 specific implementation.
16325         * modules/thread (Files): Add lib/glthread/thread.c.
16326         (Depends-on): Add lock.
16327         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
16328
16329 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16330
16331         New module 'yield'.
16332         * modules/yield: New file.
16333         * lib/glthread/yield.h: New file.
16334         * m4/yield.m4: New file.
16335         * MODULES.html.sh (Multithreading): Add yield.
16336
16337 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16338
16339         New module 'thread'.
16340         * modules/thread: New file.
16341         * lib/glthread/thread.h: New file.
16342         * m4/thread.m4: New file.
16343         * MODULES.html.sh (Multithreading): Add thread.
16344
16345 2008-08-17  Bruno Haible  <bruno@clisp.org>
16346
16347         * lib/glthread/lock.h: Include <stdlib.h> always.
16348         * lib/glthread/tls.h: Likewise.
16349         * lib/glthread/cond.h: Likewise.
16350
16351 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16352
16353         New module 'cond'.
16354         * modules/cond: New file.
16355         * lib/glthread/cond.h: New file.
16356         * lib/glthread/cond.c: New file.
16357         * m4/cond.m4: New file.
16358         * MODULES.html.sh (Multithreading): Add cond.
16359
16360 2008-08-16  Eric Blake  <ebb9@byu.net>
16361
16362         c-stack: fix regression on Irix 5.3 from 2008-06-21
16363         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
16364         sa_sigaction...
16365         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
16366         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
16367         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
16368         * modules/signal (Makefile.am): Use the value.
16369         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
16370         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
16371         * doc/posix-headers/signal.texi (signal.h): Document this
16372         portability issue.
16373         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
16374         Reported by Tom G. Christensen.
16375
16376 2008-08-17  Bruno Haible  <bruno@clisp.org>
16377
16378         New module 'threadlib'.
16379         * modules/threadlib: New file.
16380         * lib/glthread/threadlib.c: New file, extracted from
16381         lib/glthread/lock.c.
16382         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
16383         functions.
16384         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
16385         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
16386         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
16387         macros.
16388         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
16389         (gl_DISABLE_THREADS): Remove macro.
16390         * modules/lock (Files): Remove build-aux/config.rpath.
16391         (Depends-on): Remove havelib. Add threadlib.
16392         (configure.ac-early): Remove section.
16393         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
16394         * modules/tls (Depends-on): Remove lock. Add threadlib.
16395         (Link): New section, copied from threadlib.
16396         * MODULES.html.sh (Multithreading): Add threadlib.
16397
16398 2008-08-14  Bruno Haible  <bruno@clisp.org>
16399
16400         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
16401         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
16402         glthread_rwlock_unlock, glthread_rwlock_destroy,
16403         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
16404         glthread_recursive_lock_destroy): Define as macros always.
16405         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
16406         glthread_lock_lock.
16407         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
16408         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
16409         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
16410         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
16411         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
16412         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
16413         (glthread_recursive_lock_lock_func): Renamed from
16414         glthread_recursive_lock_lock.
16415         (glthread_recursive_lock_unlock_func): Renamed from
16416         glthread_recursive_lock_unlock.
16417         (glthread_recursive_lock_destroy_func): Renamed from
16418         glthread_recursive_lock_destroy.
16419
16420 2008-08-14  Bruno Haible  <bruno@clisp.org>
16421
16422         * lib/glthread/lock.h: Renamed from lib/lock.h.
16423         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
16424         * lib/glthread/tls.h: Renamed from lib/tls.h.
16425         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
16426         * lib/fstrcmp.c: Update includes.
16427         * lib/strsignal.c: Update includes.
16428         * modules/lock (Files, Makefile.am): Update.
16429         (Include): Change to "glthread/lock.h".
16430         * modules/tls (Files, Makefile.am): Update.
16431         (Include): Change to "glthread/tls.h".
16432         * tests/test-lock.c: Update includes.
16433         * tests/test-tls.c: Update includes.
16434         * NEWS: Mention the renamed header files.
16435
16436 2008-08-11  Jim Meyering  <meyering@redhat.com>
16437
16438         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
16439
16440 2008-08-11  Eric Blake  <ebb9@byu.net>
16441
16442         test-c-stack: avoid C99-ism
16443         * tests/test-c-stack.c (main): Fix whitespace, move declaration
16444         before statement.
16445         Reported by Alain Guibert.
16446
16447 2008-08-10  Jim Meyering  <meyering@redhat.com>
16448
16449         ensure that return value of uinttostr et al are not ignored
16450         * lib/inttostr.h (__GNUC_PREREQ): Define.
16451         (__attribute_warn_unused_result__): Define.
16452         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
16453
16454 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
16455
16456         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
16457         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
16458
16459 2008-08-07  Jim Meyering  <meyering@redhat.com>
16460
16461         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
16462
16463         * modules/mkstemp (License): Relicense under LGPLv2+.
16464         * modules/tempname (License): Likewise.
16465
16466 2008-08-06  Bruno Haible  <bruno@clisp.org>
16467
16468         * lib/poll.c (poll): Further micro-optimization.
16469
16470 2008-08-06  Jim Meyering  <meyering@redhat.com>
16471
16472         inet_pton.c: use locale-independent tolower
16473         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
16474         (inet_pton6): Use c_tolower rather than tolower.
16475         * modules/inet_pton (Depends-on): Add c-ctype.
16476
16477 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
16478
16479         * lib/poll.c (poll): Avoid division when timeout is 0, cache
16480         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
16481
16482 2008-08-06  Jim Meyering  <meyering@redhat.com>
16483
16484         * modules/inet_pton (License): Relicense under LGPLv2+.
16485
16486 2008-08-03  Bruno Haible  <bruno@clisp.org>
16487
16488         Additional non-aborting API for lock and tls.
16489         * lib/lock.h: Include <errno.h>.
16490         (glthread_lock_init): New macro/function.
16491         (gl_lock_init): Define as wrapper around glthread_lock_init.
16492         (glthread_lock_lock): New macro/function.
16493         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
16494         (glthread_lock_unlock): New macro/function.
16495         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
16496         (glthread_lock_destroy): New macro/function.
16497         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
16498         (glthread_rwlock_init): New macro/function.
16499         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
16500         (glthread_rwlock_rdlock): New macro/function.
16501         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
16502         (glthread_rwlock_wrlock): New macro/function.
16503         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
16504         (glthread_rwlock_unlock): New macro/function.
16505         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
16506         (glthread_rwlock_destroy): New macro/function.
16507         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
16508         (glthread_recursive_lock_init): New macro/function.
16509         (gl_recursive_lock_init): Define as wrapper around
16510         glthread_recursive_lock_init.
16511         (glthread_recursive_lock_lock): New macro/function.
16512         (gl_recursive_lock_lock): Define as wrapper around
16513         glthread_recursive_lock_lock.
16514         (glthread_recursive_lock_unlock): New macro/function.
16515         (gl_recursive_lock_unlock): Define as wrapper around
16516         glthread_recursive_lock_unlock.
16517         (glthread_recursive_lock_destroy): New macro/function.
16518         (gl_recursive_lock_destroy): Define as wrapper around
16519         glthread_recursive_lock_destroy.
16520         (glthread_once): New macro/function.
16521         (gl_once): Define as wrapper around glthread_once.
16522         Update function declarations.
16523         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
16524         glthread_rwlock_init. Return error code.
16525         (glthread_rwlock_rdlock_multithreaded): Renamed from
16526         glthread_rwlock_rdlock. Return error code.
16527         (glthread_rwlock_wrlock_multithreaded): Renamed from
16528         glthread_rwlock_wrlock. Return error code.
16529         (glthread_rwlock_unlock_multithreaded): Renamed from
16530         glthread_rwlock_unlock. Return error code.
16531         (glthread_rwlock_destroy_multithreaded): Renamed from
16532         glthread_rwlock_destroy. Return error code.
16533         (glthread_recursive_lock_init_multithreaded): Renamed from
16534         glthread_recursive_lock_init. Return error code.
16535         (glthread_recursive_lock_lock_multithreaded): Renamed from
16536         glthread_recursive_lock_lock. Return error code.
16537         (glthread_recursive_lock_unlock_multithreaded): Renamed from
16538         glthread_recursive_lock_unlock. Return error code.
16539         (glthread_recursive_lock_destroy_multithreaded): Renamed from
16540         glthread_recursive_lock_destroy. Return error code.
16541         (glthread_once_call): Make static.
16542         (glthread_once_multithreaded): Renamed from glthread_once.
16543         * lib/tls.h: Include <errno.h>.
16544         (glthread_tls_key_init): New macro/function.
16545         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
16546         (glthread_tls_set): New macro/function.
16547         (gl_tls_set): Define as wrapper around glthread_tls_set.
16548         (glthread_tls_key_destroy): New macro/function.
16549         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
16550         Update function declarations.
16551         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
16552         glthread_tls_get.
16553         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
16554
16555 2008-08-04  Eric Blake  <ebb9@byu.net>
16556
16557         gnumakefile: use space, not TAB, outside of targets
16558         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
16559
16560 2008-08-02  Jim Meyering  <meyering@redhat.com>
16561
16562         getdate.y: avoid locale-dependent date parsing failure
16563         In Turkish locales, getdate would fail to recognize keywords
16564         containing a lowercase "i".  The solution is not to rely on
16565         locale-sensitive case-conversion.
16566         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
16567         (lookup_word): Use c_toupper in place of toupper.
16568         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
16569         Reported by Vefa Bicakci <bicave@superonline.com> in
16570         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
16571         * modules/getdate (Depends-on): Add c-ctype.
16572
16573 2008-08-02  Bruno Haible  <bruno@clisp.org>
16574
16575         * gnulib-tool (func_import): When updating or creating a .gitignore
16576         file, prepend each added line with a slash, and ignore leading slashes
16577         from the existing lines.
16578         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
16579
16580 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16581
16582         Portability fix for GNU make 3.79.1.
16583         * top/GNUmakefile: Avoid 'else COND', which older GNU make
16584         versions do not understand.
16585
16586 2008-08-01  Bruno Haible  <bruno@clisp.org>
16587
16588         Work around bug of HP-UX 10.20 cc with -0.0 literal.
16589         * tests/test-isnanf.h (zero): New variable.
16590         (main): Avoid literal -0.0f.
16591         * tests/test-isnand.h (zero): New variable.
16592         (main): Avoid literal -0.0.
16593         * tests/test-isnanl.h (zero): New variable.
16594         (main): Avoid literal -0.0L.
16595         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
16596         (test_float, test_double, test_long_double): Avoid literals -0.0f,
16597         -0.0, -0.0L.
16598         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
16599         (test_signbitd): Avoid literal -0.0.
16600         (test_signbitl): Avoid literal -0.0L.
16601         * tests/test-ceilf1.c (zero): New variable.
16602         (main): Avoid literal -0.0f.
16603         * tests/test-ceill.c (zero): New variable.
16604         (main): Avoid literal -0.0L.
16605         * tests/test-floorf1.c (zero): New variable.
16606         (main): Avoid literal -0.0f.
16607         * tests/test-floorl.c (zero): New variable.
16608         (main): Avoid literal -0.0L.
16609         * tests/test-roundf1.c (zero): New variable.
16610         (main): Avoid literal -0.0f.
16611         * tests/test-round1.c (zero): New variable.
16612         (main): Avoid literal -0.0.
16613         * tests/test-roundl.c (zero): New variable.
16614         (main): Avoid literal -0.0L.
16615         * tests/test-truncf1.c (zero): New variable.
16616         (main): Avoid literal -0.0f.
16617         * tests/test-trunc1.c (zero): New variable.
16618         (main): Avoid literal -0.0.
16619         * tests/test-truncl.c (zero): New variable.
16620         (main): Avoid literal -0.0L.
16621         * tests/test-frexp.c (zero): New variable.
16622         (main): Avoid literal -0.0.
16623         * tests/test-frexpl.c (zero): New variable.
16624         (main): Avoid literal -0.0L.
16625         * tests/test-ldexpl.c (zero): New variable.
16626         (main): Avoid literal -0.0L.
16627         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16628         (zerod, zerol): New variables.
16629         (test_function): Avoid literals -0.0, -0.0L.
16630         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16631         (zerod, zerol): New variables.
16632         (test_function): Avoid literals -0.0, -0.0L.
16633         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16634         (zerod, zerol): New variables.
16635         (test_function): Avoid literals -0.0, -0.0L.
16636         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16637         (zerod, zerol): New variables.
16638         (test_function): Avoid literals -0.0, -0.0L.
16639         * tests/test-strtod.c (zero): New variable.
16640         (main): Avoid literal -0.0.
16641         Reported by Jonathan C. Patschke <jp@centtech.com>.
16642
16643 2008-07-31  Jim Meyering  <meyering@redhat.com>
16644
16645         sha256.h: correct definition of SHA224_DIGEST_SIZE
16646         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
16647         Reported by Paulie Pena IV <paulie4@gmail.com>.
16648         Define as 224 / 8, rather than as a literal.
16649         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
16650         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
16651         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
16652
16653 2008-07-31  Bruno Haible  <bruno@clisp.org>
16654
16655         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
16656         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
16657         Reported by Jonathan Patschke <jp@centtech.com>.
16658
16659 2008-07-31  Bruno Haible  <bruno@clisp.org>
16660
16661         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
16662         Reported by Paolo Bonzini <bonzini@gnu.org>.
16663
16664 2008-07-30  Eric Blake  <ebb9@byu.net>
16665
16666         test-strtod: allow compilation without -lm
16667         * tests/test-strtod.c (main): Avoid link dependence on fabs.
16668         Reported by Dennis Clarke <blastwave@gmail.com>.
16669
16670 2008-07-28  Jim Meyering  <meyering@redhat.com>
16671
16672         bootstrap: work also when there are no .po files in po/
16673         * build-aux/bootstrap (update_po_files): Complete the change
16674         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
16675
16676 2008-07-27  Jim Meyering  <meyering@redhat.com>
16677
16678         * users.txt: Add zile.
16679
16680 2008-07-26  Ben Pfaff  <blp@gnu.org>
16681
16682         Add missing dependencies on new m4/exponent[fdl].m4 files.
16683         * modules/isnanf-nolibm: Add m4/exponentf.m4.
16684         * modules/isnand-nolibm: Add m4/exponentd.m4.
16685         * modules/isnanl-nolibm: Add m4/exponentl.m4.
16686         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
16687         m4/isnan[fdl].m4, because the macros actually used moved.
16688         Reported by Jim Meyering.
16689
16690 2008-07-14  Ben Pfaff  <blp@gnu.org>
16691
16692         Add isinf module.
16693         * lib/isinf.c: New file.
16694         * lib/math.in.h: Define isinf macro if we have decided to replace
16695         it.
16696         * m4/isinf.m4: New file.
16697         * m4/math_h.m4: Initialize and substitute variables for isinf
16698         module.
16699         * modules/isinf: New file.
16700         * modules/isinf-tests: New file.
16701         * modules/math: Add substitutions for new module.
16702         * tests/test-isinf.c: New file.
16703         * doc/posix-functions/isinf.texi: Mention new module.
16704         * MODULES.html.sh: Mention new module.
16705
16706 2008-07-14  Ben Pfaff  <blp@gnu.org>
16707
16708         Factor out some macros for use by additional modules.
16709         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
16710         exponentf.m4.
16711         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
16712         exponentd.m4.
16713         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
16714         file exponentl.m4.
16715         * m4/exponentf.m4: New file.
16716         * m4/exponentd.m4: New file.
16717         * m4/exponentl.m4: New file.
16718         * modules/isnanf: Use new file m4/exponentf.m4.
16719         * modules/isnand: Use new file m4/exponentd.m4.
16720         * modules/isnanl: Use new file m4/exponentl.m4.
16721
16722 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
16723
16724         mktime.c: normalize tp->tm_isdst value to -1/0/1.
16725         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
16726         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
16727         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
16728
16729         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
16730         readlink on platforms without PATH_MAX.
16731
16732 2008-07-21  Eric Blake  <ebb9@byu.net>
16733
16734         Warn, not fail, on stale version.
16735         * top/GNUmakefile (_curr-ver): Tone down previous patch.
16736
16737         Don't allow installation with stale devel version number.
16738         * top/GNUmakefile (_is-install-target): New macro.
16739         (_curr-ver): Forbid installation with stale version number.
16740
16741 2008-07-20  Bruno Haible  <bruno@clisp.org>
16742
16743         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
16744         TESTS_ENVIRONMENT.
16745         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
16746
16747 2008-07-20  Bruno Haible  <bruno@clisp.org>
16748
16749         * lib/c-stack.h (c_stack_action): Add documentation.
16750         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
16751
16752 2008-07-20  Bruno Haible  <bruno@clisp.org>
16753
16754         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
16755         * modules/readlink (License): Likewise.
16756
16757 2008-07-17  Eric Blake  <ebb9@byu.net>
16758
16759         * modules/c-stack (Link): Fix typo.
16760
16761         Make c-stack use libsigsegv, when available.
16762         * modules/c-stack (Depends-on): Add libsigsegv.
16763         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
16764         needed.
16765         * lib/c-stack.c (SIGSTKSZ): Define fallback.
16766         (segv_handler, overflow_handler, c_stack_action)
16767         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
16768         implementation when libsigsegv is available, but only when using
16769         the library is necessary.
16770         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
16771         comment, explaining why XSI check fails on Linux.
16772         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
16773         * tests/test-c-stack2.sh: Tweak skip message.
16774         * NEWS: Document new link-time requirements.
16775
16776 2008-07-16  Eric Blake  <ebb9@byu.net>
16777
16778         c-stack: Expose false positives when not using libsigsegv.
16779         * modules/c-stack-tests (Files): Expand test.
16780         * tests/test-c-stack.c (main): Add means to conditionally trigger
16781         non-overflow SIGSEGV.
16782         * tests/test-c-stack2.sh: New file.
16783
16784 2008-07-14  Bruno Haible  <bruno@clisp.org>
16785
16786         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
16787         Reported by Eric Blake.
16788
16789 2008-07-14  Sam Steingold  <sds@gnu.org>
16790             Bruno Haible  <bruno@clisp.org>
16791
16792         New module libsigsegv.
16793         * modules/libsigsegv: New file.
16794         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
16795         modifications.
16796         * MODULES.html.sh (Signal handling): New section.
16797
16798 2008-07-14  Bruno Haible  <bruno@clisp.org>
16799
16800         * modules/unictype/ctype-* (Description): Add the word "function".
16801         Improves the resulting doc in MODULES.html.
16802
16803 2008-07-12  Ben Pfaff  <blp@gnu.org>
16804
16805         Add longlong module.
16806         * modules/longlong: New file.
16807
16808 2008-07-12  Bruno Haible  <bruno@clisp.org>
16809
16810         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
16811         to empty.
16812
16813 2008-07-10  Ben Pfaff  <blp@gnu.org>
16814
16815         Add isnan module.
16816         * doc/posix-functions/isnan.texi: Mention new module.
16817         * lib/math.in.h: Define isnan macro if we have decided to replace
16818         it.
16819         * m4/isnan.m4: New file.
16820         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
16821         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
16822         also.
16823         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
16824         redundancy.
16825         * m4/math_h.m4: Initialize and substitute variables for isnan
16826         module.
16827         * modules/isnan: New file.
16828         * modules/isnan-tests: New file.
16829         * modules/math: Add substitutions for new module.
16830         * tests/test-isnan.c: New file.
16831         * MODULES.html.sh: Mention new module.
16832
16833 2008-07-10  Ben Pfaff  <blp@gnu.org>
16834
16835         Add isnanf module.
16836         * lib/isnanf.m4: New file.
16837         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
16838         (gl_HAVE_ISNANF_IN_LIBM): New macro.
16839         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
16840         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
16841         * modules/isnanf: New file.
16842         * modules/isnanf-tests: New file.
16843         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
16844         files.
16845         * tests/test-isnanf-nolibm.c: factored most of its contents into
16846         new file tests/test-isnanf.h.
16847         * tests/test-isnanf.h: New file.
16848         * tests/test-isnanf.c: New file.
16849         * MODULES.html.sh: Mention new module.
16850         * doc/glibc-functions/isnanf.texi: Mention new module.
16851
16852 2008-07-10  Ben Pfaff  <blp@gnu.org>
16853
16854         Add isnand module.
16855         * lib/isnand.h: New file.
16856         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
16857         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
16858         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
16859         functionality also.
16860         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
16861         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
16862         (gl_HAVE_ISNAND_IN_LIBM): New macro.
16863         * modules/isnand: New file.
16864         * modules/isnand-tests: New file.
16865         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
16866         files.
16867         * tests/test-isnand-nolibm.c: factored most of its contents into
16868         new file tests/test-isnand.h.
16869         * tests/test-isnand.h: New file.
16870         * tests/test-isnand.c: New file.
16871         * MODULES.html.sh: Mention new module.
16872
16873 2008-07-10  Ben Pfaff  <blp@gnu.org>
16874
16875         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
16876         * lib/isnand.h: Rename lib/isnand-nolibm.h.
16877         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
16878         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
16879         * modules/isnanf-nolibm: Update references to renamed files.
16880         * modules/isnand-nolibm: Likewise.
16881         * modules/isnanf-nolibm-tests: Likewise.
16882         * modules/isnand-nolibm-tests: Likewise.
16883         * lib/frexp.c: Likewise.
16884         * lib/isfinite.c: Likewise.
16885         * lib/signbitd.c: Likewise.
16886         * lib/signbitf.c: Likewise.
16887         * lib/vasnprintf.c: Likewise.
16888         * tests/test-ceilf1.c: Likewise.
16889         * tests/test-ceilf2.c: Likewise.
16890         * tests/test-floorf1.c: Likewise.
16891         * tests/test-floorf2.c: Likewise.
16892         * tests/test-frexp.c: Likewise.
16893         * tests/test-round1.c: Likewise.
16894         * tests/test-round2.c: Likewise.
16895         * tests/test-roundf1.c: Likewise.
16896         * tests/test-strtod.c: Likewise.
16897         * tests/test-trunc1.c: Likewise.
16898         * tests/test-trunc2.c: Likewise.
16899         * tests/test-truncf1.c: Likewise.
16900         * tests/test-truncf2.c: Likewise.
16901         * NEWS: Mention the renamed header files.
16902
16903 2008-07-11  Jim Meyering  <meyering@redhat.com>
16904
16905         vc-list-files: make the last-resort awk code more portable
16906         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
16907         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
16908         does not support it.
16909
16910 2008-07-10  Eric Blake  <ebb9@byu.net>
16911
16912         Work with tar's bootstrap.
16913         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
16914         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
16915         an m4 comment.
16916
16917 2008-07-09  Jim Meyering  <meyering@redhat.com>
16918
16919         posix-shell.m4: fix typo that made this test malfunction
16920         * m4/posix-shell.m4: Remove capitalization in variable name.
16921
16922 2008-07-08  Bruno Haible  <bruno@clisp.org>
16923
16924         * m4/onceonly.m4: Update comments.
16925         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16926
16927 2008-07-04  Jim Meyering  <meyering@redhat.com>
16928
16929         * users.txt: Add vc-dwim.
16930         (bison, coreutils): Use the gitweb URL.
16931
16932 2008-07-03  Jim Meyering  <meyering@redhat.com>
16933
16934         * users.txt: Add libffcall.  From Sam Steingold.
16935
16936 2008-07-03  Ondřej Vašík  <ovasik@redhat.com>
16937
16938         getdate.y: do not ignore TZ with relative day, month or year offset
16939         * lib/getdate.y (get_date): Move the tz-handling block to follow the
16940         relative-date-handling, since otherwise, the latter would clobber the
16941         sole output (an updated Start value) of the tz-handling block.
16942         * tests/test-getdate.c: Tests for the fix
16943
16944 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16945
16946         Recognize 'foo_LIBRARIES += libgnu.a'.
16947         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
16948         makefile snippet has already specified an installation location,
16949         also using '+='.
16950
16951 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
16952
16953         getdate.y: factor out common actions
16954         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
16955         Use them in place of open-coded actions.
16956
16957 2008-07-01  Simon Josefsson  <simon@josefsson.org>
16958
16959         Add self-test for getdate module.
16960         * modules/getdate-tests: New file.
16961         * tests/test-getdate.c: New file.
16962
16963 2008-06-29  Bruno Haible  <bruno@clisp.org>
16964
16965         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
16966         .gitignore.
16967         Reported by Sylvain Beucler <beuc@beuc.net>.
16968
16969 2008-06-29  Bruno Haible  <bruno@clisp.org>
16970
16971         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
16972         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
16973
16974 2008-06-29  Bruno Haible  <bruno@clisp.org>
16975
16976         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
16977         EXTRA_DIST.
16978         Reported by Sylvain Beucler <beuc@beuc.net>.
16979
16980 2008-06-26  Jim Meyering  <meyering@redhat.com>
16981
16982         make several modules depend on the "open" module
16983         This provides slightly increased consistency when opening-for-write
16984         the name of a non-directory spelled with a trailing slash.
16985         * modules/chdir-safer: Likewise.
16986         * modules/chown: Likewise.
16987         * modules/clean-temp: Likewise.
16988         * modules/copy-file: Likewise.
16989         * modules/fchdir: Likewise.
16990         * modules/fcntl-safer: Likewise.
16991         * modules/pipe: Likewise.
16992         * modules/utime: Likewise.
16993         Prompted by Eric Blake and Bruno Haible.
16994
16995 2008-06-24  Andreas Schwab  <schwab@suse.de>
16996
16997         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
16998         literals can be used as initializers for global variables.
16999
17000 2008-06-23  Eric Blake  <ebb9@byu.net>
17001
17002         Make gnulib-cache.m4 easier to diff.
17003         * gnulib-tool (func_import): Allow newlines when reading cached
17004         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
17005
17006 2008-06-23  Bruno Haible  <bruno@clisp.org>
17007
17008         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
17009         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
17010         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
17011         m4/signalblocking.m4.
17012         (gl_PREREQ_SIGACTION): Don't invoke it.
17013         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
17014         gl_PREREQ_SIG_HANDLER_H.
17015         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17016         Don't check for sigaction here.
17017
17018 2008-06-23  Bruno Haible  <bruno@clisp.org>
17019
17020         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
17021         (install_handlers): Don't set the SA_RESETHAND flag.
17022
17023 2008-06-23  Bruno Haible  <bruno@clisp.org>
17024
17025         * m4/sigaction.m4: Comment fixes.
17026         * lib/signal.in.h: Likewise.
17027
17028 2008-06-23  Eric Blake  <ebb9@byu.net>
17029
17030         Fix typo.
17031         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
17032
17033         Avoid SA_ namespace.
17034         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
17035         Reported by Ralf Wildenhues.
17036
17037         Avoid test failure due to SA_RESTORER.
17038         * tests/test-sigaction.c (SA_MASK): New macro.
17039         (main): Avoid failing due to extension flags being set.
17040         Reported by Jim Meyering.
17041
17042         Revert use of sig-handler.h in sigprocmask.c.
17043         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
17044         it requires the existence of struct sigaction.
17045         * lib/sigprocmask.c (handler_t): Restore typedef.
17046         (rpl_signal, old_handlers): Use local type.
17047
17048 2008-06-22  Bruno Haible  <bruno@clisp.org>
17049
17050         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
17051         conditionally.
17052         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17053
17054 2008-06-22  Bruno Haible  <bruno@clisp.org>
17055
17056         * doc/posix-functions/siginterrupt.texi: Move note.
17057
17058         * lib/signal.in.h (SA_RESTART): New macro.
17059         * lib/sigaction.c: Update comment.
17060
17061         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
17062
17063         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
17064         (gl_PREREQ_SIGPROCMASK): Invoke it.
17065         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
17066
17067         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
17068
17069         * lib/sigprocmask.c: Update a comment.
17070
17071 2008-06-21  Eric Blake  <ebb9@byu.net>
17072
17073         Use sigaction module rather than signal().
17074         * modules/c-stack (Depends-on): Add sigaction.
17075         * modules/fatal-signal (Depends-on): Likewise.
17076         * modules/nanosleep (Depends-on): Likewise.
17077         * modules/sigprocmask (Files): Add sig-handler.h.
17078         * modules/sigaction (Files): Likewise.
17079         * lib/sig-handler.h (get_handler): New file, suggested by Paul
17080         Eggert.
17081         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
17082         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
17083         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
17084         (init_fatal_signals): Likewise.
17085         * lib/nanosleep.c (rpl_nanosleep): Likewise.
17086         (siginterrupt): Delete fallback.
17087         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
17088         instead.
17089         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
17090         siginterrupt.
17091
17092         New module sigaction, for mingw.
17093         * modules/sigaction: New module...
17094         * modules/sigaction-tests: ...and its test.
17095         * m4/sigaction.m4: New file.
17096         * lib/sigaction.c: Likewise.
17097         * tests/test-sigaction.c: Likewise.
17098         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
17099         * modules/signal (Makefile.am): Likewise.
17100         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
17101         needed.
17102         * doc/posix-headers/signal.texi (signal.h): Mention provided
17103         types.
17104         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
17105         that sigaction is preferable.
17106         * doc/posix-functions/sigaction.texi (sigaction): Mention new
17107         module.
17108         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17109         sigaction.
17110
17111         Improve robustness of sigprocmask by overriding signal.
17112         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
17113         is in use.
17114         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
17115         (SIGKILL, SIGSTOP): Provide fallbacks.
17116         (rpl_signal): Implement.
17117         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
17118         signal can be called inside handlers.
17119
17120         Fix nanosleep module on mingw.
17121         * modules/nanosleep (Depends-on): Add sys_select.
17122         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
17123
17124         Fix licensing of sigprocmask.
17125         * modules/raise (License): Relicense as LGPL.
17126
17127 2008-06-21  Bruno Haible  <bruno@clisp.org>
17128
17129         * lib/propername.c (proper_name_utf8): Don't use the transliterated
17130         result if it contains question marks.
17131         Reported by Michael Geng <linux@michaelgeng.de>.
17132
17133 2008-06-19  Bruno Haible  <bruno@clisp.org>
17134
17135         Fix CVS-ism.
17136         * doc/gnulib.texi: Include updated-stamp.texi.
17137         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
17138         (updated-stamp.texi): New rule.
17139         (gnulib.info): Depend on it.
17140         * doc/.gitignore: Add updated-stamp.texi.
17141         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
17142
17143 2008-06-19  Bruno Haible  <bruno@clisp.org>
17144
17145         * doc/Makefile (gnulib.info): Update and simplify dependencies.
17146         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
17147
17148 2008-06-19  Eric Blake  <ebb9@byu.net>
17149
17150         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
17151         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
17152         Reported by Stepan Kasal.
17153
17154 2008-06-18  Bruno Haible  <bruno@clisp.org>
17155
17156         * lib/fatal-signal.c (init_fatal_signals): Add comment.
17157         Reported by Eric Blake.
17158
17159 2008-06-18  Eric Blake  <ebb9@byu.net>
17160
17161         Work around cygwin 1.5.25 strsignal bug.
17162         * tests/test-strsignal.c: Allow for const char *.
17163         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
17164
17165 2008-06-18  Simon Josefsson  <simon@josefsson.org>
17166
17167         * users.txt: Update URL to article and add author/date
17168         information.
17169
17170 2008-06-17  Bruno Haible  <bruno@clisp.org>
17171
17172         New macro gl_DISABLE_THREADS.
17173         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
17174         if the user did not pass --enable-threads or --disable-threads option.
17175         (gl_DISABLE_THREADS): New macro.
17176         Reported by Eric Blake <ebb9@byu.net>.
17177
17178 2008-06-17  Bruno Haible  <bruno@clisp.org>
17179
17180         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
17181         when the macro ignores it.
17182         Based on a patch by Eric Blake <ebb9@byu.net>.
17183
17184 2008-06-17  Bruno Haible  <bruno@clisp.org>
17185
17186         * modules/tls (License): Change to LGPLv2+.
17187         Reported by Eric Blake.
17188
17189 2008-06-17  Eric Blake  <ebb9@byu.net>
17190
17191         Simplify c-stack prerequisites.
17192         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
17193         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
17194         no longer requires <ucontext.h> to exist.  Optimize setrlimit
17195         check.
17196         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
17197         <sys/resource.h>.
17198
17199         Move c-stack test into testsuite.
17200         * modules/c-stack-tests: New file.
17201         * lib/c-stack.c [DEBUG]: Move test program...
17202         * tests/test-c-stack.c: ...into this new file.  Skip rather than
17203         fail test if sigaltstack is lacking.
17204         * tests/test-c-stack.sh: New driver file.
17205
17206 2008-06-16  Eric Blake  <ebb9@byu.net>
17207
17208         Use raise module consistently.
17209         * modules/fatal-signal (Depends-on): Add raise.
17210         * modules/sigprocmask (Depends-on): Likewise.
17211         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
17212         * lib/sigprocmask.c (sigprocmask): Likewise.
17213         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17214         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
17215
17216         Fix compliance bug in sigpending.
17217         * lib/sigprocmask.c (sigpending): Return pending array via
17218         parameter, not return value.
17219
17220 2008-06-14  Eric Blake  <ebb9@byu.net>
17221
17222         Improve obstack-printf test code.
17223         * tests/test-obstack-printf.c (test_function): Fix comment, and
17224         simplify usage of obstack_* in macros.  Add a test for coverage.
17225         Reported by Bruno Haible.
17226
17227 2008-06-14  Bruno Haible  <bruno@clisp.org>
17228
17229         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
17230         array size as a constant, not as a const variable.
17231         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
17232         AC_USE_SYSTEM_EXTENSIONS.
17233         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
17234         Test whether the obstack_printf function actually exists.
17235         * modules/obstack-printf (Depends-on): Add extensions.
17236         (Include): Remove obstack.h.
17237         * modules/obstack-printf-posix (Depends-on): Add extensions.
17238         (Include): Remove obstack.h.
17239
17240 2008-06-13  Eric Blake  <ebb9@byu.net>
17241
17242         Add obstack-printf and obstack-printf-posix modules.
17243         * modules/obstack-printf: New file.
17244         * modules/obstack-printf-posix: Likewise.
17245         * MODULES.html.sh (Misc): Mention them.
17246         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
17247         Likewise.
17248         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
17249         Likewise.
17250         * modules/stdio (Makefile.am): Accomodate new modules.
17251         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
17252         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
17253         Declare.
17254         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
17255         functions.
17256         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
17257         (gl_REPLACE_OBSTACK_PRINTF): New macros
17258         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
17259         * tests/test-obstack-printf.c: New file.
17260         * modules/obstack-printf-tests: Likewise.
17261         * modules/obstack-printf-posix-tests: Likewise.
17262
17263 2008-06-11  Bruno Haible  <bruno@clisp.org>
17264
17265         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
17266         * lib/open.c: Include errno.h.
17267         (open): Fail when attempting to write to a file that has a trailing
17268         slash.
17269         * tests/test-open.c (main): Test against trailing slash bug.
17270         * doc/posix-functions/open.texi: Mention the trailing slash bug.
17271
17272 2008-06-10  Bruno Haible  <bruno@clisp.org>
17273
17274         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
17275         for $? to work inside the trap command, with various /bin/sh-s.
17276         * tests/test-vc-list-files-cvs.sh: Likewise.
17277
17278 2008-06-10  Bruno Haible  <bruno@clisp.org>
17279
17280         * lib/acl-internal.h: Don't include gettext.h here.
17281         * lib/set-mode-acl.c: Include gettext.h here.
17282         * lib/copy-acl.c: Likewise.
17283
17284 2008-06-10  Bruno Haible  <bruno@clisp.org>
17285
17286         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
17287         * lib/wait-process.c (wait_subprocess): Likewise.
17288         * lib/execute.h (execute): Add termsigp argument.
17289         * lib/execute.c (execute): Likewise.
17290         * lib/csharpcomp.c (compile_csharp_using_pnet,
17291         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
17292         * lib/csharpexec.c (execute_csharp_using_pnet,
17293         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
17294         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
17295         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
17296         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
17297         is_jikes_present): Update.
17298         * lib/javaexec.c (execute_java_class): Update.
17299         * lib/javaversion.c (execute_and_read_line): Update.
17300         * NEWS: Document the changes.
17301         Reported by Eric Blake.
17302
17303 2008-06-10  Eric Blake  <ebb9@byu.net>
17304
17305         Add missing include.
17306         * tests/test-strstr.c (includes): Add <signal.h>.
17307         * tests/test-strcasestr.c (includes): Likewise.
17308         * tests/test-memmem.c (includes): Likewise.
17309
17310 2008-06-10  Bruno Haible  <bruno@clisp.org>
17311
17312         * lib/wait-process.c (wait_subprocess): Add an assertion.
17313
17314 2008-06-10  Bruno Haible  <bruno@clisp.org>
17315
17316         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
17317
17318 2008-06-10  Bruno Haible  <bruno@clisp.org>
17319
17320         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
17321         using alarm().
17322         * tests/test-strcasestr.c (main): Likewise.
17323         * tests/test-strstr.c (main): Likewise.
17324
17325 2008-06-09  Bruno Haible  <bruno@clisp.org>
17326
17327         Work around the Solaris 10 ACE ACLs ABI change.
17328         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
17329         declare if ACL_NO_TRIVIAL is present.
17330         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
17331         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
17332         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
17333         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
17334         define if ACL_NO_TRIVIAL is present.
17335         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
17336         and use the current ABI.
17337         (file_has_acl): Use same #if condition as elsewhere.
17338         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
17339         in use, and use the current ABI.
17340         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
17341         Reported by Jim Meyering.
17342
17343 2008-06-09  Eric Blake  <ebb9@byu.net>
17344
17345         Work around environments that (stupidly) ignore SIGALRM.
17346         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
17347         before using alarm().
17348         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17349         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
17350         Reported by Ian Beckwith <ianb@erislabs.net>.
17351
17352         Produce autobuild blurb earlier in log.
17353         * modules/autobuild (configure.ac-early): Move AB_INIT here.
17354
17355 2008-06-09  Jim Meyering  <meyering@redhat.com>
17356         and Ondřej Vašík  <ovasik@redhat.com>
17357
17358         utimens.c: correct kernel bug work-around
17359         Ondřej Vašík found that the invalid return value of 280 indicates
17360         failure, not success, and the kernel bug we're trying to work
17361         around affects not just the utimensat call, but also the fallback
17362         futimens call.
17363         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
17364         not success.
17365         [HAVE_FUTIMENS]: Use the same work-around, here.
17366
17367 2008-06-09  Jim Meyering  <meyering@redhat.com>
17368
17369         add more guards around definition of ACE_-related code
17370         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
17371         ALLOW and ACE_OWNER are also defined.
17372
17373 2008-06-08  Bruno Haible  <bruno@clisp.org>
17374
17375         * lib/acl-internal.h: Add me as co-author.
17376         * lib/file-has-acl.c: Likewise.
17377         * lib/set-mode-acl.c: Likewise.
17378         * lib/copy-acl.c: Likewise.
17379
17380 2008-06-08  Bruno Haible  <bruno@clisp.org>
17381
17382         Add support for AIX ACLs.
17383         * lib/acl-internal.h (acl_nontrivial): New declaration.
17384         * lib/file-has-acl.c (acl_nontrivial): New function.
17385         (file_has_acl): Add implementation using AIX 4 ACL API.
17386         * lib/set-mode-acl.c (qset_acl): Likewise.
17387         * lib/copy-acl.c (qcopy_acl): Likewise.
17388
17389 2008-06-08  Bruno Haible  <bruno@clisp.org>
17390
17391         Add support for HP-UX ACLs.
17392         * lib/acl-internal.h (acl_nontrivial): New declaration.
17393         * lib/file-has-acl.c (acl_nontrivial): New function.
17394         (file_has_acl): Add implementation using HP-UX 11 ACL API.
17395         * lib/set-mode-acl.c (qset_acl): Likewise.
17396         * lib/copy-acl.c (qcopy_acl): Likewise.
17397
17398 2008-06-08  Bruno Haible  <bruno@clisp.org>
17399
17400         Add support for Cygwin ACLs.
17401         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
17402         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
17403         the chmod_or_fchmod call.
17404         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
17405
17406 2008-06-08  Bruno Haible  <bruno@clisp.org>
17407
17408         Fix bug with setuid modes in Solaris 10+ code.
17409         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
17410         succeeded, when the mode contains some special bits.
17411
17412 2008-06-08  Bruno Haible  <bruno@clisp.org>
17413
17414         Add support for Solaris 7..10 ACLs.
17415         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
17416         declarations.
17417         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
17418         functions.
17419         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
17420         * lib/set-mode-acl.c (qset_acl): Likewise.
17421         * lib/copy-acl.c (qcopy_acl): Likewise.
17422
17423 2008-06-08  Bruno Haible  <bruno@clisp.org>
17424
17425         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
17426         declaration.
17427         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
17428         (acl_access_nontrivial): Remove MacOS X case.
17429         (file_has_acl): Use acl_extended_nontrivial.
17430         * lib/copy-acl.c (qcopy_acl): Likewise.
17431
17432 2008-06-08  Bruno Haible  <bruno@clisp.org>
17433
17434         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
17435
17436 2008-06-08  Jim Meyering  <meyering@redhat.com>
17437
17438         * modules/acl (Maintainer): Add Bruno Haible.
17439
17440 2008-06-07  Bruno Haible  <bruno@clisp.org>
17441
17442         Improve support for Tru64 ACLs.
17443         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
17444         ACL on OSF/1.
17445
17446 2008-06-07  Bruno Haible  <bruno@clisp.org>
17447
17448         Add support for MacOS X ACLs.
17449         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
17450         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
17451         * lib/set-mode-acl.c (qset_acl): Likewise.
17452         * lib/copy-acl.c (qcopy_acl): Likewise.
17453
17454 2008-06-07  Bruno Haible  <bruno@clisp.org>
17455
17456         Fix memory leak introduced on 2008-05-22.
17457         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
17458         use.
17459
17460 2008-06-07  Bruno Haible  <bruno@clisp.org>
17461
17462         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
17463         to construct an empty ACL.
17464
17465 2008-06-07  Bruno Haible  <bruno@clisp.org>
17466
17467         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
17468         precisely.
17469         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
17470
17471 2008-06-07  Bruno Haible  <bruno@clisp.org>
17472
17473         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
17474         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
17475
17476 2008-06-07  Bruno Haible  <bruno@clisp.org>
17477
17478         * doc/posix-functions/_setjmp.texi: Explain the use of this function
17479         regardless of POSIX.
17480         * doc/posix-functions/_longjmp.texi: Likewise.
17481         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
17482         SystemV platform in this case.
17483
17484 2008-06-06  Eric Blake  <ebb9@byu.net>
17485
17486         Document abort() bugs.
17487         * doc/posix-functions/abort.texi (abort): Mention anomalies.
17488
17489         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
17490         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
17491         sigsetjmp.
17492         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
17493         siglongjmp, but only as a macro.
17494         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
17495         is obsolete.
17496         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
17497
17498         Tweak documentation to cover cygwin argz bugs.
17499         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
17500         argz bug fix; no code change needed since no cygwin releases
17501         occurred between the last fix and the bug being tested.
17502         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
17503         module and recently fixed cygwin bugs.
17504         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
17505         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
17506         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
17507         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
17508         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
17509         Likewise.
17510         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
17511         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
17512         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
17513         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
17514         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
17515         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
17516         Likewise.
17517
17518         Avoid gcc warning on cygwin.
17519         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
17520         !ACL_NO_TRIVIAL]: Avoid unused variable.
17521
17522 2008-06-05  Eric Blake  <ebb9@byu.net>
17523
17524         Be tolerant of UNKNOWN version in gnulib-tool test dir.
17525         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
17526         git-version-gen fails to come up with a version.
17527         Reported by Simon Josefsson.
17528
17529 2008-06-05  Jim Meyering  <meyering@redhat.com>
17530             Paul Eggert  <eggert@cs.ucla.edu>
17531
17532         utimens.c: work around a probable Linux kernel bug
17533         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
17534         appears to be a kernel bug that causes utimensat to return 280
17535         instead of 0, indicating success.
17536
17537 2008-06-04  Bruno Haible  <bruno@clisp.org>
17538
17539         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
17540         2008-06-01 commit.
17541
17542 2008-06-04  Bruno Haible  <bruno@clisp.org>
17543
17544         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
17545         * lib/file-has-acl.c (acl_access_nontrivial): New function.
17546         (file_has_acl): Use it. Save errno afterwards.
17547         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
17548
17549 2008-06-03  Bruno Haible  <bruno@clisp.org>
17550
17551         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
17552         draft code. Simplify #ifs.
17553         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
17554         Put Solaris code after POSIX-draft code. Fix comments regarding
17555         Solaris 10, HP-UX. Mention Cygwin.
17556         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
17557
17558 2008-06-03  Eric Blake  <ebb9@byu.net>
17559
17560         Provide fallback for older kernels.
17561         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
17562         Provide runtime fallback if kernel lacks support.
17563         Reported by Mike Frysinger.
17564
17565 2008-06-02  Bruno Haible  <bruno@clisp.org>
17566
17567         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
17568         it exists.
17569
17570 2008-06-02  Bruno Haible  <bruno@clisp.org>
17571
17572         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
17573         * lib/copy-acl.c (qcopy_acl): Update comment.
17574
17575 2008-06-02  Bruno Haible  <bruno@clisp.org>
17576
17577         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
17578         like ACL APIs.
17579
17580 2008-06-02  Bruno Haible  <bruno@clisp.org>
17581
17582         * tests/test-file-has-acl.sh: Use different code for Cygwin.
17583         * tests/test-set-mode-acl.sh: Likewise.
17584         * tests/test-copy-acl.sh: Likewise.
17585         * tests/test-copy-file.sh: Likewise.
17586
17587 2008-06-02  Bruno Haible  <bruno@clisp.org>
17588
17589         * tests/test-file-has-acl.sh: Remove unused code.
17590
17591 2008-06-01  Bruno Haible  <bruno@clisp.org>
17592
17593         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
17594         (copy_acl): Just a wrapper around qcopy_acl that emits the error
17595         messages.
17596         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
17597
17598 2008-06-01  Bruno Haible  <bruno@clisp.org>
17599
17600         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
17601         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
17602         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
17603         APIs.
17604         * modules/acl-tests (configure.ac): Remove tests now contained in
17605         m4/acl.m4.
17606
17607 2008-06-02  Jim Meyering  <meyering@redhat.com>
17608
17609         announce-gen: use a better key-server host name
17610         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
17611         it may be more consistently reliable.  Suggested by Werner Koch
17612         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
17613
17614 2008-06-01  Bruno Haible  <bruno@clisp.org>
17615
17616         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
17617         Reported by Voroskoi Andras <voroskoi@gmail.com>.
17618
17619 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
17620
17621         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
17622
17623 2008-06-01  Bruno Haible  <bruno@clisp.org>
17624
17625         New ACL tests.
17626         * tests/test-file-has-acl.sh: New file.
17627         * tests/test-file-has-acl.c: New file.
17628         * tests/test-set-mode-acl.sh: New file.
17629         * tests/test-set-mode-acl.c: New file.
17630         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
17631         * tests/test-copy-acl.c: New file.
17632         * modules/acl-tests: New file, based on modules/copy-file-tests.
17633         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
17634         (Depends-on): Add acl-tests.
17635         (configure.ac): Remove checks.
17636         (Makefile.am): Don't create test-sameacls program here any more.
17637
17638 2008-06-01  Bruno Haible  <bruno@clisp.org>
17639
17640         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
17641         * tests/test-sameacls.c: Include progname.h.
17642         (main): Invoke set_program_name. Portability fixes for MacOS X,
17643         Solaris, HP-UX.
17644
17645 2008-06-01  Bruno Haible  <bruno@clisp.org>
17646
17647         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
17648         function.
17649         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
17650
17651 2008-06-01  Bruno Haible  <bruno@clisp.org>
17652
17653         * modules/rpmatch (Depends-on): Add strdup.
17654
17655 2008-06-01  Bruno Haible  <bruno@clisp.org>
17656
17657         * lib/pipe.c: Include unistd-safer.h.
17658         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
17659         * modules/pipe (Depends-on): Add unistd-safer.
17660
17661 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17662
17663         * modules/autobuild (configure.ac): Call AB_INIT.
17664
17665 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17666
17667         * tests/test-getaddrinfo.c: Don't print debug messages by default.
17668         Suggested by Bruno Haible <bruno@clisp.org>.
17669
17670 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17671
17672         * tests/test-base64.c: Cast size_t to unsigned long when invoking
17673         printf.  Use %lu instead of %d.  Reported by Bruno Haible
17674         <bruno@clisp.org>.
17675
17676 2008-05-29  Eric Blake  <ebb9@byu.net>
17677
17678         Prefer new POSIX 200x interfaces over futimesat.
17679         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
17680         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
17681         when available.
17682         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
17683
17684 2008-05-28  Bruno Haible  <bruno@clisp.org>
17685
17686         * modules/stpcpy (License): Change to LGPLv2+.
17687         Requested by David Lutterkort <dlutter@redhat.com>.
17688
17689 2008-05-27  Bruno Haible  <bruno@clisp.org>
17690
17691         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
17692         current mingw.
17693         Reported by Jose E. Marchesi <jemarch@gnu.org>.
17694
17695 2008-05-27  Bruno Haible  <bruno@clisp.org>
17696
17697         * modules/iconv_open (Link): New section, from module 'iconv'.
17698         * modules/striconv (Link): Likewise.
17699         * modules/striconveh (Link): Likewise.
17700         * modules/xstriconv (Link): Likewise.
17701         * modules/unicodeio (Link): Likewise.
17702         * modules/propername (Link): Likewise.
17703         Reported by Jim Meyering.
17704
17705 2008-05-26  Jim Meyering  <meyering@redhat.com>
17706
17707         sha256: do not artificially restrict buffer length to be < 2^32
17708         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
17709         uint32_t to size_t.
17710         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
17711         to match.
17712
17713         avoid unaligned access errors, e.g., on sparc
17714         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
17715         direct access through a possibly-unaligned uint64* pointer.
17716         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
17717         direct access through a possibly-unaligned uint32* pointer.
17718         Prompted by this patch from Tom "spot" Callaway:
17719         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
17720
17721         sha512.c: fix typo in comment
17722         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
17723
17724 2008-05-25  Bruno Haible  <bruno@clisp.org>
17725
17726         * lib/set-mode-acl.c: Renamed from lib/acl.c.
17727         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
17728         (Makefile.am): Update lib_SOURCES.
17729
17730 2008-05-25  Bruno Haible  <bruno@clisp.org>
17731
17732         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
17733
17734 2008-05-25  Jim Meyering  <meyering@redhat.com>
17735
17736         useless-if-before-free: freed expr may have white-space differences
17737         * build-aux/useless-if-before-free: Recognize cases in which the
17738         freed expression differs from the tested one in embedded white
17739         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
17740         $1 was used, so we can't make any regexp shy.  Improved tests now
17741         detect this.
17742
17743         useless-if-before-free: accept white space in the expression.
17744         * build-aux/useless-if-before-free: For now, any white space
17745         in the expression must be identical in the free argument.
17746
17747         useless-if-before-free: efficiency tweak
17748         * build-aux/useless-if-before-free: Make the expression-matching
17749         regexp "shy".
17750         Make the *outer* regexp shy, not the expr-matching one.
17751
17752         update code-in-comment to accept cast of free arg
17753         * build-aux/useless-if-before-free: Update regexp.
17754
17755 2008-05-25  Bruno Haible  <bruno@clisp.org>
17756
17757         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
17758         * modules/copy-file-tests (Files, Makefile.am): Update.
17759         * tests/test-copy-file.c (func_test_copy): Update.
17760
17761 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
17762
17763         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
17764
17765 2008-05-23  Bruno Haible  <bruno@clisp.org>
17766
17767         Improve support for ACLs on OSF/1.
17768         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
17769         Remove fallback for unknown flavors of ACLs.
17770
17771 2008-05-22  Bruno Haible  <bruno@clisp.org>
17772
17773         Add support for ACLs on OSF/1.
17774         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
17775         replacements.
17776         (acl_free_text): New macro fallback.
17777         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
17778         acl_free.
17779         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
17780         acl_free_text function. Require AC_C_INLINE.
17781
17782 2008-05-22  Bruno Haible  <bruno@clisp.org>
17783
17784         Make copy_acl work on MacOS X 10.5.
17785         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
17786         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
17787         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
17788         If MODE_INSIDE_ACL, don't assume that every system has the same text
17789         representation for ACLs as FreeBSD.
17790         * lib/copy-acl.c (copy_acl): Add support for platforms with
17791         !MODE_INSIDE_ACL.
17792         * lib/file-has-acl.c (file_has_acl): Likewise.
17793         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
17794         FreeBSD, MacOS X, or IRIX, respectively.
17795
17796 2008-05-22  Bruno Haible  <bruno@clisp.org>
17797
17798         * lib/acl.h: Don't include <sys/acl.h>.
17799         (GETACLCNT): Move fallback to lib/acl-internal.h.
17800         * lib/acl-internal.h: Include <sys/acl.h> here.
17801         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
17802
17803 2008-05-22  Bruno Haible  <bruno@clisp.org>
17804
17805         Split off copy_acl function to separate file.
17806         * lib/copy-acl.c: New file, extracted from lib/acl.c.
17807         * lib/acl.c (copy_acl): Moved function to separate file.
17808         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
17809         * modules/acl (Files): Add lib/copy-acl.c.
17810         (Makefiles.am): Augment lib_SOURCES.
17811
17812 2008-05-22  Bruno Haible  <bruno@clisp.org>
17813
17814         * modules/copy-file-tests: New file.
17815         * tests/test-copy-file.sh: New file.
17816         * tests/test-copy-file.c: New file.
17817         * tests/test-copy-file-sameacls.c: New file.
17818
17819 2008-05-22  Eric Blake  <ebb9@byu.net>
17820
17821         Avoid gcc warning.
17822         * tests/test-memcmp.c (main): Pass NULL indirectly.
17823
17824 2008-05-21  Bruno Haible  <bruno@clisp.org>
17825
17826         Add reference doc about ACLs.
17827         * doc/acl-resources.txt: New file.
17828         * doc/acl-cygwin.txt: New file.
17829
17830 2008-05-21  Bruno Haible  <bruno@clisp.org>
17831
17832         Avoid one more warning from gcc.
17833         * lib/vasnprintf.c (IF_LINT): Update comments.
17834         (VASNPRINTF): Use it also for the 'prefix' array initializer.
17835
17836 2008-05-21  Jim Meyering  <meyering@redhat.com>
17837
17838         avoid a warning from gcc
17839         * lib/vasnprintf.c (IF_LINT): Define.
17840         (scale10_round_decimal_long_double):
17841         Use it to avoid a "may be used uninitialized" warning.
17842         (scale10_round_decimal_double): Likewise.
17843
17844 2008-05-21  Simon Josefsson  <simon@josefsson.org>
17845
17846         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
17847         declared.
17848
17849 2008-05-20  Bruno Haible  <bruno@clisp.org>
17850
17851         * tests/test-memcmp.c (main): Test also the sign of the result. Test
17852         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
17853
17854 2008-05-20  Simon Josefsson  <simon@josefsson.org>
17855
17856         * modules/memcmp-tests: New file.
17857         * tests/test-memcmp.c: New file.
17858
17859 2008-05-19  Bruno Haible  <bruno@clisp.org>
17860
17861         * modules/propername (Notice, configure.ac): Put quoted "..." into
17862         --keyword option.
17863         * lib/propername.h: Update comments accordingly.
17864         Reported by Eric Blake.
17865
17866 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
17867
17868         * modules/getpass-gnu (Depends-on): Add fseeko.
17869
17870 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17871
17872         * modules/base64-tests: New file.
17873
17874 2008-05-19  Bo Borgerson <gigabo@gmail.com>
17875
17876         * lib/base64.c (base64_decode_ctx): If a decode context structure
17877         was passed in use it to ignore newlines.  If a context structure
17878         was _not_ passed in, continue to treat newlines as garbage (this
17879         is the historical behavior).  Formerly base64_decode.
17880         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17881         takes a decode context structure.
17882         * lib/base64.h (base64_decode): Macro for four-argument calls.
17883         (base64_decode_alloc): Likewise.
17884         * lib/base64.c (base64_decode_ctx): If a decode context structure
17885         was passed in use it to ignore newlines.  If a context structure
17886         was _not_ passed in, continue to treat newlines as garbage (this
17887         is the historical behavior).  Formerly base64_decode.
17888         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17889         takes a decode context structure.
17890         * lib/base64.h (base64_decode): Macro for four-argument calls.
17891         (base64_decode_alloc): Likewise.
17892
17893 2008-05-19  Jim Meyering  <meyering@redhat.com>
17894
17895         avoid a warning from gcc
17896         * lib/trim.c (IF_LINT): Define.
17897         (trim2): Use it to avoid a "may be used uninitialized" warning.
17898
17899         Fix doc typo.
17900         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
17901
17902 2008-05-19  Bruno Haible  <bruno@clisp.org>
17903
17904         * doc/glibc-functions/getpass.texi: Document limits of other
17905         implementations.
17906
17907 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17908             Bruno Haible <bruno@clisp.org>
17909
17910         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
17911
17912 2008-05-18  Bruno Haible  <bruno@clisp.org>
17913
17914         * modules/propername: New file, from GNU gettext.
17915         * lib/propername.h: New file, from GNU gettext.
17916         * lib/propername.c: New file, from GNU gettext.
17917         * MODULES.html.sh (Internationalization functions): Add propername.
17918
17919 2008-05-16  Jim Meyering  <meyering@redhat.com>
17920             Bruno Haible  <bruno@clisp.org>
17921
17922         Avoid some warnings from "gcc -Wshadow".
17923         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
17924
17925 2008-05-15  Eric Blake  <ebb9@byu.net>
17926
17927         Extend previous patch to cygwin 1.7.0.
17928         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
17929         fast implementation in cygwin >= 1.7.0.
17930         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17931         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17932
17933 2008-05-15  Bruno Haible  <bruno@clisp.org>
17934
17935         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
17936         implementation in glibc >= 2.9.
17937         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17938         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17939
17940 2008-05-15  Bruno Haible  <bruno@clisp.org>
17941
17942         * MODULES.html.sh (Internationalization functions): Remove linebreak.
17943         (Unicode string functions): Add unilbrk/*.
17944         Reported by Karl Berry.
17945
17946 2008-05-15  Eric Blake  <ebb9@byu.net>
17947
17948         Fix violation of <stdbool.h> replacement in regex.
17949         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
17950         * lib/regexec.c (re_search_internal): Likewise.
17951         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
17952
17953 2008-05-15  Jim Meyering  <meyering@redhat.com>
17954
17955         avoid distracting test output when git or cvs is not found
17956         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
17957         * tests/test-vc-list-files-git.sh: Likewise.
17958
17959 2008-05-15  Eric Blake  <ebb9@byu.net>
17960
17961         Glibc finally accepted the memmem speedup code, bugzilla #5514.
17962         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
17963         glibc version.
17964         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
17965         * doc/posix-functions/strstr.texi (strstr): Likewise.
17966         * lib/str-two-way.h (MAX): Sychronize with glibc.
17967
17968 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
17969
17970         * lib/regcomp.c (optimize_utf8): Add a note on why we test
17971         opr.ctx_type.
17972         (calc_first): Initialize constraint field.
17973         (duplicate_node_closure): Use it instead of special casing ANCHORS.
17974         Fix grammar.
17975         (duplicate_node): Merge constraint field for all node types.
17976         (calc_eclosure_iter): Look at constraint field for all node types.
17977         * lib/regex_internal.c (create_cd_newstate): Don't look at
17978         opr.ctx_type.
17979
17980 2008-05-14  Bruno Haible  <bruno@clisp.org>
17981
17982         Help GCC to do better code generation.
17983         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
17984         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
17985         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
17986         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
17987         Declare with attribute 'malloc' if supported.
17988
17989 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
17990
17991         use "echo STR|wc -c" rather than unportable "expr length STR"
17992         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
17993         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
17994
17995 2008-05-14  Jim Meyering  <meyering@redhat.com>
17996
17997         use dd ibs=$n count=1 ... rather than less-portable head -c$n
17998         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
17999         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
18000         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
18001         via Collin Lasse.
18002
18003 2008-05-14  Eric Blake  <ebb9@byu.net>
18004
18005         Avoid quadratic growth in gl_LIBSOURCES.
18006         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
18007         Suggested by Bruno Haible.
18008
18009         Test xmemdup0.
18010         * modules/xmemdup0-tests: New file.
18011         * tests/test-xmemdup0.c: Likewise.
18012
18013 2008-05-13  Eric Blake  <ebb9@byu.net>
18014
18015         Split xmemdup0 into its own module.
18016         * modules/xmemdup0: New file.
18017         * lib/xmemdup0.h: Likewise.
18018         * lib/xmemdup0.c: Likewise.
18019         * MODULES.html.sh (Memory management functions): Add xmemdup0.
18020         * lib/xalloc.h (xmemdup0): Remove.
18021         * lib/xmalloc.c (xmemdup0): Likewise.
18022
18023 2008-05-13  Eric Blake  <ebb9@byu.net>
18024             Bruno Haible  <bruno@clisp.org>
18025
18026         Reduce number of forks required during autoconf.
18027         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
18028         and gl_LIBSOURCES_DIR.
18029         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
18030         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
18031         m4_syscmd per file.
18032         <m4_foreach_w>: Move...
18033         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
18034
18035 2008-05-13  Eric Blake  <ebb9@byu.net>
18036
18037         * gnulib-tool: Fix various comment typos.
18038
18039 2008-05-12  Bruno Haible  <bruno@clisp.org>
18040
18041         Tailor the linebreaking algorithm.
18042         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
18043
18044 2008-05-12  Bruno Haible  <bruno@clisp.org>
18045
18046         Update to Unicode 5.0.0.
18047         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
18048         LBP_JV, LBP_JT. Redistribute values.
18049         (unilbrk_table): Change size.
18050         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
18051         Unicode TR#14 rev. 22.
18052         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
18053         LBP_JV, LBP_JT. Redistribute values.
18054         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
18055         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
18056         Update.
18057         * lib/unilbrk/lbrkprop1.h: Regenerated.
18058         * lib/unilbrk/lbrkprop2.h: Regenerated.
18059         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
18060         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
18061         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
18062         Likewise.
18063         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
18064         Likewise.
18065         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
18066         result.
18067         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
18068         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
18069         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
18070         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
18071         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
18072         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
18073
18074 2008-05-11  Bruno Haible  <bruno@clisp.org>
18075
18076         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
18077
18078 2008-05-11  Bruno Haible  <bruno@clisp.org>
18079
18080         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
18081         * modules/unilbrk/gen-lbrk: New file.
18082
18083 2008-05-11  Bruno Haible  <bruno@clisp.org>
18084
18085         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
18086         * m4/sha512.m4 (gl_SHA512): Likewise.
18087
18088 2008-05-11  Jim Meyering  <meyering@redhat.com>
18089
18090         New modules: crypto/sha256, crypto/sha512 (from coreutils)
18091         * modules/crypto/sha256: New file.
18092         * modules/crypto/sha512: Likewise.
18093         * lib/sha256.c: Likewise.
18094         * lib/sha256.h: Likewise.
18095         * lib/sha512.c: Likewise.
18096         * lib/sha512.h: Likewise.
18097         * lib/u64.h: Likewise.
18098         * m4/sha256.m4: Likewise.
18099         * m4/sha512.m4: Likewise.
18100         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
18101
18102 2008-05-10  Bruno Haible  <bruno@clisp.org>
18103
18104         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
18105         (Input/Output <stdio.h>): Add xprintf.
18106         (Signal handling <signal.h>): Add strsignal.
18107         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
18108         (Core language properties): Add func.
18109         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
18110         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
18111         strings.
18112         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
18113         (Input/output): New section.
18114         (File system functions): Add openat-die, stat-macros.
18115         (Networking functions): Add sockets.
18116         (Unicode string functions): Add unictype/*.
18117         (Support for building libraries and executables): Add gperf.
18118         (Support for building documentation): Add agpl-3.0.
18119         (Misc): Add nocrash.
18120
18121 2008-05-10  Bruno Haible  <bruno@clisp.org>
18122
18123         * modules/unictype/gen-ctype: New file.
18124
18125 2008-05-10  Jim Meyering  <meyering@redhat.com>
18126
18127         Make chdir-safer.c more efficient on a system with no symlinks.
18128         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
18129         also if ELOOP is zero.  Suggested by Bruno Haible.
18130
18131         Make chdir-safer.c slightly safer.
18132         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
18133         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
18134
18135         Avoid compile failure on systems without ELOOP (like mingw).
18136         * lib/chdir-safer.c (ELOOP): Define if not already defined.
18137         Reported by Bruno Haible.
18138
18139 2008-05-10  Bruno Haible  <bruno@clisp.org>
18140
18141         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
18142         (is_utf8_encoding): Use a case-insensitive comparison.
18143         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
18144         streq.
18145
18146 2008-05-10  Bruno Haible  <bruno@clisp.org>
18147
18148         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
18149         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
18150         * lib/unilbrk/ulc-common.h (iconv_string_length,
18151         iconv_string_keeping_offsets): Remove declarations.
18152         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
18153         Don't include <iconv.h>, streq.h, xsize.h.
18154         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
18155         conversion.
18156         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
18157         <iconv.h>, streq.h, xsize.h.
18158         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
18159         conversion.
18160         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
18161         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
18162         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
18163         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
18164
18165 2008-05-10  Bruno Haible  <bruno@clisp.org>
18166
18167         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
18168         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
18169
18170         * modules/unilbrk/u32-width-linebreaks-tests: New file.
18171         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
18172
18173         * modules/unilbrk/u16-width-linebreaks-tests: New file.
18174         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
18175
18176         * modules/unilbrk/u8-width-linebreaks-tests: New file.
18177         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
18178
18179         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
18180         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
18181
18182         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
18183         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
18184
18185         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
18186         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
18187
18188         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
18189         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
18190
18191 2008-05-10  Bruno Haible  <bruno@clisp.org>
18192
18193         Split up 'linebreak' module.
18194         * lib/unilbrk.h: New file, based on lib/linebreak.h.
18195         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
18196         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
18197         modifications.
18198         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
18199         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
18200         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
18201         lib/linebreak.c.
18202         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
18203         lib/linebreak.c.
18204         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
18205         lib/linebreak.c.
18206         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
18207         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
18208         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
18209         lib/linebreak.c.
18210         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
18211         lib/linebreak.c.
18212         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
18213         lib/linebreak.c.
18214         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
18215         lib/linebreak.c.
18216         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
18217         lib/linebreak.c.
18218         * modules/unilbrk/base: New file.
18219         * modules/unilbrk/tables: New file.
18220         * modules/unilbrk/u8-possible-linebreaks: New file.
18221         * modules/unilbrk/u16-possible-linebreaks: New file.
18222         * modules/unilbrk/u32-possible-linebreaks: New file.
18223         * modules/unilbrk/ulc-common: New file.
18224         * modules/unilbrk/ulc-possible-linebreaks: New file.
18225         * modules/unilbrk/u8-width-linebreaks: New file.
18226         * modules/unilbrk/u16-width-linebreaks: New file.
18227         * modules/unilbrk/u32-width-linebreaks: New file.
18228         * modules/unilbrk/ulc-width-linebreaks: New file.
18229         * lib/linebreak.h: Remove file.
18230         * lib/linebreak.c: Remove file.
18231         * m4/linebreak.m4: Remove file.
18232         * modules/linebreak: Remove file.
18233         * NEWS: Mention the changes.
18234
18235 2008-05-09  Eric Blake  <ebb9@byu.net>
18236
18237         Add xmemdup0.
18238         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
18239         implementation.
18240         * lib/xmalloc.c (xmemdup0): New C implementation.
18241
18242 2008-05-08  Bruno Haible  <bruno@clisp.org>
18243
18244         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
18245
18246 2008-05-07  Eric Blake  <ebb9@byu.net>
18247
18248         Support cross-compilation of <wctype.h>.
18249         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
18250         AC_CACHE_CHECK.
18251
18252 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
18253
18254         * build-aux/vc-list-files: Add support for bzr.
18255
18256 2008-05-03  Jim Meyering  <meyering@redhat.com>
18257
18258         avoid failed assertion with tight malloc
18259         * tests/test-getndelim2.c: Correct an off-by-one assertion.
18260
18261 2008-05-03  Simon Josefsson  <simon@josefsson.org>
18262
18263         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
18264         are needed from arpa/inet.h.
18265         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
18266         Reported by Bruno Haible.
18267
18268 2008-05-02  Jim Meyering  <meyering@redhat.com>
18269
18270         avoid compilation error on FreeBSD 6
18271         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
18272
18273 2008-05-01  Jim Meyering  <meyering@redhat.com>
18274
18275         useless-if-before-free: correct --help's exit status description
18276         * build-aux/useless-if-before-free (usage): Like grep, exit 0
18277         for one or more matches, etc.  Reported by Bruno Haible.
18278
18279         vc-list-files: make the stand-alone gnulib test work
18280         * modules/vc-list-files-tests (configure.ac):
18281         Define and AC_SUBST abs_aux_dir.
18282         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
18283         $(abs_top_srcdir) to each script and having each of them
18284         duplicate the work of setting PATH, set PATH here, using
18285         the new variable, abs_aux_dir instead.
18286         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
18287         * tests/test-vc-list-files-git.sh: Likewise.
18288         Reported by Bruno Haible.
18289
18290 2008-05-01  Bruno Haible  <bruno@clisp.org>
18291
18292         * lib/getndelim2.c (getndelim2): Fix newsize computation during
18293         reallocation. Rename 'done' to 'found_delimiter'.
18294
18295 2008-05-01  Jim Meyering  <meyering@redhat.com>
18296
18297         vc-list-files: accommodate /bin/sh like the one from Solaris 10
18298         * build-aux/vc-list-files: Use `...`, not $(...).
18299
18300 2008-04-30  Jim Meyering  <meyering@redhat.com>
18301
18302         add tests for vc-list-files
18303         * modules/vc-list-files-tests: New module.
18304         * tests/test-vc-list-files-cvs.sh: New file.
18305         * tests/test-vc-list-files-git.sh: New file.
18306
18307         avoid a warning from gcc
18308         * lib/getndelim2.c (IF_LINT): Define.
18309         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
18310
18311         vc-list-files: work properly with build-aux/cvsu, too
18312         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
18313         to all cvs-based clauses.
18314
18315         vc-list-files: work properly in the CVS+awk case, too
18316         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
18317
18318         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
18319         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
18320         take more than one file argument, so .  Add quotes, just in case $dir
18321         ever contains a shell meta-character.  Prompted by Soren Hansen in
18322         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
18323
18324 2008-04-29  Eric Blake  <ebb9@byu.net>
18325
18326         Optimize getndelim2 to use block operations when possible.
18327         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
18328         freadseek, and memchr2.
18329         * lib/getndelim2.c (getndelim2): Use them for block reads.
18330
18331 2008-04-29  Bruno Haible  <bruno@clisp.org>
18332
18333         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
18334         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18335         * modules/inet_ntop (Depends-on): Add extensions.
18336         * modules/inet_pton (Depends-on): Likewise.
18337         Reported by Simon Josefsson.
18338
18339 2008-04-29  Jim Meyering  <meyering@redhat.com>
18340
18341         When the is more than one match in a block, match all of them.
18342         * build-aux/useless-if-before-free: Iterate through each block
18343         until there are no more matches.
18344
18345         Fix broken useless-if-before-free script.
18346         * build-aux/useless-if-before-free: Fix typo: missing "?" after
18347         the expression to match cast of argument to free-like function.
18348
18349 2008-04-29  Eric Blake  <ebb9@byu.net>
18350
18351         Use new header.
18352         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
18353
18354 2008-04-29  Jim Meyering  <meyering@redhat.com>
18355
18356         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
18357         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
18358         by gnulib to exist and to declare e.g., inet_ntop.
18359         Don't include "inet_ntop.h", now removed.
18360
18361         * m4/arpa_inet_h.m4: Remove trailing blanks.
18362
18363 2008-04-29  Eric Blake  <ebb9@byu.net>
18364
18365         Silence valgrind on safe reads beyond potential array bounds.
18366         * lib/rawmemchr.valgrind: New file.
18367         * lib/strchrnul.valgrind: Likewise.
18368         * modules/rawmemchr (Files): Distribute new file.
18369         * modules/strchrnul (Files): Likewise.
18370         Suggested by Bruno Haible.
18371
18372 2008-04-29  Bruno Haible  <bruno@clisp.org>
18373
18374         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
18375         (inet_ntop, inet_pton): Change portability warning's wording.
18376         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
18377         Invoke gl_CHECK_NEXT_HEADERS.
18378         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
18379         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
18380         set ARPA_INET_H.
18381         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18382         * modules/arpa_inet (Description): No longer only for systems that
18383         lack it.
18384         (Depends-on): Add include_next.
18385         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
18386         HAVE_ARPA_INET_H.
18387
18388 2008-04-29  Jim Meyering  <meyering@redhat.com>
18389
18390         * modules/mkdir (License): Re-license as LGPLv2+.
18391
18392 2008-04-29  Bruno Haible  <bruno@clisp.org>
18393
18394         * modules/rawmemchr (Maintainer): Set to Eric.
18395         * modules/strchrnul (Maintainer): Likewise.
18396
18397 2008-04-29  Simon Josefsson  <simon@josefsson.org>
18398
18399         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
18400         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
18401
18402         * modules/arpa_inet (arpa/inet.h): Use them.
18403
18404 2008-04-28  Eric Blake  <ebb9@byu.net>
18405
18406         Test getndelim2.
18407         * modules/getndelim2-tests: New file.
18408         * tests/test-getndelim2.c: Likewise.
18409         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
18410         stream.
18411         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
18412
18413         * MODULES.html.sh: Document new module.
18414
18415 2008-04-20  Bruno Haible  <bruno@clisp.org>
18416
18417         * lib/c-stack.c (die): Use raise.
18418         * modules/c-stack (Depends-on): Add raise.
18419
18420 2008-04-28  Bruno Haible  <bruno@clisp.org>
18421
18422         Expect rpmatch to be declared.
18423         * lib/yesno.c (rpmatch): Remove declaration.
18424
18425         Declare rpmatch.
18426         * lib/stdlib.in.h (rpmatch): New declaration.
18427         * lib/rpmatch.c: Include <stdlib.h> first.
18428         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
18429         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
18430         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
18431         HAVE_RPMATCH.
18432         * modules/rpmatch (Depends-on): Add stdlib, extensions.
18433         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
18434         (Include): Set to <stdlib.h>.
18435         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
18436         HAVE_RPMATCH.
18437         * NEWS: Document the change.
18438
18439 2008-04-28  Bruno Haible  <bruno@clisp.org>
18440
18441         Change rpmatch to use nl_langinfo when appropriate.
18442         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
18443         (N_): New macro.
18444         (localized_pattern): New function/macro.
18445         (try): Remove match, nomatch arguments. Copy the pattern into safe
18446         memory before caching it.
18447         (rpmatch): Use localized_pattern. Add translator comments.
18448         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
18449         Suggested by Eric Blake.
18450         * modules/rpmatch (Depends-on): Add stdbool.
18451
18452 2008-04-28  Eric Blake  <ebb9@byu.net>
18453
18454         Add rawmemchr module, matching glibc.
18455         * modules/string (Makefile.am): New indicator.
18456         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
18457         * lib/string.in.h (rawmemchr): Declare when appropriate.
18458         * modules/rawmemchr: New file.
18459         * m4/rawmemchr.m4: Likewise.
18460         * lib/rawmemchr.c: Likewise.
18461         * modules/rawmemchr-tests: Likewise.
18462         * tests/test-rawmemchr.c: Likewise.
18463         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
18464         module.
18465         * modules/strchrnul (Depends-on): Add rawmemchr.
18466         * lib/strchrnul.c (strchrnul): Optimize a corner case.
18467
18468         Whitespace cleanup.
18469         * tests/test-strchrnul.c: Reindent.
18470         * lib/strchrnul.c: Likewise.
18471
18472         Optimize and test strchrnul.
18473         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
18474         * modules/strchrnul-tests: New file.
18475         * tests/test-strchrnul.c: Likewise.
18476
18477         Remove intprops dependency.
18478         * modules/memchr (Depends-on): Remove intprops.
18479         * modules/memrchr (Depends-on): Likewise.
18480         * modules/memchr2 (Depends-on): Likewise.
18481         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
18482         * lib/memrchr.c (__memrchr): Likewise.
18483         * lib/memrchr2.c (memchr2): Likewise.
18484         Reported by Simon Josefsson.
18485
18486 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18487
18488         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
18489         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18490
18491 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18492
18493         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
18494
18495         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
18496
18497         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
18498
18499         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
18500         declarations.
18501         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
18502
18503         * m4/inet_pton.m4: Don't check for header files.
18504
18505         * m4/inet_ntop.m4: Don't check for header files.
18506
18507 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18508
18509         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
18510         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
18511         trigger for cygwin).
18512         Reported by Bruno Haible  <bruno@clisp.org>.
18513
18514 2008-04-28  Bruno Haible  <bruno@clisp.org>
18515
18516         * doc/posix-functions/strdup.texi: Mention mingw problem.
18517
18518 2008-04-27  Bruno Haible  <bruno@clisp.org>
18519
18520         * modules/stat-time-tests (Depends-on): Add sleep.
18521         * tests/test-stat-time.c (force_unlink): New function.
18522         (cleanup): Use it.
18523         (test_mtime): Remove the ctime related tests.
18524         (test_ctime): New function, containing the ctime related tests.
18525         (main): Call test_ctime, except on native Windows platforms.
18526
18527 2008-04-27  Bruno Haible  <bruno@clisp.org>
18528
18529         * lib/rpmatch.c (rpmatch): Add some comments.
18530         Reported by James Youngman <jay@gnu.org>.
18531
18532 2008-04-27  Bruno Haible  <bruno@clisp.org>
18533
18534         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
18535         quiet NaNs.
18536
18537 2008-04-27  Bruno Haible  <bruno@clisp.org>
18538
18539         Make test-yesno.sh work on mingw.
18540         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
18541         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
18542         (main): Set stdin to binary mode.
18543         * modules/yesno-tests (Depends-on): Add binary-io.
18544
18545 2008-04-27  Bruno Haible  <bruno@clisp.org>
18546
18547         Fix 'isfinite' on x86, x86_64, ia64 platforms.
18548         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
18549         argument that lie outside the IEEE 854 domain.
18550         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
18551         (gl_ISFINITE): Use it.
18552         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
18553
18554 2008-04-27  Bruno Haible  <bruno@clisp.org>
18555
18556         Allow local renaming in config.h.
18557         * lib/memrchr.c (memrchr): Don't undefine outside libc.
18558
18559 2008-04-27  Bruno Haible  <bruno@clisp.org>
18560
18561         * lib/memchr.c (__memchr): Change type of 'i'.
18562         * lib/memchr2.c (memchr2): Likewise.
18563
18564 2008-04-26  Eric Blake  <ebb9@byu.net>
18565         and Bruno Haible  <bruno@clisp.org>
18566
18567         Optimize and test memrchr.
18568         * modules/memrchr (Depends-on): Add intprops.
18569         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
18570         * modules/memrchr-tests: New file.
18571         * tests/test-memrchr.c: New file.
18572
18573 2008-04-26  Bruno Haible  <bruno@clisp.org>
18574
18575         Add tentative support for DragonFly BSD.
18576         * lib/stdio-impl.h: Add macros for DragonFly BSD.
18577         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
18578         fp.
18579         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18580         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
18581         * lib/fpurge.c (fpurge): Likewise.
18582         * lib/freadable.c (freaadable): Likewise.
18583         * lib/freadahead.c (freadahead): Likewise.
18584         * lib/freading.c (freading): Likewise.
18585         * lib/freadptr.c (freadptr): Likewise.
18586         * lib/freadseek.c (freadptrinc): Likewise.
18587         * lib/fseeko.c (fseeko): Likewise.
18588         * lib/fseterr.c (fseterr): Likewise.
18589         * lib/fwritable.c (fwritable): Likewise.
18590         * lib/fwriting.c (fwriting): Likewise.
18591
18592 2008-04-26  Bruno Haible  <bruno@clisp.org>
18593
18594         * lib/stdio-impl.h: New file.
18595         * lib/fbufmode.c: Include stdio-impl.h.
18596         (fbufmode): Use fp_, remove redundant #defines.
18597         * lib/fflush.c: Include stdio-impl.h.
18598         (clear_ungetc_buffer): Remove redundant #defines.
18599         * lib/fpurge.c: Include stdio-impl.h.
18600         (fpurge): Remove redundant #defines.
18601         * lib/freadable.c: Include stdio-impl.h.
18602         (freadable): Remove redundant #defines.
18603         * lib/freadahead.c: Include stdio-impl.h.
18604         (freadahead): Remove redundant #defines.
18605         * lib/freading.c: Include stdio-impl.h.
18606         (freading): Remove redundant #defines.
18607         * lib/freadptr.c: Include stdio-impl.h.
18608         (freadptr): Remove redundant #defines.
18609         * lib/freadseek.c: Include stdio-impl.h.
18610         (freadptrinc): Remove redundant #defines.
18611         * lib/fseeko.c: Include stdio-impl.h.
18612         (rpl_fseeko): Remove redundant #defines.
18613         * lib/fseterr.c: Include stdio-impl.h.
18614         (fseterr): Remove redundant #defines.
18615         * lib/fwritable.c: Include stdio-impl.h.
18616         (fwritable: Remove redundant #defines.
18617         * lib/fwriting.c: Include stdio-impl.h.
18618         (fwriting): Remove redundant #defines.
18619         * modules/fbufmode (Files): Add lib/stdio-impl.h.
18620         * modules/fflush (Files): Likewise.
18621         * modules/fpurge (Files): Likewise.
18622         * modules/freadable (Files): Likewise.
18623         * modules/freadahead (Files): Likewise.
18624         * modules/freading (Files): Likewise.
18625         * modules/freadptr (Files): Likewise.
18626         * modules/freadseek (Files): Likewise.
18627         * modules/fseeko (Files): Likewise.
18628         * modules/fseterr (Files): Likewise.
18629         * modules/fwritable (Files): Likewise.
18630         * modules/fwriting (Files): Likewise.
18631
18632 2008-04-26  Bruno Haible  <bruno@clisp.org>
18633
18634         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18635         restore_seek_optimization, update_fpos_cache): New functions, extracted
18636         from rpl_fflush.
18637         (rpl_fflush): Use them.
18638         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
18639         (gl_REPLACE_FFLUSH): Use it.
18640
18641 2008-04-26  Bruno Haible  <bruno@clisp.org>
18642
18643         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
18644         on Solaris.
18645         * tests/test-xstrtoimax.sh: Likewise.
18646         * tests/test-xstrtoumax.sh: Likewise.
18647         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18648
18649 2008-04-26  Bruno Haible  <bruno@clisp.org>
18650
18651         * modules/memchr-tests: New file.
18652         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
18653
18654 2008-04-26  Eric Blake  <ebb9@byu.net>
18655             Bruno Haible  <bruno@clisp.org>
18656
18657         * lib/memchr.c: Include intprops.h.
18658         (__memchr): Optimize parallel detection of matching bytes. Rename local
18659         variables. Add explanatory comments.
18660
18661 2008-04-26  Bruno Haible  <bruno@clisp.org>
18662
18663         Fix module 'memchr', broken since 2000-10-28.
18664         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
18665
18666 2008-04-26  Bruno Haible  <bruno@clisp.org>
18667
18668         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
18669         comments.
18670
18671 2008-04-25  Eric Blake  <ebb9@byu.net>
18672
18673         Use native fstatat on cygwin 1.7.0.
18674         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
18675         first.
18676
18677 2008-04-23  Eric Blake  <ebb9@byu.net>
18678
18679         Improve memchr2 performance.
18680         * lib/memchr2.c (memchr2): Further optimize parallel detection of
18681         NUL bytes.
18682         * modules/memchr2 (Depends-on): Use intprops.h.
18683
18684 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18685
18686         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
18687         an inline function instead of a CPP macro.  Patch by Ben Pfaff
18688         <blp@cs.stanford.edu>.
18689
18690 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18691
18692         * lib/arpa_inet.in.h: New file.
18693
18694         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
18695         (Makefile.am): Sed in substitute header file.
18696
18697         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
18698         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
18699
18700         * modules/inet_ntop (configure.ac): Use
18701         gl_ARPA_INET_MODULE_INDICATOR.
18702
18703         * modules/inet_pton (configure.ac): Use
18704         gl_ARPA_INET_MODULE_INDICATOR.
18705
18706 2008-04-22  Jim Meyering  <meyering@redhat.com>
18707
18708         * modules/verify (License): Re-license as LGPLv2+.
18709
18710 2008-04-22  Simon Josefsson  <simon@josefsson.org>
18711
18712         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
18713         parameter to void* as per POSIX standard (MinGW uses char*).
18714
18715 2008-04-21  Bruno Haible  <bruno@clisp.org>
18716
18717         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
18718         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
18719         Define to replacements if REPLACE_ISWCNTRL is 1.
18720         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
18721         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
18722         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
18723         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
18724         what it fixes.
18725         * doc/posix-functions/iswalpha.texi: Likewise.
18726         * doc/posix-functions/iswblank.texi: Likewise.
18727         * doc/posix-functions/iswcntrl.texi: Likewise.
18728         * doc/posix-functions/iswdigit.texi: Likewise.
18729         * doc/posix-functions/iswgraph.texi: Likewise.
18730         * doc/posix-functions/iswlower.texi: Likewise.
18731         * doc/posix-functions/iswprint.texi: Likewise.
18732         * doc/posix-functions/iswpunct.texi: Likewise.
18733         * doc/posix-functions/iswspace.texi: Likewise.
18734         * doc/posix-functions/iswupper.texi: Likewise.
18735         * doc/posix-functions/iswxdigit.texi: Likewise.
18736         Reported by Alain Guibert.
18737
18738 2008-04-21  Bruno Haible  <bruno@clisp.org>
18739
18740         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
18741         Patch by Alain Guibert.
18742
18743 2008-04-21  Bruno Haible  <bruno@clisp.org>
18744
18745         Fix test failures on mingw.
18746         * tests/test-xstrtol.c (print_no_progname): New function.
18747         (main): Install it in error_print_progname hook.
18748         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
18749         * tests/test-xstrtoimax.sh: Likewise.
18750         * tests/test-xstrtoumax.sh: Likewise.
18751
18752 2008-04-21  Bruno Haible  <bruno@clisp.org>
18753
18754         Fix test failure on mingw.
18755         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
18756
18757 2008-04-21  Bruno Haible  <bruno@clisp.org>
18758
18759         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
18760         Actually assign a value.
18761
18762 2008-04-20  Bruno Haible  <bruno@clisp.org>
18763
18764         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
18765         take 2.
18766         * lib/canonicalize.c (canonicalize_file_name): Elide if the
18767         'canonicalize-lgpl' module is also used.
18768         * lib/canonicalize-lgpl.c: Undo last change.
18769         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
18770
18771 2008-04-20  Bruno Haible  <bruno@clisp.org>
18772
18773         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
18774         config.h. Provide _mkdir based fallback for mingw.
18775         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
18776         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
18777         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
18778         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
18779         rather than defining mkdir in config.h.
18780         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
18781         (gl_SYS_STAT_H_DEFAULTS): New macro.
18782         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
18783         HAVE_IO_H any more.
18784         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
18785         HAVE_DECL_MKDIR and HAVE_IO_H.
18786
18787 2008-04-20  Bruno Haible  <bruno@clisp.org>
18788
18789         * lib/isapipe.c: Port to native Windows platforms.
18790
18791 2008-04-20  Bruno Haible  <bruno@clisp.org>
18792
18793         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
18794
18795 2008-04-21  Eric Blake  <ebb9@byu.net>
18796
18797         Work around preprocessors that don't handle UINTMAX_MAX.
18798         * lib/memchr2.c (memchr2): Avoid embedded #if.
18799         Reported by Alain Guibert, fix suggested by Bruno Haible.
18800
18801 2008-04-21  Simon Josefsson  <simon@josefsson.org>
18802
18803         * doc/posix-functions/strftime.texi (strftime): Explain better
18804         Windows incompatibility.  Suggested by Micah Cowan
18805         <micah@cowan.name>.
18806
18807 2008-04-20  Bruno Haible  <bruno@clisp.org>
18808
18809         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
18810         unistr/u8-mblen.
18811
18812 2008-04-20  Bruno Haible  <bruno@clisp.org>
18813
18814         Fix test failure on platforms with non-GNU iconv.
18815         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
18816         (U_TO_U8): Use it, rather than u16_to_u8.
18817         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
18818         units at the end of the input string.
18819         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
18820
18821 2008-04-20  Bruno Haible  <bruno@clisp.org>
18822
18823         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
18824         when the resulting length is 0.
18825         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
18826
18827 2008-04-20  Bruno Haible  <bruno@clisp.org>
18828
18829         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
18830         works.
18831         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
18832
18833 2008-04-20  Bruno Haible  <bruno@clisp.org>
18834
18835         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
18836         * modules/tsearch-tests (configure.ac): Test for initstate function.
18837
18838 2008-04-20  Bruno Haible  <bruno@clisp.org>
18839
18840         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
18841         for nlink_t if missing.
18842         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
18843
18844 2008-04-19  Bruno Haible  <bruno@clisp.org>
18845
18846         Work around snprintf bug on Linux libc5.
18847         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
18848         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
18849         gl_SNPRINTF_SIZE1.
18850         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
18851         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
18852         that test failed.
18853         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
18854         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
18855         * modules/snprintf (Files): Add m4/printf.m4.
18856         * modules/vsnprintf (Files): Likewise.
18857         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
18858         * doc/posix-functions/vsnprintf.texi: Likewise.
18859
18860 2008-04-19  Bruno Haible  <bruno@clisp.org>
18861
18862         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
18863         from 0.0058 to less than 10^-7.
18864
18865 2008-04-19  Bruno Haible  <bruno@clisp.org>
18866
18867         Fix rounding when a precision is given.
18868         * lib/vasnprintf.c (is_borderline): New function.
18869         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
18870         9...9x.
18871         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
18872         %e, %g.
18873         * tests/test-vasprintf-posix.c (test_function): Likewise.
18874         * tests/test-snprintf-posix.h (test_function): Likewise.
18875         * tests/test-sprintf-posix.h (test_function): Likewise.
18876         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
18877         * tests/test-printf-posix.h (test_function): Likewise.
18878         * tests/test-printf-posix.output: Update.
18879         Reported by John Darrington <john@darrington.wattle.id.au> via
18880         Ben Pfaff <blp@cs.stanford.edu>.
18881
18882 2008-04-18  Simon Josefsson  <simon@josefsson.org>
18883
18884         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
18885         Suggested by Bruno Haible <bruno@clisp.org>.
18886
18887 2008-04-17  Bruno Haible  <bruno@clisp.org>
18888
18889         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
18890         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
18891         implementation.
18892         Patch by Bruce Merry <bmerry@gmail.com>.
18893
18894 2008-04-17  Simon Josefsson  <simon@josefsson.org>
18895
18896         * doc/posix-functions/strftime.texi (strftime): Mention that %e
18897         doesn't work under Windows.
18898
18899 2008-04-16  Bruno Haible  <bruno@clisp.org>
18900
18901         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
18902         New macros.
18903         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
18904         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
18905         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
18906         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
18907         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
18908         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
18909         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
18910         macros.
18911         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
18912         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
18913         Northern Sotho, Uighur.
18914
18915 2008-04-16  Bruno Haible  <bruno@clisp.org>
18916
18917         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
18918         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
18919         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
18920         Reported by Daniel Bergström <daniel@octocode.com>.
18921
18922 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
18923             Bruno Haible  <bruno@clisp.org>
18924
18925         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
18926         function.
18927         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
18928         New functions, mostly extracted from gl_locale_name_default.
18929         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
18930
18931 2008-04-16  Eric Blake  <ebb9@byu.net>
18932
18933         Adjust strtod detection to catch glibc 2.7 bug.
18934         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
18935         Reported by John Gatewood Ham.
18936
18937 2008-04-16  Bruno Haible  <bruno@clisp.org>
18938
18939         Add tentative support for Linux libc5.
18940         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
18941         * lib/fpurge.c (fpurge): Likewise.
18942         * lib/freadable.c (freadable): Likewise.
18943         * lib/freadahead.c (freadahead): Likewise.
18944         * lib/freading.c (freading): Likewise.
18945         * lib/freadptr.c (freadptr): Likewise.
18946         * lib/freadseek.c (freadptrinc): Likewise.
18947         * lib/fseeko.c (rpl_fseeko): Likewise.
18948         * lib/fseterr.c (fseterr): Likewise.
18949         * lib/fwritable.c (fwritable): Likewise.
18950         * lib/fwriting.c (fwriting): Likewise.
18951         Reported by Alain Guibert <alguibert+bts@free.fr>.
18952
18953 2008-04-15  Bruno Haible  <bruno@clisp.org>
18954
18955         * modules/mathl (configure.ac): Define module indicator.
18956
18957 2008-04-15  Bruno Haible  <bruno@clisp.org>
18958
18959         * lib/logl.c (logl): Remove unused variables.
18960
18961 2008-04-15  Bruno Haible  <bruno@clisp.org>
18962
18963         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
18964         fails.
18965
18966 2008-04-15  Bruno Haible  <bruno@clisp.org>
18967
18968         * lib/trim.c (trim2): Fix argument of isspace() macro.
18969
18970 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
18971
18972         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
18973         to 0.
18974         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
18975
18976 2008-04-14  Bruno Haible  <bruno@clisp.org>
18977
18978         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
18979         AC_LANG_PROGRAM argument.
18980         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
18981         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
18982         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
18983         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
18984         * m4/math_h.m4 (gl_MATH_H): Likewise.
18985         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
18986         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
18987         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
18988         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
18989         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
18990         * m4/regex.m4 (gl_REGEX): Likewise.
18991         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
18992         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
18993         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
18994         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
18995         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
18996         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
18997         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
18998         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
18999
19000 2008-04-14  Jim Meyering  <meyering@redhat.com>
19001
19002         test-strtod: fix typos: s/abs/fabs/
19003         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
19004
19005 2008-04-13  Bruno Haible  <bruno@clisp.org>
19006
19007         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
19008         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
19009         module is also used and while not building the reloc-wrapper.
19010
19011 2008-04-13  Bruno Haible  <bruno@clisp.org>
19012
19013         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
19014
19015 2008-04-13  Bruno Haible  <bruno@clisp.org>
19016
19017         Fix AIX compilation failure introduced on 2008-04-02.
19018         * tests/test-frexp.c (exp): Undefine before redefining.
19019         * tests/test-frexpl.c (exp): Likewise.
19020
19021 2008-04-13  Bruno Haible  <bruno@clisp.org>
19022
19023         Work around a HP-UX stdio bug.
19024         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
19025         * tests/test-ftello.c (main): Likewise.
19026         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
19027         * doc/posix-functions/ftello.texi: Likewise.
19028
19029 2008-04-13  Bruno Haible  <bruno@clisp.org>
19030
19031         Make test-signbit pass on HP-UX/hppa.
19032         * tests/test-signbit.c (minus_zerol): New variable.
19033         (test_signbitl): Use it.
19034
19035 2008-04-13  Bruno Haible  <bruno@clisp.org>
19036
19037         Make truncl work on OSF/1 4.0.
19038         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
19039         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
19040         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
19041         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
19042         HAVE_DECL_TRUNCL.
19043         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
19044         HAVE_DECL_TRUNCL.
19045         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
19046
19047 2008-04-13  Bruno Haible  <bruno@clisp.org>
19048
19049         * lib/unictype.h: Remove trailing comma from enumeration definitions.
19050
19051 2008-04-13  Bruno Haible  <bruno@clisp.org>
19052
19053         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
19054         expression, so as to avoid HP-UX 11 cc compiler bug.
19055
19056 2008-04-13  Bruno Haible  <bruno@clisp.org>
19057
19058         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
19059
19060 2008-04-13  Bruno Haible  <bruno@clisp.org>
19061
19062         * lib/git-merge-changelog.c: Remove empty declaration outside of
19063         functions.
19064
19065 2008-04-13  Bruno Haible  <bruno@clisp.org>
19066
19067         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
19068
19069 2008-04-13  Bruno Haible  <bruno@clisp.org>
19070
19071         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
19072         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
19073         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
19074         also if it exists but lacks definitions of the SHUT_* macros.
19075         * modules/sys_socket (Description): Update.
19076         Reported by Elbert Pol <e.pol@chello.nl>.
19077
19078 2008-04-13  Bruno Haible  <bruno@clisp.org>
19079
19080         * lib/localcharset.c (OS2): Don't redefine if already defined.
19081         Reported by Elbert Pol <e.pol@chello.nl>.
19082
19083 2008-04-13  Bruno Haible  <bruno@clisp.org>
19084
19085         * lib/binary-io.h [__EMX__]: Include <io.h>.
19086         Reported by Elbert Pol <e.pol@chello.nl>.
19087
19088 2008-04-12  Bruno Haible  <bruno@clisp.org>
19089
19090         * lib/fpucw.h: Enable the definitions also for x86_64.
19091         Needed for NetBSD/x86_64.
19092         Reported by Thomas Klausner <tk@giga.or.at>.
19093
19094 2008-04-12  Bruno Haible  <bruno@clisp.org>
19095
19096         * tests/test-strtod.c: Include isnand.h.
19097         (main): Use isnand instead of isnan.
19098         Reported by Jim Meyering.
19099
19100 2008-04-12  Bruno Haible  <bruno@clisp.org>
19101
19102         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
19103         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
19104
19105 2008-04-12  Jim Meyering  <meyering@redhat.com>
19106
19107         * m4/math_h.m4 (gl_MATH_H): Fix typos.
19108
19109 2008-04-12  Bruno Haible  <bruno@clisp.org>
19110
19111         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
19112         Reported by Elbert Pol <e.pol@chello.nl>.
19113
19114 2008-04-12  Eric Blake  <ebb9@byu.net>
19115
19116         Work around Solaris 10 math.h bug.
19117         * m4/math_h.m4 (gl_MATH_H): Check for bug.
19118         (gl_MATH_H_DEFAULTS): Set up default.
19119         * modules/math (Makefile.am): Replace new indicators.
19120         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
19121         * tests/test-math.c (main): Test this.
19122         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
19123         * doc/posix-headers/math.texi (math.h): Mention bug.
19124         Reported by Nelson H. F. Beebe and Jim Meyering.
19125
19126 2008-04-11  Bruno Haible  <bruno@clisp.org>
19127
19128         Adapt to future versions of Apple GCC.
19129         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
19130         Reported by Peter O'Gorman <peter@pogma.com>.
19131
19132 2008-04-11  Bruno Haible  <bruno@clisp.org>
19133
19134         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
19135
19136 2008-04-11  Bruno Haible  <bruno@clisp.org>
19137
19138         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
19139
19140         * modules/getaddrinfo-tests (Makefile.am): Define
19141         test_getaddrinfo_LDADD.
19142
19143 2008-04-11  Bruno Haible  <bruno@clisp.org>
19144
19145         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
19146         (init): Fix syntax error.
19147         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
19148         is declared.
19149
19150 2008-04-11  Bruno Haible  <bruno@clisp.org>
19151
19152         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
19153         * modules/glob (Depends-on): Add stdbool.
19154
19155 2008-04-11  Bruno Haible  <bruno@clisp.org>
19156
19157         * lib/trim.c: Include <string.h>.
19158
19159 2008-04-11  Eric Blake  <ebb9@byu.net>
19160
19161         Avoid compile failure on OS/2.
19162         * lib/regex_internal.h (internal_function): Disable optimization
19163         on OS/2 (__EMX__), where it caused compiler error.
19164         Reported by Elbert Pol.
19165
19166 2008-04-11  Bruno Haible  <bruno@clisp.org>
19167
19168         Flush the standard error stream before aborting. Needed on mingw.
19169         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
19170         * tests/test-array_list.c (ASSERT): Likewise.
19171         * tests/test-array_oset.c (ASSERT): Likewise.
19172         * tests/test-avltree_list.c (ASSERT): Likewise.
19173         * tests/test-avltree_oset.c (ASSERT): Likewise.
19174         * tests/test-avltreehash_list.c (ASSERT): Likewise.
19175         * tests/test-binary-io.c (ASSERT): Likewise.
19176         * tests/test-byteswap.c (ASSERT): Likewise.
19177         * tests/test-c-ctype.c (ASSERT): Likewise.
19178         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
19179         * tests/test-c-strcasestr.c (ASSERT): Likewise.
19180         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
19181         * tests/test-c-strstr.c (ASSERT): Likewise.
19182         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
19183         * tests/test-canonicalize.c (ASSERT): Likewise.
19184         * tests/test-carray_list.c (ASSERT): Likewise.
19185         * tests/test-ceilf1.c (ASSERT): Likewise.
19186         * tests/test-ceilf2.c (ASSERT): Likewise.
19187         * tests/test-ceill.c (ASSERT): Likewise.
19188         * tests/test-count-one-bits.c (ASSERT): Likewise.
19189         * tests/test-fbufmode.c (ASSERT): Likewise.
19190         * tests/test-fflush2.c (ASSERT): Likewise.
19191         * tests/test-floorf1.c (ASSERT): Likewise.
19192         * tests/test-floorf2.c (ASSERT): Likewise.
19193         * tests/test-floorl.c (ASSERT): Likewise.
19194         * tests/test-fopen.c (ASSERT): Likewise.
19195         * tests/test-fpending.c (ASSERT): Likewise.
19196         * tests/test-fprintf-posix.c (ASSERT): Likewise.
19197         * tests/test-fpurge.c (ASSERT): Likewise.
19198         * tests/test-freadable.c (ASSERT): Likewise.
19199         * tests/test-freadahead.c (ASSERT): Likewise.
19200         * tests/test-freading.c (ASSERT): Likewise.
19201         * tests/test-freadptr.c (ASSERT): Likewise.
19202         * tests/test-freadptr2.c (ASSERT): Likewise.
19203         * tests/test-freadseek.c (ASSERT): Likewise.
19204         * tests/test-freopen.c (ASSERT): Likewise.
19205         * tests/test-frexp.c (ASSERT): Likewise.
19206         * tests/test-frexpl.c (ASSERT): Likewise.
19207         * tests/test-fseek.c (ASSERT): Likewise.
19208         * tests/test-fseeko.c (ASSERT): Likewise.
19209         * tests/test-fstrcmp.c (ASSERT): Likewise.
19210         * tests/test-ftell.c (ASSERT): Likewise.
19211         * tests/test-ftello.c (ASSERT): Likewise.
19212         * tests/test-func.c (ASSERT): Likewise.
19213         * tests/test-fwritable.c (ASSERT): Likewise.
19214         * tests/test-fwriting.c (ASSERT): Likewise.
19215         * tests/test-getdelim.c (ASSERT): Likewise.
19216         * tests/test-getline.c (ASSERT): Likewise.
19217         * tests/test-i-ring.c (ASSERT): Likewise.
19218         * tests/test-iconv-utf.c (ASSERT): Likewise.
19219         * tests/test-iconv.c (ASSERT): Likewise.
19220         * tests/test-isfinite.c (ASSERT): Likewise.
19221         * tests/test-isnand.c (ASSERT): Likewise.
19222         * tests/test-isnanf.c (ASSERT): Likewise.
19223         * tests/test-isnanl.h (ASSERT): Likewise.
19224         * tests/test-ldexpl.c (ASSERT): Likewise.
19225         * tests/test-linked_list.c (ASSERT): Likewise.
19226         * tests/test-linkedhash_list.c (ASSERT): Likewise.
19227         * tests/test-localename.c (ASSERT): Likewise.
19228         * tests/test-lseek.c (ASSERT): Likewise.
19229         * tests/test-mbscasecmp.c (ASSERT): Likewise.
19230         * tests/test-mbscasestr1.c (ASSERT): Likewise.
19231         * tests/test-mbscasestr2.c (ASSERT): Likewise.
19232         * tests/test-mbscasestr3.c (ASSERT): Likewise.
19233         * tests/test-mbscasestr4.c (ASSERT): Likewise.
19234         * tests/test-mbschr.c (ASSERT): Likewise.
19235         * tests/test-mbscspn.c (ASSERT): Likewise.
19236         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
19237         * tests/test-mbspbrk.c (ASSERT): Likewise.
19238         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
19239         * tests/test-mbsrchr.c (ASSERT): Likewise.
19240         * tests/test-mbsspn.c (ASSERT): Likewise.
19241         * tests/test-mbsstr1.c (ASSERT): Likewise.
19242         * tests/test-mbsstr2.c (ASSERT): Likewise.
19243         * tests/test-mbsstr3.c (ASSERT): Likewise.
19244         * tests/test-memchr2.c (ASSERT): Likewise.
19245         * tests/test-memmem.c (ASSERT): Likewise.
19246         * tests/test-open.c (ASSERT): Likewise.
19247         * tests/test-printf-frexp.c (ASSERT): Likewise.
19248         * tests/test-printf-frexpl.c (ASSERT): Likewise.
19249         * tests/test-printf-posix.c (ASSERT): Likewise.
19250         * tests/test-quotearg.c (ASSERT): Likewise.
19251         * tests/test-rbtree_list.c (ASSERT): Likewise.
19252         * tests/test-rbtree_oset.c (ASSERT): Likewise.
19253         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
19254         * tests/test-round1.c (ASSERT): Likewise.
19255         * tests/test-roundf1.c (ASSERT): Likewise.
19256         * tests/test-roundl.c (ASSERT): Likewise.
19257         * tests/test-signbit.c (ASSERT): Likewise.
19258         * tests/test-sleep.c (ASSERT): Likewise.
19259         * tests/test-snprintf-posix.c (ASSERT): Likewise.
19260         * tests/test-snprintf.c (ASSERT): Likewise.
19261         * tests/test-sprintf-posix.c (ASSERT): Likewise.
19262         * tests/test-stat-time.c (ASSERT): Likewise.
19263         * tests/test-strcasestr.c (ASSERT): Likewise.
19264         * tests/test-strerror.c (ASSERT): Likewise.
19265         * tests/test-striconv.c (ASSERT): Likewise.
19266         * tests/test-striconveh.c (ASSERT): Likewise.
19267         * tests/test-striconveha.c (ASSERT): Likewise.
19268         * tests/test-strsignal.c (ASSERT): Likewise.
19269         * tests/test-strstr.c (ASSERT): Likewise.
19270         * tests/test-strtod.c (ASSERT): Likewise.
19271         * tests/test-trunc1.c (ASSERT): Likewise.
19272         * tests/test-trunc2.c (ASSERT): Likewise.
19273         * tests/test-truncf1.c (ASSERT): Likewise.
19274         * tests/test-truncf2.c (ASSERT): Likewise.
19275         * tests/test-truncl.c (ASSERT): Likewise.
19276         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
19277         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
19278         * tests/test-vasnprintf.c (ASSERT): Likewise.
19279         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
19280         * tests/test-vasprintf.c (ASSERT): Likewise.
19281         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
19282         * tests/test-vprintf-posix.c (ASSERT): Likewise.
19283         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
19284         * tests/test-vsnprintf.c (ASSERT): Likewise.
19285         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
19286         * tests/test-wcwidth.c (ASSERT): Likewise.
19287         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
19288         * tests/test-xprintf-posix.c (ASSERT): Likewise.
19289         * tests/test-xvasprintf.c (ASSERT): Likewise.
19290         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
19291         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
19292         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
19293         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
19294         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
19295         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
19296         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
19297         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
19298         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
19299         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
19300         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
19301         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
19302         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
19303         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
19304         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
19305         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
19306         * tests/unictype/test-block_list.c (ASSERT): Likewise.
19307         * tests/unictype/test-block_of.c (ASSERT): Likewise.
19308         * tests/unictype/test-block_test.c (ASSERT): Likewise.
19309         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
19310         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
19311         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
19312         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
19313         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
19314         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
19315         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
19316         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
19317         * tests/unictype/test-combining.c (ASSERT): Likewise.
19318         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
19319         * tests/unictype/test-digit.c (ASSERT): Likewise.
19320         * tests/unictype/test-mirror.c (ASSERT): Likewise.
19321         * tests/unictype/test-numeric.c (ASSERT): Likewise.
19322         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
19323         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
19324         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
19325         * tests/unictype/test-scripts.c (ASSERT): Likewise.
19326         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
19327         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
19328         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
19329         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
19330         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
19331         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
19332         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
19333         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
19334         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
19335         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
19336         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
19337         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
19338         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
19339         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
19340         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
19341         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
19342         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
19343         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
19344         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
19345         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
19346         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
19347         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
19348         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
19349         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
19350         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
19351         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
19352         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
19353         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
19354         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
19355         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
19356         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
19357         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
19358         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
19359         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
19360         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
19361         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
19362         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
19363         Reported by Eric Blake.
19364
19365 2008-04-11  Bruno Haible  <bruno@clisp.org>
19366
19367         * lib/wchar.in.h: Tweak comment.
19368
19369 2008-04-11  Bruno Haible  <bruno@clisp.org>
19370
19371         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
19372         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
19373         gl_COMMON.
19374         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
19375
19376 2008-04-11  Bruno Haible  <bruno@clisp.org>
19377
19378         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
19379
19380 2008-04-11  Simon Josefsson  <simon@josefsson.org>
19381
19382         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
19383         of attempting to use non-existing /dev/*random.  Based on patch
19384         from Adam Strzelecki <ono@java.pl> in
19385         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
19386
19387 2008-04-08  Bruno Haible  <bruno@clisp.org>
19388
19389         Add tentative support for emx+gcc.
19390         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
19391         * lib/fpurge.c (fpurge): Likewise.
19392         * lib/freadable.c (freadable): Likewise.
19393         * lib/freadahead.c (freadahead): Likewise.
19394         * lib/freading.c (freading): Likewise.
19395         * lib/freadptr.c (freadptr): Likewise.
19396         * lib/freadseek.c (freadptrinc): Likewise.
19397         * lib/fseeko.c (rpl_fseeko): Likewise.
19398         * lib/fseterr.c (fseterr): Likewise.
19399         * lib/fwritable.c (fwritable): Likewise.
19400         * lib/fwriting.c (fwriting): Likewise.
19401         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
19402
19403 2008-04-09  Eric Blake  <ebb9@byu.net>
19404
19405         Avoid some autoconf warnings.
19406         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
19407         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
19408         * m4/afs.m4 (gl_AFS): Likewise.
19409         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
19410         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
19411         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19412         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
19413         (gl_INTEGER_TYPE_SUFFIX): Likewise.
19414         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
19415         (AC_CHECK_DECLS_ONCE): Likewise.
19416         Rename file...
19417         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
19418         gnulib-tool requires autoconf 2.59 or better.
19419         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
19420
19421 2008-04-08  Eric Blake  <ebb9@byu.net>
19422
19423         Use 'git describe --match' if present (added in git 1.5.5).
19424         * build-aux/git-version-gen: Limit result to tags that match 'v*'
19425         if possible.
19426
19427 2008-04-08  Bruno Haible  <bruno@clisp.org>
19428
19429         Add tentative support for OpenServer.
19430         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
19431         _ptr, _cnt.
19432         * lib/fpurge.c (fpurge): Likewise.
19433         * lib/freadable.c (freadable): Likewise.
19434         * lib/freadahead.c (freadahead): Likewise.
19435         * lib/freading.c (freading): Likewise.
19436         * lib/freadptr.c (freadptr): Likewise.
19437         * lib/freadseek.c (freadptrinc): Likewise.
19438         * lib/fseeko.c (rpl_fseeko): Likewise.
19439         * lib/fseterr.c (fseterr): Likewise.
19440         * lib/fwritable.c (fwritable): Likewise.
19441         * lib/fwriting.c (fwriting): Likewise.
19442         Reported by Roger Cornelius <rac@tenzing.org> and
19443         Brian K. White <brian@aljex.com>.
19444
19445 2008-04-06  Jim Meyering  <meyering@redhat.com>
19446
19447         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
19448
19449 2008-04-06  Bruno Haible  <bruno@clisp.org>
19450
19451         Avoid possible error with non-ASCII bytes in UTF-8 locales.
19452         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
19453         * tests/test-printf-posix.sh: Likewise.
19454         * tests/test-vfprintf-posix.sh: Likewise.
19455         * tests/test-vprintf-posix.sh: Likewise.
19456         * tests/test-xprintf-posix.sh: Likewise.
19457
19458 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19459
19460         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
19461         hide error from 'ls', needed on OS/2.
19462         Report by Elbert Pol <elbert.pol@gmail.com>.
19463
19464 2008-04-04  Eric Blake  <ebb9@byu.net>
19465
19466         Make test-fseeko.c failures meaningful.
19467         * tests/test-fseeko.c: Print line number on failure.
19468         * tests/test-fseek.c: Likewise.
19469         Reported by Nelson H. F. Beebe.
19470
19471         Improve strtod bug detection check.
19472         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
19473         required for Solaris 10.
19474         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
19475
19476 2008-04-04  Bruno Haible  <bruno@clisp.org>
19477
19478         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
19479         by m4/setenv.m4.
19480
19481 2008-04-03  Eric Blake  <ebb9@byu.net>
19482
19483         Ensure sane .version contents.
19484         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
19485         version string.
19486         * build-aux/git-version-gen: Improve documentation.
19487
19488         Make GNU make output nicer.
19489         * top/GNUmakefile [!_have-Makefile]: Add dependency on
19490         MAKECMDGOALS to enforce message for all command line targets.  Set
19491         srcdir for use in maint.mk.
19492
19493         Another maintainer tweak.
19494         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
19495         a target that regenerates version.
19496
19497 2008-04-03  Jim Meyering  <meyering@redhat.com>
19498
19499         vc-list-files: don't cause coreutils "make po-check" failure
19500         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
19501
19502 2008-04-03  Eric Blake  <ebb9@byu.net>
19503
19504         Allow VPATH usage of vc-list-files.
19505         * build-aux/vc-list-files (scriptversion): Add timestamp.
19506         (options): Add --help, --version, -C.
19507         (CVS): Support installed cvsu.
19508
19509 2008-04-02  Bruno Haible  <bruno@clisp.org>
19510
19511         Avoid some "statement with no effect" warnings from gcc.
19512         * tests/test-wctype.c (main): Explicitly ignore unused values.
19513         Reported by Jim Meyering.
19514
19515 2008-04-02  Jim Meyering  <meyering@redhat.com>
19516
19517         Avoid some warnings from "gcc -Wshadow".
19518         * tests/test-frexp.c (exp): Define to a different identifier.
19519         * tests/test-frexpl.c (exp): Likewise.
19520
19521 2008-04-03  Jim Meyering  <meyering@redhat.com>
19522
19523         bootstrap: remove dangling *.[ch] symlinks from lib
19524         * build-aux/bootstrap [dangling symlink removal]: Move find's
19525         -depth option to precede all others, to avoid a warning.
19526         Remove *.[ch] files too, and from "$source_base" (usually lib/).
19527
19528 2008-04-02  Bruno Haible  <bruno@clisp.org>
19529
19530         Avoid some warnings from "gcc -Wshadow".
19531         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
19532         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
19533         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
19534         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
19535         Reported by Jim Meyering.
19536
19537 2008-04-01  Bruno Haible  <bruno@clisp.org>
19538
19539         Fix test to work on IRIX 6.5 with cc.
19540         * tests/test-math.c (numeric_equal): New function.
19541         (main): Use it.
19542
19543 2008-04-01  Bruno Haible  <bruno@clisp.org>
19544
19545         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
19546
19547 2008-04-01  Bruno Haible  <bruno@clisp.org>
19548
19549         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
19550         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19551         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
19552         (Depends-on): Remove math.
19553
19554         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
19555         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19556         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
19557         (Depends-on): Remove math.
19558
19559         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
19560         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19561         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
19562         (Depends-on): Remove math.
19563         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
19564         (Depends-on): Remove math.
19565
19566         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
19567         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19568         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
19569         (Depends-on): Remove math.
19570         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
19571         (Depends-on): Remove math.
19572
19573         * tests/test-round1.c: Include nan.h.
19574         (main): Use NaNd instead of NAN.
19575         * modules/round-tests (Files): Add tests/nan.h.
19576
19577         * tests/test-trunc1.c: Include nan.h.
19578         (main): Use NaNd instead of NAN.
19579         * modules/trunc-tests (Files): Add tests/nan.h.
19580
19581         * tests/test-roundf1.c: Include nan.h.
19582         (main): Use NaNf instead of NAN.
19583         * modules/roundf-tests (Files): Add tests/nan.h.
19584
19585         * tests/test-truncf1.c: Include nan.h.
19586         (main): Use NaNf instead of NAN.
19587         * modules/truncf-tests (Files): Add tests/nan.h.
19588
19589         * tests/test-ceilf1.c: Include nan.h.
19590         (main): Use NaNf instead of NAN.
19591         * modules/ceilf-tests (Files): Add tests/nan.h.
19592
19593         * tests/test-floorf1.c: Include nan.h.
19594         (main): Use NaNf instead of NAN.
19595         * modules/floorf-tests (Files): Add tests/nan.h.
19596
19597         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
19598         (main): Use NaNf instead of NAN.
19599         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
19600
19601         * tests/test-isnand.c: Include nan.h instead of <math.h>.
19602         (main): Use NaNd instead of NAN.
19603         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
19604
19605         * tests/test-frexp.c: Include nan.h.
19606         (main): Use NaNd instead of NAN.
19607         * modules/frexp-tests (Files): Add tests/nan.h.
19608
19609         * lib/isnan.c: Don't include <math.h>.
19610         (FUNC): Don't use NAN macro.
19611         * modules/isnand-nolibm (Depends-on): Remove math.
19612         * modules/isnanf-nolibm (Depends-on): Remove math.
19613         * modules/isnanl (Depends-on): Remove math.
19614         * modules/isnanl-nolibm (Depends-on): Remove math.
19615
19616         * tests/nan.h: New file.
19617
19618 2008-04-01  Eric Blake  <ebb9@byu.net>
19619
19620         Fix typos.
19621         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
19622         values to be the right type.
19623
19624         For now, cater to gnulib strtod inaccuracies.
19625         * tests/test-strtod.c (main): Allow 1-ulp error on expected
19626         fractional results.  While not as nice from a QoI perspective, it
19627         is a quicker patch than correctly implementing decimal to binary
19628         rounding.
19629
19630 2008-03-31  Eric Blake  <ebb9@byu.net>
19631
19632         Guarantee a definition of NAN.
19633         * lib/math.in.h (NAN): Define if missing.
19634         * tests/test-math.c (main): Test it.
19635         * doc/posix-headers/math.texi (math.h): Document this.
19636         * lib/isnan.c (rpl_isnand): Use it.
19637         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
19638         * tests/test-floorf1.c (NaN): Likewise.
19639         * tests/test-frexp.c (NaN): Likewise.
19640         * tests/test-isnand.c (NaN): Likewise.
19641         * tests/test-isnanf.c (NaN): Likewise.
19642         * tests/test-round1.c (NaN): Likewise.
19643         * tests/test-roundf1.c (NaN): Likewise.
19644         * tests/test-snprintf-posix.h (NaN): Likewise.
19645         * tests/test-sprintf-posix.h (NaN): Likewise.
19646         * tests/test-trunc1.c (NaN): Likewise.
19647         * tests/test-truncf1.c (NaN): Likewise.
19648         * tests/test-vasnprintf-posix.c (NaN): Likewise.
19649         * tests/test-vasprintf-posix.c (NaN): Likewise.
19650         * modules/isnand-nolibm (Depends-on): Add math.
19651         * modules/isnanf-nolibm (Depends-on): Likewise.
19652         * modules/isnanl (Depends-on): Likewise.
19653         * modules/isnanl-nolibm (Depends-on): Likewise.
19654         * modules/snprintf-posix-tests (Depends-on): Likewise.
19655         * modules/sprintf-posix-tests (Depends-on): Likewise.
19656         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
19657         * modules/vsprintf-posix-tests (Depends-on): Likewise.
19658         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
19659         * modules/vasprintf-posix-tests (Depends-on): Likewise.
19660
19661 2008-03-31  Bruno Haible  <bruno@clisp.org>
19662
19663         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
19664         * doc/posix-functions/strtod.texi: Likewise.
19665
19666 2008-03-31  Bruno Haible  <bruno@clisp.org>
19667
19668         * tests/test-strtod.c (main): Don't use C99 syntax.
19669
19670 2008-03-31  Bruno Haible  <bruno@clisp.org>
19671
19672         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
19673         Reported by Eric Blake.
19674
19675 2008-03-31  Jim Meyering  <meyering@redhat.com>
19676
19677         Don't compare actual signbit return values.
19678         * tests/test-strtod.c (main): Rather, compare only their
19679         zero/non-zero nature.
19680
19681 2008-03-31  Eric Blake  <ebb9@byu.net>
19682
19683         More strtod documentation.
19684         * doc/posix-functions/strtod.texi (strtod): Interpret more test
19685         failures as distinct bugs.
19686
19687 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
19688
19689         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
19690         Problem reported by Erik Benada in
19691         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
19692
19693 2008-03-30  Bruno Haible  <bruno@clisp.org>
19694
19695         * tests/test-strtod.c: Add comments about which assertion fails on which
19696         platform.
19697         * doc/posix-functions/strtod.texi: Add info about many more platforms.
19698
19699 2008-03-30  Eric Blake  <ebb9@byu.net>
19700
19701         Test signbit behavior on zeros.
19702         * tests/test-signbit.c (test_signbitf): Add tests for zero.
19703         (test_signbitd, test_signbitl): Likewise.
19704
19705         More strtod touchups.
19706         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
19707         sign of negative underflow, for now.  Use .5, not .1.
19708         * doc/posix-functions/strtod.texi (strtod): Mention these
19709         limitations.
19710         Reported by Jim Meyering.
19711
19712 2008-03-30  Bruno Haible  <bruno@clisp.org>
19713
19714         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
19715         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
19716
19717 2008-03-30  Bruno Haible  <bruno@clisp.org>
19718
19719         Avoid failure when attempting to return empty iconv results on some
19720         platforms.
19721         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
19722         allocation, don't report ENOMEM when the resulting string is empty.
19723
19724 2008-03-30  Bruno Haible  <bruno@clisp.org>
19725
19726         Fix buffer overrun.
19727         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
19728         Don't consider the width for tmp_length. Check count against tmp_length
19729         before doing the padding. Ensure enough allocation during padding.
19730
19731 2008-03-30  Eric Blake  <ebb9@byu.net>
19732
19733         strtod touchups.
19734         * lib/strtod.c (strtod): Avoid compiler warnings.
19735         Reported by Jim Meyering.
19736
19737 2008-03-30  Bruno Haible  <bruno@clisp.org>
19738
19739         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
19740         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
19741         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
19742         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
19743         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
19744         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
19745         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
19746         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
19747
19748         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
19749         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
19750         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
19751         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
19752         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
19753         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
19754         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
19755         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
19756
19757         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
19758         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
19759         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
19760         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
19761         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
19762         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
19763         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
19764         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
19765
19766         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
19767         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
19768
19769         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
19770         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
19771
19772         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
19773         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
19774
19775         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
19776         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
19777         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
19778
19779         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
19780         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
19781         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
19782
19783         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
19784         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
19785         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
19786
19787         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
19788         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
19789         * modules/vasprintf (Depends-on): Add EOVERFLOW.
19790
19791         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
19792         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
19793         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
19794         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
19795         (Depends-on): Add EOVERFLOW.
19796         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
19797         (Depends-on): Add EOVERFLOW.
19798         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19799         (Depends-on): Add EOVERFLOW.
19800         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19801         (Depends-on): Add EOVERFLOW.
19802         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19803         (Depends-on): Add EOVERFLOW.
19804         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19805         (Depends-on): Add EOVERFLOW.
19806         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19807         (Depends-on): Add EOVERFLOW.
19808         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19809         (Depends-on): Add EOVERFLOW.
19810
19811         * lib/sprintf.c (EOVERFLOW): Remove fallback.
19812         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
19813         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
19814
19815         * lib/snprintf.c (EOVERFLOW): Remove fallback.
19816         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
19817         * modules/snprintf (Depends-on): Add EOVERFLOW.
19818
19819         * lib/poll.c (EOVERFLOW): Remove fallback.
19820         * modules/poll (Depends-on): Add EOVERFLOW.
19821
19822         * lib/getugroups.c (EOVERFLOW): Remove fallback.
19823         * modules/getugroups (Depends-on): Add EOVERFLOW.
19824
19825         * lib/getdelim.c (EOVERFLOW): Remove fallback.
19826         * modules/getdelim (Depends-on): Add EOVERFLOW.
19827
19828         * lib/ftell.c (EOVERFLOW): Remove fallback.
19829         * modules/ftell (Depends-on): Add EOVERFLOW.
19830
19831         * lib/fprintf.c (EOVERFLOW): Remove fallback.
19832         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
19833         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
19834
19835         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
19836
19837         * modules/EOVERFLOW-tests: New file.
19838         * tests/test-EOVERFLOW.c: New file.
19839
19840         * modules/EOVERFLOW: New file.
19841         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
19842
19843 2008-03-30  Bruno Haible  <bruno@clisp.org>
19844
19845         Fix bug introduced on 2007-06-10.
19846         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
19847         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
19848
19849 2008-03-30  Bruno Haible  <bruno@clisp.org>
19850
19851         Improve freadseek's efficiency after ungetc.
19852         * lib/freadseek.c: Include freadahead.h.
19853         (freadptrinc): New function, extracted from freadseek.
19854         (freadseek): Use it in a loop. Use freadahead to determine the number
19855         of loop iterations.
19856         * modules/freadseek (Depends-on): Add freadahead.
19857         (configure.ac): Require AC_C_INLINE.
19858
19859 2008-03-30  Bruno Haible  <bruno@clisp.org>
19860
19861         * lib/freadseek.c (freadseek): Don't ignore the return value of
19862         freadptr.
19863
19864 2008-03-29  Eric Blake  <ebb9@byu.net>
19865
19866         Add hex float support.
19867         * modules/strtod (Depends-on): Add c-ctype.
19868         (Link): Mention POW_LIB.
19869         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
19870         whitespace between 'e' and exponent.
19871         * tests/test-strtod.c (main): Enable hex float tests.
19872         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
19873         now provides.
19874
19875         Document various strtod bugs, with some fixes.
19876         * doc/posix-functions/strtod.texi (strtod): Document bugs with
19877         "-0x", "inf", "nan", and hex constants.
19878         * doc/posix-functions/atof.texi (atof): Likewise.
19879         * modules/stdlib (Makefile.am): Support strtod.
19880         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
19881         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
19882         detect additional strtod bugs.
19883         * lib/stdlib.in.h (rpl_strtod): Add declarations.
19884         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
19885         bool where appropriate.  Parse 'inf' and 'nan'.
19886         * tests/test-strtod.c: New file.
19887         * modules/strtod (Depends-on): Add stdbool, stdlib.
19888         (configure.ac): Turn on module indicator.
19889         * modules/strtod-tests: New module.
19890
19891 2008-03-29  Eric Blake  <ebb9@byu.net>
19892
19893         Fix ftell on mingw.
19894         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
19895         * modules/ftell-tests (Depends-on): Add binary-io.
19896         * modules/ftello-tests (Depends-on): Likewise.
19897         * tests/test-ftell.c (main): Enhance test to cover behavior after
19898         ungetc.  Enforce binary mode.
19899         * tests/test-ftello.c (main): Likewise.
19900
19901         Pass test-freadseek on cygwin.
19902         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
19903         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
19904         ungetc buffer.
19905
19906         * tests/test-fflush2.c (main): Fix typo.
19907
19908 2008-03-29  Bruno Haible  <bruno@clisp.org>
19909
19910         * tests/test-fflush2.c (main): Temporarily disable the contents of
19911         this test.
19912         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
19913         Reported by Eric Blake.
19914
19915 2008-03-28  Simon Josefsson  <simon@josefsson.org>
19916
19917         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
19918         (GC_SHA224_DIGEST_SIZE): Add.
19919
19920         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
19921         (gc_hash_digest_length): Likewise.
19922         (gc_hash_buffer): Likewise.
19923
19924 2008-03-25  Bruno Haible  <bruno@clisp.org>
19925
19926         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
19927         detail which gettext release to use.
19928         Reported by Simon Josefsson.
19929
19930 2008-03-26  Jim Meyering  <meyering@redhat.com>
19931
19932         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
19933         * modules/gnumakefile (clean-GNUmakefile): Also, use
19934         test ... && ... || : syntax rather than if-then ... fi.
19935
19936         gnumakefile: Don't double-quote-expand $(VPATH) value.
19937         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
19938
19939 2008-03-24  Eric Blake  <ebb9@byu.net>
19940
19941         Alter GNUmakefile to install into top directory.
19942         * modules/maintainer-makefile: Split, and add dependency...
19943         * modules/gnumakefile: to this new module.
19944         * build-aux/GNUmakefile: Move...
19945         * top/GNUmakefile: ...here.
19946         * build-aux/maint.mk: Move...
19947         * top/maint.mk: ...here.
19948         * MODULES.html.sh (Support for maintaining...): Document new
19949         module.
19950
19951 2008-03-23  Bruno Haible  <bruno@clisp.org>
19952
19953         * gnulib-tool: New options --vc-files, --no-vc-files.
19954         (func_usage): Document them.
19955         (vc_files): New variable.
19956         (func_import): Consider vc_files.
19957         (func_create_testdir): Set vc_files to empty.
19958         Suggested by Jim Meyering and Karl Berry.
19959
19960 2008-03-23  Bruno Haible  <bruno@clisp.org>
19961
19962         Fix regex compilation error on HP-UX 11.
19963         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
19964         * modules/regex (Files): Add m4/mbstate_t.m4.
19965         Reported by Ton Voon <ton.voon@altinity.com>.
19966
19967 2008-03-23  Bruno Haible  <bruno@clisp.org>
19968
19969         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
19970
19971 2008-03-23  Eric Blake  <ebb9@byu.net>
19972             Bruno Haible  <bruno@clisp.org>
19973
19974         Install files from top/ in the destination directory.
19975         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
19976         augmentation also for the files from top/.
19977         (func_import, func_create_testdir): Rewrite file names:
19978         top/filename -> filename.
19979
19980 2008-03-23  Bruno Haible  <bruno@clisp.org>
19981
19982         Tweak "gnulib --version" output.
19983         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
19984
19985 2008-03-23  Bruno Haible  <bruno@clisp.org>
19986
19987         Tweak "gnulib --version" output.
19988         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
19989         rather than contents of ChangeLog, when possible.
19990
19991 2008-03-21  Eric Blake  <ebb9@byu.net>
19992
19993         More --version tweaks.
19994         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
19995         date of last ChangeLog entry.
19996
19997 2008-03-21  Jim Meyering  <meyering@redhat.com>
19998
19999         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
20000
20001 2008-03-20  Eric Blake  <ebb9@byu.net>
20002
20003         VPATH fix.
20004         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
20005
20006 2008-03-20  Simon Josefsson  <simon@josefsson.org>
20007
20008         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
20009         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
20010
20011 2008-03-20  Eric Blake  <ebb9@byu.net>
20012
20013         Sync GNUmakefile with coreutils.
20014         * build-aux/GNUmakefile (have-Makefile): Rename...
20015         (_have-Makefile): ...to this, for namespace consideration.
20016         (GNUmakefile.cfg): Include, if present.
20017         (_autoreconf): Define a default.
20018         (_is-dist-target): New rule for rebuilds to pick up intra-release
20019         version.
20020         (maint-cfg.mk): Rename...
20021         (cfg.mk): ...to this.
20022
20023 2008-03-18  Jim Meyering  <meyering@redhat.com>
20024
20025         New script and module: mktempd
20026         * MODULES.html.sh (maint+release support): Add mktempd.
20027         * build-aux/mktempd: New file.
20028         * modules/mktempd: New file.
20029
20030 2008-03-15  Jim Meyering  <meyering@redhat.com>
20031
20032         Undo last change.
20033         * lib/sha1.c, lib/md5.c: 63 != ~63.
20034         Reported by Andreas Schwab.
20035
20036         sha1.c, md5.c: Hoist a redundant expression.
20037         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
20038         "ctx->buflen" only once, before calling *_process_block.
20039         * lib/md5.c (md5_process_bytes): Likewise.
20040
20041 2008-03-14  Eric Blake  <ebb9@byu.net>
20042
20043         Bump copyright year in files generated by gnulib-tool.
20044         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
20045         gnulib-tool, rather than hard-coding it.
20046
20047         Fix 'gnulib-tool --version' output to work with git.
20048         * gnulib-tool (func_gnulib_dir): New function, extracted from...
20049         (startup): ...here.
20050         (func_version): Use it to invoke git-version-gen, rather than
20051         relying on CVS keyword expansion.  Modernize wording.
20052         (cvsdatestamp, last_checkin_date, version): Kill unused
20053         variables.
20054
20055 2008-03-12  Jim Meyering  <meyering@redhat.com>
20056
20057         Recognize optional cast of the argument to free.
20058         * build-aux/useless-if-before-free: Update regexps.
20059
20060         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
20061
20062 2008-03-11  Bruno Haible  <bruno@clisp.org>
20063
20064         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
20065         by a single package.
20066         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
20067         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
20068         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
20069         Reported by Sam Steingold <sds@gnu.org>.
20070
20071 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
20072
20073         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
20074         repositories.
20075
20076 2008-03-11  Bruno Haible  <bruno@clisp.org>
20077
20078         Avoid conflicts between local macro definitions.
20079         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
20080         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
20081
20082 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
20083             Bruno Haible  <bruno@clisp.org>
20084
20085         Make va_copy work with some version of xlc on AIX 5.1.
20086         * lib/stdarg.in.h: New file.
20087         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
20088         On AIX, use a <stdarg.h> file substitute.
20089         * modules/stdarg (Files): Add lib/stdarg.in.h.
20090         (Depends-on): Add include_next.
20091         (Makefile.am): Build a stdarg.h substitute if requested.
20092         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
20093
20094 2008-03-10  Bruno Haible  <bruno@clisp.org>
20095
20096         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
20097         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
20098         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20099
20100 2008-03-10  Bruno Haible  <bruno@clisp.org>
20101
20102         * modules/stdlib (Depends-on): Add include_next, remove
20103         absolute-header.
20104
20105 2008-03-09  Bruno Haible  <bruno@clisp.org>
20106
20107         * lib/freadahead.h (freadahead): Document more precisely.
20108         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
20109         the sum of both buffer sizes.
20110         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
20111         * NEWS: Document the change.
20112
20113 2008-03-09  Bruno Haible  <bruno@clisp.org>
20114
20115         Extend freadptr to return also the buffer size.
20116         * lib/freadptr.h (freadptr): Add sizep argument.
20117         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
20118         (freadptr): Add sizep argument. Determine buffer size like freadahead
20119         does.
20120         * tests/test-freadptr.c: Don't include freadahead.h.
20121         (main): Adapt for new calling convention of freadptr.
20122         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
20123         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
20124         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
20125         tests/test-freadptr2.sh.
20126         (Depends): Remove freadahead.
20127         (TESTS): Add test-freadptr2.sh.
20128         (check_PROGRAMS): Add test-freadptr2.
20129
20130 2008-03-09  Bruno Haible  <bruno@clisp.org>
20131
20132         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
20133         Report and solution by Simon Josefsson.
20134
20135 2008-03-06  Bruno Haible  <bruno@clisp.org>
20136
20137         Make fflush after ungetc work on BSD platforms.
20138         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
20139         * tests/test-fflush2.c: New file.
20140         * tests/test-fflush2.sh: New file.
20141         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
20142         tests/test-fflush2.c.
20143         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
20144         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
20145
20146 2008-03-06  Eric Blake  <ebb9@byu.net>
20147
20148         Likewise for ftello.
20149         * modules/ftello (Dependencies): Add extensions.
20150         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
20151
20152 2008-03-06  Bruno Haible  <bruno@clisp.org>
20153
20154         * modules/fseeko (Dependencies): Add extensions.
20155         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
20156         Needed on glibc systems.
20157
20158 2008-03-06  Bruno Haible  <bruno@clisp.org>
20159
20160         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
20161         email address.
20162         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20163
20164 2008-03-06  Bruno Haible  <bruno@clisp.org>
20165
20166         * users.txt: Add libgnupdf.
20167
20168 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
20169
20170         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
20171         (Header File Substitutes, Function Substitutes,
20172         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
20173         (Build robot for gnulib): Fix typo.
20174
20175 2008-03-06  Bruno Haible  <bruno@clisp.org>
20176
20177         * doc/gnulib-tool.texi (VCS Issues): Small updates.
20178         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20179
20180 2008-03-06  Bruno Haible  <bruno@clisp.org>
20181
20182         * doc/func.texi: New file, extracted from doc/gnulib.texi.
20183         * doc/gnulib.texi: Include it.
20184
20185 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20186
20187         * modules/func (License): Change license to unlimited; there was
20188         no LGPL parts in the module anyway.
20189
20190 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20191
20192         * modules/__func__: Renamed to modules/func.
20193         * modules/__func__-tests: Renamed to modules/func-tests.
20194         * tests/test-__func__.c: Renamed to tests/test-func.c.
20195         * m4/__func__.m4: Renamed to m4/func.m4.
20196         * doc/gnulib.texi (__func__): Section renamed to func.
20197         Suggested by Eric Blake <ebb9@byu.net>.
20198
20199 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20200
20201         * doc/gnulib.texi (__func__): Use C99 terminology when talking
20202         about __func__.  Make example self-contained.  Suggested by Eric
20203         Blake <ebb9@byu.net>.
20204
20205         * tests/test-__func__.c (main): Avoid extraneous () around __func.
20206         Suggested by Eric Blake <ebb9@byu.net>.
20207
20208 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20209
20210         * modules/__func__: New file.
20211         * modules/__func__-tests: New file.
20212         * tests/test-__func__.c: New file.
20213         * m4/__func__.m4: New file.
20214         * doc/gnulib.texi (__func__): Document __func__ module.
20215
20216 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20217
20218         * modules/byteswap (License): Re-license as LGPLv2+.
20219
20220 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20221
20222         * doc/Makefile: Add pdf target.
20223
20224 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20225
20226         * modules/inline (License): Use 'unlimited', since there are only
20227         *.m4 files in this module.
20228
20229 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20230             Bruno Haible  <bruno@clisp.org>
20231
20232         Add support for HP C 7.1 on OpenVMS 8.3.
20233         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
20234
20235 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20236
20237         Update VMS specifics.
20238         * lib/getopt.c [VMS]: Remove include of unixlib.h.
20239
20240 2008-03-02  Jim Meyering  <meyering@redhat.com>
20241
20242         Remove the last dependency on the "free" module.
20243         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
20244         Reported by Bob Proulx.
20245
20246         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
20247
20248         Remove useless "if" tests before free.  Deprecate "free" module.
20249         * doc/posix-functions/free.texi: Mention that this
20250         module is no longer useful.
20251         * modules/free (Notice): Say this module is obsolete.
20252         * modules/readutmp (Depends-on): Remove free.
20253         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
20254         * lib/putenv.c (putenv): Likewise.
20255         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
20256         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
20257         * tests/test-c-strcasestr.c (main): Likewise.
20258         * tests/test-c-strstr.c (main): Likewise.
20259         * tests/test-mbscasestr1.c (main): Likewise.
20260         * tests/test-mbscasestr2.c (main): Likewise.
20261         * tests/test-mbsstr1.c (main): Likewise.
20262         * tests/test-mbsstr2.c (main): Likewise.
20263         * tests/test-memmem.c (main): Likewise.
20264         * tests/test-strcasestr.c (main): Likewise.
20265         * tests/test-striconv.c (main): Likewise.
20266         * tests/test-striconveh.c (main): Likewise.
20267         * tests/test-striconveha.c (main): Likewise.
20268         * tests/test-strstr.c (main): Likewise.
20269
20270         * build-aux/git-version-gen: Adjust a comment and the Usage string.
20271
20272         bootstrap: sync from coreutils again
20273         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
20274
20275 2008-03-01  Jim Meyering  <meyering@redhat.com>
20276
20277         bootstrap: sync from coreutils
20278         * build-aux/bootstrap (update_po_files): Copy a .po file into place
20279         also when the target doesn't exist.
20280
20281 2008-03-01  Eric Blake  <ebb9@byu.net>
20282
20283         Fix bugs in last patch.
20284         * lib/memchr2.c (memchr2): Fix typo.
20285         * tests/test-memchr2.c: Test previous bug, and don't use GNU
20286         extension.
20287         Reported by Bruce Korb.
20288
20289         New module 'memchr2'.
20290         * modules/memchr2: New file.
20291         * modules/memchr2-tests: Likewise.
20292         * lib/memchr2.h: Likewise.
20293         * lib/memchr2.c: Likewise, based on memchr.c.
20294         * tests/test-memchr2.c: New test.
20295         * MODULES.html.sh (String handling): Add memchr2.
20296
20297 2008-02-29  Bruno Haible  <bruno@clisp.org>
20298
20299         * modules/freadseek-tests: New file.
20300         * tests/test-freadseek.sh: New file.
20301         * tests/test-freadseek.c: New file.
20302
20303         New module 'freadseek'.
20304         * modules/freadseek: New file.
20305         * lib/freadseek.h: New file.
20306         * lib/freadseek.c: New file.
20307         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
20308
20309 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
20310
20311         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
20312         wydawca.
20313
20314         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
20315         program_invocation_name and program_invocation_short_name are
20316         present.
20317
20318 2008-02-28  Bruno Haible  <bruno@clisp.org>
20319
20320         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
20321         * tests/test-freadptr.sh: Also test non-seekable stdin.
20322
20323 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
20324
20325         * build-aux/bootstrap (source_base, m4_base)
20326         (doc_base, tests_base): New variables.
20327         (gnulib_tool_options): Do not hardcode base directories, use
20328         the above variables instead.
20329
20330 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
20331
20332         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
20333
20334 2008-02-28  Bruno Haible  <bruno@clisp.org>
20335
20336         * modules/freadptr-tests: New file.
20337         * tests/test-freadptr.sh: New file.
20338         * tests/test-freadptr.c: New file.
20339
20340         New module 'freadptr'.
20341         * modules/freadptr: New file.
20342         * lib/freadptr.h: New file.
20343         * lib/freadptr.c: New file.
20344         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
20345
20346 2008-02-26  Karl Berry  <karl@freefriends.org>
20347
20348         Sync from Libtool:
20349         * libltdl/argz.c (argz_add, argz_count): New functions.
20350         * libltdl/argz.in.h: Declare them.
20351         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
20352
20353 2008-02-22  Bruno Haible  <bruno@clisp.org>
20354
20355         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
20356         is a pointer type.  Needed for HP-UX 10.
20357         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
20358         * doc/posix-functions/gmtime_r.texi: Likewise.
20359         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20360
20361 2008-02-24  Bruno Haible  <bruno@clisp.org>
20362
20363         * modules/environ-tests: New file.
20364         * tests/test-environ.c: New file.
20365
20366         New module 'environ'.
20367         * modules/environ: New file.
20368         * lib/unistd.in.h (environ): New declaration.
20369         * m4/environ.m4: New file.
20370         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
20371         after use.
20372         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
20373         HAVE_DECL_ENVIRON.
20374         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
20375         HAVE_DECL_ENVIRON.
20376         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
20377         wrong claim that 'environ' is missing on some systems.
20378         * modules/execute (Depends-on): Add environ.
20379         * lib/execute.c (environ): Remove fallback declaration.
20380         * modules/pipe (Depends-on): Add environ.
20381         * lib/pipe.c (environ): Remove fallback declaration.
20382         * modules/setenv (Depends-on): Add environ.
20383         * lib/setenv.c (environ): Remove fallback declaration.
20384         * modules/unsetenv (Depends-on): Add environ.
20385         * lib/unsetenv.c (environ): Remove fallback declaration.
20386         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
20387         m4/environ.m4.
20388         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
20389         (gl_PREREQ_UNSETENV): Likewise.
20390
20391 2008-02-24  Bruno Haible  <bruno@clisp.org>
20392
20393         * doc/posix-functions/environ.texi: Document the MacOS X problem.
20394
20395 2008-02-20  Bob Proulx  <bob@proulx.com>
20396
20397         Enable use of older two part flavor 'git describe'.
20398         * build-aux/git-version-gen: If using the older two part flavor of
20399         git version then recreate the third part now present in the
20400         newer three part flavor of git describe.
20401
20402 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
20403
20404         * lib/fts.c (fts_build): Typo correction to comment.
20405
20406 2008-02-17  Bruno Haible  <bruno@clisp.org>
20407
20408         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
20409         generating no-op conflicts.
20410
20411 2008-02-17  Bruno Haible  <bruno@clisp.org>
20412
20413         Speed up by 10%.
20414         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
20415         result_entries, rather than an index-based loop.
20416
20417 2008-02-17  Bruno Haible  <bruno@clisp.org>
20418
20419         Speed up by 25%.
20420         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
20421         'hashcode_cached'.
20422         (entry_create): New function.
20423         (entry_hashcode): Use the cached hashcode if possible.
20424         (read_changelog_file, try_split_merged_entry): Use entry_create.
20425
20426 2008-02-17  Bruno Haible  <bruno@clisp.org>
20427
20428         Speed up from O(n^2) to O(n) for long ChangeLog files.
20429         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
20430         (read_changelog_file): Change implementation of entries_reversed list
20431         to rbtreehash.
20432         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
20433
20434 2008-02-17  Bruno Haible  <bruno@clisp.org>
20435
20436         New option --split-merged-entry.
20437         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
20438         (find_paragraph_end, try_split_merged_entry): New functions.
20439         (long_options): Add option --split-merged-entry.
20440         (usage): Document option --split-merged-entry.
20441         (main): Implement option --split-merged-entry.
20442         Reported by Eric Blake.
20443
20444 2008-02-17  Bruno Haible  <bruno@clisp.org>
20445
20446         * lib/git-merge-changelog.c: Include c-strstr.h.
20447         (main): Support the "git pull --rebase" situation.
20448         * modules/git-merge-changelog (Depends-on): Add c-strstr.
20449         Reported by Eric Blake.
20450
20451 2008-02-16  Eric Blake  <ebb9@byu.net>
20452
20453         Avoid doubling \ in common case of "c-maybe" quoting style.
20454         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
20455         eliding outer quotes.
20456         * lib/quotearg.h: Document this.
20457         * tests/test-quotearg.c (result_strings, inputs, results_g)
20458         (flag_results, locale_results): Test it by adding a new string to
20459         each test group.
20460         (compare_strings): Test new string.
20461
20462 2008-02-13  Eric Blake  <ebb9@byu.net>
20463
20464         Avoid trigraph quoting in default output.
20465         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
20466         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
20467         unless explicitly requested.
20468         * tests/test-quotearg.c (flag_results, main): Add additional tests.
20469
20470 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
20471
20472         Don't rely on signed integer overflowing to negative value.
20473         * lib/getugroups.c (getugroups): Include <limits.h>.
20474         Instead, compare against INT_MAX, and increment only if the test passes.
20475
20476 2008-02-13  Jim Meyering  <meyering@redhat.com>
20477         and Eric Blake  <ebb9@byu.net>
20478
20479         Avoid shadowing warning and compile errors on Linux.
20480         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
20481         forwarding macros on Linux.
20482         (dcgettext): Define a stub, for Linux.
20483         (results_g, main): Avoid warnings.
20484
20485 2008-02-12  Eric Blake  <ebb9@byu.net>
20486
20487         Silence warning in last patch.
20488         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
20489
20490         Quotearg part 4: add tests, fix c-maybe colon quoting.
20491         * lib/quotearg.h: Improve documentation.
20492         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
20493         escapes when adding outer quotes.  When quoting trigraphs, use
20494         valid C notation.  When quoting NUL, omit extra characters if next
20495         character is not digit.  Alter prototype.
20496         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
20497         callers.
20498         * modules/quotearg-tests: New module.
20499         * tests/test-quotearg.c: New test.
20500
20501 2008-02-07  Eric Blake  <ebb9@byu.net>
20502
20503         Quotearg part 3: add flag to control outer quote elision.
20504         * lib/quotearg.h (c_maybe_quoting_style): New style.
20505         (enum quoting_flags): Better documentation of flags.
20506         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
20507         c-maybe style.
20508         (quotearg_buffer_restyled): Handle new flag to elide outer
20509         quotes.
20510
20511         Quotearg part 2: add flag that can control NUL elision.
20512         * lib/quotearg.h (set_quoting_flags): New prototype.
20513         * lib/quotearg.c (struct quoting_options): Add flag field.
20514         (set_quoting_flags): New function.
20515         (quotearg_buffer_restyled): Add flags parameter.
20516         (quotearg_alloc_mem): Set the flag if length cannot be returned.
20517         (quotearg_n_options): Set the flag, since length cannot be
20518         returned.
20519         (quoting_options_from_style): Default flags correctly.
20520
20521         Quotearg part 1: more wrappers, restore quotearg_char state.
20522         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
20523         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
20524         (quotearg_colon_mem): New wrappers.
20525         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
20526         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
20527         functions.
20528         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
20529         (quotearg_colon_mem): New functions.
20530
20531 2008-02-11  Bruno Haible  <bruno@clisp.org>
20532
20533         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
20534         library in the current directory: it does not work with parallel make.
20535         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20536
20537 2008-02-11  Bruno Haible  <bruno@clisp.org>
20538
20539         * .gitattributes: New file.
20540
20541 2008-02-11  Jim Meyering  <meyering@redhat.com>
20542
20543         useless-if-before-free: Fix reversed exit values.
20544         * build-aux/useless-if-before-free: Use correct values
20545         for EXIT_MATCH and EXIT_NO_MATCH.
20546
20547         * build-aux/useless-if-before-free: Close stdout carefully.
20548
20549 2008-02-10  Bruno Haible  <bruno@clisp.org>
20550
20551         New module 'git-merge-changelog'.
20552         * modules/git-merge-changelog: New file.
20553         * lib/git-merge-changelog.c: New file.
20554
20555 2008-02-10  Jim Meyering  <meyering@redhat.com>
20556
20557         useless-if-before-free: New option: --list (-l).
20558
20559         useless-if-before-free: Don't exit immediately upon open failure.
20560         * build-aux/useless-if-before-free: Exit 2 for errors.
20561         Upon failure to open a file, don't exit immediately.
20562         Rather, just warn and continue with any remaining files.
20563
20564 2008-02-10  Bruno Haible  <bruno@clisp.org>
20565
20566         New abstract list operation 'node_set_value'.
20567         * lib/gl_list.h (gl_list_node_set_value): New function.
20568         (struct gl_list_implementation): New field node_set_value.
20569         * lib/gl_list.c (gl_list_node_set_value): New function.
20570         * lib/gl_array_list.c (gl_array_node_set_value): New function.
20571         (gl_array_list_implementation): Update.
20572         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
20573         (gl_carray_list_implementation): Update.
20574         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
20575         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
20576         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
20577         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
20578         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
20579         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
20580         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
20581         Update.
20582         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
20583         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
20584         (gl_sublist_list_implementation): Update.
20585
20586 2008-02-10  Bruno Haible  <bruno@clisp.org>
20587
20588         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
20589         Needed when ELEMENT is #defined to 'some_type *'.
20590
20591 2008-02-10  Jim Meyering  <meyering@redhat.com>
20592
20593         New script and module: useless-if-before-free
20594         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
20595         * build-aux/useless-if-before-free: New file.
20596         * modules/useless-if-before-free: New file.
20597
20598         * build-aux/gitlog-to-changelog: Use committer date, not author date.
20599
20600         xstrtol_error: Fix typo.
20601         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
20602         s/exit_failure/exit_status/.
20603
20604 2008-02-09  Jim Meyering  <meyering@redhat.com>
20605
20606         New script and module: gitlog-to-changelog
20607         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
20608         * modules/gitlog-to-changelog: New file.
20609         * build-aux/gitlog-to-changelog: New file.
20610
20611 2008-02-08  Jim Meyering  <meyering@redhat.com>
20612
20613         Avoid two "parameter unused" warnings.
20614         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
20615         Mark "st" as used.
20616
20617         Use "git COMMAND", not "git-COMMAND".
20618         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
20619         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
20620         * build-aux/git-version-gen: Use "git status", not "git-status".
20621
20622 2008-02-07  Bruno Haible  <bruno@clisp.org>
20623
20624         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
20625         Avoids a crash on Windows Vista.
20626         Reported by Adam Strzelecki <ono@java.pl> via
20627         Simon Josefsson <simon@josefsson.org>.
20628
20629 2008-02-06  Bruno Haible  <bruno@clisp.org>
20630
20631         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
20632         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
20633         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
20634         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
20635         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
20636         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20637         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
20638         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
20639         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20640         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20641         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20642         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20643         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20644         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20645         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20646         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
20647         left-adjust flag.
20648         * tests/test-snprintf-posix.h (test_function): Likewise.
20649         * tests/test-sprintf-posix.h (test_function): Likewise.
20650         * tests/test-vasprintf-posix.c (test_function): Likewise.
20651         * doc/posix-functions/fprintf.texi: Update.
20652         * doc/posix-functions/printf.texi: Update.
20653         * doc/posix-functions/snprintf.texi: Update.
20654         * doc/posix-functions/sprintf.texi: Update.
20655         * doc/posix-functions/vfprintf.texi: Update.
20656         * doc/posix-functions/vprintf.texi: Update.
20657         * doc/posix-functions/vsnprintf.texi: Update.
20658         * doc/posix-functions/vsprintf.texi: Update.
20659         Reported by Peter Fales <psfales@alcatel-lucent.com>.
20660
20661 2008-02-06  Bruno Haible  <bruno@clisp.org>
20662
20663         Fix bug introduced on 2008-01-26.
20664         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
20665
20666 2008-02-06  Bruno Haible  <bruno@clisp.org>
20667
20668         Fix bug introduced on 2007-06-10.
20669         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
20670         !NEED_PRINTF_FLAG_ZERO.
20671
20672 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
20673
20674         getloadavg: use libperfstat on AIX5
20675         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
20676
20677 2008-02-03  Bruno Haible  <bruno@clisp.org>
20678
20679         * lib/diffseq.h: Add comments about required #includes.
20680         Reported by Michael Biggs <gnulib@doubleplum.net>.
20681
20682 2008-02-01  Bruno Haible  <bruno@clisp.org>
20683
20684         * users.txt: Add gnuit.
20685
20686 2008-01-31  Bruno Haible  <bruno@clisp.org>
20687
20688         * lib/md4.c (set_uint32): Mark as inline.
20689         * lib/md5.c (set_uint32): Likewise.
20690         * lib/sha1.c (set_uint32): Likewise.
20691         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
20692         * m4/md5.m4 (gl_MD5): Likewise.
20693         * m4/sha1.m4 (gl_SHA1): Likewise.
20694
20695 2008-01-31  Jim Meyering  <meyering@redhat.com>
20696
20697         Use "sizeof VAR", rather than a literal "4".
20698         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
20699         * lib/md4.c (md4_read_ctx): Likewise.
20700         * lib/sha1.c (sha1_read_ctx): Likewise.
20701
20702 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20703
20704         * tests/test-sha1.c: New file, based on test-md5.c.
20705
20706         * modules/crypto/sha1-tests: New file.
20707
20708 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20709
20710         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
20711
20712 2008-01-31  Jim Meyering  <meyering@redhat.com>
20713
20714         Prefer "sizeof v" over the equivalent "4".
20715         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
20716         * lib/md5.c (set_uint32): Likewise.
20717         * lib/sha1.c (set_uint32): Likewise.
20718
20719 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20720
20721         * lib/sha1.c (set_uint32): Mark function as static.
20722
20723 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20724
20725         md2: clarify comments to say that alignment is not required.
20726         * lib/md2.h: Remove warning about alignment in comment.
20727         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
20728         never been required.
20729
20730 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20731
20732         md4: adapt alignment constraint fix from sha1.
20733         * lib/md4.c (set_uint32): New function, from sha1.c
20734         (md4_read_ctx): Use it.
20735         (md4_finish_ctx): Doc fix.
20736         * lib/md4.h: Doc fix.
20737
20738 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20739
20740         md5: adapt alignment constraint fix from sha1.
20741         * lib/md5.c (set_uint32): New function, from sha1.c
20742         (md5_read_ctx): Use it.
20743         (md5_finish_ctx): Doc fix.
20744         * lib/md5.h: Doc fix.
20745
20746 2008-01-30  Peter Palfrader  <weasel@debian.org>
20747
20748         sha1: remove the result buffer alignment constraint
20749         * lib/sha1.c (set_uint32): New function.
20750         (sha1_read_ctx): Rewrite to remove the result buffer alignment
20751         constraint.
20752         (sha1_finish_ctx): Remove comment warning about alignment constraint.
20753         * lib/sha1.h: Likewise.
20754
20755 2008-01-30  Andreas Schwab  <schwab@suse.de>
20756             Bruno Haible  <bruno@clisp.org>
20757
20758         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
20759         correct definition of LDBL_MIN_EXP.
20760
20761 2008-01-30  Karl Berry  <karl@gnu.org>
20762
20763         * config/srclist-update: try to preserve x bit on updates.
20764         * config/srclistvars.sh: update for karl.
20765
20766 2008-01-29  Jim Meyering  <meyering@redhat.com>
20767
20768         vasnprintf.c: Avoid warning about unused label
20769         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
20770         "overflow" label definition and associated code with the
20771         same cpp condition that guards the sole use of that label.
20772
20773 2008-01-26  Bruno Haible  <bruno@clisp.org>
20774
20775         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
20776         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
20777         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
20778         * lib/isnanl-nolibm.h (isnanl): Likewise.
20779         Reported by Paul Eggert <eggert@cs.ucla.edu>.
20780
20781 2008-01-26  Bruno Haible  <bruno@clisp.org>
20782
20783         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
20784         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
20785
20786 2008-01-26  Bruno Haible  <bruno@clisp.org>
20787
20788         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
20789         GCC >= 4.0 built-in.
20790         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
20791
20792 2008-01-26  Bruno Haible  <bruno@clisp.org>
20793
20794         Rename isnan, applicable to 'double' only, to isnand.
20795         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
20796         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
20797         (configure.ac): Update.
20798         (Include): Replace "isnan.h" with "isnand.h".
20799         * m4/isnand.m4: Renamed from m4/isnan.m4.
20800         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
20801         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
20802         instead of isnan.c.
20803         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
20804         instead of HAVE_ISNAN_IN_LIBC.
20805         (isnand): Renamed from isnan.
20806         * lib/isnand.c: New file.
20807         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
20808         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
20809         (Makefile.am): Update.
20810         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
20811         Include isnand.h instead of isnan.h.
20812         (main): Test isnand instead of isnan.
20813         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
20814         isnan-nolibm.
20815         * modules/frexp (Depends-on): Likewise.
20816         * modules/frexp-tests (Depends-on): Likewise.
20817         * modules/frexp-nolibm (Depends-on): Likewise.
20818         * modules/frexp-nolibm-tests (Depends-on): Likewise.
20819         * modules/isfinite (Depends-on): Likewise.
20820         * modules/round-tests (Depends-on): Likewise.
20821         * modules/signbit (Depends-on): Likewise.
20822         * modules/signbit-tests (Depends-on): Likewise.
20823         * modules/snprintf-posix (Depends-on): Likewise.
20824         * modules/sprintf-posix (Depends-on): Likewise.
20825         * modules/trunc-tests (Depends-on): Likewise.
20826         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
20827         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
20828         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
20829         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
20830         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
20831         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
20832         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
20833         * modules/vasnprintf-posix (Depends-on): Likewise.
20834         * modules/vasprintf-posix (Depends-on): Likewise.
20835         * modules/vfprintf-posix (Depends-on): Likewise.
20836         * modules/vsnprintf-posix (Depends-on): Likewise.
20837         * modules/vsprintf-posix (Depends-on): Likewise.
20838         * lib/frexp.c: Include isnand.h instead of isnan.h.
20839         (ISNAN): Set to isnand instead of isnan.
20840         * lib/isfinite.c: Include isnand.h instead of isnan.h.
20841         (gl_isfinited): Use isnand instead of isnan.
20842         * lib/signbitd.c: Include isnand.h instead of isnan.h.
20843         (gl_signbitd): Use isnand instead of isnan.
20844         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
20845         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
20846         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
20847         (main): Use isnand instead of isnan.
20848         * tests/test-round1.c: Include isnand.h.
20849         (main): Use isnand instead of isnan.
20850         * tests/test-round2.c: Include isnand.h instead of isnan.h.
20851         (ISNAN): Set to isnand instead of isnan.
20852         * tests/test-trunc1.c: Include isnand.h.
20853         (main): Use isnand instead of isnan.
20854         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
20855         (equal): Use isnand instead of isnan.
20856         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
20857         isnand-nolibm.
20858         * NEWS: Mention the change.
20859
20860 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
20861             Bruno Haible  <bruno@clisp.org>
20862
20863         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
20864         the GCC builtins for signbits are present and set
20865         REPLACE_SIGNBIT_USING_GCC if so.
20866         * lib/math.in.h (signbit): Define using GCC builtins if
20867         REPLACE_SIGNBIT_USING_GCC is set.
20868         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
20869         REPLACE_SIGNBIT_USING_GCC.
20870         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
20871
20872 2008-01-25  Jim Meyering  <meyering@redhat.com>
20873
20874         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
20875         * lib/poll.c: Include <config.h>, not "config.h".
20876         * tests/test-getaddrinfo.c: Likewise.
20877
20878 2008-01-25  Simon Josefsson  <simon@josefsson.org>
20879
20880         * modules/sockets-tests: New file.
20881
20882 2008-01-24  Simon Josefsson  <simon@josefsson.org>
20883
20884         * modules/sockets: New module, can be used to call WSA_Startup and
20885         WSA_Cleanup when needed.
20886
20887         * lib/sockets.h, lib/sockets.c: New files.
20888
20889         * m4/sockets.m4: New file.
20890
20891         * tests/test-sockets.c: New file.
20892
20893 2008-01-19  Bruno Haible  <bruno@clisp.org>
20894
20895         * doc/posix-headers: Renamed from doc/headers.
20896         * doc/posix-functions: Renamed from doc/functions.
20897         * doc/gnulib.texi: Update.
20898
20899 2008-01-19  Bruno Haible  <bruno@clisp.org>
20900
20901         * doc/glibc-functions/strcasestr.texi: Include contents of
20902         doc/functions/strcasestr.texi, fixing the list of platforms.
20903         * doc/functions/strcasestr.texi: Remove file.
20904
20905 2008-01-19  Bruno Haible  <bruno@clisp.org>
20906
20907         * doc/glibc-functions/memmem.texi: Include contents of
20908         doc/functions/memmem.texi.
20909         * doc/functions/memmem.texi: Remove file.
20910
20911 2008-01-18  Bruno Haible  <bruno@clisp.org>
20912
20913         * doc/glibc-functions/*.texi: New files.
20914         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
20915         to use the new files.
20916
20917 2008-01-17  Bruno Haible  <bruno@clisp.org>
20918
20919         * tests/test-gethostname.c (main): Fix printf statement.
20920
20921 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20922
20923         * modules/gethostname-tests: New file.
20924
20925         * tests/test-gethostname.c: New file.
20926
20927 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20928
20929         * lib/gethostname.c: Include string.h unconditionally, strncpy is
20930         used by the UNAME case.  Reported by Bruno Haible
20931         <bruno@clisp.org>.
20932
20933 2008-01-17  Eric Blake  <ebb9@byu.net>
20934
20935         Convert c-strcasestr to be more efficient.
20936         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
20937         (Depends-on): Add c-strcase, remove malloca, strnlen.
20938         * tests/test-c-strcasestr.c (main): Enhance test.
20939         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
20940
20941 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
20942
20943         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
20944         Use it in creating po/Makevars.
20945
20946 2008-01-15  Simon Josefsson  <simon@josefsson.org>
20947
20948         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
20949         Applications that requires it should initialize libgcrypt
20950         manually.
20951
20952 2008-01-16  Simon Josefsson  <simon@josefsson.org>
20953
20954         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
20955
20956 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
20957
20958         Fix problem with getdate on mingw32 reported by Simon Josefsson
20959         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
20960         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
20961         tzname", when deciding whether to declare tzname.
20962         * lib/strftime.c (tzname): Likewise.
20963
20964 2008-01-15  Bruno Haible  <bruno@clisp.org>
20965
20966         Work around a MacOS X 10.5 bug in frexpl().
20967         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
20968         * doc/functions/frexpl.texi: Document the bug.
20969         Reported by Elias Pipping <pipping@gentoo.org>.
20970
20971 2008-01-14  Eric Blake  <ebb9@byu.net>
20972
20973         Touch up previous patch.
20974         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
20975         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
20976
20977         Convert strcasestr module to use Two-Way algorithm.
20978         * modules/strcasestr-simple: New module, based on the old
20979         strcasestr, but with Two-Way rather than KMP.
20980         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
20981         * lib/string.in.h (rpl_strcasestr): Declare.
20982         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
20983         performance.
20984         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
20985         * modules/string (Makefile.am): Support strcasestr.
20986         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
20987         * modules/strcasestr-tests (Depends-on): Check for alarm.
20988         * tests/test-strcasestr.c: Augment test.
20989         * lib/str-two-way.h: Clean up stray macro.
20990         * NEWS: Document new module.
20991         * MODULES.html.sh (string handling): Likewise.
20992         * doc/functions/strcasestr.texi: New file.
20993         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
20994         here, since it is not a POSIX function.
20995
20996 2008-01-14  Colin Watson  <cjwatson@debian.org>
20997             Bruno Haible  <bruno@clisp.org>
20998
20999         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
21000         works fine; if not, set REPLACE_STRSIGNAL.
21001         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
21002         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21003         REPLACE_STRSIGNAL.
21004         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
21005         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
21006         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
21007
21008 2008-01-14  Bruno Haible  <bruno@clisp.org>
21009
21010         * modules/strsignal (Include): Change to <string.h>.
21011
21012 2008-01-14  Colin Watson  <cjwatson@debian.org>
21013
21014         * modules/argp (Notice): Add a notice recommending to change
21015         XGETTEXT_OPTIONS.
21016         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
21017
21018 2008-01-13  Colin Watson  <cjwatson@debian.org>
21019
21020         * modules/strsignal-tests: New file.
21021         * tests/test-strsignal.c: New file.
21022
21023         * lib/strsignal.c: New file, from glibc with modifications.
21024         * lib/siglist.h: New file, from glibc with modifications.
21025         * lib/string.in.h (strsignal): New declaration.
21026         * m4/strsignal.m4: New file.
21027         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21028         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
21029         * modules/strsignal: New file.
21030         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
21031         HAVE_DECL_STRSIGNAL.
21032
21033 2008-01-13  Bruno Haible  <bruno@clisp.org>
21034
21035         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
21036         locale encoding is not ASCII. Needed for OpenBSD 4.0.
21037         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
21038         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
21039
21040 2008-01-13  Bruno Haible  <bruno@clisp.org>
21041
21042         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
21043         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
21044         * lib/argp.h (__attribute__): Likewise.
21045         * lib/c-stack.c (__attribute__): Likewise.
21046         * lib/error.h (__attribute__): Likewise.
21047         * lib/fts.c (__attribute__): Likewise.
21048         * lib/openat.h (__attribute__): Likewise.
21049         * lib/stdio.in.h (__attribute__): Likewise.
21050         * lib/string.in.h (__attribute__): Likewise.
21051         * lib/utimens.c (__attribute__): Likewise.
21052         * lib/vasnprintf.h (__attribute__): Likewise.
21053         * lib/xalloc.h (__attribute__): Likewise.
21054         * lib/xprintf.h (__attribute__): Likewise.
21055         * lib/xstrtol.h (__attribute__): Likewise.
21056         * lib/xvasprintf.h (__attribute__): Likewise.
21057
21058 2008-01-12  Bruno Haible  <bruno@clisp.org>
21059
21060         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
21061         * doc/glibc-headers/a.out.texi: New file.
21062         * doc/glibc-headers/aliases.texi: New file.
21063         * doc/glibc-headers/alloca.texi: New file.
21064         * doc/glibc-headers/ar.texi: New file.
21065         * doc/glibc-headers/argp.texi: New file.
21066         * doc/glibc-headers/argz.texi: New file.
21067         * doc/glibc-headers/byteswap.texi: New file.
21068         * doc/glibc-headers/crypt.texi: New file.
21069         * doc/glibc-headers/endian.texi: New file.
21070         * doc/glibc-headers/envz.texi: New file.
21071         * doc/glibc-headers/err.texi: New file.
21072         * doc/glibc-headers/error.texi: New file.
21073         * doc/glibc-headers/execinfo.texi: New file.
21074         * doc/glibc-headers/fpu_control.texi: New file.
21075         * doc/glibc-headers/fstab.texi: New file.
21076         * doc/glibc-headers/fts.texi: New file.
21077         * doc/glibc-headers/getopt.texi: New file.
21078         * doc/glibc-headers/ieee754.texi: New file.
21079         * doc/glibc-headers/ifaddrs.texi: New file.
21080         * doc/glibc-headers/libintl.texi: New file.
21081         * doc/glibc-headers/mcheck.texi: New file.
21082         * doc/glibc-headers/mntent.texi: New file.
21083         * doc/glibc-headers/obstack.texi: New file.
21084         * doc/glibc-headers/paths.texi: New file.
21085         * doc/glibc-headers/printf.texi: New file.
21086         * doc/glibc-headers/pty.texi: New file.
21087         * doc/glibc-headers/resolv.texi: New file.
21088         * doc/glibc-headers/shadow.texi: New file.
21089         * doc/glibc-headers/sysexits.texi: New file.
21090         * doc/glibc-headers/ttyent.texi: New file.
21091
21092 2008-01-12  Jim Meyering  <meyering@redhat.com>
21093
21094         announce-gen: emit Gnulib's git-based version string.
21095         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
21096         New option --gnulib-version=V, where V is expected to be
21097         the output of running git describe in the gnulib directory.
21098         (get_tool_versions): Request feedback on xdelta.  I suspect it's
21099         not useful, and plan to stop publishing an xdelta file with each
21100         coreutils release.
21101
21102         * build-aux/announce-gen: Also check for lzma-compressed files.
21103
21104 2008-01-11  Bruno Haible  <bruno@clisp.org>
21105
21106         * tests/test-memmem.c (main): Increase maximum allowed time.
21107         * tests/test-strstr.c (main): Likewise.
21108
21109 2008-01-11  Bruno Haible  <bruno@clisp.org>
21110
21111         * doc/functions/memmem.texi: Add more precisions about platforms.
21112         * doc/functions/strstr.texi: Likewise.
21113
21114 2008-01-10  Eric Blake  <ebb9@byu.net>
21115
21116         * m4/strstr.m4: Delete cruft from copy-n-paste.
21117         Reported by Bruno Haible.
21118
21119 2008-01-10  Bruno Haible  <bruno@clisp.org>
21120
21121         Make c-strstr rely on strstr.
21122         * lib/c-strstr.c: Don't include str-kmp.h.
21123         (c_strstr): Define in terms of strstr.
21124         * modules/c-strstr (Files): Remove lib/str-kmp.h.
21125         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
21126
21127 2008-01-10  Bruno Haible  <bruno@clisp.org>
21128
21129         * doc/gnulib.texi (String Functions in C Locale): New section.
21130         * doc/c-ctype.texi: New file.
21131         * doc/c-strcase.texi: New file.
21132         * doc/c-strcaseeq.texi: New file.
21133         * doc/c-strcasestr.texi: New file.
21134         * doc/c-strstr.texi: New file.
21135         * doc/c-strtod.texi: New file.
21136         * doc/c-strtold.texi: New file.
21137
21138 2008-01-10  Eric Blake  <ebb9@byu.net>
21139
21140         * lib/relocatable.h: Fix a comment.
21141
21142 2008-01-10  Eric Blake  <ebb9@byu.net>
21143
21144         Share two-way algorithm.
21145         * lib/str-two-way.h: New file, merged from...
21146         * lib/memmem.c: ...here...
21147         * lib/strstr.c: ...and here.
21148         * modules/memmem (Files): Use it.
21149         * modules/strstr (Files): Likewise.
21150
21151         Avoid quadratic strstr implementations.
21152         * lib/strstr.c: New file.
21153         * m4/strstr.m4: Likewise.
21154         * modules/strstr: Likewise.
21155         * modules/strstr-tests: Likewise.
21156         * tests/test-strstr.c: Likewise.
21157         * lib/string.in.h (rpl_strstr): Declare.
21158         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
21159         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
21160         * modules/string (Makefile.am): Likewise.
21161         * MODULES.html.sh (string handling): Mention new module.
21162         * doc/functions/strstr.texi (strstr): Document the bug.
21163
21164 2008-01-10  Bruno Haible  <bruno@clisp.org>
21165
21166         * lib/relocatable.h (relocate): State whether result is freshly
21167         allocated or not.
21168         * lib/relocatable.c (relocate): Return a freshly allocated string
21169         instead of a pointer to a privately held string.
21170         Reported by Sylvain Beucler <beuc@gnu.org>.
21171
21172 2008-01-10  Colin Watson  <cjwatson@debian.org>
21173
21174         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
21175         s/S_ISNLK/S_ISLNK/.
21176
21177 2008-01-09  Bruno Haible  <bruno@clisp.org>
21178
21179         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
21180         and other files.
21181         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
21182         if it's only a guess.
21183         * modules/memmem: Simplify by depending on memmem-simple.
21184
21185 2008-01-09  Bruno Haible  <bruno@clisp.org>
21186
21187         Work around OpenBSD 4.0 tdelete() bug.
21188         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
21189         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
21190         macros and don't redefine the enum values.
21191         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
21192         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
21193         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
21194
21195 2008-01-09  Bruno Haible  <bruno@clisp.org>
21196
21197         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
21198         (main): Don't perform the tests if setlocale did not install a UTF-8
21199         locale. Needed on OpenBSD 4.0.
21200         * modules/wcwidth-tests (Depends-on): Add localcharset.
21201
21202 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21203
21204         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
21205         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
21206         * NEWS: announce this.
21207         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
21208
21209 2008-01-09  Simon Josefsson  <simon@josefsson.org>
21210         and Eric Blake  <ebb9@byu.net>
21211
21212         Add memmem-simple module.
21213         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
21214         (gl_FUNC_MEMMEM): Separate performance from presence checks.
21215         * modules/memmem-simple: New file.
21216         * modules/memmem (Description): Tweak.
21217         * MODULES.html.sh (string handling): Mention new module.
21218         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
21219         addressed by memmem-simple.
21220         * NEWS: Document the difference.
21221
21222 2008-01-09  Eric Blake  <ebb9@byu.net>
21223
21224         Give gcc some memmem optimization hints.
21225         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
21226         (strcasestr): Declare as pure.
21227         * modules/memmem (Maintainer): Claim my implementation.
21228
21229 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21230
21231         Support AIX 6.1 and higher.
21232         * build-aux/config.libpath: Likewise.
21233         * build-aux/config.rpath: Likewise.
21234
21235 2008-01-08  Jim Meyering  <meyering@redhat.com>
21236             Bruno Haible  <bruno@clisp.org>
21237
21238         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
21239         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
21240         Reported by Peter Fales in
21241         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
21242
21243 2008-01-08  Bruno Haible  <bruno@clisp.org>
21244
21245         * modules/unictype/category-of (Depends-on): Add
21246         unictype/category-none.
21247         * modules/unictype/category-and-tests (Depends-on): Add
21248         unictype/category-{L,N,Lu,Nd}.
21249         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
21250         * modules/unictype/category-or-tests (Depends-on): Add
21251         unictype/category-{L,N}.
21252         * modules/unictype/category-name-tests (Depends-on): Add
21253         unictype/category-{Z,Nl}.
21254         Reported by Simon Josefsson.
21255
21256 2008-01-08  Bruno Haible  <bruno@clisp.org>
21257
21258         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
21259         convention better.
21260         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
21261         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
21262         Reported by Peter Miller <millerp@canb.auug.org.au>.
21263
21264 2008-01-08  Eric Blake  <ebb9@byu.net>
21265
21266         Rewrite memmem to guarantee linear complexity without malloc.
21267         * lib/memmem.c (memmem): Use Two-Way rather than
21268         Knuth-Morris-Pratt, to allow O(1) space usage.
21269         (critical_factorization, two_way_short_needle)
21270         (two_way_long_needle): New functions.
21271         (knuth_morris_pratt): Delete.
21272         * modules/memmem (Depends-on): No longer need malloca or stdbool.
21273         Add stdint.
21274         * tests/test-memmem.c (main): Add tests for periodic needle and
21275         sublinear performance.
21276         * doc/functions/memmem.texi (memmem): Document other deficiencies
21277         in cygwin and older glibc.
21278
21279 2008-01-08  Bruno Haible  <bruno@clisp.org>
21280
21281         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
21282         augmentation.
21283
21284 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
21285
21286         Add a configure time option: --disable-acl.
21287         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
21288         AC_ARG_ENABLE(acl).
21289
21290 2008-01-06  Simon Josefsson  <simon@josefsson.org>
21291
21292         * tests/test-localename.c: Don't include obsolete "setenv.h".
21293
21294         * modules/localename-tests (Depends-on): Need unsetenv.
21295
21296 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21297
21298         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
21299
21300 2008-01-06  Colin Watson  <cjwatson@debian.org>
21301
21302         * users.txt: Add man-db.
21303
21304 2008-01-07  Bruno Haible  <bruno@clisp.org>
21305
21306         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
21307         previous section name.
21308
21309 2008-01-07  Bruno Haible  <bruno@clisp.org>
21310
21311         * lib/progname.c (set_program_name): Don't strip off a leading
21312         "lt-" prefix outside a .libs directory.
21313         Suggested by Paul Eggert.
21314
21315 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
21316             Bruno Haible  <bruno@clisp.org>
21317
21318         Improve memory cleanup in 'relocatable' module.
21319         * lib/relocatable.h (compute_curr_prefix): Change return type to
21320         'char *'.
21321         * lib/relocatable.c (compute_curr_prefix): Change return type to
21322         'char *'. Free curr_installdir after use.
21323         (relocate): Free curr_prefix_better after use.
21324         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
21325
21326 2008-01-01  Bruno Haible  <bruno@clisp.org>
21327
21328         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
21329         failure on older glibc systems.
21330         Reported by Peter Fales <psfales@alcatel-lucent.com>.
21331
21332 2008-01-05  Eric Blake  <ebb9@byu.net>
21333
21334         Avoid quadratic system memmem.
21335         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
21336         Reported by Ralf Wildenhues.
21337
21338         Fix memmem test for mingw.
21339         * modules/memmem-tests (configure.ac): Check for alarm.
21340         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
21341         it.
21342         * doc/functions/memmem.texi: New file.
21343         * doc/gnulib.texi (Function Substitutes): Add memmem.
21344         Reported by Bruno Haible.
21345
21346 2008-01-04  Bruno Haible  <bruno@clisp.org>
21347
21348         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
21349         Require gl_HEADER_STRINGS_H_DEFAULTS, not
21350         gl_HEADER_STRING_H_DEFAULTS.
21351
21352 2008-01-04  Eric Blake  <ebb9@byu.net>
21353
21354         Shorten duration of memmem test.
21355         * tests/test-memmem.c (main): Use alarm to declare failure if test
21356         is taking too long.
21357         Reported by Ralf Wildenhues.
21358
21359 2007-12-21  Simon Josefsson  <simon@josefsson.org>
21360
21361         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
21362         string, needed by strerror.
21363
21364 2008-01-03  Colin Watson  <cjwatson@debian.org>
21365             Bruno Haible  <bruno@clisp.org>
21366
21367         * doc/gnulib-tool.texi (Localization): New section.
21368
21369 2008-01-02  Bruno Haible  <bruno@clisp.org>
21370
21371         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
21372         variables to 'unsigned char *' type.
21373         Reported by Paul Eggert.
21374
21375 2008-01-02  Jim Meyering  <jim@meyering.net>
21376
21377         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
21378
21379 2007-12-31  Jim Meyering  <jim@meyering.net>
21380
21381         Avoid use of private FTS type name.
21382         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
21383
21384 2007-12-30  Karl Berry  <karl@gnu.org>
21385
21386         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
21387         work around defect in Texinfo and/or the standalone Info browser.
21388
21389 2007-12-30  Bruno Haible  <bruno@clisp.org>
21390
21391         Unify 5 copies of the KMP code.
21392         * lib/str-kmp.h: New file.
21393         * lib/c-strcasestr.c: Include str-kmp.h.
21394         (knuth_morris_pratt): Remove function.
21395         (c_strcasestr): Update.
21396         * lib/c-strstr.c: Include str-kmp.h.
21397         (knuth_morris_pratt): Remove function.
21398         (c_strcasestr): Update.
21399         * lib/mbscasestr.c: Include str-kmp.h.
21400         (knuth_morris_pratt_unibyte): Remove function.
21401         * lib/mbsstr.c: Include str-kmp.h.
21402         (knuth_morris_pratt_unibyte): Remove function.
21403         * lib/strcasestr.c: Include str-kmp.h.
21404         (knuth_morris_pratt): Remove function.
21405         (strcasestr): Update.
21406         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
21407         * modules/c-strstr (Files): Likewise.
21408         * modules/mbscasestr (Files): Likewise.
21409         * modules/mbsstr (Files): Likewise.
21410         * modules/strcasestr (Files): Likewise.
21411         Suggested by Paul Eggert.
21412
21413 2007-12-30  Bruno Haible  <bruno@clisp.org>
21414
21415         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
21416         defined.
21417
21418 2007-12-30  Bruno Haible  <bruno@clisp.org>
21419
21420         * lib/xmalloca.h: Include xalloc.h.
21421         (xnmalloca): New macro.
21422
21423 2007-12-30  Bruno Haible  <bruno@clisp.org>
21424
21425         * lib/malloca.h (nmalloca): New macro.
21426         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
21427         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
21428         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
21429         knuth_morris_pratt_multibyte): Likewise.
21430         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
21431         knuth_morris_pratt_multibyte): Likewise.
21432         * lib/memmem.c (knuth_morris_pratt): Likewise.
21433         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
21434
21435 2007-12-25  Bruno Haible  <bruno@clisp.org>
21436
21437         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
21438         * lib/glob.c: Don't include openat.h.
21439         (link_exists2_p): Add back the code that deals with the
21440         !GLOB_ALTDIRFUNC case.
21441         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
21442         let it do the filename concatenation.
21443         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
21444         * modules/glob (Depends-on): Remove openat.
21445
21446 2007-12-31  Bruno Haible  <bruno@clisp.org>
21447
21448         * modules/dirfd (License): Change to LGPLv2+.
21449         Approved by Jim Meyering.
21450
21451 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
21452
21453         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
21454         when multiplying M by sizeof (size_t).
21455
21456 2007-12-10  Martin Lambers  <marlam@marlam.de>
21457
21458         Override getpagesize on mingw.
21459         * lib/getpagesize.c: New file.
21460         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
21461         * modules/getpagesize (Files): Add lib/getpagesize.c.
21462         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
21463         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21464         REPLACE_GETPAGESIZE.
21465         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
21466
21467 2007-12-25  Bruno Haible  <bruno@clisp.org>
21468
21469         * modules/localcharset (Notice): New field.
21470         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
21471         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
21472
21473 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
21474             Bruno Haible  <bruno@clisp.org>
21475
21476         Avoid using the syntax symbol() in formatted documentation.
21477         * MODULES.html.sh (func_module): When replacing symbol() with a
21478         hyperlink, remove the parentheses. Show an error if some remain.
21479         Recognize and render the '...' syntax.
21480         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
21481         Rework. Add paragraph about GCC's inlining.
21482         * doc/alloca.texi: Likewise.
21483         * doc/error.texi: Remove parentheses from symbol reference.
21484         * doc/gnulib-intro.texi: Likewise.
21485         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
21486         * modules/fnmatch (Description): Reword to say "the ... function".
21487         * modules/full-read (Description): Likewise.
21488         * modules/full-write (Description): Likewise.
21489         * modules/safe-read (Description): Likewise.
21490         * modules/safe-write (Description): Likewise.
21491         * modules/strchrnul (Description): Likewise.
21492         * modules/trim (Description): Likewise.
21493         * modules/error (Description): Remove parentheses from symbol
21494         references.
21495         * modules/verror (Description): Likewise.
21496         Reported by Karl Berry.
21497
21498 2007-12-25  Bruno Haible  <bruno@clisp.org>
21499
21500         Fixup after 2007-10-16 commit.
21501         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
21502
21503 2007-12-24  Bruno Haible  <bruno@clisp.org>
21504
21505         Make --enable-relocatable work with DESTDIR.
21506         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
21507         to compute installdir from destprog.
21508         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
21509         also set the RELOC_DESTDIR variable.
21510         Reported by Левашев Иван <octagram@bluebottle.com>.
21511
21512 2007-12-24  Bruno Haible  <bruno@clisp.org>
21513
21514         Fix link error due to xalloc_die().
21515         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
21516         of xreadlink.
21517         * lib/relocwrapper.c: Update comments.
21518         * build-aux/install-reloc: Remove xreadlink.c from file list.
21519         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
21520         xreadlink.c.
21521         Reported by Левашев Иван <octagram@bluebottle.com>.
21522
21523 2007-12-24  Bruno Haible  <bruno@clisp.org>
21524
21525         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
21526         * lib/setenv.h: Remove file.
21527         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
21528         lib/setenv.h.
21529         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
21530         (Depends-on): Add stdlib.
21531         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
21532         gl_FUNC_UNSETENV.
21533         (Include): Replace setenv.h with <stdlib.h>.
21534         * modules/unsetenv: New file.
21535         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
21536         * lib/unsetenv.c: Include <stdlib.h> first.
21537         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
21538         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
21539         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
21540         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
21541         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
21542         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21543         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
21544         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21545         * doc/functions/unsetenv.texi: Update.
21546         * modules/xsetenv (Depends-on): Add unsetenv.
21547         * modules/getdate (Depends-on): Likewise.
21548         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
21549         * lib/xsetenv.c: Don't include setenv.h.
21550         * lib/getdate.y: Likewise.
21551         * lib/relocwrapper.c: Likewise.
21552         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
21553         (Depends-on): Add stdlib.
21554         * NEWS: Mention the changes.
21555         Reported by Левашев Иван <octagram@bluebottle.com>.
21556
21557 2007-12-23  Bruno Haible  <bruno@clisp.org>
21558
21559         * lib/memmem.c (memmem): Use lowercase variable names. Tab
21560         indentation.
21561
21562 2007-12-23  Bruno Haible  <bruno@clisp.org>
21563
21564         * lib/c-strcasestr.c: Add more comments.
21565         * lib/c-strstr.c: Likewise.
21566         * lib/mbscasestr.c: Likewise.
21567         * lib/mbsstr.c: Likewise.
21568         * lib/strcasestr.c: Likewise.
21569         * lib/memmem.c: Likewise.
21570
21571 2007-12-23  Bruno Haible  <bruno@clisp.org>
21572
21573         * tests/test-memmem.c: Include <string.h> first.
21574
21575 2007-12-22  Bruno Haible  <bruno@clisp.org>
21576
21577         * gnulib-tool (func_create_testdir): Change $auxdir while generating
21578         the contents of $testsbase.
21579         Reported by Ralf Wildenhues.
21580
21581 2007-12-22  Bruno Haible  <bruno@clisp.org>
21582
21583         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
21584         two variables local_ldadd_before, local_ldadd_last.
21585
21586 2007-12-20  Eric Blake  <ebb9@byu.net>
21587
21588         Work around circular library issue when cross-compiling.
21589         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
21590         that progname.o does not need to pull in rpl_memcmp.
21591
21592 2007-12-19  Eric Blake  <ebb9@byu.net>
21593
21594         Fix memmem to avoid O(n^2) worst-case complexity.
21595         * lib/memmem.c (knuth_morris_pratt): New function.
21596         (memmem): Use it if first few naive iterations fail.
21597         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
21598         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
21599         * modules/memchr (License): Likewise.
21600         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
21601         malloca.
21602         * tests/test-memmem.c: Rewrite, borrowing ideas from
21603         test-mbsstr1.c; the old version wouldn't even compile!
21604         * modules/memmem-tests: New file.
21605         * lib/string.in.h (rpl_memmem): Add declaration.
21606         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
21607         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
21608         REPLACE_MEMMEM.
21609
21610 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
21611
21612         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
21613         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
21614         before any system include files, and undef after them all.  This
21615         should fix a problem on VMS reported by John E. Malmberg in
21616         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
21617
21618 2007-12-17  Eric Blake  <ebb9@byu.net>
21619
21620         Revert addition of verify, for BSD/OS.
21621         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
21622         can't handle large files, for the sake of obsolete platforms.
21623         * modules/fseeko (Depends-on): Remove verify.
21624         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
21625         * doc/functions/ftello.texi (ftello): Likewise.
21626         * doc/functions/fgetpos.texi (fgetpos): Likewise.
21627         Reported by Larry Jones.
21628
21629 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
21630
21631         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
21632         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
21633
21634 2007-12-17  Jim Meyering  <meyering@redhat.com>
21635
21636         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
21637         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
21638         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
21639         * modules/getcwd (Depends-on): Add openat.
21640         Reported by Petr Salinger.
21641
21642 2007-12-17  Bruno Haible  <bruno@clisp.org>
21643
21644         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
21645         avoid a segmentation fault of the configure test on x86_64 systems.
21646
21647 2007-12-15  Jim Meyering  <meyering@redhat.com>
21648
21649         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
21650
21651 2007-12-13  Eric Blake  <ebb9@byu.net>
21652
21653         Another fseek test.
21654         * tests/test-fseek.c (main): Also test ungetc handling.
21655         * tests/test-fseeko.c (main): Likewise.
21656         * modules/fseeko (Depends-on): Add verify.
21657         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
21658         large.
21659         Reported by Larry Jones.
21660
21661         Fix fseeko on mingw.
21662         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
21663         seek.
21664
21665         Beef up fseek tests.
21666         * tests/test-fseek.c (main): Also test eof handling.
21667         * tests/test-fseeko.c (main): Likewise.
21668         Reported by Larry Jones.
21669
21670 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
21671
21672         Fix fseeko on BSD-based platforms.
21673         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
21674         successful seek.
21675
21676 2007-12-12  Eric Blake  <ebb9@byu.net>
21677
21678         Allow circular dependency of separate libtests.a
21679         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
21680         when use_libtests.
21681
21682 2007-12-11  Eric Blake  <ebb9@byu.net>
21683
21684         Fix bug with -0.0L in previous patch.
21685         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
21686         * tests/test-isnan.c (main): Also test on zeroes.
21687         * tests/test-isnanf.c (main): Likewise.
21688         * tests/test-isnanl.h (main): Likewise.
21689
21690         Detect pseudo-denormals on x86 even when cross-compiling.
21691         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
21692         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
21693         invalid bit patterns that happen to satisfy ==.
21694
21695         Avoid link failures with separate libtests.a.
21696         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
21697         last, to satisfy circular dependencies.
21698
21699 2007-12-11  Eric Blake  <ebb9@byu.net>
21700         and Bruno Haible  <bruno@clisp.org>
21701
21702         Fix OpenBSD 4.0 <float.h> handling of long double.
21703         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
21704         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
21705         * doc/headers/float.texi (float.h): Document OpenBSD bug.
21706
21707 2007-12-11  Jim Meyering  <meyering@redhat.com>
21708
21709         * users.txt: Add libvirt.
21710
21711         Support versions of autoconf prior to 2.59c.
21712         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
21713         if it is not already defined.
21714
21715 2007-12-09  Bruno Haible  <bruno@clisp.org>
21716
21717         Let 'gnulib-tool --import' collect sources needed for the tests in
21718         tests/ rather than in lib/.
21719         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
21720         argument. If true, add rules to generate libtests.a, and put libtests.a
21721         into $(LDADD). Consider source files in subdirectories and set
21722         uses_subdirs.
21723         (func_emit_initmacro_start, func_emit_initmacro_end,
21724         func_emit_initmacro_done): Pass all arguments explicitly.
21725         (func_import): Determine two module lists main_modules,
21726         testsrelated_modules. Determine use_libtests. Determine two variables
21727         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
21728         instead of just sed_transform_lib_file. Determine two variables
21729         main_files and testsrelated_files. Compute 'files' as the union of
21730         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
21731         func_add_or_update. In the generated gnulib-comp.m4, collect the
21732         object files for tests/ in different variables than those for lib/.
21733         Substitute LIBTESTS_LIBDEPS.
21734         (func_create_testdir): Combine the uses_subdirs results from
21735         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
21736
21737 2007-12-09  Bruno Haible  <bruno@clisp.org>
21738
21739         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
21740         the build-aux directory.
21741
21742 2007-12-09  Bruno Haible  <bruno@clisp.org>
21743
21744         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
21745         introduced on 2006-09-09.
21746
21747 2007-12-07  Jim Meyering  <meyering@redhat.com>
21748
21749         Let these macros work also with autoconf-2.59.
21750         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
21751         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
21752         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
21753
21754 2007-12-06  Jim Meyering  <meyering@redhat.com>
21755
21756         Avoid a configure-time syntax error in gl_FUNC_ACL.
21757         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
21758         function in each branch, before testing the cache variable.
21759
21760 2007-12-04  Eric Blake  <ebb9@byu.net>
21761
21762         Make scripts executable.
21763         * build-aux/config.guess: Add execute permissions.
21764         * build-aux/config.sub: Likewise.
21765         * build-aux/gendocs.sh: Likewise.
21766
21767         Fix frexp on mingw.
21768         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
21769         cross-compiling.
21770         * doc/functions/frexp.texi (frexp): Document the bug.
21771
21772         Make cygwin fseeko check more reliable.
21773         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
21774         version numbers, rather than unrelated feature check.
21775         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
21776         * doc/functions/ftello.texi (ftello): Likewise.
21777         Reported by Bruno Haible.
21778
21779         * m4/strerror.m4: Bump version number.
21780
21781 2007-12-03  Bruno Haible  <bruno@clisp.org>
21782
21783         * doc/functions/mprotect.texi: Mention the mingw problem.
21784
21785 2007-12-03  Eric Blake  <ebb9@byu.net>
21786
21787         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
21788         REPLACE_STRERROR is initialized before this macro.
21789
21790 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
21791
21792         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
21793         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
21794         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
21795         put -lsec in even for programs other than 'ls'.  This fixes a problem
21796         for gettext reported by Bruno Haible in
21797         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
21798         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
21799         Add support for Solaris 10.  This isn't efficient, but should get the
21800         job done for now.
21801
21802 2007-12-03  James Youngman  <jay@gnu.org>
21803
21804         * doc/regexprops-generic.texi: change "an close-group" to "a
21805         close-group" and "illegal" to "not allowed".
21806
21807 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21808
21809         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
21810         pr_byname.h. Needed for the rare case when the maintainer has done
21811         "make maintainer-clean" in the source directory and then attempts a
21812         build outside the source directory.
21813         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
21814         scripts_byname.h.
21815
21816 2007-12-02  Martin Lambers <marlam@marlam.de>
21817             Bruno Haible  <bruno@clisp.org>
21818
21819         * lib/getpagesize.h: Remove file.
21820         * lib/unistd.in.h: Include declaration of getpagesize here.
21821         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
21822         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
21823         HAVE_SYS_PARAM_H.
21824         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
21825         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21826         * modules/getpagesize (Files): Remove lib/getpagesize.h.
21827         (Depends-on): Add unistd.
21828         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21829         (Include): Use <unistd.h> instead of getpagesize.h.
21830         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
21831         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21832         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
21833         gl_GETPAGESIZE invocation, already handled by module dependency.
21834         * lib/pagealign_alloc.c: Don't include getpagesize.h.
21835
21836 2007-12-02  Bruno Haible  <bruno@clisp.org>
21837
21838         * modules/strings-tests: New file.
21839         * tests/test-strings.c: New file.
21840
21841         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
21842         * lib/strings.in.h: New file.
21843         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
21844         * m4/strings_h.m4: New file.
21845         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
21846         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
21847         * modules/strings: New file.
21848         * modules/string (Makefile.am): Update.
21849         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
21850         Reported by Karl Berry.
21851
21852 2007-12-01  Eric Blake  <ebb9@byu.net>
21853
21854         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
21855         accomodate fix in cygwin 1.5.25.
21856
21857 2007-12-01  Jim Meyering  <meyering@redhat.com>
21858
21859         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
21860         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
21861         that would inhibit utf8-optimization of a regexp containing line-
21862         or buffer-anchors, e.g., `^', `$'.
21863
21864 2007-11-30  Bruno Haible  <bruno@clisp.org>
21865
21866         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
21867         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
21868         glthread_recursive_lock_init.
21869         * lib/lock.c (glthread_recursive_lock_init)
21870         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
21871         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21872
21873 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
21874
21875         New function qset_acl, like set_acl but with syscall semantics.
21876         * lib/acl.h (qset_acl): New decl.
21877         * lib/acl.c (qset_acl): New function.
21878         (set_acl): Use new function.  Use more-consistent diagnostics.
21879
21880 2007-11-28  Jim Meyering  <meyering@redhat.com>
21881
21882         * modules/physmem (License): Change from GPL to LGPLv2+.
21883
21884 2007-11-26  Bruno Haible  <bruno@clisp.org>
21885
21886         * lib/vasnprintf.c (decode_long_double): Don't abort if the
21887         'long double' type has excess precision.
21888         Reported by Jim Meyering in
21889         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
21890
21891 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21892
21893         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
21894         Sync from <http://gnu.org/licenses>.
21895         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
21896         with license text from same location.
21897         * doc/maintain.texi, doc/standards.texi:  Sync from
21898         <http://savannah.gnu.org/projects/gnustandards>.
21899
21900 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
21901         and Jim Meyering  <meyering@redhat.com>
21902
21903         Adjust getdate' grammar to accept a slightly more regular language.
21904         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
21905         Before, the former was rejected.
21906         * lib/getdate.y (digits_to_date_time): New function, factored
21907         out of ...
21908         (number): ...here.  Just call digits_to_date_time.
21909         (hybrid): New non-terminal to handle an <unsigned number,
21910         signed relative offset> sequence consistently.
21911
21912 2007-11-18  Jim Meyering  <meyering@redhat.com>
21913
21914         Pull my changes from coreutils:
21915         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
21916         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
21917         use of $gnulib_tool_option_extras, so that it's separated from the
21918         preceding argument.
21919
21920         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
21921         * build-aux/bootstrap (cp_mark_as_generated): Create any required
21922         parent destination directories before copying a file into place.
21923
21924 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
21925
21926         bootstrap: work also with 4-argument variant of AC_INIT
21927         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
21928
21929 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21930
21931         Port test-getaddrinfo to Solaris.
21932         Problem reported by Bruno Haible in
21933         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
21934         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
21935         explanation of setting 'hints'.
21936         Don't reject an implementation merely because it returns EAI_SERVICE.
21937         (EAI_SERVICE): Define to 0 if not defined.
21938
21939 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
21940
21941         The license of gnu-make and posix-shell is now "GPLed build tool".
21942         * modules/gnu-make (License): Likewise.
21943         * modules/posix-shell (License): Likewise.
21944
21945         New module posix-shell, for determining a POSIX shell
21946         or perhaps something that is close enough to a POSIX shell.
21947         * m4/posix-shell.m4: New file.
21948         * modules/posix-shell: New file.
21949
21950         * MODULES.html.sh: Mention new module.
21951
21952         New module gnu-make, for determining whether we're using GNU Make.
21953         * m4/gnu-make.m4: New file.
21954         * modules/gnu-make: New file.
21955         * MODULES.html.sh: Mention new module.
21956
21957 2007-11-14  Jim Meyering  <meyering@redhat.com>
21958
21959         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
21960         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
21961         use this macro to create a function _definition_.
21962         Remove useless "#undef ARGMATCH_DIE".
21963
21964 2007-11-14  Bruno Haible  <bruno@clisp.org>
21965
21966         * lib/config.charset: Update for OpenBSD 4.1.
21967         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
21968
21969 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
21970
21971         Document 64-bit #if problems in stdint.texi.
21972         * doc/headers/stdint.texi (stdint.h): Mention problems with
21973         64-bit-#if, and how to work around them.
21974
21975         Don't insist on 'long long int' support in the preprocessor.  It
21976         breaks too many things.  For example, PRIdMAX still uses a 'long
21977         long int' format with the latest Sun compiler, even though
21978         HAVE_LONG_LONG_INT isn't defined due to that compiler's
21979         preprocessor problem.  This causes the latest coreutils to dump
21980         core on Solaris 10 sparc with the Sun C compiler.
21981         Instead, fix the 2007-10-16 problem in a different way, by evaluating
21982         the troublesome expressions at configure-time, not at #if-time.
21983         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
21984         preprocessor.
21985         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
21986         compile-time C checks, done at 'configure'-time.
21987         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
21988         * modules/inttypes (Makefile): Substitute the new symbols that
21989         gl_INTTYPES_H now generates.
21990         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
21991
21992 2007-11-12  Bruno Haible  <bruno@clisp.org>
21993
21994         Tests for Unicode character classification functions.
21995
21996         * modules/unictype/bidicategory-byname-tests: New file.
21997         * modules/unictype/bidicategory-name-tests: New file.
21998         * modules/unictype/bidicategory-of-tests: New file.
21999         * modules/unictype/bidicategory-test-tests: New file.
22000         * modules/unictype/block-list-tests: New file.
22001         * modules/unictype/block-of-tests: New file.
22002         * modules/unictype/block-test-tests: New file.
22003         * modules/unictype/category-C-tests: New file.
22004         * modules/unictype/category-Cc-tests: New file.
22005         * modules/unictype/category-Cf-tests: New file.
22006         * modules/unictype/category-Cn-tests: New file.
22007         * modules/unictype/category-Co-tests: New file.
22008         * modules/unictype/category-Cs-tests: New file.
22009         * modules/unictype/category-L-tests: New file.
22010         * modules/unictype/category-Ll-tests: New file.
22011         * modules/unictype/category-Lm-tests: New file.
22012         * modules/unictype/category-Lo-tests: New file.
22013         * modules/unictype/category-Lt-tests: New file.
22014         * modules/unictype/category-Lu-tests: New file.
22015         * modules/unictype/category-M-tests: New file.
22016         * modules/unictype/category-Mc-tests: New file.
22017         * modules/unictype/category-Me-tests: New file.
22018         * modules/unictype/category-Mn-tests: New file.
22019         * modules/unictype/category-N-tests: New file.
22020         * modules/unictype/category-Nd-tests: New file.
22021         * modules/unictype/category-Nl-tests: New file.
22022         * modules/unictype/category-No-tests: New file.
22023         * modules/unictype/category-P-tests: New file.
22024         * modules/unictype/category-Pc-tests: New file.
22025         * modules/unictype/category-Pd-tests: New file.
22026         * modules/unictype/category-Pe-tests: New file.
22027         * modules/unictype/category-Pf-tests: New file.
22028         * modules/unictype/category-Pi-tests: New file.
22029         * modules/unictype/category-Po-tests: New file.
22030         * modules/unictype/category-Ps-tests: New file.
22031         * modules/unictype/category-S-tests: New file.
22032         * modules/unictype/category-Sc-tests: New file.
22033         * modules/unictype/category-Sk-tests: New file.
22034         * modules/unictype/category-Sm-tests: New file.
22035         * modules/unictype/category-So-tests: New file.
22036         * modules/unictype/category-Z-tests: New file.
22037         * modules/unictype/category-Zl-tests: New file.
22038         * modules/unictype/category-Zp-tests: New file.
22039         * modules/unictype/category-Zs-tests: New file.
22040         * modules/unictype/category-and-not-tests: New file.
22041         * modules/unictype/category-and-tests: New file.
22042         * modules/unictype/category-byname-tests: New file.
22043         * modules/unictype/category-name-tests: New file.
22044         * modules/unictype/category-none-tests: New file.
22045         * modules/unictype/category-of-tests: New file.
22046         * modules/unictype/category-or-tests: New file.
22047         * modules/unictype/category-test-withtable-tests: New file.
22048         * modules/unictype/combining-class-tests: New file.
22049         * modules/unictype/ctype-alnum-tests: New file.
22050         * modules/unictype/ctype-alpha-tests: New file.
22051         * modules/unictype/ctype-blank-tests: New file.
22052         * modules/unictype/ctype-cntrl-tests: New file.
22053         * modules/unictype/ctype-digit-tests: New file.
22054         * modules/unictype/ctype-graph-tests: New file.
22055         * modules/unictype/ctype-lower-tests: New file.
22056         * modules/unictype/ctype-print-tests: New file.
22057         * modules/unictype/ctype-punct-tests: New file.
22058         * modules/unictype/ctype-space-tests: New file.
22059         * modules/unictype/ctype-upper-tests: New file.
22060         * modules/unictype/ctype-xdigit-tests: New file.
22061         * modules/unictype/decimal-digit-tests: New file.
22062         * modules/unictype/digit-tests: New file.
22063         * modules/unictype/mirror-tests: New file.
22064         * modules/unictype/numeric-tests: New file.
22065         * modules/unictype/property-alphabetic-tests: New file.
22066         * modules/unictype/property-ascii-hex-digit-tests: New file.
22067         * modules/unictype/property-bidi-arabic-digit-tests: New file.
22068         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
22069         * modules/unictype/property-bidi-block-separator-tests: New file.
22070         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
22071         * modules/unictype/property-bidi-common-separator-tests: New file.
22072         * modules/unictype/property-bidi-control-tests: New file.
22073         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
22074         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
22075         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
22076         * modules/unictype/property-bidi-european-digit-tests: New file.
22077         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
22078         * modules/unictype/property-bidi-left-to-right-tests: New file.
22079         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
22080         * modules/unictype/property-bidi-other-neutral-tests: New file.
22081         * modules/unictype/property-bidi-pdf-tests: New file.
22082         * modules/unictype/property-bidi-segment-separator-tests: New file.
22083         * modules/unictype/property-bidi-whitespace-tests: New file.
22084         * modules/unictype/property-byname-tests: New file.
22085         * modules/unictype/property-combining-tests: New file.
22086         * modules/unictype/property-composite-tests: New file.
22087         * modules/unictype/property-currency-symbol-tests: New file.
22088         * modules/unictype/property-dash-tests: New file.
22089         * modules/unictype/property-decimal-digit-tests: New file.
22090         * modules/unictype/property-default-ignorable-code-point-tests: New file.
22091         * modules/unictype/property-deprecated-tests: New file.
22092         * modules/unictype/property-diacritic-tests: New file.
22093         * modules/unictype/property-extender-tests: New file.
22094         * modules/unictype/property-format-control-tests: New file.
22095         * modules/unictype/property-grapheme-base-tests: New file.
22096         * modules/unictype/property-grapheme-extend-tests: New file.
22097         * modules/unictype/property-grapheme-link-tests: New file.
22098         * modules/unictype/property-hex-digit-tests: New file.
22099         * modules/unictype/property-hyphen-tests: New file.
22100         * modules/unictype/property-id-continue-tests: New file.
22101         * modules/unictype/property-id-start-tests: New file.
22102         * modules/unictype/property-ideographic-tests: New file.
22103         * modules/unictype/property-ids-binary-operator-tests: New file.
22104         * modules/unictype/property-ids-trinary-operator-tests: New file.
22105         * modules/unictype/property-ignorable-control-tests: New file.
22106         * modules/unictype/property-iso-control-tests: New file.
22107         * modules/unictype/property-join-control-tests: New file.
22108         * modules/unictype/property-left-of-pair-tests: New file.
22109         * modules/unictype/property-line-separator-tests: New file.
22110         * modules/unictype/property-logical-order-exception-tests: New file.
22111         * modules/unictype/property-lowercase-tests: New file.
22112         * modules/unictype/property-math-tests: New file.
22113         * modules/unictype/property-non-break-tests: New file.
22114         * modules/unictype/property-not-a-character-tests: New file.
22115         * modules/unictype/property-numeric-tests: New file.
22116         * modules/unictype/property-other-alphabetic-tests: New file.
22117         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
22118         * modules/unictype/property-other-grapheme-extend-tests: New file.
22119         * modules/unictype/property-other-id-continue-tests: New file.
22120         * modules/unictype/property-other-id-start-tests: New file.
22121         * modules/unictype/property-other-lowercase-tests: New file.
22122         * modules/unictype/property-other-math-tests: New file.
22123         * modules/unictype/property-other-uppercase-tests: New file.
22124         * modules/unictype/property-paired-punctuation-tests: New file.
22125         * modules/unictype/property-paragraph-separator-tests: New file.
22126         * modules/unictype/property-pattern-syntax-tests: New file.
22127         * modules/unictype/property-pattern-white-space-tests: New file.
22128         * modules/unictype/property-private-use-tests: New file.
22129         * modules/unictype/property-punctuation-tests: New file.
22130         * modules/unictype/property-quotation-mark-tests: New file.
22131         * modules/unictype/property-radical-tests: New file.
22132         * modules/unictype/property-sentence-terminal-tests: New file.
22133         * modules/unictype/property-soft-dotted-tests: New file.
22134         * modules/unictype/property-space-tests: New file.
22135         * modules/unictype/property-terminal-punctuation-tests: New file.
22136         * modules/unictype/property-test-tests: New file.
22137         * modules/unictype/property-titlecase-tests: New file.
22138         * modules/unictype/property-unassigned-code-value-tests: New file.
22139         * modules/unictype/property-unified-ideograph-tests: New file.
22140         * modules/unictype/property-uppercase-tests: New file.
22141         * modules/unictype/property-variation-selector-tests: New file.
22142         * modules/unictype/property-white-space-tests: New file.
22143         * modules/unictype/property-xid-continue-tests: New file.
22144         * modules/unictype/property-xid-start-tests: New file.
22145         * modules/unictype/property-zero-width-tests: New file.
22146         * modules/unictype/scripts-tests: New file.
22147         * modules/unictype/syntax-c-ident-tests: New file.
22148         * modules/unictype/syntax-c-whitespace-tests: New file.
22149         * modules/unictype/syntax-java-ident-tests: New file.
22150         * modules/unictype/syntax-java-whitespace-tests: New file.
22151         * tests/unictype/test-bidi_byname.c: New file.
22152         * tests/unictype/test-bidi_name.c: New file.
22153         * tests/unictype/test-bidi_of.c: New file.
22154         * tests/unictype/test-bidi_test.c: New file.
22155         * tests/unictype/test-block_list.c: New file.
22156         * tests/unictype/test-block_of.c: New file.
22157         * tests/unictype/test-block_test.c: New file.
22158         * tests/unictype/test-categ_and.c: New file.
22159         * tests/unictype/test-categ_and_not.c: New file.
22160         * tests/unictype/test-categ_byname.c: New file.
22161         * tests/unictype/test-categ_name.c: New file.
22162         * tests/unictype/test-categ_none.c: New file.
22163         * tests/unictype/test-categ_of.c: New file.
22164         * tests/unictype/test-categ_or.c: New file.
22165         * tests/unictype/test-categ_test_withtable.c: New file.
22166         * tests/unictype/test-combining.c: New file.
22167         * tests/unictype/test-decdigit.c: New file.
22168         * tests/unictype/test-digit.c: New file.
22169         * tests/unictype/test-mirror.c: New file.
22170         * tests/unictype/test-numeric.c: New file.
22171         * tests/unictype/test-pr_byname.c: New file.
22172         * tests/unictype/test-pr_test.c: New file.
22173         * tests/unictype/test-predicate-part1.h: New file.
22174         * tests/unictype/test-predicate-part2.h: New file.
22175         * tests/unictype/test-scripts.c: New file.
22176         * tests/unictype/test-sy_c_ident.c: New file.
22177         * tests/unictype/test-sy_java_ident.c: New file.
22178
22179         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
22180         for Unicode 5.0.0.
22181         * tests/unictype/test-categ_Cc.c: Likewise.
22182         * tests/unictype/test-categ_Cf.c: Likewise.
22183         * tests/unictype/test-categ_Cn.c: Likewise.
22184         * tests/unictype/test-categ_Co.c: Likewise.
22185         * tests/unictype/test-categ_Cs.c: Likewise.
22186         * tests/unictype/test-categ_L.c: Likewise.
22187         * tests/unictype/test-categ_Ll.c: Likewise.
22188         * tests/unictype/test-categ_Lm.c: Likewise.
22189         * tests/unictype/test-categ_Lo.c: Likewise.
22190         * tests/unictype/test-categ_Lt.c: Likewise.
22191         * tests/unictype/test-categ_Lu.c: Likewise.
22192         * tests/unictype/test-categ_M.c: Likewise.
22193         * tests/unictype/test-categ_Mc.c: Likewise.
22194         * tests/unictype/test-categ_Me.c: Likewise.
22195         * tests/unictype/test-categ_Mn.c: Likewise.
22196         * tests/unictype/test-categ_N.c: Likewise.
22197         * tests/unictype/test-categ_Nd.c: Likewise.
22198         * tests/unictype/test-categ_Nl.c: Likewise.
22199         * tests/unictype/test-categ_No.c: Likewise.
22200         * tests/unictype/test-categ_P.c: Likewise.
22201         * tests/unictype/test-categ_Pc.c: Likewise.
22202         * tests/unictype/test-categ_Pd.c: Likewise.
22203         * tests/unictype/test-categ_Pe.c: Likewise.
22204         * tests/unictype/test-categ_Pf.c: Likewise.
22205         * tests/unictype/test-categ_Pi.c: Likewise.
22206         * tests/unictype/test-categ_Po.c: Likewise.
22207         * tests/unictype/test-categ_Ps.c: Likewise.
22208         * tests/unictype/test-categ_S.c: Likewise.
22209         * tests/unictype/test-categ_Sc.c: Likewise.
22210         * tests/unictype/test-categ_Sk.c: Likewise.
22211         * tests/unictype/test-categ_Sm.c: Likewise.
22212         * tests/unictype/test-categ_So.c: Likewise.
22213         * tests/unictype/test-categ_Z.c: Likewise.
22214         * tests/unictype/test-categ_Zl.c: Likewise.
22215         * tests/unictype/test-categ_Zp.c: Likewise.
22216         * tests/unictype/test-categ_Zs.c: Likewise.
22217         * tests/unictype/test-ctype_alnum.c: Likewise.
22218         * tests/unictype/test-ctype_alpha.c: Likewise.
22219         * tests/unictype/test-ctype_blank.c: Likewise.
22220         * tests/unictype/test-ctype_cntrl.c: Likewise.
22221         * tests/unictype/test-ctype_digit.c: Likewise.
22222         * tests/unictype/test-ctype_graph.c: Likewise.
22223         * tests/unictype/test-ctype_lower.c: Likewise.
22224         * tests/unictype/test-ctype_print.c: Likewise.
22225         * tests/unictype/test-ctype_punct.c: Likewise.
22226         * tests/unictype/test-ctype_space.c: Likewise.
22227         * tests/unictype/test-ctype_upper.c: Likewise.
22228         * tests/unictype/test-ctype_xdigit.c: Likewise.
22229         * tests/unictype/test-decdigit.h: Likewise.
22230         * tests/unictype/test-digit.h: Likewise.
22231         * tests/unictype/test-numeric.h: Likewise.
22232         * tests/unictype/test-pr_alphabetic.c: Likewise.
22233         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
22234         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
22235         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
22236         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
22237         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
22238         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
22239         * tests/unictype/test-pr_bidi_control.c: Likewise.
22240         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
22241         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
22242         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
22243         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
22244         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
22245         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
22246         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
22247         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
22248         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
22249         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
22250         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
22251         * tests/unictype/test-pr_combining.c: Likewise.
22252         * tests/unictype/test-pr_composite.c: Likewise.
22253         * tests/unictype/test-pr_currency_symbol.c: Likewise.
22254         * tests/unictype/test-pr_dash.c: Likewise.
22255         * tests/unictype/test-pr_decimal_digit.c: Likewise.
22256         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
22257         * tests/unictype/test-pr_deprecated.c: Likewise.
22258         * tests/unictype/test-pr_diacritic.c: Likewise.
22259         * tests/unictype/test-pr_extender.c: Likewise.
22260         * tests/unictype/test-pr_format_control.c: Likewise.
22261         * tests/unictype/test-pr_grapheme_base.c: Likewise.
22262         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
22263         * tests/unictype/test-pr_grapheme_link.c: Likewise.
22264         * tests/unictype/test-pr_hex_digit.c: Likewise.
22265         * tests/unictype/test-pr_hyphen.c: Likewise.
22266         * tests/unictype/test-pr_id_continue.c: Likewise.
22267         * tests/unictype/test-pr_id_start.c: Likewise.
22268         * tests/unictype/test-pr_ideographic.c: Likewise.
22269         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
22270         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
22271         * tests/unictype/test-pr_ignorable_control.c: Likewise.
22272         * tests/unictype/test-pr_iso_control.c: Likewise.
22273         * tests/unictype/test-pr_join_control.c: Likewise.
22274         * tests/unictype/test-pr_left_of_pair.c: Likewise.
22275         * tests/unictype/test-pr_line_separator.c: Likewise.
22276         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
22277         * tests/unictype/test-pr_lowercase.c: Likewise.
22278         * tests/unictype/test-pr_math.c: Likewise.
22279         * tests/unictype/test-pr_non_break.c: Likewise.
22280         * tests/unictype/test-pr_not_a_character.c: Likewise.
22281         * tests/unictype/test-pr_numeric.c: Likewise.
22282         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
22283         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
22284         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
22285         * tests/unictype/test-pr_other_id_continue.c: Likewise.
22286         * tests/unictype/test-pr_other_id_start.c: Likewise.
22287         * tests/unictype/test-pr_other_lowercase.c: Likewise.
22288         * tests/unictype/test-pr_other_math.c: Likewise.
22289         * tests/unictype/test-pr_other_uppercase.c: Likewise.
22290         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
22291         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
22292         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
22293         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
22294         * tests/unictype/test-pr_private_use.c: Likewise.
22295         * tests/unictype/test-pr_punctuation.c: Likewise.
22296         * tests/unictype/test-pr_quotation_mark.c: Likewise.
22297         * tests/unictype/test-pr_radical.c: Likewise.
22298         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
22299         * tests/unictype/test-pr_soft_dotted.c: Likewise.
22300         * tests/unictype/test-pr_space.c: Likewise.
22301         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
22302         * tests/unictype/test-pr_titlecase.c: Likewise.
22303         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
22304         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
22305         * tests/unictype/test-pr_uppercase.c: Likewise.
22306         * tests/unictype/test-pr_variation_selector.c: Likewise.
22307         * tests/unictype/test-pr_white_space.c: Likewise.
22308         * tests/unictype/test-pr_xid_continue.c: Likewise.
22309         * tests/unictype/test-pr_xid_start.c: Likewise.
22310         * tests/unictype/test-pr_zero_width.c: Likewise.
22311         * tests/unictype/test-sy_c_whitespace.c: Likewise.
22312         * tests/unictype/test-sy_java_whitespace.c: Likewise.
22313
22314 2007-11-12  Bruno Haible  <bruno@clisp.org>
22315
22316         Unicode character classification functions.
22317         * lib/unictype.h: New file.
22318         * modules/unictype/base: New file.
22319         * modules/unictype/category-L: New file.
22320         * modules/unictype/category-Lu: New file.
22321         * modules/unictype/category-Ll: New file.
22322         * modules/unictype/category-Lt: New file.
22323         * modules/unictype/category-Lm: New file.
22324         * modules/unictype/category-Lo: New file.
22325         * modules/unictype/category-M: New file.
22326         * modules/unictype/category-Mn: New file.
22327         * modules/unictype/category-Mc: New file.
22328         * modules/unictype/category-Me: New file.
22329         * modules/unictype/category-N: New file.
22330         * modules/unictype/category-Nd: New file.
22331         * modules/unictype/category-Nl: New file.
22332         * modules/unictype/category-No: New file.
22333         * modules/unictype/category-P: New file.
22334         * modules/unictype/category-Pc: New file.
22335         * modules/unictype/category-Pd: New file.
22336         * modules/unictype/category-Ps: New file.
22337         * modules/unictype/category-Pe: New file.
22338         * modules/unictype/category-Pi: New file.
22339         * modules/unictype/category-Pf: New file.
22340         * modules/unictype/category-Po: New file.
22341         * modules/unictype/category-S: New file.
22342         * modules/unictype/category-Sm: New file.
22343         * modules/unictype/category-Sc: New file.
22344         * modules/unictype/category-Sk: New file.
22345         * modules/unictype/category-So: New file.
22346         * modules/unictype/category-Z: New file.
22347         * modules/unictype/category-Zs: New file.
22348         * modules/unictype/category-Zl: New file.
22349         * modules/unictype/category-Zp: New file.
22350         * modules/unictype/category-C: New file.
22351         * modules/unictype/category-Cc: New file.
22352         * modules/unictype/category-Cf: New file.
22353         * modules/unictype/category-Cs: New file.
22354         * modules/unictype/category-Co: New file.
22355         * modules/unictype/category-Cn: New file.
22356         * modules/unictype/category-or: New file.
22357         * modules/unictype/category-of: New file.
22358         * modules/unictype/category-test: New file.
22359         * modules/unictype/category-test-withtable: New file.
22360         * modules/unictype/category-byname: New file.
22361         * modules/unictype/category-none: New file.
22362         * modules/unictype/category-and: New file.
22363         * modules/unictype/category-and-not: New file.
22364         * modules/unictype/category-name: New file.
22365         * modules/unictype/combining-class: New file.
22366         * modules/unictype/category-all: New file.
22367         * modules/unictype/bidicategory-all: New file.
22368         * modules/unictype/bidicategory-byname: New file.
22369         * modules/unictype/bidicategory-name: New file.
22370         * modules/unictype/bidicategory-of: New file.
22371         * modules/unictype/bidicategory-test: New file.
22372         * modules/unictype/decimal-digit: New file.
22373         * modules/unictype/digit: New file.
22374         * modules/unictype/numeric: New file.
22375         * modules/unictype/mirror: New file.
22376         * modules/unictype/property-white-space: New file.
22377         * modules/unictype/property-alphabetic: New file.
22378         * modules/unictype/property-other-alphabetic: New file.
22379         * modules/unictype/property-not-a-character: New file.
22380         * modules/unictype/property-default-ignorable-code-point: New file.
22381         * modules/unictype/property-other-default-ignorable-code-point: New
22382         file.
22383         * modules/unictype/property-deprecated: New file.
22384         * modules/unictype/property-logical-order-exception: New file.
22385         * modules/unictype/property-variation-selector: New file.
22386         * modules/unictype/property-private-use: New file.
22387         * modules/unictype/property-unassigned-code-value: New file.
22388         * modules/unictype/property-uppercase: New file.
22389         * modules/unictype/property-other-uppercase: New file.
22390         * modules/unictype/property-lowercase: New file.
22391         * modules/unictype/property-other-lowercase: New file.
22392         * modules/unictype/property-titlecase: New file.
22393         * modules/unictype/property-soft-dotted: New file.
22394         * modules/unictype/property-id-start: New file.
22395         * modules/unictype/property-other-id-start: New file.
22396         * modules/unictype/property-id-continue: New file.
22397         * modules/unictype/property-other-id-continue: New file.
22398         * modules/unictype/property-xid-start: New file.
22399         * modules/unictype/property-xid-continue: New file.
22400         * modules/unictype/property-pattern-white-space: New file.
22401         * modules/unictype/property-pattern-syntax: New file.
22402         * modules/unictype/property-join-control: New file.
22403         * modules/unictype/property-grapheme-base: New file.
22404         * modules/unictype/property-grapheme-extend: New file.
22405         * modules/unictype/property-other-grapheme-extend: New file.
22406         * modules/unictype/property-grapheme-link: New file.
22407         * modules/unictype/property-bidi-control: New file.
22408         * modules/unictype/property-bidi-left-to-right: New file.
22409         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
22410         * modules/unictype/property-bidi-arabic-right-to-left: New file.
22411         * modules/unictype/property-bidi-european-digit: New file.
22412         * modules/unictype/property-bidi-eur-num-separator: New file.
22413         * modules/unictype/property-bidi-eur-num-terminator: New file.
22414         * modules/unictype/property-bidi-arabic-digit: New file.
22415         * modules/unictype/property-bidi-common-separator: New file.
22416         * modules/unictype/property-bidi-block-separator: New file.
22417         * modules/unictype/property-bidi-segment-separator: New file.
22418         * modules/unictype/property-bidi-whitespace: New file.
22419         * modules/unictype/property-bidi-non-spacing-mark: New file.
22420         * modules/unictype/property-bidi-boundary-neutral: New file.
22421         * modules/unictype/property-bidi-pdf: New file.
22422         * modules/unictype/property-bidi-embedding-or-override: New file.
22423         * modules/unictype/property-bidi-other-neutral: New file.
22424         * modules/unictype/property-hex-digit: New file.
22425         * modules/unictype/property-ascii-hex-digit: New file.
22426         * modules/unictype/property-ideographic: New file.
22427         * modules/unictype/property-unified-ideograph: New file.
22428         * modules/unictype/property-radical: New file.
22429         * modules/unictype/property-ids-binary-operator: New file.
22430         * modules/unictype/property-ids-trinary-operator: New file.
22431         * modules/unictype/property-zero-width: New file.
22432         * modules/unictype/property-space: New file.
22433         * modules/unictype/property-non-break: New file.
22434         * modules/unictype/property-iso-control: New file.
22435         * modules/unictype/property-format-control: New file.
22436         * modules/unictype/property-dash: New file.
22437         * modules/unictype/property-hyphen: New file.
22438         * modules/unictype/property-punctuation: New file.
22439         * modules/unictype/property-line-separator: New file.
22440         * modules/unictype/property-paragraph-separator: New file.
22441         * modules/unictype/property-quotation-mark: New file.
22442         * modules/unictype/property-sentence-terminal: New file.
22443         * modules/unictype/property-terminal-punctuation: New file.
22444         * modules/unictype/property-currency-symbol: New file.
22445         * modules/unictype/property-math: New file.
22446         * modules/unictype/property-other-math: New file.
22447         * modules/unictype/property-paired-punctuation: New file.
22448         * modules/unictype/property-left-of-pair: New file.
22449         * modules/unictype/property-combining: New file.
22450         * modules/unictype/property-composite: New file.
22451         * modules/unictype/property-decimal-digit: New file.
22452         * modules/unictype/property-numeric: New file.
22453         * modules/unictype/property-diacritic: New file.
22454         * modules/unictype/property-extender: New file.
22455         * modules/unictype/property-ignorable-control: New file.
22456         * modules/unictype/property-test: New file.
22457         * modules/unictype/property-byname: New file.
22458         * modules/unictype/property-all: New file.
22459         * modules/unictype/scripts: New file.
22460         * modules/unictype/scripts-all: New file.
22461         * modules/unictype/block-of: New file.
22462         * modules/unictype/block-test: New file.
22463         * modules/unictype/block-list: New file.
22464         * modules/unictype/block-all: New file.
22465         * modules/unictype/syntax-c-whitespace: New file.
22466         * modules/unictype/syntax-java-whitespace: New file.
22467         * modules/unictype/syntax-c-ident: New file.
22468         * modules/unictype/syntax-java-ident: New file.
22469         * modules/unictype/ctype-alnum: New file.
22470         * modules/unictype/ctype-alpha: New file.
22471         * modules/unictype/ctype-cntrl: New file.
22472         * modules/unictype/ctype-digit: New file.
22473         * modules/unictype/ctype-graph: New file.
22474         * modules/unictype/ctype-lower: New file.
22475         * modules/unictype/ctype-print: New file.
22476         * modules/unictype/ctype-punct: New file.
22477         * modules/unictype/ctype-space: New file.
22478         * modules/unictype/ctype-upper: New file.
22479         * modules/unictype/ctype-xdigit: New file.
22480         * modules/unictype/ctype-blank: New file.
22481         * lib/unictype/bidi_byname.c: New file.
22482         * lib/unictype/bidi_name.c: New file.
22483         * lib/unictype/bidi_of.c: New file.
22484         * lib/unictype/bidi_test.c: New file.
22485         * lib/unictype/bitmap.h: New file.
22486         * lib/unictype/block_test.c: New file.
22487         * lib/unictype/blocks.c: New file.
22488         * lib/unictype/categ_C.c: New file.
22489         * lib/unictype/categ_Cc.c: New file.
22490         * lib/unictype/categ_Cf.c: New file.
22491         * lib/unictype/categ_Cn.c: New file.
22492         * lib/unictype/categ_Co.c: New file.
22493         * lib/unictype/categ_Cs.c: New file.
22494         * lib/unictype/categ_L.c: New file.
22495         * lib/unictype/categ_Ll.c: New file.
22496         * lib/unictype/categ_Lm.c: New file.
22497         * lib/unictype/categ_Lo.c: New file.
22498         * lib/unictype/categ_Lt.c: New file.
22499         * lib/unictype/categ_Lu.c: New file.
22500         * lib/unictype/categ_M.c: New file.
22501         * lib/unictype/categ_Mc.c: New file.
22502         * lib/unictype/categ_Me.c: New file.
22503         * lib/unictype/categ_Mn.c: New file.
22504         * lib/unictype/categ_N.c: New file.
22505         * lib/unictype/categ_Nd.c: New file.
22506         * lib/unictype/categ_Nl.c: New file.
22507         * lib/unictype/categ_No.c: New file.
22508         * lib/unictype/categ_P.c: New file.
22509         * lib/unictype/categ_Pc.c: New file.
22510         * lib/unictype/categ_Pd.c: New file.
22511         * lib/unictype/categ_Pe.c: New file.
22512         * lib/unictype/categ_Pf.c: New file.
22513         * lib/unictype/categ_Pi.c: New file.
22514         * lib/unictype/categ_Po.c: New file.
22515         * lib/unictype/categ_Ps.c: New file.
22516         * lib/unictype/categ_S.c: New file.
22517         * lib/unictype/categ_Sc.c: New file.
22518         * lib/unictype/categ_Sk.c: New file.
22519         * lib/unictype/categ_Sm.c: New file.
22520         * lib/unictype/categ_So.c: New file.
22521         * lib/unictype/categ_Z.c: New file.
22522         * lib/unictype/categ_Zl.c: New file.
22523         * lib/unictype/categ_Zp.c: New file.
22524         * lib/unictype/categ_Zs.c: New file.
22525         * lib/unictype/categ_and.c: New file.
22526         * lib/unictype/categ_and_not.c: New file.
22527         * lib/unictype/categ_byname.c: New file.
22528         * lib/unictype/categ_name.c: New file.
22529         * lib/unictype/categ_none.c: New file.
22530         * lib/unictype/categ_of.c: New file.
22531         * lib/unictype/categ_or.c: New file.
22532         * lib/unictype/categ_test.c: New file.
22533         * lib/unictype/combining.c: New file.
22534         * lib/unictype/ctype_alnum.c: New file.
22535         * lib/unictype/ctype_alpha.c: New file.
22536         * lib/unictype/ctype_blank.c: New file.
22537         * lib/unictype/ctype_cntrl.c: New file.
22538         * lib/unictype/ctype_digit.c: New file.
22539         * lib/unictype/ctype_graph.c: New file.
22540         * lib/unictype/ctype_lower.c: New file.
22541         * lib/unictype/ctype_print.c: New file.
22542         * lib/unictype/ctype_punct.c: New file.
22543         * lib/unictype/ctype_space.c: New file.
22544         * lib/unictype/ctype_upper.c: New file.
22545         * lib/unictype/ctype_xdigit.c: New file.
22546         * lib/unictype/decdigit.c: New file.
22547         * lib/unictype/digit.c: New file.
22548         * lib/unictype/identsyntaxmap.h: New file.
22549         * lib/unictype/mirror.c: New file.
22550         * lib/unictype/numeric.c: New file.
22551         * lib/unictype/pr_alphabetic.c: New file.
22552         * lib/unictype/pr_ascii_hex_digit.c: New file.
22553         * lib/unictype/pr_bidi_arabic_digit.c: New file.
22554         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
22555         * lib/unictype/pr_bidi_block_separator.c: New file.
22556         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
22557         * lib/unictype/pr_bidi_common_separator.c: New file.
22558         * lib/unictype/pr_bidi_control.c: New file.
22559         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
22560         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
22561         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
22562         * lib/unictype/pr_bidi_european_digit.c: New file.
22563         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
22564         * lib/unictype/pr_bidi_left_to_right.c: New file.
22565         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
22566         * lib/unictype/pr_bidi_other_neutral.c: New file.
22567         * lib/unictype/pr_bidi_pdf.c: New file.
22568         * lib/unictype/pr_bidi_segment_separator.c: New file.
22569         * lib/unictype/pr_bidi_whitespace.c: New file.
22570         * lib/unictype/pr_byname.c: New file.
22571         * lib/unictype/pr_byname.gperf: New file.
22572         * lib/unictype/pr_combining.c: New file.
22573         * lib/unictype/pr_composite.c: New file.
22574         * lib/unictype/pr_currency_symbol.c: New file.
22575         * lib/unictype/pr_dash.c: New file.
22576         * lib/unictype/pr_decimal_digit.c: New file.
22577         * lib/unictype/pr_default_ignorable_code_point.c: New file.
22578         * lib/unictype/pr_deprecated.c: New file.
22579         * lib/unictype/pr_diacritic.c: New file.
22580         * lib/unictype/pr_extender.c: New file.
22581         * lib/unictype/pr_format_control.c: New file.
22582         * lib/unictype/pr_grapheme_base.c: New file.
22583         * lib/unictype/pr_grapheme_extend.c: New file.
22584         * lib/unictype/pr_grapheme_link.c: New file.
22585         * lib/unictype/pr_hex_digit.c: New file.
22586         * lib/unictype/pr_hyphen.c: New file.
22587         * lib/unictype/pr_id_continue.c: New file.
22588         * lib/unictype/pr_id_start.c: New file.
22589         * lib/unictype/pr_ideographic.c: New file.
22590         * lib/unictype/pr_ids_binary_operator.c: New file.
22591         * lib/unictype/pr_ids_trinary_operator.c: New file.
22592         * lib/unictype/pr_ignorable_control.c: New file.
22593         * lib/unictype/pr_iso_control.c: New file.
22594         * lib/unictype/pr_join_control.c: New file.
22595         * lib/unictype/pr_left_of_pair.c: New file.
22596         * lib/unictype/pr_line_separator.c: New file.
22597         * lib/unictype/pr_logical_order_exception.c: New file.
22598         * lib/unictype/pr_lowercase.c: New file.
22599         * lib/unictype/pr_math.c: New file.
22600         * lib/unictype/pr_non_break.c: New file.
22601         * lib/unictype/pr_not_a_character.c: New file.
22602         * lib/unictype/pr_numeric.c: New file.
22603         * lib/unictype/pr_other_alphabetic.c: New file.
22604         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
22605         * lib/unictype/pr_other_grapheme_extend.c: New file.
22606         * lib/unictype/pr_other_id_continue.c: New file.
22607         * lib/unictype/pr_other_id_start.c: New file.
22608         * lib/unictype/pr_other_lowercase.c: New file.
22609         * lib/unictype/pr_other_math.c: New file.
22610         * lib/unictype/pr_other_uppercase.c: New file.
22611         * lib/unictype/pr_paired_punctuation.c: New file.
22612         * lib/unictype/pr_paragraph_separator.c: New file.
22613         * lib/unictype/pr_pattern_syntax.c: New file.
22614         * lib/unictype/pr_pattern_white_space.c: New file.
22615         * lib/unictype/pr_private_use.c: New file.
22616         * lib/unictype/pr_punctuation.c: New file.
22617         * lib/unictype/pr_quotation_mark.c: New file.
22618         * lib/unictype/pr_radical.c: New file.
22619         * lib/unictype/pr_sentence_terminal.c: New file.
22620         * lib/unictype/pr_soft_dotted.c: New file.
22621         * lib/unictype/pr_space.c: New file.
22622         * lib/unictype/pr_terminal_punctuation.c: New file.
22623         * lib/unictype/pr_test.c: New file.
22624         * lib/unictype/pr_titlecase.c: New file.
22625         * lib/unictype/pr_unassigned_code_value.c: New file.
22626         * lib/unictype/pr_unified_ideograph.c: New file.
22627         * lib/unictype/pr_uppercase.c: New file.
22628         * lib/unictype/pr_variation_selector.c: New file.
22629         * lib/unictype/pr_white_space.c: New file.
22630         * lib/unictype/pr_xid_continue.c: New file.
22631         * lib/unictype/pr_xid_start.c: New file.
22632         * lib/unictype/pr_zero_width.c: New file.
22633         * lib/unictype/scripts.c: New file.
22634         * lib/unictype/sy_c_ident.c: New file.
22635         * lib/unictype/sy_c_whitespace.c: New file.
22636         * lib/unictype/sy_java_ident.c: New file.
22637         * lib/unictype/sy_java_whitespace.c: New file.
22638
22639         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
22640         Unicode 5.0.0.
22641         * lib/unictype/blocks.h: Likewise.
22642         * lib/unictype/categ_C.h: Likewise.
22643         * lib/unictype/categ_Cc.h: Likewise.
22644         * lib/unictype/categ_Cf.h: Likewise.
22645         * lib/unictype/categ_Cn.h: Likewise.
22646         * lib/unictype/categ_Co.h: Likewise.
22647         * lib/unictype/categ_Cs.h: Likewise.
22648         * lib/unictype/categ_L.h: Likewise.
22649         * lib/unictype/categ_Ll.h: Likewise.
22650         * lib/unictype/categ_Lm.h: Likewise.
22651         * lib/unictype/categ_Lo.h: Likewise.
22652         * lib/unictype/categ_Lt.h: Likewise.
22653         * lib/unictype/categ_Lu.h: Likewise.
22654         * lib/unictype/categ_M.h: Likewise.
22655         * lib/unictype/categ_Mc.h: Likewise.
22656         * lib/unictype/categ_Me.h: Likewise.
22657         * lib/unictype/categ_Mn.h: Likewise.
22658         * lib/unictype/categ_N.h: Likewise.
22659         * lib/unictype/categ_Nd.h: Likewise.
22660         * lib/unictype/categ_Nl.h: Likewise.
22661         * lib/unictype/categ_No.h: Likewise.
22662         * lib/unictype/categ_P.h: Likewise.
22663         * lib/unictype/categ_Pc.h: Likewise.
22664         * lib/unictype/categ_Pd.h: Likewise.
22665         * lib/unictype/categ_Pe.h: Likewise.
22666         * lib/unictype/categ_Pf.h: Likewise.
22667         * lib/unictype/categ_Pi.h: Likewise.
22668         * lib/unictype/categ_Po.h: Likewise.
22669         * lib/unictype/categ_Ps.h: Likewise.
22670         * lib/unictype/categ_S.h: Likewise.
22671         * lib/unictype/categ_Sc.h: Likewise.
22672         * lib/unictype/categ_Sk.h: Likewise.
22673         * lib/unictype/categ_Sm.h: Likewise.
22674         * lib/unictype/categ_So.h: Likewise.
22675         * lib/unictype/categ_Z.h: Likewise.
22676         * lib/unictype/categ_Zl.h: Likewise.
22677         * lib/unictype/categ_Zp.h: Likewise.
22678         * lib/unictype/categ_Zs.h: Likewise.
22679         * lib/unictype/categ_of.h: Likewise.
22680         * lib/unictype/combining.h: Likewise.
22681         * lib/unictype/ctype_alnum.h: Likewise.
22682         * lib/unictype/ctype_alpha.h: Likewise.
22683         * lib/unictype/ctype_blank.h: Likewise.
22684         * lib/unictype/ctype_cntrl.h: Likewise.
22685         * lib/unictype/ctype_digit.h: Likewise.
22686         * lib/unictype/ctype_graph.h: Likewise.
22687         * lib/unictype/ctype_lower.h: Likewise.
22688         * lib/unictype/ctype_print.h: Likewise.
22689         * lib/unictype/ctype_punct.h: Likewise.
22690         * lib/unictype/ctype_space.h: Likewise.
22691         * lib/unictype/ctype_upper.h: Likewise.
22692         * lib/unictype/ctype_xdigit.h: Likewise.
22693         * lib/unictype/decdigit.h: Likewise.
22694         * lib/unictype/digit.h: Likewise.
22695         * lib/unictype/mirror.h: Likewise.
22696         * lib/unictype/numeric.h: Likewise.
22697         * lib/unictype/pr_alphabetic.h: Likewise.
22698         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
22699         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
22700         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
22701         * lib/unictype/pr_bidi_block_separator.h: Likewise.
22702         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
22703         * lib/unictype/pr_bidi_common_separator.h: Likewise.
22704         * lib/unictype/pr_bidi_control.h: Likewise.
22705         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
22706         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
22707         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
22708         * lib/unictype/pr_bidi_european_digit.h: Likewise.
22709         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
22710         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
22711         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
22712         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
22713         * lib/unictype/pr_bidi_pdf.h: Likewise.
22714         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
22715         * lib/unictype/pr_bidi_whitespace.h: Likewise.
22716         * lib/unictype/pr_combining.h: Likewise.
22717         * lib/unictype/pr_composite.h: Likewise.
22718         * lib/unictype/pr_currency_symbol.h: Likewise.
22719         * lib/unictype/pr_dash.h: Likewise.
22720         * lib/unictype/pr_decimal_digit.h: Likewise.
22721         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
22722         * lib/unictype/pr_deprecated.h: Likewise.
22723         * lib/unictype/pr_diacritic.h: Likewise.
22724         * lib/unictype/pr_extender.h: Likewise.
22725         * lib/unictype/pr_format_control.h: Likewise.
22726         * lib/unictype/pr_grapheme_base.h: Likewise.
22727         * lib/unictype/pr_grapheme_extend.h: Likewise.
22728         * lib/unictype/pr_grapheme_link.h: Likewise.
22729         * lib/unictype/pr_hex_digit.h: Likewise.
22730         * lib/unictype/pr_hyphen.h: Likewise.
22731         * lib/unictype/pr_id_continue.h: Likewise.
22732         * lib/unictype/pr_id_start.h: Likewise.
22733         * lib/unictype/pr_ideographic.h: Likewise.
22734         * lib/unictype/pr_ids_binary_operator.h: Likewise.
22735         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
22736         * lib/unictype/pr_ignorable_control.h: Likewise.
22737         * lib/unictype/pr_iso_control.h: Likewise.
22738         * lib/unictype/pr_join_control.h: Likewise.
22739         * lib/unictype/pr_left_of_pair.h: Likewise.
22740         * lib/unictype/pr_line_separator.h: Likewise.
22741         * lib/unictype/pr_logical_order_exception.h: Likewise.
22742         * lib/unictype/pr_lowercase.h: Likewise.
22743         * lib/unictype/pr_math.h: Likewise.
22744         * lib/unictype/pr_non_break.h: Likewise.
22745         * lib/unictype/pr_not_a_character.h: Likewise.
22746         * lib/unictype/pr_numeric.h: Likewise.
22747         * lib/unictype/pr_other_alphabetic.h: Likewise.
22748         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
22749         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
22750         * lib/unictype/pr_other_id_continue.h: Likewise.
22751         * lib/unictype/pr_other_id_start.h: Likewise.
22752         * lib/unictype/pr_other_lowercase.h: Likewise.
22753         * lib/unictype/pr_other_math.h: Likewise.
22754         * lib/unictype/pr_other_uppercase.h: Likewise.
22755         * lib/unictype/pr_paired_punctuation.h: Likewise.
22756         * lib/unictype/pr_paragraph_separator.h: Likewise.
22757         * lib/unictype/pr_pattern_syntax.h: Likewise.
22758         * lib/unictype/pr_pattern_white_space.h: Likewise.
22759         * lib/unictype/pr_private_use.h: Likewise.
22760         * lib/unictype/pr_punctuation.h: Likewise.
22761         * lib/unictype/pr_quotation_mark.h: Likewise.
22762         * lib/unictype/pr_radical.h: Likewise.
22763         * lib/unictype/pr_sentence_terminal.h: Likewise.
22764         * lib/unictype/pr_soft_dotted.h: Likewise.
22765         * lib/unictype/pr_space.h: Likewise.
22766         * lib/unictype/pr_terminal_punctuation.h: Likewise.
22767         * lib/unictype/pr_titlecase.h: Likewise.
22768         * lib/unictype/pr_unassigned_code_value.h: Likewise.
22769         * lib/unictype/pr_unified_ideograph.h: Likewise.
22770         * lib/unictype/pr_uppercase.h: Likewise.
22771         * lib/unictype/pr_variation_selector.h: Likewise.
22772         * lib/unictype/pr_white_space.h: Likewise.
22773         * lib/unictype/pr_xid_continue.h: Likewise.
22774         * lib/unictype/pr_xid_start.h: Likewise.
22775         * lib/unictype/pr_zero_width.h: Likewise.
22776         * lib/unictype/scripts.h: Likewise.
22777         * lib/unictype/scripts_byname.gperf: Likewise.
22778         * lib/unictype/sy_c_ident.h: Likewise.
22779         * lib/unictype/sy_c_whitespace.h: Likewise.
22780         * lib/unictype/sy_java_ident.h: Likewise.
22781         * lib/unictype/sy_java_whitespace.h: Likewise.
22782
22783         * lib/unictype/Makefile: New file.
22784         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
22785         glibc.
22786         * lib/unictype/3level.h: New file, copied from glibc.
22787         * lib/unictype/3levelbit.h: New file.
22788
22789 2007-11-11  Bruno Haible  <bruno@clisp.org>
22790
22791         * modules/gperf: New file.
22792         * modules/iconv_open (Depends-on): Add it.
22793         (Makefile.am): Remove the GPERF definition.
22794
22795 2007-11-11  Bruno Haible  <bruno@clisp.org>
22796
22797         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
22798         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
22799
22800 2007-11-11  Bruno Haible  <bruno@clisp.org>
22801
22802         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
22803         (usage): Remove function.
22804
22805 2007-11-11  Bruno Haible  <bruno@clisp.org>
22806
22807         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
22808         gl_FUNC_CEILF_LIBS.
22809         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
22810         gl_FUNC_CEIL_LIBS.
22811         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
22812         gl_FUNC_CEILL_LIBS.
22813         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
22814         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
22815         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
22816
22817 2007-11-11  Bruno Haible  <bruno@clisp.org>
22818
22819         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
22820         roundf were declared but do not exist on functions.
22821         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
22822         roundl were declared but do not exist on functions.
22823         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
22824         HAVE_FLOORL_AND_CEILL, respectively.
22825         Needed for Sun C on Solaris 10.
22826
22827 2007-11-11  Bruno Haible  <bruno@clisp.org>
22828
22829         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
22830         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
22831         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
22832         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
22833         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
22834         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
22835         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
22836         HAVE_DECL_ROUNDF.
22837         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
22838         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
22839         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
22840         of HAVE_DECL_ROUND*.
22841         * modules/math (Makefile.am): Update.
22842
22843 2007-11-10  Bruno Haible  <bruno@clisp.org>
22844
22845         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
22846         ptrdiff_t as m4/intl.m4.
22847
22848 2007-11-10  Jim Meyering  <meyering@redhat.com>
22849
22850         Avoid link failure for the argmatch test.
22851         * tests/test-argmatch.c (usage): Define function to avoid a link
22852         failure: argmatch_die requires a usage function.
22853
22854 2007-11-09  Bruno Haible  <bruno@clisp.org>
22855
22856         * doc/functions/snprintf.texi: Mention BeOS deficiency.
22857         * doc/functions/vsnprintf.texi: Likewise.
22858         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
22859         with a size argument < 2.
22860
22861 2007-11-09  Bruno Haible  <bruno@clisp.org>
22862
22863         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
22864         buffer. Fixes an inefficiency introduced on 2007-11-03.
22865
22866 2007-11-09  Bruno Haible  <bruno@clisp.org>
22867
22868         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
22869         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
22870
22871 2007-11-08  Jim Meyering  <meyering@redhat.com>
22872
22873         Change cache variable name prefix "jm_" to "gl_" everywhere.
22874         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
22875         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
22876         * m4/uptime.m4: s/gl_/jm_/
22877
22878 2007-11-07  Bruno Haible  <bruno@clisp.org>
22879
22880         Update to GNU gettext 0.17.
22881         * m4/intl.m4: Update to GNU gettext 0.17.
22882         * m4/po.m4: Likewise.
22883         * modules/gettext (Files): Remove m4/ulonglong.m4.
22884         (configure.ac): Require gettext infrastructure from version 0.17.
22885
22886 2007-11-06  Bruno Haible  <bruno@clisp.org>
22887
22888         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
22889         symbolic values are not defined in a public header.
22890         * lib/freadable.c (freadable) [QNX]: Likewise.
22891         * lib/freadahead.c (freadahead) [QNX]: Likewise.
22892         * lib/freading.c (freading) [QNX]: Likewise.
22893         * lib/fseterr.c (fseterr) [QNX]: Likewise.
22894         * lib/fwritable.c (fwritable) [QNX]: Likewise.
22895         * lib/fwriting.c (fwriting) [QNX]: Likewise.
22896         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
22897         Reported by Alain Magloire.
22898
22899         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
22900
22901 2007-11-05  Bruno Haible  <bruno@clisp.org>
22902
22903         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
22904         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
22905         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
22906         Reported by Eric Blake.
22907
22908 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22909             Bruno Haible  <bruno@clisp.org>
22910
22911         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
22912         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
22913         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
22914         (malloc): Undefine also before including <stdlib.h>.
22915         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
22916         Needed on OSF/1 4.0.
22917
22918 2007-11-05  Jim Meyering  <meyering@redhat.com>
22919
22920         git-version-gen: sync from coreutils.
22921         * build-aux/git-version-gen: Add comments.
22922         Change the first '-' to '.' in the snapshot version string,
22923         e.g., 6.9-377-08144 -> 6.9.377-08144
22924         Remove first parameter.
22925         Don't declare a version "-dirty" merely because a time
22926         stamp has changed.
22927
22928 2007-11-04  Bruno Haible  <bruno@clisp.org>
22929
22930         * lib/lock.h: Protect all macro definitions containing an 'if'
22931         statement through a "do { ... } while (0)".
22932         * lib/tls.h: Likewise.
22933
22934 2007-11-04  Bruno Haible  <bruno@clisp.org>
22935
22936         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
22937
22938 2007-11-04  Bruno Haible  <bruno@clisp.org>
22939
22940         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
22941         * modules/fprintf-posix (Depends-on): Add nocrash.
22942         * modules/snprintf-posix (Depends-on): Likewise.
22943         * modules/sprintf-posix (Depends-on): Likewise.
22944         * modules/vasnprintf-posix (Depends-on): Likewise.
22945         * modules/vasprintf-posix (Depends-on): Likewise.
22946         * modules/vfprintf-posix (Depends-on): Likewise.
22947         * modules/vsnprintf-posix (Depends-on): Likewise.
22948         * modules/vsprintf-posix (Depends-on): Likewise.
22949         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22950         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22951         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22952         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22953         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22954         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22955         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22956
22957 2007-11-04  Bruno Haible  <bruno@clisp.org>
22958
22959         * modules/nocrash: New file.
22960         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
22961         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
22962
22963 2007-11-04  Bruno Haible  <bruno@clisp.org>
22964
22965         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
22966         precision handling.
22967         * tests/test-vasprintf-posix.c (test_function): Likewise.
22968         * tests/test-snprintf-posix.h (test_function): Likewise.
22969         * tests/test-sprintf-posix.h (test_function): Likewise.
22970
22971         Fix *printf behaviour for large precisions on mingw and BeOS.
22972         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
22973         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
22974         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
22975         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
22976         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22977         gl_PRINTF_PRECISION and test its result. Invoke
22978         gl_PREREQ_VASNPRINTF_PRECISION.
22979         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22980         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22981         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22982         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22983         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22984         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22985         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22986         * doc/functions/fprintf.texi: Update.
22987         * doc/functions/printf.texi: Update.
22988         * doc/functions/snprintf.texi: Update.
22989         * doc/functions/sprintf.texi: Update.
22990         * doc/functions/vfprintf.texi: Update.
22991         * doc/functions/vprintf.texi: Update.
22992         * doc/functions/vsnprintf.texi: Update.
22993         * doc/functions/vsprintf.texi: Update.
22994
22995 2007-11-04  Bruno Haible  <bruno@clisp.org>
22996
22997         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
22998
22999 2007-11-04  Bruno Haible  <bruno@clisp.org>
23000
23001         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
23002         Reported by Sylvain Beucler <beuc@gnu.org>.
23003
23004 2007-11-03  Bruno Haible  <bruno@clisp.org>
23005
23006         * tests/test-fprintf-posix2.sh: New file.
23007         * tests/test-fprintf-posix2.c: New file.
23008         * modules/fprintf-posix-tests (Files): Add them.
23009         (TESTS): Add test-fprintf-posix2.sh.
23010         (configure.ac): Check for getrlimit and setrlimit.
23011         (check_PROGRAMS): Add test-fprintf-posix2.
23012
23013         * tests/test-printf-posix2.sh: New file.
23014         * tests/test-printf-posix2.c: New file.
23015         * modules/printf-posix-tests (Files): Add them.
23016         (TESTS): Add test-printf-posix2.sh.
23017         (configure.ac): Check for getrlimit and setrlimit.
23018         (check_PROGRAMS): Add test-printf-posix2.
23019
23020         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
23021         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
23022         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
23023         (decode_double): New function, copied from decode_long_double.
23024         (scale10_round_decimal_decoded): New function, extracted from
23025         scale10_round_decimal_long_double.
23026         (scale10_round_decimal_long_double): Use it.
23027         (scale10_round_decimal_double): New function.
23028         (floorlog10): New function.
23029         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
23030         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
23031         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
23032         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23033         gl_PRINTF_ENOMEM and test its result. Invoke
23034         gl_PREREQ_VASNPRINTF_ENOMEM.
23035         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23036         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23037         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23038         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23039         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23040         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23041         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23042         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
23043         * modules/snprintf-posix (Depends-on): Likewise.
23044         * modules/sprintf-posix (Depends-on): Likewise.
23045         * modules/vasnprintf-posix (Depends-on): Likewise.
23046         * modules/vasprintf-posix (Depends-on): Likewise.
23047         * modules/vfprintf-posix (Depends-on): Likewise.
23048         * modules/vsnprintf-posix (Depends-on): Likewise.
23049         * modules/vsprintf-posix (Depends-on): Likewise.
23050         * doc/functions/fprintf.texi: Update.
23051         * doc/functions/printf.texi: Update.
23052         * doc/functions/snprintf.texi: Update.
23053         * doc/functions/sprintf.texi: Update.
23054         * doc/functions/vfprintf.texi: Update.
23055         * doc/functions/vprintf.texi: Update.
23056         * doc/functions/vsnprintf.texi: Update.
23057         * doc/functions/vsprintf.texi: Update.
23058
23059 2007-11-03  Bruno Haible  <bruno@clisp.org>
23060
23061         * modules/frexp-nolibm-tests: New file.
23062
23063         * modules/frexp-nolibm: New file.
23064         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
23065
23066 2007-11-03  Bruno Haible  <bruno@clisp.org>
23067
23068         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
23069         value is C99 compliant.
23070         Needed for OSF/1 5.1.
23071
23072 2007-11-03  Bruno Haible  <bruno@clisp.org>
23073
23074         Fix out-of-memory handling of vasnprintf.
23075         * lib/printf-parse.c: Include <errno.h>.
23076         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
23077         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
23078         is already set.
23079
23080 2007-11-02  Eric Blake  <ebb9@byu.net>
23081
23082         Fix tests on cygwin.
23083         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
23084
23085 2007-11-01  Bruno Haible  <bruno@clisp.org>
23086
23087         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
23088         warning.
23089         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
23090         needed for POSIX compatibility.
23091
23092 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
23093
23094         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
23095         for compatibility with GNU.
23096
23097 2007-11-01  Bruno Haible  <bruno@clisp.org>
23098
23099         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
23100         (putenv): Renamed from rpl_putenv. Change argument type from
23101         'const char *' to 'char *'.
23102         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
23103         of defining putenv in config.h, just set REPLACE_PUTENV.
23104         * modules/putenv (Depends-on): Add stdlib.
23105         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
23106         (Include): Use <stdlib.h>.
23107         * lib/stdlib.in.h (putenv): New declaration.
23108         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
23109         REPLACE_PUTENV.
23110         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
23111         REPLACE_PUTENV.
23112         Needed for MacOS X 10.5.0.
23113         Reported by Peter O'Gorman <peter@pogma.com>.
23114
23115 2007-11-01  Jim Meyering  <meyering@redhat.com>
23116
23117         Treat an empty date string exactly like "0".
23118         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
23119         if the remaining date string (to be parsed) is empty, use "0".
23120         Reported by Mischa Molhoek and discussed in this thread:
23121         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
23122
23123 2007-10-31  Bruno Haible  <bruno@clisp.org>
23124
23125         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
23126         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
23127         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
23128         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
23129         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
23130         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
23131
23132 2007-10-31  Bruno Haible  <bruno@clisp.org>
23133
23134         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
23135         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
23136         (AC_TYPE_LONG_LONG_INT): Use it.
23137         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
23138         it as well.
23139         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
23140         to m4/longlong.m4.
23141         * modules/stdint (Files): Remove m4/ulonglong.m4.
23142         * modules/strtoull (Files): Use m4/longlong.m4 instead of
23143         m4/ulonglong.m4.
23144         * modules/strtoumax (Files): Likewise.
23145
23146 2007-10-30  Bruno Haible  <bruno@clisp.org>
23147
23148         * modules/xvasprintf-posix: New file.
23149         Suggested by Eric Blake.
23150
23151 2007-10-30  Bruno Haible  <bruno@clisp.org>
23152
23153         * modules/xprintf-posix-tests: New file.
23154         * tests/test-xprintf-posix.sh: New file.
23155         * tests/test-xprintf-posix.c: New file.
23156         * tests/test-xfprintf-posix.c: New file.
23157
23158         * modules/xprintf-posix: New file.
23159
23160 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23161
23162         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
23163         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
23164         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
23165
23166 2007-10-29  Bruno Haible  <bruno@clisp.org>
23167
23168         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
23169         contain the special marker '_cv_'.
23170         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
23171         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
23172         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
23173         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
23174         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
23175         Reported by Ralf Wildenhues.
23176
23177 2007-10-29  Bruno Haible  <bruno@clisp.org>
23178
23179         * gnulib-tool (func_import): When --lgpl is not specified, set
23180         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
23181         GPLv3.
23182         Reported by Simon Josefsson.
23183
23184 2007-10-28  Bruno Haible  <bruno@clisp.org>
23185
23186         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
23187         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
23188         HAVE_DECL_ISFINITE.
23189         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23190         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
23191         HAVE_DECL_ISFINITE.
23192
23193 2007-10-28  Bruno Haible  <bruno@clisp.org>
23194
23195         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
23196         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
23197
23198 2007-10-28  Bruno Haible  <bruno@clisp.org>
23199
23200         Fix link errors with Sun C 5.0 on Solaris 10.
23201         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
23202         function is declared but not present in the compiler's libm.
23203         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
23204         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
23205         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
23206         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
23207         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
23208         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
23209         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
23210         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23211         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
23212         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
23213         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
23214         HAVE_DECL_FLOORL.
23215
23216 2007-10-28  Bruno Haible  <bruno@clisp.org>
23217
23218         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
23219         gl_FUNC_FLOORL. Cache the result.
23220         (gl_FUNC_FLOORL): Use it.
23221         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
23222         gl_FUNC_CEILL. Cache the result.
23223         (gl_FUNC_CEILL): Use it.
23224
23225         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
23226         gl_FUNC_FLOOR. Cache the result.
23227         (gl_FUNC_FLOOR): Use it.
23228         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
23229         gl_FUNC_CEIL. Cache the result.
23230         (gl_FUNC_CEIL): Use it.
23231
23232         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
23233         gl_FUNC_FLOORF. Cache the result.
23234         (gl_FUNC_FLOORF): Use it.
23235         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
23236         gl_FUNC_CEILF. Cache the result.
23237         (gl_FUNC_CEILF): Use it.
23238
23239 2007-10-28  Bruno Haible  <bruno@clisp.org>
23240
23241         * gnulib-tool: Allow specifying the LGPL version number through
23242         --lgpl=2 or --lgpl=3.
23243         (func_usage): Document --lgpl with argument.
23244         Handle --lgpl=... arguments.
23245         (func_import): Recognize also gl_LGPL calls with an argument. When
23246         --lgpl=2 is used and the module's license is just LGPL, report an
23247         error. Set sed_transform_lib_file according to the lgpl variable. In
23248         the generated files, use --lgpl or gl_LGPL invocations with argument,
23249         if necessary.
23250         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
23251         an LGPv2+ license.
23252         * doc/gnulib-tool.texi (Modified imports): Update explanation of
23253         gl_LGPL macro.
23254
23255 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23256             Bruno Haible  <bruno@clisp.org>
23257
23258         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
23259         (u16_uctomb_aux): Likewise.
23260         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
23261         !HAVE_INLINE.
23262         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
23263
23264 2007-10-28  Bruno Haible  <bruno@clisp.org>
23265
23266         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
23267         Invoke AM_GETTEXT_OPTION if it exists.
23268         * modules/vasprintf: Likewise.
23269         * modules/verror: Likewise.
23270         * modules/xprintf: Likewise.
23271         * modules/xvasprintf: Likewise.
23272
23273 2007-10-27  Ben Pfaff  <blp@gnu.org>
23274
23275         * lib/math.in.h: Define isfinite macro and prototypes for
23276         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
23277         implementations.
23278         * m4/math_h.m4: New substitutions for isfinite module.
23279         * lib/isfinite.c: New file.
23280         * m4/isfinite.m4: New file.
23281         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
23282         * modules/isfinite: New file.
23283         * modules/isfinite-tests: New file.
23284         * tests/tests-isfinite.c: New file.
23285         * doc/functions/isfinite.texi: Mention isfinite module.
23286         * MODULES.html.sh: Mention new module.
23287
23288 2007-10-27  Ben Pfaff  <blp@gnu.org>
23289
23290         Ralf Wildenhues reported that Tru64 4.0D declares the round
23291         functions but does not have definitions.
23292         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
23293         cannot be found in any library, set the output variable to
23294         "missing" instead of "".
23295         * m4/round.m4: Also use our substitute if we cannot find round in
23296         any library, even if it is declared.
23297         * m4/roundf.m4: Likewise for roundf.
23298         * m4/roundl.m4: Likewise for roundl.
23299         * lib/math.in.h: Undefine roundf, round, roundl before defining
23300         their replacements, to allow for hypothetical systems where these
23301         may be defined as macros but not available in libraries.
23302
23303 2007-10-27  Bruno Haible  <bruno@clisp.org>
23304
23305         * doc/gnulib.texi: Invoke @firstparagraphindent.
23306         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
23307         changes in gnulib.
23308         (Source changes): New section.
23309
23310 2007-10-26  Bruno Haible  <bruno@clisp.org>
23311
23312         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
23313         borrowed from autoconf.
23314
23315 2007-10-26  Bruno Haible  <bruno@clisp.org>
23316
23317         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
23318         strerror returned the empty string. Needed on HP-UX 11.00.
23319
23320 2007-10-24  Micah Cowan  <micah@cowan.name>
23321
23322         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
23323         * build-aux/bootstrap: Remove support for now-unnecessary option,
23324         --cvs-user, and envvars CVS_USER, CVS_RSH.
23325
23326 2007-10-24  Jim Meyering  <meyering@redhat.com>
23327
23328         Avoid diagnostics from sha1sum when there is no cached checksum.
23329         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
23330         if the po.s1 file hasn't been created yet.
23331
23332         * build-aux/bootstrap: Sync from coreutils:
23333         2007-10-24  Jim Meyering  <meyering@redhat.com>
23334         Get gnulib from the git repository, not from an obsolete cvs one.
23335         * build-aux/bootstrap: Suggestion from Micah Cowan.
23336         2007-10-04  Jim Meyering  <jim@meyering.net>
23337         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
23338         (update_po_files): Work also when there are no .po files in po/.
23339
23340 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
23341
23342         * README: Append ".git" to git and cg examples.
23343         Problem reported by Benoit Sigoure.
23344
23345 2007-10-23  Micah Cowan  <micah@cowan.name>
23346
23347         * users.txt: Add wget.
23348
23349 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23350
23351         Fix linking of some unistdio tests on FreeBSD.
23352         * modules/unistdio/u16-vsnprintf-tests
23353         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
23354         * modules/unistdio/u16-vsprintf-tests
23355         (test_u16_vsnprintf1_LDADD): Likewise.
23356         * modules/unistdio/u32-vsnprintf-tests
23357         (test_u32_vsnprintf1_LDADD): Likewise.
23358         * modules/unistdio/u32-vsprintf-tests
23359         (test_u32_vsprintf1_LDADD): Likewise.
23360         * modules/unistdio/u8-vsnprintf-tests
23361         (test_u8_vsnprintf1_LDADD): Likewise.
23362         * modules/unistdio/u8-vsprintf-tests
23363         (test_u8_vsprintf1_LDADD): Likewise.
23364         * modules/unistdio/ulc-vsnprintf-tests
23365         (test_ulc_vsnprintf1_LDADD): Likewise.
23366         * modules/unistdio/ulc-vsprintf-tests
23367         (test_ulc_vsprintf1_LDADD): Likewise.
23368
23369         Fix linking of some uniconv tests on FreeBSD.
23370         * modules/uniconv/u16-conv-from-enc-tests
23371         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
23372         * modules/uniconv/u16-conv-to-enc-tests
23373         (test_u16_conv_to_enc_LDADD): Likewise.
23374         * modules/uniconv/u16-strconv-from-enc-tests
23375         (test_u16_strconv_from_enc_LDADD): Likewise.
23376         * modules/uniconv/u16-strconv-to-enc-tests
23377         (test_u16_strconv_to_enc_LDADD): Likewise.
23378         * modules/uniconv/u32-conv-from-enc-tests
23379         (test_u32_conv_from_enc_LDADD): Likewise.
23380         * modules/uniconv/u32-conv-to-enc-tests
23381         (test_u32_conv_to_enc_LDADD): Likewise.
23382         * modules/uniconv/u32-strconv-from-enc-tests
23383         (test_u32_strconv_from_enc_LDADD): Likewise.
23384         * modules/uniconv/u32-strconv-to-enc-tests
23385         (test_u32_strconv_to_enc_LDADD): Likewise.
23386         * modules/uniconv/u8-conv-from-enc-tests
23387         (test_u8_conv_from_enc_LDADD): Likewise.
23388         * modules/uniconv/u8-conv-to-enc-tests
23389         (test_u8_conv_to_enc_LDADD): Likewise.
23390         * modules/uniconv/u8-strconv-from-enc-tests
23391         (test_u8_strconv_from_enc_LDADD): Likewise.
23392         * modules/uniconv/u8-strconv-to-enc-tests
23393         (test_u8_strconv_to_enc_LDADD): Likewise.
23394
23395 2007-10-22  Bruno Haible  <bruno@clisp.org>
23396
23397         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
23398         size.
23399
23400 2007-10-22  Eric Blake  <ebb9@byu.net>
23401
23402         Tweak x*printf documentation.
23403         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
23404         variable name and comments.
23405         Suggested by Bruno Haible.
23406
23407 2007-10-22  Bruno Haible  <bruno@clisp.org>
23408
23409         * lib/acl.c (copy_acl): Fix file name in comment.
23410
23411 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23412
23413         Fix Tru64 problem with stdbool.h.
23414         * lib/stdbool.in.h (false, true):
23415         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
23416         Don't declare as an enum in this situation; it runs afoul of Tru64.
23417         Problem reported by Steven M. Schweda in
23418         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
23419
23420 2007-10-22  Eric Blake  <ebb9@byu.net>
23421
23422         Also wrap vf?printf.
23423         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
23424         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
23425         (xvprintf, xvfprintf): New functions.
23426
23427 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23428
23429         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
23430         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
23431
23432         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
23433         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
23434
23435 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23436
23437         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
23438         by Bruno Haible.
23439
23440 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23441
23442         * lib/getloadavg.c
23443         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
23444         Undef `sys' after including sys/table.h, for Tru64 4.0D.
23445
23446         * tests/test-i-ring.c: Work for C89.
23447
23448 2007-10-22  Bruno Haible  <bruno@clisp.org>
23449
23450         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
23451         -1u, in preprocessor expression, so that we don't test for the bug
23452         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
23453         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
23454
23455 2007-10-22  Eric Blake  <ebb9@byu.net>
23456
23457         * tests/test-yesno.sh: Silence stderr during test.
23458
23459 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23460
23461         * modules/crypto/gc-camellia: New file.
23462
23463         * m4/gc-camellia.m4: New file.
23464
23465         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
23466
23467         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
23468
23469 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23470
23471         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
23472         --help to stdout.  Reported by sms@antinode.org (Steven
23473         M. Schweda).
23474
23475 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23476
23477         * users.txt: Fix link to libksba.
23478
23479 2007-10-21  Ben Pfaff  <blp@gnu.org>
23480
23481         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
23482         round.c roundf implementation that depends on floorf and ceilf to
23483         be tested unconditionally.
23484
23485 2007-10-21  Ben Pfaff  <blp@gnu.org>
23486
23487         * m4/check-libm-func.m4: Removed.
23488         * m4/check-math-lib.m4: New file.
23489         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
23490         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
23491         definition and lack of AC_LIBOBJ([roundf]).
23492         * m4/roundl.m4: Ditto, and similarly for roundl.
23493         * modules/round: Reference new m4 file.
23494         * modules/roundf: Ditto.
23495         * modules/roundl: Ditto.
23496         * tests/test-round2.c (main): Use ROUND instead of round.
23497         Bug report from Bruno Haible.
23498
23499 2007-10-21  Bruno Haible  <bruno@clisp.org>
23500
23501         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
23502         context.
23503
23504 2007-10-21  Bruno Haible  <bruno@clisp.org>
23505
23506         * tests/test-wcwidth.c (main): Allow negative result for some control
23507         characters.
23508
23509         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
23510         Needed on OSF/1 5.1.
23511
23512 2007-10-21  Bruno Haible  <bruno@clisp.org>
23513
23514         * tests/test-floorf1.c: Include isnanf.h.
23515         (main): Use isnanf() instead of isnan().
23516         * tests/test-ceilf1.c: Include isnanf.h.
23517         (main): Use isnanf() instead of isnan().
23518         * tests/test-truncf1.c: Include isnanf.h.
23519         (main): Use isnanf() instead of isnan().
23520         * tests/test-roundf1.c: Include isnanf.h.
23521         (main): Use isnanf() instead of isnan().
23522
23523 2007-10-21  Eric Blake  <ebb9@byu.net>
23524
23525         * users.txt: Update URL for m4.
23526
23527 2007-10-21  Bruno Haible  <bruno@clisp.org>
23528
23529         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
23530
23531 2007-10-21  Bruno Haible  <bruno@clisp.org>
23532
23533         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
23534         Git's management files if the CVS files are not present.
23535
23536 2007-10-20  Bruno Haible  <bruno@clisp.org>
23537
23538         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
23539         gcc-3.4.x.
23540
23541 2007-10-20  Ben Pfaff  <blp@gnu.org>
23542
23543         * lib/math.in.h: Declare round, roundf, roundl if we are providing
23544         implementations.
23545         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
23546         * lib/round.c: New file.
23547         * lib/roundf.c: New file.
23548         * lib/roundl.c: New file.
23549         * m4/round.m4: New file.
23550         * m4/roundf.m4: New file.
23551         * m4/roundl.m4: New file.
23552         * m4/check-libm-func-m4: New file.
23553         * modules/math: Replace round, roundf, roundl related @VARS@ in
23554         math.in.h.
23555         * modules/round: New file.
23556         * modules/round-tests: New file.
23557         * modules/roundf: New file.
23558         * modules/roundf-tests: New file.
23559         * modules/roundl: New file.
23560         * modules/roundl-tests: New file.
23561         * tests/test-round1.c: New file.
23562         * tests/test-round2.c: New file.
23563         * tests/test-roundf1.c: New file.
23564         * tests/test-roundf2.c: New file.
23565         * tests/test-roundl.c: New file.
23566         * doc/functions/round.texi: Mention round module.
23567         * doc/functions/roundf.texi: Mention roundf module.
23568         * doc/functions/roundl.texi: Mention roundl module.
23569         * MODULES.html.sh: Mention new modules.
23570         Thanks to Bruno Haible for suggestions.
23571
23572 2007-10-20  Jim Meyering  <meyering@redhat.com>
23573
23574         * lib/xprintf.c: Include <config.h> unconditionally.
23575
23576         Change xprintf's license to GPL.
23577         * modules/xprintf (License): s/LGPL/GPL/, since this module
23578         depends on modules (exit and exitfail) which are GPL.
23579         Suggestion from Bruno Haible.
23580
23581         xprintf fixes.
23582         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
23583         Use a clearer diagnostic.
23584         Patch from Bruno Haible.
23585
23586 2007-10-20  Bruno Haible  <bruno@clisp.org>
23587
23588         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
23589         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
23590         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23591
23592 2007-10-20  Bruno Haible  <bruno@clisp.org>
23593
23594         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
23595         precision in the comparison result > x - 1 or similar.
23596         * tests/test-ceilf2.c (correct_result_p): Likewise.
23597         * tests/test-truncf2.c (correct_result_p): Likewise.
23598         * tests/test-trunc2.c (correct_result_p): Likewise.
23599         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23600
23601 2007-10-20  Bruno Haible  <bruno@clisp.org>
23602
23603         * modules/ceil: New file.
23604         * m4/ceil.m4: New file.
23605         * doc/functions/ceil.texi: Mention the 'ceil' module.
23606
23607 2007-10-20  Bruno Haible  <bruno@clisp.org>
23608
23609         * modules/floor: New file.
23610         * m4/floor.m4: New file.
23611         * doc/functions/floor.texi: Mention the 'floor' module.
23612
23613 2007-10-20  Bruno Haible  <bruno@clisp.org>
23614
23615         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
23616         of %a.
23617         * modules/floorf-tests (Depends-on): Likewise.
23618         * modules/truncf-tests (Depends-on): Likewise.
23619         * modules/trunc-tests (Depends-on): Likewise.
23620         Reported by Ben Pfaff.
23621
23622 2007-10-19  Jim Meyering  <meyering@redhat.com>
23623
23624         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
23625         Don't bother testing specific errno values.  Just test ferror.
23626
23627         New module: xprintf
23628         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
23629
23630 2007-10-19  Bruno Haible  <bruno@clisp.org>
23631
23632         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
23633         syntax.
23634         * modules/javaexec (Makefile.am): Likewise.
23635         * modules/relocatable-prog (Makefile.am): Likewise.
23636         Suggested by Jim Meyering.
23637
23638 2007-10-18  Bruno Haible  <bruno@clisp.org>
23639
23640         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
23641         Reported by Jim Meyering.
23642
23643 2007-10-18  Eric Blake  <ebb9@byu.net>
23644
23645         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
23646
23647 2007-10-18  Bruno Haible  <bruno@clisp.org>
23648
23649         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
23650         the format string into writable memory. Needed in Fortify conditions.
23651
23652 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
23653             Bruno Haible  <bruno@clisp.org>
23654
23655         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
23656         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
23657         * modules/trim (Depends-on): Add mbchar.
23658         (configure.ac): Add gl_FUNC_MBRTOWC.
23659         (Makefile.am): Augment lib_SOURCES.
23660
23661 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
23662
23663         Modify glob.c to use fstatat and dirfd, to simplify it.
23664         Suggested by Eric Blake.
23665         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
23666         Don't include <stdbool.h>; not used.
23667         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
23668         (link_exists_p): Simplify implementation, since we can now assume
23669         dirfd and fstatat.
23670         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
23671
23672 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23673
23674         * gnulib-tool (func_get_dependencies): Fix sed script to
23675         match only tests.
23676
23677 2007-10-17  Bruno Haible  <bruno@clisp.org>
23678
23679         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
23680         allow locale names without encoding suffix.
23681         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
23682         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
23683
23684 2007-10-16  Bruno Haible  <bruno@clisp.org>
23685
23686         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
23687         * lib/getgroups.c (getgroups): Likewise.
23688         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
23689
23690 2007-10-16  Bruno Haible  <bruno@clisp.org>
23691
23692         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
23693         * modules/malloc-posix (License): Likewise.
23694         * modules/realloc-posix (License): Likewise.
23695         * modules/calloc-posix (License): Likewise.
23696         * modules/intprops (License): Change from GPL to LGPL, with
23697         Paul Eggert's approval.
23698
23699 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23700
23701         Merge glibc changes into lib/glob.c.
23702
23703         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
23704         2007-10-15 04:59:03 UTC.  Here are the changes:
23705
23706         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
23707
23708         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
23709
23710         * lib/glob.c: Add some branch prediction throughout.
23711
23712         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
23713
23714         [BZ #5103]
23715         * lib/glob.c (glob): Recognize patterns starting \/.
23716
23717         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
23718
23719         [BZ #3996]
23720         * lib/glob.c (attribute_hidden): Define if not defined.
23721         (glob): Unescape dirname, filename or username when needed and not
23722         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
23723         is NULL.  Handle unescaped [ in pattern without closing ].
23724         Don't pass GLOB_CHECK down to recursive glob for directories.
23725         (__glob_pattern_type): New function.
23726         (__glob_pattern_p): Implement using __glob_pattern_type.
23727         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
23728         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
23729         Remove unreachable code.
23730
23731         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
23732
23733         * lib/glob.c (glob_in_dir): Add some comments and asserts to
23734         explain why there are no leaks.
23735
23736         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
23737
23738         [BZ #3253]
23739         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
23740         time, rather allocate increasingly bigger arrays of pointers, if
23741         possible with alloca, if too large with malloc.
23742
23743 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23744
23745         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
23746         Problem reported by H.Merijn Brand in
23747         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
23748         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
23749         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
23750
23751 2007-10-15  Bruno Haible  <bruno@clisp.org>
23752
23753         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
23754         with explicit rpl_ prefix.
23755         * lib/fopen.c (fopen): Likewise.
23756         * lib/freopen.c (freopen): Likewise.
23757         * lib/iconv.c (iconv): Likewise.
23758         * lib/iconv_close.c (iconv_close): Likewise.
23759
23760 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23761
23762         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
23763
23764 2007-10-15  Bruno Haible  <bruno@clisp.org>
23765
23766         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
23767         <stddef.h> instead of <stdlib.h> since we only need NULL.
23768         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23769
23770 2007-10-15  Bruno Haible  <bruno@clisp.org>
23771
23772         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
23773         Replace paragraph talking about LIBOBJS.
23774         Reported by Colin Watson <cjwatson@debian.org>.
23775
23776 2007-10-15  Bruno Haible  <bruno@clisp.org>
23777
23778         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
23779         <stdlib.h> before using NULL.
23780
23781 2007-10-15  Simon Josefsson  <simon@josefsson.org>
23782
23783         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
23784         Reported by Albert Chin <china@thewrittenword.com>.
23785
23786 2007-10-14  Bruno Haible  <bruno@clisp.org>
23787
23788         * modules/iconv_open-utf-tests: New file.
23789         * tests/test-iconv-utf.c: New file.
23790
23791         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
23792         * modules/iconv_open-utf: New file.
23793         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
23794         (iconv, iconv_close): New declarations.
23795         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
23796         be defined.
23797         (iconv_open): Add special handling of conversion between UTF-8 and
23798         UTF-{16,32}{BE,LE}.
23799         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
23800         * lib/iconv_close.c: New file.
23801         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
23802         gl_FUNC_ICONV_OPEN.
23803         (gl_FUNC_ICONV_OPEN): Use it.
23804         (gl_FUNC_ICONV_OPEN_UTF): New macro.
23805         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
23806         and REPLACE_ICONV_UTF.
23807         * modules/iconv_open (Depends-on): Add c-strcase.
23808         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
23809         ICONV_CONST.
23810         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
23811
23812 2007-10-13  Albert Chin  <china@thewrittenword.com>
23813             Bruno Haible  <bruno@clisp.org>
23814
23815         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
23816         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
23817
23818 2007-10-13  Bruno Haible  <bruno@clisp.org>
23819
23820         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
23821         defined, use the ISO C99 inline semantics.
23822         * lib/argp.h (ARGP_EI): Likewise.
23823
23824 2007-10-13  Bruno Haible  <bruno@clisp.org>
23825
23826         Handle 'inline' change in gcc 4.3.0.
23827         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
23828         argp_fmtstream_write, argp_fmtstream_set_lmargin,
23829         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
23830         argp_fmtstream_point): Disable 'extern' declaration if the function
23831         definition is going to be provided inline.
23832         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
23833         semantics, not the ISO C99 inline semantics.
23834         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
23835         'extern' declaration if the function definition is going to be provided
23836         inline.
23837         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
23838         the GNU C inline semantics, not the ISO C99 inline semantics. With
23839         GCC 4.2, avoid a warning.
23840
23841 2007-10-13  Bruno Haible  <bruno@clisp.org>
23842
23843         * lib/freading.h (freading): Enable the use of __freading for
23844         glibc >= 2.7.
23845         * lib/freading.c (freading): Likewise.
23846
23847 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
23848
23849         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
23850         "warning: C99 inline functions are not supported; using GNU89".
23851
23852 2007-10-12  Bruno Haible  <bruno@clisp.org>
23853
23854         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
23855         of 2.
23856         * tests/test-ceilf2.c: New file.
23857         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
23858
23859         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
23860         * modules/ceilf-tests: Update.
23861
23862 2007-10-12  Bruno Haible  <bruno@clisp.org>
23863
23864         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
23865         of 2.
23866         * tests/test-floorf2.c: New file.
23867         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
23868
23869         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
23870         * modules/floorf-tests: Update.
23871
23872 2007-10-12  Bruno Haible  <bruno@clisp.org>
23873
23874         * tests/test-trunc2.c: New file.
23875         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
23876
23877         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
23878         * modules/trunc-tests: Update.
23879
23880 2007-10-12  Bruno Haible  <bruno@clisp.org>
23881
23882         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
23883         of 2.
23884         * tests/test-truncf2.c: New file.
23885         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
23886
23887         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
23888         * modules/truncf-tests: Update.
23889
23890 2007-10-11  Eric Blake  <ebb9@byu.net>
23891
23892         Don't claim strerror is broken on Interix.
23893         * doc/functions/strerror.texi (strerror): Known broken systems are
23894         now Solaris 8, and not Interix.
23895         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
23896         Interix on cross-compile.
23897         Reported by Martin Koeppe in
23898         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
23899
23900 2007-10-11  Bruno Haible  <bruno@clisp.org>
23901
23902         * modules/i-ring-tests: New file.
23903         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
23904         instead of assert.
23905
23906 2007-10-11  Bruno Haible  <bruno@clisp.org>
23907
23908         * modules/filenamecat-tests: New file.
23909         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
23910         * lib/filenamecat.c: Remove test code.
23911
23912 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
23913
23914         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
23915
23916         * lib/strerror.c: Include <string.h> always, to test interface,
23917         and to remove the need for the dummy.
23918         Include intprops.h to compute width instead of doing it ourselves
23919         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
23920         (strerror): Define it to return NULL if there's no system strerror.
23921         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
23922         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
23923         ancient pre-strerror Unix systems well any more.  Saying "unknown
23924         system error" is enough.
23925         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
23926         simpler strerror.c implementation.
23927         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
23928         Simplify the tests to reflect the simpler strerror implementation.
23929         * modules/strerror (Depends-on): Add intprops.
23930
23931 2007-10-09  Eric Blake  <ebb9@byu.net>
23932
23933         Silence test-fpending.
23934         * modules/fpending-tests (Files): Add wrapper script.
23935         * tests/test-fpending.sh: New file.
23936
23937 2007-10-09  Bruno Haible  <bruno@clisp.org>
23938
23939         * MODULES.html.sh (func_module): Don't create a hyperlink for
23940         function names like 'printf_frexp'.
23941         (Misc): Add crc, memxor.
23942         (Characteristics of floating types): New section.
23943         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
23944         isnanf-nolibm, signbit, trunc, truncf, truncl.
23945         (Enhancements for ISO C 99 functions): New subsection Input/output.
23946         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
23947         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
23948         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
23949         (Compatibility checks for POSIX:2001 functions): Add clock-time.
23950         (Enhancements for POSIX:2001 functions): Add chdir-long.
23951         (File system functions): Add areadlink, chdir-safer, read-file.
23952         Remove cycle-check.
23953         (File system as inode set): New section.
23954         (Date and time): Add gethrxtime.
23955         (Multithreading): Add openmp.
23956         (Internationalization functions): Add localename.
23957         (Unicode string functions): Add unistr/u*-mbsnlen.
23958         (Support for maintaining and releasing projects): Add git-version-gen.
23959         (Lone files): Remove directories.
23960
23961 2007-10-08  Ben Pfaff  <blp@gnu.org>
23962
23963         * lib/xmalloca.h: Fix typo in comment.
23964
23965 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
23966
23967         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
23968         when avoiding problems with integer overflow.  Use a portable test
23969         instead.
23970
23971 2007-10-08  Simon Josefsson  <simon@josefsson.org>
23972
23973         * modules/dummy (License): Change to LGPLv2+.
23974         * modules/float (License): Likewise
23975         * modules/realloc (License): Likewise
23976         * modules/stdlib (License): Likewise
23977
23978 2007-10-07  Bruno Haible  <bruno@clisp.org>
23979
23980         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
23981         * floor.c (TWO_MANT_DIG): Likewise.
23982         * ceil.c (TWO_MANT_DIG): Likewise.
23983         Reported by Ben Pfaff.
23984
23985 2007-10-07  Bruno Haible  <bruno@clisp.org>
23986
23987         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
23988         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
23989         * lib/frexp.c (FUNC): Likewise.
23990         * lib/printf-frexp.h (printf_frexp): Likewise.
23991         * lib/printf-frexpl.h (printf_frexpl): Likewise.
23992         * lib/printf-frexp.c (FUNC): Likewise.
23993         Suggested by Jim Meyering.
23994
23995 2007-10-07  Jim Meyering  <meyering@redhat.com>
23996
23997         Make xnanosleep's integer overflow test more robust.
23998         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
23999         so that gcc-4.3.0 doesn't optimize away this test for overflow.
24000
24001 2007-10-07  Bruno Haible  <bruno@clisp.org>
24002
24003         * NEWS: Mention the license change.
24004
24005         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
24006         abbreviations in the modules files.
24007
24008         Change copyright notice from GPLv2+ to GPLv3+.
24009         * README: Change copyright notice.
24010         * MODULES.html.sh: Likewise.
24011         * build-aux/bootstrap.conf: Likewise.
24012         * build-aux/config.libpath: Likewise.
24013         * build-aux/csharpcomp.sh.in: Likewise.
24014         * build-aux/csharpexec.sh.in: Likewise.
24015         * build-aux/install-reloc: Likewise.
24016         * build-aux/javacomp.sh.in: Likewise.
24017         * build-aux/javaexec.sh.in: Likewise.
24018         * build-aux/ldd.sh.in: Likewise.
24019         * build-aux/reloc-ldflags: Likewise.
24020         * build-aux/relocatable.sh.in: Likewise.
24021         * build-aux/x-to-1.in: Likewise.
24022         * check-module: Likewise.
24023         * config/srclistvars.sh: Likewise.
24024         * gnulib-tool: Likewise.
24025         * lib/acl-internal.h: Likewise.
24026         * lib/acl.c: Likewise.
24027         * lib/acl.h: Likewise.
24028         * lib/acl_entries.c: Likewise.
24029         * lib/areadlink-with-size.c: Likewise.
24030         * lib/areadlink.c: Likewise.
24031         * lib/areadlink.h: Likewise.
24032         * lib/argmatch.c: Likewise.
24033         * lib/argmatch.h: Likewise.
24034         * lib/argp-ba.c: Likewise.
24035         * lib/argp-eexst.c: Likewise.
24036         * lib/argp-fmtstream.c: Likewise.
24037         * lib/argp-fmtstream.h: Likewise.
24038         * lib/argp-fs-xinl.c: Likewise.
24039         * lib/argp-help.c: Likewise.
24040         * lib/argp-namefrob.h: Likewise.
24041         * lib/argp-parse.c: Likewise.
24042         * lib/argp-pin.c: Likewise.
24043         * lib/argp-pv.c: Likewise.
24044         * lib/argp-pvh.c: Likewise.
24045         * lib/argp-xinl.c: Likewise.
24046         * lib/argp.h: Likewise.
24047         * lib/at-func.c: Likewise.
24048         * lib/atanl.c: Likewise.
24049         * lib/backupfile.c: Likewise.
24050         * lib/backupfile.h: Likewise.
24051         * lib/basename.c: Likewise.
24052         * lib/binary-io.h: Likewise.
24053         * lib/byteswap.in.h: Likewise.
24054         * lib/c-stack.c: Likewise.
24055         * lib/c-stack.h: Likewise.
24056         * lib/c-strcasestr.c: Likewise.
24057         * lib/c-strcasestr.h: Likewise.
24058         * lib/c-strstr.c: Likewise.
24059         * lib/c-strstr.h: Likewise.
24060         * lib/c-strtod.c: Likewise.
24061         * lib/calloc.c: Likewise.
24062         * lib/canon-host.c: Likewise.
24063         * lib/canon-host.h: Likewise.
24064         * lib/canonicalize-lgpl.c: Likewise.
24065         * lib/canonicalize.c: Likewise.
24066         * lib/canonicalize.h: Likewise.
24067         * lib/ceil.c: Likewise.
24068         * lib/ceilf.c: Likewise.
24069         * lib/ceill.c: Likewise.
24070         * lib/chdir-long.c: Likewise.
24071         * lib/chdir-long.h: Likewise.
24072         * lib/chdir-safer.c: Likewise.
24073         * lib/chdir-safer.h: Likewise.
24074         * lib/chown.c: Likewise.
24075         * lib/classpath.c: Likewise.
24076         * lib/classpath.h: Likewise.
24077         * lib/clean-temp.c: Likewise.
24078         * lib/clean-temp.h: Likewise.
24079         * lib/cloexec.c: Likewise.
24080         * lib/close-stream.c: Likewise.
24081         * lib/closein.c: Likewise.
24082         * lib/closein.h: Likewise.
24083         * lib/closeout.c: Likewise.
24084         * lib/closeout.h: Likewise.
24085         * lib/concat-filename.c: Likewise.
24086         * lib/copy-file.c: Likewise.
24087         * lib/copy-file.h: Likewise.
24088         * lib/count-one-bits.h: Likewise.
24089         * lib/crc.c: Likewise.
24090         * lib/crc.h: Likewise.
24091         * lib/creat-safer.c: Likewise.
24092         * lib/csharpcomp.c: Likewise.
24093         * lib/csharpcomp.h: Likewise.
24094         * lib/csharpexec.c: Likewise.
24095         * lib/csharpexec.h: Likewise.
24096         * lib/cycle-check.c: Likewise.
24097         * lib/cycle-check.h: Likewise.
24098         * lib/diacrit.c: Likewise.
24099         * lib/diacrit.h: Likewise.
24100         * lib/diffseq.h: Likewise.
24101         * lib/dirchownmod.c: Likewise.
24102         * lib/dirent.in.h: Likewise.
24103         * lib/dirfd.c: Likewise.
24104         * lib/dirfd.h: Likewise.
24105         * lib/dirname.c: Likewise.
24106         * lib/dirname.h: Likewise.
24107         * lib/dummy.c: Likewise.
24108         * lib/dup-safer.c: Likewise.
24109         * lib/dup2.c: Likewise.
24110         * lib/eealloc.h: Likewise.
24111         * lib/error.c: Likewise.
24112         * lib/error.h: Likewise.
24113         * lib/euidaccess.c: Likewise.
24114         * lib/exclude.c: Likewise.
24115         * lib/exclude.h: Likewise.
24116         * lib/execute.c: Likewise.
24117         * lib/execute.h: Likewise.
24118         * lib/exitfail.c: Likewise.
24119         * lib/exitfail.h: Likewise.
24120         * lib/expl.c: Likewise.
24121         * lib/fatal-signal.c: Likewise.
24122         * lib/fatal-signal.h: Likewise.
24123         * lib/fbufmode.c: Likewise.
24124         * lib/fbufmode.h: Likewise.
24125         * lib/fchdir.c: Likewise.
24126         * lib/fchmodat.c: Likewise.
24127         * lib/fchownat.c: Likewise.
24128         * lib/fcntl--.h: Likewise.
24129         * lib/fcntl-safer.h: Likewise.
24130         * lib/fcntl.in.h: Likewise.
24131         * lib/fd-safer.c: Likewise.
24132         * lib/fflush.c: Likewise.
24133         * lib/file-has-acl.c: Likewise.
24134         * lib/file-set.c: Likewise.
24135         * lib/file-type.c: Likewise.
24136         * lib/file-type.h: Likewise.
24137         * lib/fileblocks.c: Likewise.
24138         * lib/filemode.c: Likewise.
24139         * lib/filemode.h: Likewise.
24140         * lib/filename.h: Likewise.
24141         * lib/filenamecat.c: Likewise.
24142         * lib/filenamecat.h: Likewise.
24143         * lib/findprog.c: Likewise.
24144         * lib/findprog.h: Likewise.
24145         * lib/float.in.h: Likewise.
24146         * lib/floor.c: Likewise.
24147         * lib/floorf.c: Likewise.
24148         * lib/floorl.c: Likewise.
24149         * lib/fopen-safer.c: Likewise.
24150         * lib/fopen.c: Likewise.
24151         * lib/fpending.c: Likewise.
24152         * lib/fpending.h: Likewise.
24153         * lib/fprintf.c: Likewise.
24154         * lib/fprintftime.h: Likewise.
24155         * lib/fpucw.h: Likewise.
24156         * lib/fpurge.c: Likewise.
24157         * lib/fpurge.h: Likewise.
24158         * lib/freadable.c: Likewise.
24159         * lib/freadable.h: Likewise.
24160         * lib/freadahead.c: Likewise.
24161         * lib/freadahead.h: Likewise.
24162         * lib/freading.c: Likewise.
24163         * lib/freading.h: Likewise.
24164         * lib/free.c: Likewise.
24165         * lib/freopen.c: Likewise.
24166         * lib/frexp.c: Likewise.
24167         * lib/frexpl.c: Likewise.
24168         * lib/fseek.c: Likewise.
24169         * lib/fseterr.c: Likewise.
24170         * lib/fseterr.h: Likewise.
24171         * lib/fstatat.c: Likewise.
24172         * lib/fstrcmp.c: Likewise.
24173         * lib/fstrcmp.h: Likewise.
24174         * lib/fsusage.c: Likewise.
24175         * lib/fsusage.h: Likewise.
24176         * lib/ftell.c: Likewise.
24177         * lib/ftello.c: Likewise.
24178         * lib/fts-cycle.c: Likewise.
24179         * lib/fts.c: Likewise.
24180         * lib/fts_.h: Likewise.
24181         * lib/full-read.c: Likewise.
24182         * lib/full-read.h: Likewise.
24183         * lib/full-write.c: Likewise.
24184         * lib/full-write.h: Likewise.
24185         * lib/fwritable.c: Likewise.
24186         * lib/fwritable.h: Likewise.
24187         * lib/fwriteerror.c: Likewise.
24188         * lib/fwriteerror.h: Likewise.
24189         * lib/fwriting.c: Likewise.
24190         * lib/fwriting.h: Likewise.
24191         * lib/gcd.c: Likewise.
24192         * lib/gcd.h: Likewise.
24193         * lib/getcwd.c: Likewise.
24194         * lib/getdate.h: Likewise.
24195         * lib/getdate.y: Likewise.
24196         * lib/getdomainname.c: Likewise.
24197         * lib/getdomainname.h: Likewise.
24198         * lib/getgroups.c: Likewise.
24199         * lib/gethostname.c: Likewise.
24200         * lib/gethrxtime.c: Likewise.
24201         * lib/gethrxtime.h: Likewise.
24202         * lib/getloadavg.c: Likewise.
24203         * lib/getndelim2.c: Likewise.
24204         * lib/getndelim2.h: Likewise.
24205         * lib/getnline.c: Likewise.
24206         * lib/getnline.h: Likewise.
24207         * lib/getopt.c: Likewise.
24208         * lib/getopt.in.h: Likewise.
24209         * lib/getopt1.c: Likewise.
24210         * lib/getopt_int.h: Likewise.
24211         * lib/getpagesize.h: Likewise.
24212         * lib/getsubopt.c: Likewise.
24213         * lib/gettime.c: Likewise.
24214         * lib/getugroups.c: Likewise.
24215         * lib/getugroups.h: Likewise.
24216         * lib/getusershell.c: Likewise.
24217         * lib/gl_anyavltree_list1.h: Likewise.
24218         * lib/gl_anyavltree_list2.h: Likewise.
24219         * lib/gl_anyhash_list1.h: Likewise.
24220         * lib/gl_anyhash_list2.h: Likewise.
24221         * lib/gl_anylinked_list1.h: Likewise.
24222         * lib/gl_anylinked_list2.h: Likewise.
24223         * lib/gl_anyrbtree_list1.h: Likewise.
24224         * lib/gl_anyrbtree_list2.h: Likewise.
24225         * lib/gl_anytree_list1.h: Likewise.
24226         * lib/gl_anytree_list2.h: Likewise.
24227         * lib/gl_anytree_oset.h: Likewise.
24228         * lib/gl_anytreehash_list1.h: Likewise.
24229         * lib/gl_anytreehash_list2.h: Likewise.
24230         * lib/gl_array_list.c: Likewise.
24231         * lib/gl_array_list.h: Likewise.
24232         * lib/gl_array_oset.c: Likewise.
24233         * lib/gl_array_oset.h: Likewise.
24234         * lib/gl_avltree_list.c: Likewise.
24235         * lib/gl_avltree_list.h: Likewise.
24236         * lib/gl_avltree_oset.c: Likewise.
24237         * lib/gl_avltree_oset.h: Likewise.
24238         * lib/gl_avltreehash_list.c: Likewise.
24239         * lib/gl_avltreehash_list.h: Likewise.
24240         * lib/gl_carray_list.c: Likewise.
24241         * lib/gl_carray_list.h: Likewise.
24242         * lib/gl_linked_list.c: Likewise.
24243         * lib/gl_linked_list.h: Likewise.
24244         * lib/gl_linkedhash_list.c: Likewise.
24245         * lib/gl_linkedhash_list.h: Likewise.
24246         * lib/gl_list.c: Likewise.
24247         * lib/gl_list.h: Likewise.
24248         * lib/gl_oset.c: Likewise.
24249         * lib/gl_oset.h: Likewise.
24250         * lib/gl_rbtree_list.c: Likewise.
24251         * lib/gl_rbtree_list.h: Likewise.
24252         * lib/gl_rbtree_oset.c: Likewise.
24253         * lib/gl_rbtree_oset.h: Likewise.
24254         * lib/gl_rbtreehash_list.c: Likewise.
24255         * lib/gl_rbtreehash_list.h: Likewise.
24256         * lib/gl_sublist.c: Likewise.
24257         * lib/gl_sublist.h: Likewise.
24258         * lib/group-member.c: Likewise.
24259         * lib/group-member.h: Likewise.
24260         * lib/hard-locale.c: Likewise.
24261         * lib/hard-locale.h: Likewise.
24262         * lib/hash-pjw.c: Likewise.
24263         * lib/hash-pjw.h: Likewise.
24264         * lib/hash-triple.c: Likewise.
24265         * lib/hash.c: Likewise.
24266         * lib/hash.h: Likewise.
24267         * lib/human.c: Likewise.
24268         * lib/human.h: Likewise.
24269         * lib/i-ring.c: Likewise.
24270         * lib/i-ring.h: Likewise.
24271         * lib/idcache.c: Likewise.
24272         * lib/imaxabs.c: Likewise.
24273         * lib/imaxdiv.c: Likewise.
24274         * lib/inet_pton.c: Likewise.
24275         * lib/inet_pton.h: Likewise.
24276         * lib/intprops.h: Likewise.
24277         * lib/inttostr.c: Likewise.
24278         * lib/inttostr.h: Likewise.
24279         * lib/inttypes.in.h: Likewise.
24280         * lib/isapipe.c: Likewise.
24281         * lib/isdir.c: Likewise.
24282         * lib/isnan.c: Likewise.
24283         * lib/isnan.h: Likewise.
24284         * lib/isnanf.c: Likewise.
24285         * lib/isnanf.h: Likewise.
24286         * lib/isnanl-nolibm.h: Likewise.
24287         * lib/isnanl.c: Likewise.
24288         * lib/isnanl.h: Likewise.
24289         * lib/javacomp.c: Likewise.
24290         * lib/javacomp.h: Likewise.
24291         * lib/javaexec.c: Likewise.
24292         * lib/javaexec.h: Likewise.
24293         * lib/javaversion.c: Likewise.
24294         * lib/javaversion.h: Likewise.
24295         * lib/javaversion.java: Likewise.
24296         * lib/lbrkprop.h: Likewise.
24297         * lib/lchmod.h: Likewise.
24298         * lib/lchown.c: Likewise.
24299         * lib/ldexpl.c: Likewise.
24300         * lib/linebreak.c: Likewise.
24301         * lib/linebreak.h: Likewise.
24302         * lib/linebuffer.c: Likewise.
24303         * lib/linebuffer.h: Likewise.
24304         * lib/locale.in.h: Likewise.
24305         * lib/logl.c: Likewise.
24306         * lib/long-options.c: Likewise.
24307         * lib/long-options.h: Likewise.
24308         * lib/lstat.c: Likewise.
24309         * lib/lstat.h: Likewise.
24310         * lib/math.in.h: Likewise.
24311         * lib/mbchar.c: Likewise.
24312         * lib/mbchar.h: Likewise.
24313         * lib/mbfile.h: Likewise.
24314         * lib/mbiter.h: Likewise.
24315         * lib/mbscasecmp.c: Likewise.
24316         * lib/mbscasestr.c: Likewise.
24317         * lib/mbschr.c: Likewise.
24318         * lib/mbscspn.c: Likewise.
24319         * lib/mbslen.c: Likewise.
24320         * lib/mbsncasecmp.c: Likewise.
24321         * lib/mbsnlen.c: Likewise.
24322         * lib/mbspbrk.c: Likewise.
24323         * lib/mbspcasecmp.c: Likewise.
24324         * lib/mbsrchr.c: Likewise.
24325         * lib/mbssep.c: Likewise.
24326         * lib/mbsspn.c: Likewise.
24327         * lib/mbsstr.c: Likewise.
24328         * lib/mbstok_r.c: Likewise.
24329         * lib/mbswidth.c: Likewise.
24330         * lib/mbswidth.h: Likewise.
24331         * lib/mbuiter.h: Likewise.
24332         * lib/memcasecmp.c: Likewise.
24333         * lib/memcasecmp.h: Likewise.
24334         * lib/memchr.c: Likewise.
24335         * lib/memcmp.c: Likewise.
24336         * lib/memcoll.c: Likewise.
24337         * lib/memcoll.h: Likewise.
24338         * lib/memcpy.c: Likewise.
24339         * lib/memrchr.c: Likewise.
24340         * lib/mkancesdirs.c: Likewise.
24341         * lib/mkdir-p.c: Likewise.
24342         * lib/mkdir-p.h: Likewise.
24343         * lib/mkdir.c: Likewise.
24344         * lib/mkdirat.c: Likewise.
24345         * lib/mkdtemp.c: Likewise.
24346         * lib/mkstemp-safer.c: Likewise.
24347         * lib/mkstemp.c: Likewise.
24348         * lib/modechange.c: Likewise.
24349         * lib/modechange.h: Likewise.
24350         * lib/mountlist.c: Likewise.
24351         * lib/mountlist.h: Likewise.
24352         * lib/mpsort.c: Likewise.
24353         * lib/nanosleep.c: Likewise.
24354         * lib/obstack.c: Likewise.
24355         * lib/obstack.h: Likewise.
24356         * lib/open-safer.c: Likewise.
24357         * lib/open.c: Likewise.
24358         * lib/openat-die.c: Likewise.
24359         * lib/openat-priv.h: Likewise.
24360         * lib/openat-proc.c: Likewise.
24361         * lib/openat.c: Likewise.
24362         * lib/openat.h: Likewise.
24363         * lib/pagealign_alloc.c: Likewise.
24364         * lib/pagealign_alloc.h: Likewise.
24365         * lib/physmem.c: Likewise.
24366         * lib/physmem.h: Likewise.
24367         * lib/pipe-safer.c: Likewise.
24368         * lib/pipe.c: Likewise.
24369         * lib/pipe.h: Likewise.
24370         * lib/posixtm.c: Likewise.
24371         * lib/posixtm.h: Likewise.
24372         * lib/posixver.c: Likewise.
24373         * lib/printf-frexp.c: Likewise.
24374         * lib/printf-frexp.h: Likewise.
24375         * lib/printf-frexpl.c: Likewise.
24376         * lib/printf-frexpl.h: Likewise.
24377         * lib/printf.c: Likewise.
24378         * lib/progname.c: Likewise.
24379         * lib/progname.h: Likewise.
24380         * lib/progreloc.c: Likewise.
24381         * lib/putenv.c: Likewise.
24382         * lib/quote.c: Likewise.
24383         * lib/quote.h: Likewise.
24384         * lib/quotearg.c: Likewise.
24385         * lib/quotearg.h: Likewise.
24386         * lib/raise.c: Likewise.
24387         * lib/readline.c: Likewise.
24388         * lib/readline.h: Likewise.
24389         * lib/readlink.c: Likewise.
24390         * lib/readtokens.c: Likewise.
24391         * lib/readtokens.h: Likewise.
24392         * lib/readtokens0.c: Likewise.
24393         * lib/readtokens0.h: Likewise.
24394         * lib/readutmp.c: Likewise.
24395         * lib/readutmp.h: Likewise.
24396         * lib/realloc.c: Likewise.
24397         * lib/relocwrapper.c: Likewise.
24398         * lib/rename-dest-slash.c: Likewise.
24399         * lib/rename.c: Likewise.
24400         * lib/rmdir.c: Likewise.
24401         * lib/rpmatch.c: Likewise.
24402         * lib/safe-read.c: Likewise.
24403         * lib/safe-read.h: Likewise.
24404         * lib/safe-write.c: Likewise.
24405         * lib/safe-write.h: Likewise.
24406         * lib/same-inode.h: Likewise.
24407         * lib/same.c: Likewise.
24408         * lib/same.h: Likewise.
24409         * lib/save-cwd.c: Likewise.
24410         * lib/save-cwd.h: Likewise.
24411         * lib/savedir.c: Likewise.
24412         * lib/savedir.h: Likewise.
24413         * lib/savewd.c: Likewise.
24414         * lib/savewd.h: Likewise.
24415         * lib/search.in.h: Likewise.
24416         * lib/setenv.c: Likewise.
24417         * lib/setenv.h: Likewise.
24418         * lib/settime.c: Likewise.
24419         * lib/sh-quote.c: Likewise.
24420         * lib/sh-quote.h: Likewise.
24421         * lib/sig2str.c: Likewise.
24422         * lib/sig2str.h: Likewise.
24423         * lib/signal.in.h: Likewise.
24424         * lib/signbitd.c: Likewise.
24425         * lib/signbitf.c: Likewise.
24426         * lib/signbitl.c: Likewise.
24427         * lib/sigprocmask.c: Likewise.
24428         * lib/sincosl.c: Likewise.
24429         * lib/sleep.c: Likewise.
24430         * lib/sprintf.c: Likewise.
24431         * lib/sqrtl.c: Likewise.
24432         * lib/stat-time.h: Likewise.
24433         * lib/stdio--.h: Likewise.
24434         * lib/stdio-safer.h: Likewise.
24435         * lib/stdlib--.h: Likewise.
24436         * lib/stdlib-safer.h: Likewise.
24437         * lib/stdlib.in.h: Likewise.
24438         * lib/stpcpy.c: Likewise.
24439         * lib/stpncpy.c: Likewise.
24440         * lib/strchrnul.c: Likewise.
24441         * lib/strcspn.c: Likewise.
24442         * lib/strerror.c: Likewise.
24443         * lib/strftime.c: Likewise.
24444         * lib/strftime.h: Likewise.
24445         * lib/striconveh.c: Likewise.
24446         * lib/striconveh.h: Likewise.
24447         * lib/striconveha.c: Likewise.
24448         * lib/striconveha.h: Likewise.
24449         * lib/stripslash.c: Likewise.
24450         * lib/strnlen1.c: Likewise.
24451         * lib/strnlen1.h: Likewise.
24452         * lib/strtod.c: Likewise.
24453         * lib/strtoimax.c: Likewise.
24454         * lib/strtok_r.c: Likewise.
24455         * lib/strtol.c: Likewise.
24456         * lib/strtoll.c: Likewise.
24457         * lib/strtoul.c: Likewise.
24458         * lib/strtoull.c: Likewise.
24459         * lib/sysexits.in.h: Likewise.
24460         * lib/tempname.c: Likewise.
24461         * lib/tempname.h: Likewise.
24462         * lib/timespec.h: Likewise.
24463         * lib/tls.c: Likewise.
24464         * lib/tls.h: Likewise.
24465         * lib/tmpdir.c: Likewise.
24466         * lib/tmpdir.h: Likewise.
24467         * lib/tmpfile-safer.c: Likewise.
24468         * lib/tmpfile.c: Likewise.
24469         * lib/trigl.c: Likewise.
24470         * lib/trigl.h: Likewise.
24471         * lib/trim.c: Likewise.
24472         * lib/trim.h: Likewise.
24473         * lib/trunc.c: Likewise.
24474         * lib/truncf.c: Likewise.
24475         * lib/truncl.c: Likewise.
24476         * lib/tsearch.c: Likewise.
24477         * lib/unicodeio.c: Likewise.
24478         * lib/unicodeio.h: Likewise.
24479         * lib/unistd--.h: Likewise.
24480         * lib/unistd-safer.h: Likewise.
24481         * lib/unistdio/ulc-fprintf.c: Likewise.
24482         * lib/unistdio/ulc-vfprintf.c: Likewise.
24483         * lib/unlinkdir.c: Likewise.
24484         * lib/unlinkdir.h: Likewise.
24485         * lib/unlocked-io.h: Likewise.
24486         * lib/unsetenv.c: Likewise.
24487         * lib/userspec.c: Likewise.
24488         * lib/utime.c: Likewise.
24489         * lib/utimecmp.c: Likewise.
24490         * lib/utimecmp.h: Likewise.
24491         * lib/utimens.c: Likewise.
24492         * lib/verify.h: Likewise.
24493         * lib/verror.c: Likewise.
24494         * lib/verror.h: Likewise.
24495         * lib/version-etc-fsf.c: Likewise.
24496         * lib/version-etc.c: Likewise.
24497         * lib/version-etc.h: Likewise.
24498         * lib/vfprintf.c: Likewise.
24499         * lib/vprintf.c: Likewise.
24500         * lib/vsprintf.c: Likewise.
24501         * lib/w32spawn.h: Likewise.
24502         * lib/wait-process.c: Likewise.
24503         * lib/wait-process.h: Likewise.
24504         * lib/wcwidth.c: Likewise.
24505         * lib/write-any-file.c: Likewise.
24506         * lib/xalloc-die.c: Likewise.
24507         * lib/xalloc.h: Likewise.
24508         * lib/xasprintf.c: Likewise.
24509         * lib/xgetcwd.c: Likewise.
24510         * lib/xgetcwd.h: Likewise.
24511         * lib/xgetdomainname.c: Likewise.
24512         * lib/xgetdomainname.h: Likewise.
24513         * lib/xgethostname.c: Likewise.
24514         * lib/xmalloc.c: Likewise.
24515         * lib/xmalloca.c: Likewise.
24516         * lib/xmalloca.h: Likewise.
24517         * lib/xmemcoll.c: Likewise.
24518         * lib/xnanosleep.c: Likewise.
24519         * lib/xreadlink.c: Likewise.
24520         * lib/xreadlink.h: Likewise.
24521         * lib/xsetenv.c: Likewise.
24522         * lib/xsetenv.h: Likewise.
24523         * lib/xstriconv.c: Likewise.
24524         * lib/xstriconv.h: Likewise.
24525         * lib/xstrndup.c: Likewise.
24526         * lib/xstrndup.h: Likewise.
24527         * lib/xstrtod.c: Likewise.
24528         * lib/xstrtod.h: Likewise.
24529         * lib/xstrtol-error.c: Likewise.
24530         * lib/xstrtol.c: Likewise.
24531         * lib/xstrtol.h: Likewise.
24532         * lib/xtime.h: Likewise.
24533         * lib/xvasprintf.c: Likewise.
24534         * lib/xvasprintf.h: Likewise.
24535         * lib/yesno.c: Likewise.
24536         * lib/yesno.h: Likewise.
24537         * posix-modules: Likewise.
24538         * tests/test-alloca-opt.c: Likewise.
24539         * tests/test-arcfour.c: Likewise.
24540         * tests/test-arctwo.c: Likewise.
24541         * tests/test-argmatch.c: Likewise.
24542         * tests/test-argp-2.sh: Likewise.
24543         * tests/test-argp.c: Likewise.
24544         * tests/test-arpa_inet.c: Likewise.
24545         * tests/test-array_list.c: Likewise.
24546         * tests/test-array_oset.c: Likewise.
24547         * tests/test-atexit.c: Likewise.
24548         * tests/test-avltree_list.c: Likewise.
24549         * tests/test-avltree_oset.c: Likewise.
24550         * tests/test-avltreehash_list.c: Likewise.
24551         * tests/test-base64.c: Likewise.
24552         * tests/test-binary-io.c: Likewise.
24553         * tests/test-byteswap.c: Likewise.
24554         * tests/test-c-ctype.c: Likewise.
24555         * tests/test-c-strcasecmp.c: Likewise.
24556         * tests/test-c-strcasestr.c: Likewise.
24557         * tests/test-c-strncasecmp.c: Likewise.
24558         * tests/test-c-strstr.c: Likewise.
24559         * tests/test-canonicalize-lgpl.c: Likewise.
24560         * tests/test-canonicalize.c: Likewise.
24561         * tests/test-carray_list.c: Likewise.
24562         * tests/test-ceilf.c: Likewise.
24563         * tests/test-ceill.c: Likewise.
24564         * tests/test-count-one-bits.c: Likewise.
24565         * tests/test-crc.c: Likewise.
24566         * tests/test-dirname.c: Likewise.
24567         * tests/test-fbufmode.c: Likewise.
24568         * tests/test-fcntl.c: Likewise.
24569         * tests/test-fflush.c: Likewise.
24570         * tests/test-floorf.c: Likewise.
24571         * tests/test-floorl.c: Likewise.
24572         * tests/test-fopen.c: Likewise.
24573         * tests/test-fprintf-posix.c: Likewise.
24574         * tests/test-fprintf-posix.h: Likewise.
24575         * tests/test-fpurge.c: Likewise.
24576         * tests/test-freadable.c: Likewise.
24577         * tests/test-freadahead.c: Likewise.
24578         * tests/test-freading.c: Likewise.
24579         * tests/test-freopen.c: Likewise.
24580         * tests/test-frexp.c: Likewise.
24581         * tests/test-frexpl.c: Likewise.
24582         * tests/test-fseek.c: Likewise.
24583         * tests/test-fseeko.c: Likewise.
24584         * tests/test-fseterr.c: Likewise.
24585         * tests/test-fstrcmp.c: Likewise.
24586         * tests/test-ftell.c: Likewise.
24587         * tests/test-ftello.c: Likewise.
24588         * tests/test-fwritable.c: Likewise.
24589         * tests/test-fwriting.c: Likewise.
24590         * tests/test-getaddrinfo.c: Likewise.
24591         * tests/test-getpass.c: Likewise.
24592         * tests/test-gettimeofday.c: Likewise.
24593         * tests/test-hmac-md5.c: Likewise.
24594         * tests/test-hmac-sha1.c: Likewise.
24595         * tests/test-iconv.c: Likewise.
24596         * tests/test-iconvme.c: Likewise.
24597         * tests/test-inttypes.c: Likewise.
24598         * tests/test-isnan.c: Likewise.
24599         * tests/test-isnanf.c: Likewise.
24600         * tests/test-isnanl-nolibm.c: Likewise.
24601         * tests/test-isnanl.c: Likewise.
24602         * tests/test-isnanl.h: Likewise.
24603         * tests/test-ldexpl.c: Likewise.
24604         * tests/test-linked_list.c: Likewise.
24605         * tests/test-linkedhash_list.c: Likewise.
24606         * tests/test-locale.c: Likewise.
24607         * tests/test-localename.c: Likewise.
24608         * tests/test-lock.c: Likewise.
24609         * tests/test-lseek.c: Likewise.
24610         * tests/test-malloca.c: Likewise.
24611         * tests/test-math.c: Likewise.
24612         * tests/test-mbscasecmp.c: Likewise.
24613         * tests/test-mbscasestr1.c: Likewise.
24614         * tests/test-mbscasestr2.c: Likewise.
24615         * tests/test-mbscasestr3.c: Likewise.
24616         * tests/test-mbscasestr4.c: Likewise.
24617         * tests/test-mbschr.c: Likewise.
24618         * tests/test-mbscspn.c: Likewise.
24619         * tests/test-mbsncasecmp.c: Likewise.
24620         * tests/test-mbspbrk.c: Likewise.
24621         * tests/test-mbspcasecmp.c: Likewise.
24622         * tests/test-mbsrchr.c: Likewise.
24623         * tests/test-mbsspn.c: Likewise.
24624         * tests/test-mbsstr1.c: Likewise.
24625         * tests/test-mbsstr2.c: Likewise.
24626         * tests/test-mbsstr3.c: Likewise.
24627         * tests/test-md5.c: Likewise.
24628         * tests/test-memmem.c: Likewise.
24629         * tests/test-netinet_in.c: Likewise.
24630         * tests/test-open.c: Likewise.
24631         * tests/test-printf-frexp.c: Likewise.
24632         * tests/test-printf-frexpl.c: Likewise.
24633         * tests/test-printf-posix.c: Likewise.
24634         * tests/test-printf-posix.h: Likewise.
24635         * tests/test-rbtree_list.c: Likewise.
24636         * tests/test-rbtree_oset.c: Likewise.
24637         * tests/test-rbtreehash_list.c: Likewise.
24638         * tests/test-read-file.c: Likewise.
24639         * tests/test-rijndael.c: Likewise.
24640         * tests/test-search.c: Likewise.
24641         * tests/test-signbit.c: Likewise.
24642         * tests/test-sleep.c: Likewise.
24643         * tests/test-snprintf-posix.c: Likewise.
24644         * tests/test-snprintf-posix.h: Likewise.
24645         * tests/test-snprintf.c: Likewise.
24646         * tests/test-sprintf-posix.c: Likewise.
24647         * tests/test-sprintf-posix.h: Likewise.
24648         * tests/test-stat-time.c: Likewise.
24649         * tests/test-stdbool.c: Likewise.
24650         * tests/test-stdint.c: Likewise.
24651         * tests/test-stdio.c: Likewise.
24652         * tests/test-stdlib.c: Likewise.
24653         * tests/test-stpncpy.c: Likewise.
24654         * tests/test-strcasestr.c: Likewise.
24655         * tests/test-striconv.c: Likewise.
24656         * tests/test-striconveh.c: Likewise.
24657         * tests/test-striconveha.c: Likewise.
24658         * tests/test-string.c: Likewise.
24659         * tests/test-sys_select.c: Likewise.
24660         * tests/test-sys_socket.c: Likewise.
24661         * tests/test-sys_stat.c: Likewise.
24662         * tests/test-sys_time.c: Likewise.
24663         * tests/test-sysexits.c: Likewise.
24664         * tests/test-time.c: Likewise.
24665         * tests/test-tls.c: Likewise.
24666         * tests/test-trunc.c: Likewise.
24667         * tests/test-truncf.c: Likewise.
24668         * tests/test-truncl.c: Likewise.
24669         * tests/test-unistd.c: Likewise.
24670         * tests/test-vasnprintf-posix.c: Likewise.
24671         * tests/test-vasnprintf-posix2.c: Likewise.
24672         * tests/test-vasnprintf.c: Likewise.
24673         * tests/test-vasprintf-posix.c: Likewise.
24674         * tests/test-vasprintf.c: Likewise.
24675         * tests/test-verify.c: Likewise.
24676         * tests/test-vfprintf-posix.c: Likewise.
24677         * tests/test-vprintf-posix.c: Likewise.
24678         * tests/test-vsnprintf-posix.c: Likewise.
24679         * tests/test-vsnprintf.c: Likewise.
24680         * tests/test-vsprintf-posix.c: Likewise.
24681         * tests/test-wchar.c: Likewise.
24682         * tests/test-wctype.c: Likewise.
24683         * tests/test-wcwidth.c: Likewise.
24684         * tests/test-xstrtol.c: Likewise.
24685         * tests/test-xvasprintf.c: Likewise.
24686         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
24687         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
24688         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
24689         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
24690         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
24691         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
24692         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
24693         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
24694         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
24695         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
24696         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
24697         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
24698         * tests/uniname/test-uninames.c: Likewise.
24699         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
24700         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
24701         * tests/unistdio/test-u16-printf1.h: Likewise.
24702         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
24703         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
24704         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
24705         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
24706         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
24707         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
24708         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
24709         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
24710         * tests/unistdio/test-u32-printf1.h: Likewise.
24711         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
24712         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
24713         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
24714         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
24715         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
24716         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
24717         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
24718         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
24719         * tests/unistdio/test-u8-printf1.h: Likewise.
24720         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
24721         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
24722         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
24723         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
24724         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
24725         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
24726         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
24727         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
24728         * tests/unistdio/test-ulc-printf1.h: Likewise.
24729         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
24730         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
24731         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
24732         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
24733         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
24734         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
24735         * tests/uniwidth/test-u16-strwidth.c: Likewise.
24736         * tests/uniwidth/test-u16-width.c: Likewise.
24737         * tests/uniwidth/test-u32-strwidth.c: Likewise.
24738         * tests/uniwidth/test-u32-width.c: Likewise.
24739         * tests/uniwidth/test-u8-strwidth.c: Likewise.
24740         * tests/uniwidth/test-u8-width.c: Likewise.
24741         * tests/uniwidth/test-uc_width.c: Likewise.
24742         * config/srclist-update: Likewise.
24743         (fixlicense): Update to GPLv3+.
24744
24745         Change copyright notice from LGPLv2.1+ to LGPLv3+.
24746         * tests/test-tsearch.c: Change copyright notice.
24747
24748         Change copyright notice from LGPLv2.0+ to LGPLv3+.
24749         * lib/c-strcaseeq.h: Change copyright notice.
24750         * lib/streq.h: Likewise.
24751         * lib/uniconv.h: Likewise.
24752         * lib/uniconv/u-conv-from-enc.h: Likewise.
24753         * lib/uniconv/u-conv-to-enc.h: Likewise.
24754         * lib/uniconv/u-strconv-from-enc.h: Likewise.
24755         * lib/uniconv/u-strconv-to-enc.h: Likewise.
24756         * lib/uniconv/u16-conv-from-enc.c: Likewise.
24757         * lib/uniconv/u16-conv-to-enc.c: Likewise.
24758         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
24759         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
24760         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
24761         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
24762         * lib/uniconv/u32-conv-from-enc.c: Likewise.
24763         * lib/uniconv/u32-conv-to-enc.c: Likewise.
24764         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
24765         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
24766         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
24767         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
24768         * lib/uniconv/u8-conv-from-enc.c: Likewise.
24769         * lib/uniconv/u8-conv-to-enc.c: Likewise.
24770         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
24771         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
24772         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
24773         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
24774         * lib/uniname.h: Likewise.
24775         * lib/uniname/uniname.c: Likewise.
24776         * lib/unistdio.h: Likewise.
24777         * lib/unistdio/u-asnprintf.h: Likewise.
24778         * lib/unistdio/u-asprintf.h: Likewise.
24779         * lib/unistdio/u-printf-args.c: Likewise.
24780         * lib/unistdio/u-printf-args.h: Likewise.
24781         * lib/unistdio/u-printf-parse.h: Likewise.
24782         * lib/unistdio/u-snprintf.h: Likewise.
24783         * lib/unistdio/u-sprintf.h: Likewise.
24784         * lib/unistdio/u-vasprintf.h: Likewise.
24785         * lib/unistdio/u-vsnprintf.h: Likewise.
24786         * lib/unistdio/u-vsprintf.h: Likewise.
24787         * lib/unistdio/u16-asnprintf.c: Likewise.
24788         * lib/unistdio/u16-asprintf.c: Likewise.
24789         * lib/unistdio/u16-printf-parse.c: Likewise.
24790         * lib/unistdio/u16-snprintf.c: Likewise.
24791         * lib/unistdio/u16-sprintf.c: Likewise.
24792         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
24793         * lib/unistdio/u16-u16-asprintf.c: Likewise.
24794         * lib/unistdio/u16-u16-snprintf.c: Likewise.
24795         * lib/unistdio/u16-u16-sprintf.c: Likewise.
24796         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
24797         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
24798         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
24799         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
24800         * lib/unistdio/u16-vasnprintf.c: Likewise.
24801         * lib/unistdio/u16-vasprintf.c: Likewise.
24802         * lib/unistdio/u16-vsnprintf.c: Likewise.
24803         * lib/unistdio/u16-vsprintf.c: Likewise.
24804         * lib/unistdio/u32-asnprintf.c: Likewise.
24805         * lib/unistdio/u32-asprintf.c: Likewise.
24806         * lib/unistdio/u32-printf-parse.c: Likewise.
24807         * lib/unistdio/u32-snprintf.c: Likewise.
24808         * lib/unistdio/u32-sprintf.c: Likewise.
24809         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
24810         * lib/unistdio/u32-u32-asprintf.c: Likewise.
24811         * lib/unistdio/u32-u32-snprintf.c: Likewise.
24812         * lib/unistdio/u32-u32-sprintf.c: Likewise.
24813         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
24814         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
24815         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
24816         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
24817         * lib/unistdio/u32-vasnprintf.c: Likewise.
24818         * lib/unistdio/u32-vasprintf.c: Likewise.
24819         * lib/unistdio/u32-vsnprintf.c: Likewise.
24820         * lib/unistdio/u32-vsprintf.c: Likewise.
24821         * lib/unistdio/u8-asnprintf.c: Likewise.
24822         * lib/unistdio/u8-asprintf.c: Likewise.
24823         * lib/unistdio/u8-printf-parse.c: Likewise.
24824         * lib/unistdio/u8-snprintf.c: Likewise.
24825         * lib/unistdio/u8-sprintf.c: Likewise.
24826         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
24827         * lib/unistdio/u8-u8-asprintf.c: Likewise.
24828         * lib/unistdio/u8-u8-snprintf.c: Likewise.
24829         * lib/unistdio/u8-u8-sprintf.c: Likewise.
24830         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
24831         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
24832         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
24833         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
24834         * lib/unistdio/u8-vasnprintf.c: Likewise.
24835         * lib/unistdio/u8-vasprintf.c: Likewise.
24836         * lib/unistdio/u8-vsnprintf.c: Likewise.
24837         * lib/unistdio/u8-vsprintf.c: Likewise.
24838         * lib/unistdio/ulc-asnprintf.c: Likewise.
24839         * lib/unistdio/ulc-asprintf.c: Likewise.
24840         * lib/unistdio/ulc-printf-parse.c: Likewise.
24841         * lib/unistdio/ulc-snprintf.c: Likewise.
24842         * lib/unistdio/ulc-sprintf.c: Likewise.
24843         * lib/unistdio/ulc-vasnprintf.c: Likewise.
24844         * lib/unistdio/ulc-vasprintf.c: Likewise.
24845         * lib/unistdio/ulc-vsnprintf.c: Likewise.
24846         * lib/unistdio/ulc-vsprintf.c: Likewise.
24847         * lib/unistr.h: Likewise.
24848         * lib/unistr/u-cpy-alloc.h: Likewise.
24849         * lib/unistr/u-cpy.h: Likewise.
24850         * lib/unistr/u-endswith.h: Likewise.
24851         * lib/unistr/u-move.h: Likewise.
24852         * lib/unistr/u-set.h: Likewise.
24853         * lib/unistr/u-startswith.h: Likewise.
24854         * lib/unistr/u-stpcpy.h: Likewise.
24855         * lib/unistr/u-stpncpy.h: Likewise.
24856         * lib/unistr/u-strcat.h: Likewise.
24857         * lib/unistr/u-strcpy.h: Likewise.
24858         * lib/unistr/u-strcspn.h: Likewise.
24859         * lib/unistr/u-strdup.h: Likewise.
24860         * lib/unistr/u-strlen.h: Likewise.
24861         * lib/unistr/u-strncat.h: Likewise.
24862         * lib/unistr/u-strncpy.h: Likewise.
24863         * lib/unistr/u-strnlen.h: Likewise.
24864         * lib/unistr/u-strpbrk.h: Likewise.
24865         * lib/unistr/u-strspn.h: Likewise.
24866         * lib/unistr/u-strstr.h: Likewise.
24867         * lib/unistr/u-strtok.h: Likewise.
24868         * lib/unistr/u16-check.c: Likewise.
24869         * lib/unistr/u16-chr.c: Likewise.
24870         * lib/unistr/u16-cmp.c: Likewise.
24871         * lib/unistr/u16-cpy-alloc.c: Likewise.
24872         * lib/unistr/u16-cpy.c: Likewise.
24873         * lib/unistr/u16-endswith.c: Likewise.
24874         * lib/unistr/u16-mblen.c: Likewise.
24875         * lib/unistr/u16-mbsnlen.c: Likewise.
24876         * lib/unistr/u16-mbtouc-aux.c: Likewise.
24877         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
24878         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
24879         * lib/unistr/u16-mbtouc.c: Likewise.
24880         * lib/unistr/u16-mbtoucr.c: Likewise.
24881         * lib/unistr/u16-move.c: Likewise.
24882         * lib/unistr/u16-next.c: Likewise.
24883         * lib/unistr/u16-prev.c: Likewise.
24884         * lib/unistr/u16-set.c: Likewise.
24885         * lib/unistr/u16-startswith.c: Likewise.
24886         * lib/unistr/u16-stpcpy.c: Likewise.
24887         * lib/unistr/u16-stpncpy.c: Likewise.
24888         * lib/unistr/u16-strcat.c: Likewise.
24889         * lib/unistr/u16-strchr.c: Likewise.
24890         * lib/unistr/u16-strcmp.c: Likewise.
24891         * lib/unistr/u16-strcpy.c: Likewise.
24892         * lib/unistr/u16-strcspn.c: Likewise.
24893         * lib/unistr/u16-strdup.c: Likewise.
24894         * lib/unistr/u16-strlen.c: Likewise.
24895         * lib/unistr/u16-strmblen.c: Likewise.
24896         * lib/unistr/u16-strmbtouc.c: Likewise.
24897         * lib/unistr/u16-strncat.c: Likewise.
24898         * lib/unistr/u16-strncmp.c: Likewise.
24899         * lib/unistr/u16-strncpy.c: Likewise.
24900         * lib/unistr/u16-strnlen.c: Likewise.
24901         * lib/unistr/u16-strpbrk.c: Likewise.
24902         * lib/unistr/u16-strrchr.c: Likewise.
24903         * lib/unistr/u16-strspn.c: Likewise.
24904         * lib/unistr/u16-strstr.c: Likewise.
24905         * lib/unistr/u16-strtok.c: Likewise.
24906         * lib/unistr/u16-to-u32.c: Likewise.
24907         * lib/unistr/u16-to-u8.c: Likewise.
24908         * lib/unistr/u16-uctomb-aux.c: Likewise.
24909         * lib/unistr/u16-uctomb.c: Likewise.
24910         * lib/unistr/u32-check.c: Likewise.
24911         * lib/unistr/u32-chr.c: Likewise.
24912         * lib/unistr/u32-cmp.c: Likewise.
24913         * lib/unistr/u32-cpy-alloc.c: Likewise.
24914         * lib/unistr/u32-cpy.c: Likewise.
24915         * lib/unistr/u32-endswith.c: Likewise.
24916         * lib/unistr/u32-mblen.c: Likewise.
24917         * lib/unistr/u32-mbsnlen.c: Likewise.
24918         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
24919         * lib/unistr/u32-mbtouc.c: Likewise.
24920         * lib/unistr/u32-mbtoucr.c: Likewise.
24921         * lib/unistr/u32-move.c: Likewise.
24922         * lib/unistr/u32-next.c: Likewise.
24923         * lib/unistr/u32-prev.c: Likewise.
24924         * lib/unistr/u32-set.c: Likewise.
24925         * lib/unistr/u32-startswith.c: Likewise.
24926         * lib/unistr/u32-stpcpy.c: Likewise.
24927         * lib/unistr/u32-stpncpy.c: Likewise.
24928         * lib/unistr/u32-strcat.c: Likewise.
24929         * lib/unistr/u32-strchr.c: Likewise.
24930         * lib/unistr/u32-strcmp.c: Likewise.
24931         * lib/unistr/u32-strcpy.c: Likewise.
24932         * lib/unistr/u32-strcspn.c: Likewise.
24933         * lib/unistr/u32-strdup.c: Likewise.
24934         * lib/unistr/u32-strlen.c: Likewise.
24935         * lib/unistr/u32-strmblen.c: Likewise.
24936         * lib/unistr/u32-strmbtouc.c: Likewise.
24937         * lib/unistr/u32-strncat.c: Likewise.
24938         * lib/unistr/u32-strncmp.c: Likewise.
24939         * lib/unistr/u32-strncpy.c: Likewise.
24940         * lib/unistr/u32-strnlen.c: Likewise.
24941         * lib/unistr/u32-strpbrk.c: Likewise.
24942         * lib/unistr/u32-strrchr.c: Likewise.
24943         * lib/unistr/u32-strspn.c: Likewise.
24944         * lib/unistr/u32-strstr.c: Likewise.
24945         * lib/unistr/u32-strtok.c: Likewise.
24946         * lib/unistr/u32-to-u16.c: Likewise.
24947         * lib/unistr/u32-to-u8.c: Likewise.
24948         * lib/unistr/u32-uctomb.c: Likewise.
24949         * lib/unistr/u8-check.c: Likewise.
24950         * lib/unistr/u8-chr.c: Likewise.
24951         * lib/unistr/u8-cmp.c: Likewise.
24952         * lib/unistr/u8-cpy-alloc.c: Likewise.
24953         * lib/unistr/u8-cpy.c: Likewise.
24954         * lib/unistr/u8-endswith.c: Likewise.
24955         * lib/unistr/u8-mblen.c: Likewise.
24956         * lib/unistr/u8-mbsnlen.c: Likewise.
24957         * lib/unistr/u8-mbtouc-aux.c: Likewise.
24958         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
24959         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
24960         * lib/unistr/u8-mbtouc.c: Likewise.
24961         * lib/unistr/u8-mbtoucr.c: Likewise.
24962         * lib/unistr/u8-move.c: Likewise.
24963         * lib/unistr/u8-next.c: Likewise.
24964         * lib/unistr/u8-prev.c: Likewise.
24965         * lib/unistr/u8-set.c: Likewise.
24966         * lib/unistr/u8-startswith.c: Likewise.
24967         * lib/unistr/u8-stpcpy.c: Likewise.
24968         * lib/unistr/u8-stpncpy.c: Likewise.
24969         * lib/unistr/u8-strcat.c: Likewise.
24970         * lib/unistr/u8-strchr.c: Likewise.
24971         * lib/unistr/u8-strcmp.c: Likewise.
24972         * lib/unistr/u8-strcpy.c: Likewise.
24973         * lib/unistr/u8-strcspn.c: Likewise.
24974         * lib/unistr/u8-strdup.c: Likewise.
24975         * lib/unistr/u8-strlen.c: Likewise.
24976         * lib/unistr/u8-strmblen.c: Likewise.
24977         * lib/unistr/u8-strmbtouc.c: Likewise.
24978         * lib/unistr/u8-strncat.c: Likewise.
24979         * lib/unistr/u8-strncmp.c: Likewise.
24980         * lib/unistr/u8-strncpy.c: Likewise.
24981         * lib/unistr/u8-strnlen.c: Likewise.
24982         * lib/unistr/u8-strpbrk.c: Likewise.
24983         * lib/unistr/u8-strrchr.c: Likewise.
24984         * lib/unistr/u8-strspn.c: Likewise.
24985         * lib/unistr/u8-strstr.c: Likewise.
24986         * lib/unistr/u8-strtok.c: Likewise.
24987         * lib/unistr/u8-to-u16.c: Likewise.
24988         * lib/unistr/u8-to-u32.c: Likewise.
24989         * lib/unistr/u8-uctomb-aux.c: Likewise.
24990         * lib/unistr/u8-uctomb.c: Likewise.
24991         * lib/unitypes.h: Likewise.
24992         * lib/uniwidth.h: Likewise.
24993         * lib/uniwidth/cjk.h: Likewise.
24994         * lib/uniwidth/u16-strwidth.c: Likewise.
24995         * lib/uniwidth/u16-width.c: Likewise.
24996         * lib/uniwidth/u32-strwidth.c: Likewise.
24997         * lib/uniwidth/u32-width.c: Likewise.
24998         * lib/uniwidth/u8-strwidth.c: Likewise.
24999         * lib/uniwidth/u8-width.c: Likewise.
25000         * lib/uniwidth/width.c: Likewise.
25001
25002 2007-10-07  Bruno Haible  <bruno@clisp.org>
25003
25004         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
25005         The file is still under LGPL (see modules/inttypes).
25006
25007 2007-10-06  Bruno Haible  <bruno@clisp.org>
25008
25009         * modules/trunc (Dependencies): Add 'extensions'.
25010         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
25011         Reported by Ben Pfaff <blp@gnu.org>.
25012
25013 2007-10-06  Bruno Haible  <bruno@clisp.org>
25014
25015         * modules/freopen-tests: New file.
25016         * tests/test-freopen.c: New file.
25017
25018         * modules/fopen-tests: New file.
25019         * tests/test-fopen.c: New file.
25020
25021         * modules/fopen: New file.
25022         * lib/fopen.c: New file.
25023         * m4/fopen.m4: New file.
25024         * modules/freopen: New file.
25025         * lib/freopen.c: New file.
25026         * m4/freopen.m4: New file.
25027         * lib/stdio.in.h (fopen, freopen): New declarations.
25028         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
25029         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
25030         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
25031         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
25032         * doc/functions/fopen.texi: Mention the 'fopen' module.
25033         * doc/functions/freopen.texi: Mention the 'freopen' module.
25034
25035 2007-10-06  Bruno Haible  <bruno@clisp.org>
25036
25037         * modules/open-tests: New file.
25038         * tests/test-open.c: New file.
25039
25040         * modules/open: New file.
25041         * lib/open.c: New file.
25042         * m4/open.m4: New file.
25043         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
25044         lib/open.c does.
25045         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
25046         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
25047         macros.
25048         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
25049         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
25050         REPLACE_OPEN.
25051         * doc/functions/open.texi: Mention the 'open' module.
25052
25053 2007-10-04  Bruno Haible  <bruno@clisp.org>
25054
25055         * modules/ceill-tests: New file.
25056         * tests/test-ceill.c: New file.
25057
25058         * modules/ceill: New file.
25059         * lib/ceill.c: Replace entire file.
25060         * m4/ceill.m4: New file.
25061         * lib/math.in.h (ceill): Replace declaration.
25062         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
25063         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
25064         * doc/functions/ceill.texi: Mention the 'ceill' module.
25065         * modules/mathl (Files): Remove lib/ceill.c.
25066         (Depends-on): Add ceill.
25067
25068 2007-10-04  Bruno Haible  <bruno@clisp.org>
25069
25070         * modules/ceilf-tests: New file.
25071         * tests/test-ceilf.c: New file.
25072
25073         * modules/ceilf: New file.
25074         * lib/ceil.c: New file.
25075         * lib/ceilf.c: New file.
25076         * m4/ceilf.m4: New file.
25077         * lib/math.in.h (ceilf): New declaration.
25078         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
25079         HAVE_DECL_CEILF.
25080         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
25081         HAVE_DECL_CEILF.
25082         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
25083
25084 2007-10-04  Bruno Haible  <bruno@clisp.org>
25085
25086         * modules/floorl-tests: New file.
25087         * tests/test-floorl.c: New file.
25088
25089         * modules/floorl: New file.
25090         * lib/floorl.c: Replace entire file.
25091         * m4/floorl.m4: New file.
25092         * lib/math.in.h (floorl): Replace declaration.
25093         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
25094         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
25095         * doc/functions/floorl.texi: Mention the 'floorl' module.
25096         * modules/mathl (Files): Remove lib/floorl.c.
25097         (Depends-on): Add floorl.
25098
25099 2007-10-04  Bruno Haible  <bruno@clisp.org>
25100
25101         * modules/floorf-tests: New file.
25102         * tests/test-floorf.c: New file.
25103
25104         * modules/floorf: New file.
25105         * lib/floor.c: New file.
25106         * lib/floorf.c: New file.
25107         * m4/floorf.m4: New file.
25108         * lib/math.in.h (floorf): New declaration.
25109         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
25110         HAVE_DECL_FLOORF.
25111         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
25112         HAVE_DECL_FLOORF.
25113         * doc/functions/floorf.texi: Mention the 'floorf' module.
25114
25115 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
25116             Bruno Haible  <bruno@clisp.org>
25117
25118         Advertise for the Git server instead of the CVS server.
25119         * doc/gnulib-intro.texi (Steady Development): Mention the Git
25120         repository instead of the CVS one.
25121         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
25122         about all VCS systems generically.
25123         * doc/gnulib.texi (Introduction): Capitalize `Git'.
25124
25125 2007-10-04  Bruno Haible  <bruno@clisp.org>
25126
25127         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
25128         means.
25129         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
25130
25131 2007-10-04  Bruno Haible  <bruno@clisp.org>
25132
25133         * modules/truncl-tests: New file.
25134         * tests/test-truncl.c: New file.
25135
25136         * modules/truncl: New file.
25137         * lib/truncl.c: New file.
25138         * m4/truncl.m4: New file.
25139         * lib/math.in.h (truncl): New declaration.
25140         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
25141         HAVE_DECL_TRUNCL.
25142         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
25143         HAVE_DECL_TRUNCL.
25144         * doc/functions/truncl.texi: Mention the 'truncl' module.
25145
25146 2007-10-04  Bruno Haible  <bruno@clisp.org>
25147
25148         * modules/truncf-tests: New file.
25149         * tests/test-truncf.c: New file.
25150
25151         * modules/truncf: New file.
25152         * lib/trunc.c: Make paramerizable through USE_* macros.
25153         * lib/truncf.c: New file.
25154         * m4/truncf.m4: New file.
25155         * lib/math.in.h (truncf): New declaration.
25156         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
25157         HAVE_DECL_TRUNCF.
25158         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
25159         HAVE_DECL_TRUNCF.
25160         * doc/functions/truncf.texi: Mention the 'truncf' module.
25161
25162 2007-10-03  Bruno Haible  <bruno@clisp.org>
25163
25164         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
25165         augmentation also for tests modules.
25166         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
25167         * modules/atexit-tests (Makefile.am): Likewise.
25168         * modules/binary-io-tests (Makefile.am): Likewise.
25169         * modules/c-strcase-tests (Makefile.am): Likewise.
25170         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
25171         * modules/canonicalize-tests (Makefile.am): Likewise.
25172         * modules/closein-tests (Makefile.am): Likewise.
25173         * modules/fprintf-posix-tests (Makefile.am): Likewise.
25174         * modules/freadahead-tests (Makefile.am): Likewise.
25175         * modules/fseek-tests (Makefile.am): Likewise.
25176         * modules/fseeko-tests (Makefile.am): Likewise.
25177         * modules/ftell-tests (Makefile.am): Likewise.
25178         * modules/ftello-tests (Makefile.am): Likewise.
25179         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
25180         * modules/isnanl-tests (Makefile.am): Likewise.
25181         * modules/lseek-tests (Makefile.am): Likewise.
25182         * modules/mbscasecmp-tests (Makefile.am): Likewise.
25183         * modules/mbscasestr-tests (Makefile.am): Likewise.
25184         * modules/mbschr-tests (Makefile.am): Likewise.
25185         * modules/mbscspn-tests (Makefile.am): Likewise.
25186         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
25187         * modules/mbspbrk-tests (Makefile.am): Likewise.
25188         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
25189         * modules/mbsrchr-tests (Makefile.am): Likewise.
25190         * modules/mbsspn-tests (Makefile.am): Likewise.
25191         * modules/mbsstr-tests (Makefile.am): Likewise.
25192         * modules/printf-posix-tests (Makefile.am): Likewise.
25193         * modules/snprintf-posix-tests (Makefile.am): Likewise.
25194         * modules/sprintf-posix-tests (Makefile.am): Likewise.
25195         * modules/tsearch-tests (Makefile.am): Likewise.
25196         * modules/uniname/uniname-tests (Makefile.am): Likewise.
25197         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
25198         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
25199         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
25200         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
25201         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
25202         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
25203         * modules/vprintf-posix-tests (Makefile.am): Likewise.
25204         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
25205         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
25206         * modules/xstrtoimax-tests (Makefile.am): Likewise.
25207         * modules/xstrtol-tests (Makefile.am): Likewise.
25208         * modules/xstrtoumax-tests (Makefile.am): Likewise.
25209         * modules/yesno-tests (Makefile.am): Likewise.
25210
25211 2007-10-03  Bruno Haible  <bruno@clisp.org>
25212
25213         * modules/trunc-tests: New file.
25214         * tests/test-trunc.c: New file.
25215
25216         * modules/trunc: New file.
25217         * lib/trunc.c: New file.
25218         * m4/trunc.m4: New file.
25219         * lib/math.in.h (trunc): New declaration.
25220         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
25221         HAVE_DECL_TRUNC.
25222         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
25223         HAVE_DECL_TRUNC.
25224         * doc/functions/trunc.texi: Mention the 'trunc' module.
25225
25226 2007-10-03  Bruno Haible  <bruno@clisp.org>
25227
25228         * tests/test-fpending.c: New file, mostly copied
25229         from coreutils/lib/t-fpending.c.
25230         * modules/fpending-tests: New file.
25231
25232 2007-10-03  Bruno Haible  <bruno@clisp.org>
25233
25234         Port the stdio extensions to QNX (untested).
25235         * lib/fseterr.c (fseterr): Add support for QNX.
25236         * lib/fbufmode.c (fbufmode): Likewise.
25237         * lib/freadable.c (freadable): Likewise.
25238         * lib/fwritable.c (fwritable): Likewise.
25239         * lib/freading.c (freading): Likewise.
25240         * lib/fwriting.c (fwriting): Likewise.
25241         * lib/freadahead.c (freadahed): Likewise.
25242         * lib/fpurge.c (fpurge): Likewise.
25243         * lib/fseeko.c (rpl_fseeko): Likewise.
25244
25245 2007-10-03  Bruno Haible  <bruno@clisp.org>
25246             Jim Meyering  <jim@meyering.net>
25247             Eric Blake  <ebb9@byu.net>
25248
25249         * doc/relocatable.texi: Use @command instead of @program.
25250
25251 2007-10-02  Jim Meyering  <jim@meyering.net>
25252
25253         Perform one more "_.h" -> ".in.h" substitution.
25254         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
25255         instead of unistd_.h here, too.
25256
25257 2007-10-01  Bruno Haible  <bruno@clisp.org>
25258
25259         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
25260         Needed for the alloca-opt module.
25261
25262 2007-09-30  Bruno Haible  <bruno@clisp.org>
25263
25264         * lib/alloca.in.h: Renamed from lib/alloca_.h.
25265         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
25266         alloca_.h.
25267         * lib/argz.in.h: Renamed from lib/argz_.h.
25268         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
25269         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
25270         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
25271         byteswap_.h.
25272         * lib/dirent.in.h: Renamed from lib/dirent_.h.
25273         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
25274         dirent_.h.
25275         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
25276         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
25277         fcntl_.h.
25278         * lib/float.in.h: Renamed from lib/float_.h.
25279         * modules/float (Files, Makefile.am): Use float.in.h instead of
25280         float_.h.
25281         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
25282         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
25283         fnmatch_.h.
25284         * lib/getopt.in.h: Renamed from lib/getopt_.h.
25285         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
25286         getopt_.h.
25287         * lib/glob.in.h: Renamed from lib/glob_.h.
25288         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
25289         * lib/iconv.in.h: Renamed from lib/iconv_.h.
25290         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
25291         iconv_.h.
25292         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
25293         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
25294         inttypes_.h.
25295         * lib/locale.in.h: Renamed from lib/locale_.h.
25296         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
25297         locale_.h.
25298         * lib/math.in.h: Renamed from lib/math_.h.
25299         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
25300         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
25301         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
25302         of netinet_in_.h. Add dependency.
25303         * lib/poll.in.h: Renamed from lib/poll_.h.
25304         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
25305         * lib/search.in.h: Renamed from lib/search_.h.
25306         * modules/search (Files, Makefile.am): Use search.in.h instead of
25307         search_.h.
25308         * lib/signal.in.h: Renamed from lib/signal_.h.
25309         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
25310         _signal.h.
25311         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
25312         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
25313         stdbool_.h.
25314         * lib/stdint.in.h: Renamed from lib/stdint_.h.
25315         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
25316         stdint_.h.
25317         * lib/stdio.in.h: Renamed from lib/stdio_.h.
25318         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
25319         stdio_.h.
25320         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
25321         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
25322         stdlib_.h.
25323         * lib/string.in.h: Renamed from lib/string_.h.
25324         * modules/string (Files, Makefile.am): Use string.in.h instead of
25325         string_.h.
25326         * doc/gnulib-tool.texi (Initial import): Update.
25327         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
25328         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
25329         of sys_select_.h. Add dependency.
25330         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
25331         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
25332         of sys_socket_.h.
25333         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
25334         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
25335         sys_stat_.h.
25336         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
25337         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
25338         sys_time_.h.
25339         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
25340         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
25341         sysexits_.h.
25342         * lib/time.in.h: Renamed from lib/time_.h.
25343         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
25344         * lib/unistd.in.h: Renamed from lib/unistd_.h.
25345         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
25346         unistd_.h.
25347         * lib/wchar.in.h: Renamed from lib/wchar_.h.
25348         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
25349         wchar_.h.
25350         * lib/wctype.in.h: Renamed from lib/wctype_.h.
25351         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
25352         wctype_.h.
25353         * build-aux/bootstrap (slurp): Update.
25354         * lib/.cppi-disable: Update.
25355
25356 2007-09-30  Bruno Haible  <bruno@clisp.org>
25357
25358         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
25359         Needed on BeOS.
25360
25361 2007-09-30  Bruno Haible  <bruno@clisp.org>
25362
25363         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
25364
25365 2007-09-29  Bruno Haible  <bruno@clisp.org>
25366
25367         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
25368
25369 2007-09-29  Bruno Haible  <bruno@clisp.org>
25370
25371         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
25372         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
25373         * build-aux/install-reloc: Compile also areadlink.c.
25374         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
25375
25376 2007-09-29  Bruno Haible  <bruno@clisp.org>
25377
25378         * gnulib-tool (func_emit_initmacro_done): Indentation.
25379
25380 2007-09-29  Bruno Haible  <bruno@clisp.org>
25381
25382         * README: Add CVS checkout update instructions.
25383         Info from Bob Proulx <bob@proulx.com>.
25384
25385 2007-09-28  Eric Blake  <ebb9@byu.net>
25386
25387         Provide move-if-change.
25388         * build-aux/move-if-change: New file, based on best practice
25389         rather than any canonical upstream location.
25390
25391 2007-09-28  Jim Meyering  <jim@meyering.net>
25392
25393         Fix canonicalize loop-detection corner case.
25394         Do not attempt to stat the symlink values stored via seen_triple.
25395         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
25396         on linux-2.6.18, (but not 2.6.22).
25397         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
25398         triple_compare.  The former compares dev,ino,filename, while the latter
25399         would actually stat dirname(filename) when dev and ino were equal.
25400         * lib/hash-triple.c: Install <string.h>.
25401         (STREQ): Define.
25402         (triple_compare_ino_str): New function.
25403         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
25404
25405 2007-09-28  Eric Blake  <ebb9@byu.net>
25406
25407         Enforce that AC_REPLACE_FUNCS files exist.
25408         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
25409         override check for typos.
25410
25411         Fix test-closein on Solaris 10.
25412         * tests/test-closein.c (main): Don't assume stdin can be inherited
25413         closed on all systems.
25414         * tests/test-closein.sh: Likewise.
25415         Reported by Piotr Tarnowski.
25416
25417 2007-09-28  Jim Meyering  <jim@meyering.net>
25418
25419         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
25420
25421 2007-09-27  Jim Meyering  <jim@meyering.net>
25422
25423         canonicalize: Avoid a false-positive cycle failure.
25424         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
25425         Sort.  Remove cycle-check.
25426         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
25427         not cycle-check.h.
25428         (seen_triple): New function.
25429         (canonicalize_filename_mode): Use it instead of cycle-check.
25430         * tests/test-canonicalize.c: Add a test for this bug.
25431         * tests/test-canonicalize.sh: Set up and run the test.
25432
25433         New module, file-set, from coreutils.
25434         * modules/file-set: Define it.
25435         * lib/file-set.c, lib/file-set.h: Implement.
25436
25437         New module, hash-triple, from coreutils.
25438         * modules/hash-triple: Define it.
25439         * lib/hash-triple.c, lib/hash-triple.h: Implement.
25440
25441 2007-09-25  Eric Blake  <ebb9@byu.net>
25442
25443         Fix strerror on Interix.
25444         * lib/string_.h (strerror): Declare replacement.
25445         * doc/functions/strerror.texi (strerror): Document the Interix
25446         shortcoming.
25447         * modules/string (Makefile.am): Support new hooks.
25448         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
25449         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
25450         gl_FUNC_STRERROR_SEPARATE.
25451         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
25452         * lib/strerror.c (rpl_strerror): Provide replacement.
25453         * modules/strerror (Depends-on): Add string.
25454         (configure.ac): Detect use of module.
25455         * tests/test-strerror.c: New file.
25456         * modules/strerror-tests: New test module.
25457         * modules/argp (Depends-on): Add strerror.
25458         * modules/error (Depends-on): Likewise.
25459         Reported by Martin Koeppe.
25460
25461 2007-09-24  Bruno Haible  <bruno@clisp.org>
25462
25463         * README: Update git instructions.
25464
25465 2007-09-24  Eric Blake  <ebb9@byu.net>
25466
25467         Revert fpending breakage from 2007-09-08.
25468         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
25469         __fpending.c.
25470
25471 2007-09-24  Jim Meyering  <jim@meyering.net>
25472
25473         filenamecat.c: Add a test.
25474         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
25475         showing how the function works when DIR is the empty string.
25476
25477 2007-09-21  Simon Josefsson  <simon@josefsson.org>
25478
25479         * tests/test-canonicalize.sh: Turn on executable bit.
25480
25481 2007-09-19  Eric Blake  <ebb9@byu.net>
25482
25483         * README: Update CVS instructions.
25484
25485 2007-09-18  Bruno Haible  <bruno@clisp.org>
25486
25487         * modules/areadlink: New file.
25488         * lib/areadlink.h (areadlink): New declaration.
25489         * lib/areadlink.c: New file, based on lib/xreadlink.c.
25490
25491 2007-09-17  Jim Meyering  <jim@meyering.net>
25492
25493         * lib/savewd.c (ESTALE) [!defined]: Define.
25494         Reported to be required on Interix by Martin Koeppe.
25495
25496 2007-09-17  Bruno Haible  <bruno@clisp.org>
25497
25498         * gnulib-tool (func_version): Use $version.
25499
25500 2007-09-16  Bruno Haible  <bruno@clisp.org>
25501
25502         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
25503         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
25504         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
25505         Reported by Greg Schafer <gschafer@zip.com.au>.
25506
25507 2007-09-15  Bruno Haible  <bruno@clisp.org>
25508
25509         * gnulib-tool (sed): Try a little harder to make bash understand the
25510         alias.
25511         Reported by Bruce Korb <bruce.korb@gmail.com>.
25512
25513 2007-09-13  Eric Blake  <ebb9@byu.net>
25514
25515         * ChangeLog: Remove conflict markers.
25516
25517 2007-09-13  Simon Josefsson  <simon@josefsson.org>
25518
25519         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
25520         Reported by Bruno Haible <bruno@clisp.org>.
25521
25522 2007-09-12  Bruno Haible  <bruno@clisp.org>
25523
25524         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
25525         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
25526         is not defined.
25527
25528 2007-09-12  Eric Blake  <ebb9@byu.net>
25529
25530         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
25531         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
25532         Autoconf definition.
25533         * modules/euidaccess (Depends-on): Add extensions, for
25534         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
25535         * modules/fnmatch (Depends-on): Likewise.
25536         * modules/getaddrinfo (Depends-on): Likewise.
25537         * modules/getdelim (Depends-on): Likewise.
25538         * modules/getline (Depends-on): Likewise.
25539         * modules/getsubopt (Depends-on): Likewise.
25540         * modules/gettext (Depends-on): Likewise.
25541         * modules/group-member (Depends-on): Likewise.
25542         * modules/mbchar (Depends-on): Likewise.
25543         * modules/memmem (Depends-on): Likewise.
25544         * modules/mempcpy (Depends-on): Likewise.
25545         * modules/memrchr (Depends-on): Likewise.
25546         * modules/pagealign_alloc (Depends-on): Likewise.
25547         * modules/readutmp (Depends-on): Likewise.
25548         * modules/stpcpy (Depends-on): Likewise.
25549         * modules/stpncpy (Depends-on): Likewise.
25550         * modules/strchrnul (Depends-on): Likewise.
25551         * modules/strndup (Depends-on): Likewise.
25552         * modules/strsep (Depends-on): Likewise.
25553         * modules/strverscmp (Depends-on): Likewise.
25554         * modules/vasprintf (Depends-on): Likewise.
25555         * modules/wcwidth (Depends-on): Likewise.
25556         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
25557         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
25558         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
25559         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
25560         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
25561         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25562         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
25563         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
25564         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
25565         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
25566         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25567         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
25568         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
25569         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
25570         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
25571         * m4/readutmp.m4 (gl_READUTMP): Likewise.
25572         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
25573         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
25574         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
25575         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
25576         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25577         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
25578         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
25579         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
25580         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
25581         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
25582         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
25583         so that lock.m4 can be used in gettext without extensions module.
25584
25585 2007-09-11  Bruno Haible  <bruno@clisp.org>
25586
25587         * m4/isc-posix.m4: Remove file.
25588         Suggested by Eric Blake.
25589
25590 2007-09-11  Eric Blake  <ebb9@byu.net>
25591
25592         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
25593
25594 2007-09-10  Bruno Haible  <bruno@clisp.org>
25595
25596         * posix-modules: Fix typo in error message.
25597         Reported by Matt <mkraai@beckman.com>.
25598
25599 2007-09-09  Bruno Haible  <bruno@clisp.org>
25600
25601         * doc/functions/getdelim.texi: Update list of platforms lacking the
25602         function.
25603         * doc/functions/getline.texi: Likewise.
25604
25605 2007-09-09  Jim Meyering  <jim@meyering.net>
25606
25607         * lib/hash.c (hash_initialize): Detect calloc failure.
25608         Reported by Bruno Haible.
25609
25610 2007-09-09  Bruno Haible  <bruno@clisp.org>
25611
25612         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
25613         malloc or realloc fails.
25614
25615 2007-09-09  Bruno Haible  <bruno@clisp.org>
25616
25617         * modules/getcwd (Depends-on): Add malloc-posix.
25618         * modules/glob (Depends-on): Likewise.
25619         * modules/putenv (Depends-on): Likewise.
25620         * modules/strdup (Depends-on): Likewise.
25621         * modules/getdelim (Depends-on): Add realloc-posix.
25622         * modules/read-file (Depends-on): Likewise.
25623
25624 2007-09-09  Bruno Haible  <bruno@clisp.org>
25625
25626         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
25627         (gl_FUNC_MALLOC_POSIX): Require it.
25628         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
25629         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
25630         * modules/realloc (Files): Add m4/malloc.m4.
25631         * modules/calloc (Files): Likewise.
25632
25633 2007-09-09  Bruno Haible  <bruno@clisp.org>
25634
25635         * modules/malloc-posix: New file.
25636         * modules/malloc (Depends-on): Add malloc-posix.
25637         * lib/malloc.c: Include errno.h.
25638         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
25639         and a POSIX-compatible malloc into a single function. Set ENOMEM
25640         when returning NULL.
25641         * m4/malloc.m4: New file.
25642         * doc/functions/malloc.texi: Mention the malloc-posix module.
25643         * lib/stdlib_.h (malloc): New declaration.
25644         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25645         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
25646         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
25647         and HAVE_MALLOC_POSIX.
25648
25649 2007-09-09  Bruno Haible  <bruno@clisp.org>
25650
25651         * modules/realloc-posix: New file.
25652         * modules/realloc (Depends-on): Add realloc-posix.
25653         * lib/realloc.c: Include errno.h.
25654         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
25655         and a POSIX-compatible realloc into a single function. Set ENOMEM
25656         when returning NULL.
25657         * m4/realloc.m4: New file.
25658         * doc/functions/realloc.texi: Mention the realloc-posix module.
25659         * lib/stdlib_.h (realloc): New declaration.
25660         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25661         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
25662         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
25663         and HAVE_REALLOC_POSIX.
25664
25665 2007-09-09  Bruno Haible  <bruno@clisp.org>
25666
25667         * modules/calloc-posix: New file.
25668         * modules/calloc (Depends-on): Add calloc-posix.
25669         * lib/calloc.c: Include errno.h.
25670         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
25671         and a POSIX-compatible calloc into a single function. Set ENOMEM
25672         when returning NULL.
25673         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
25674         * doc/functions/calloc.texi: Mention the calloc-posix module.
25675         * lib/stdlib_.h (calloc): New declaration.
25676         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25677         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
25678         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
25679         and HAVE_CALLOC_POSIX.
25680
25681 2007-09-09  Bruno Haible  <bruno@clisp.org>
25682
25683         Allow for modules to show an arbitrary notice.
25684         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
25685         * gnulib-tool: New option --extract-notice.
25686         (func_usage): Document it.
25687         (sed_extract_prog): Update.
25688         (func_get_notice): New function.
25689         (func_modules_notice): New function.
25690         (func_import, func_create_testdir): Invoke it.
25691         Suggested by Jim Meyering.
25692
25693 2007-09-09  Bruno Haible  <bruno@clisp.org>
25694
25695         * gnulib-tool: New options --verbose, --quiet.
25696         (func_usage): Document them.
25697         (verbose): New variable.
25698         (func_execute_command): New function.
25699         (func_import): Don't show the module list and the file list if
25700         $verbose < 0.
25701         (func_create_testdir): Likewise. Use func_execute_command.
25702         (func_create_megatestdir): Use func_execute_command.
25703
25704 2007-09-08  Bruno Haible  <bruno@clisp.org>
25705
25706         * gnulib-tool (func_import): Prefer rsync over wget when available,
25707         for fetching the PO files.
25708
25709 2007-09-08  Bruno Haible  <bruno@clisp.org>
25710
25711         * posix-modules: New file. Portions copied from gnulib-tool.
25712         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
25713
25714 2007-09-08  Jim Meyering  <jim@meyering.net>
25715
25716         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
25717         * lib/fpending.h: Rename from __fpending.h.
25718         * lib/fpending.c: Rename from __fpending.c.
25719         Include "fpending.h", not "__fpending.h".
25720         * lib/__fpending.h, lib/__fpending.c: Remove files.
25721         * modules/fpending (Files): Reflect new file names.
25722         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
25723
25724 2007-09-08  Bruno Haible  <bruno@clisp.org>
25725
25726         * m4/inttypes-h.m4: Remove stub file.
25727
25728 2007-09-07  Simon Josefsson  <simon@josefsson.org>
25729
25730         * doc/headers/stdint.texi: Discuss #include_next issue.
25731
25732 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25733
25734         * build-aux/bootstrap: Remove obsolete comment about wget --help.
25735
25736 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25737
25738         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
25739         in variable name.
25740
25741 2007-09-03  Jim Meyering  <jim@meyering.net>
25742
25743         New module: git-version-gen.
25744         * modules/git-version-gen: New file.
25745
25746         Import changes from coreutils for bootstrap script.
25747
25748         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
25749
25750         bootstrap: uses rsync to download the .po files
25751         * build-aux/bootstrap (po_download_command_format): New global.
25752         (download_po_files): Use rsync.
25753         (update_po_files): Don't remove .po files after download,
25754         so future rsync runs can take advantage of the copies.
25755
25756         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
25757
25758         Solve the unnecessary-.po-file-regeneration problem once and for all.
25759         * build-aux/bootstrap (download_po_files): New function, renamed from
25760         get_translations.  Now, downloads, but doesn't update LINGUAS.
25761         (update_po_files): New function.
25762
25763         bootstrap: Ignore more.
25764         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
25765         uniwidth to e.g., lib/.gitignore.
25766         (slurp): Handle the sys_stat_.h -> sys mapping, too.
25767
25768         * build-aux/bootstrap: New setting: vc_ignore.
25769         (insert_sorted_if_absent): Create $file if absent.
25770         Adapt to new, possibly empty, list: $vc_ignore.
25771
25772         bootstrap: generate more ignorable names
25773         * build-aux/bootstrap (slurp): When generating ignorable names,
25774         also map .sin to .sed, .gperf to .c, and .y to .c.
25775
25776 2007-09-03  Jim Meyering  <jim@meyering.net>
25777
25778         * build-aux/git-version-gen: New file, from coreutils.  For details, see
25779         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
25780
25781 2007-09-02  Bruno Haible  <bruno@clisp.org>
25782
25783         Fix mis-recognition of 'mcs' on QNX 6.
25784         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
25785         output contains the string "Mono".
25786         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
25787         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
25788
25789 2007-09-01  Bruno Haible  <bruno@clisp.org>
25790
25791         Fix collision between uniwidth/* and linebreak modules.
25792         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
25793         u32_width): Remove declarations.
25794         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
25795         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
25796         streq3, streq2, streq1, streq0): Remove functions.
25797         (STREQ): Remove macro.
25798         (is_cjk_encoding): Remove function.
25799         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
25800         (uc_width, u8_width, u16_width, u32_width): Remove functions.
25801         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
25802         * NEWS: Document the change.
25803
25804 2007-09-01  Bruno Haible  <bruno@clisp.org>
25805
25806         * lib/streq.h: Add double-inclusion guard.
25807
25808 2007-09-01  Karl Berry  <karl@gnu.org>
25809
25810         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
25811
25812 2007-08-28  Jim Meyering  <jim@meyering.net>
25813
25814         Rename mreadlink_with_size to areadlink_with_size.
25815         * NEWS: Document the change.
25816         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
25817         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
25818         * lib/mreadlink.h: Rename this to...
25819         * lib/areadlink.h: ...this.
25820         * modules/mreadlink-with-size: Rename this to...
25821         * modules/areadlink-with-size: ...this.
25822         * lib/canonicalize.c: Reflect the renaming.
25823         * modules/canonicalize: Likewise.
25824
25825 2007-08-26  Bruno Haible  <bruno@clisp.org>
25826
25827         * gnulib-tool (func_import): When deciding which files to remove,
25828         consider also dangling symbolic links.
25829         Reported by Eric Blake.
25830
25831 2007-08-26  Bruno Haible  <bruno@clisp.org>
25832
25833         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
25834
25835 2007-08-23  Simon Josefsson  <simon@josefsson.org>
25836
25837         * lib/readline.c: Don't include getline.h, the prototype is now
25838         found in stdio.h.
25839
25840 2007-08-23  Jim Meyering  <jim@meyering.net>
25841
25842         Getdelim touchup.
25843         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
25844         around the funlockfile call, since funlockfile never sets errno.
25845         Don't set errno upon failed realloc.
25846
25847 2007-08-22  Eric Blake  <ebb9@byu.net>
25848
25849         Getline touchups.
25850         * lib/getdelim.c (getdelim): Revert regression that required *n to
25851         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
25852         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
25853         getdelim, rather than whether implementation is missing.
25854         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
25855         * lib/stdio_.h (getline): Also declare if replacement is
25856         required.
25857         * doc/functions/getdelim.texi: New file.
25858         * doc/functions/getline.texi: Likewise.
25859         * doc/gnulib.texi (Function Substitutes): Add new files.
25860         Reported by Bruno Haible.
25861
25862 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
25863
25864         * users.txt: Add Guile.
25865
25866 2007-08-22  Eric Blake  <ebb9@byu.net>
25867
25868         * tests/test-getdelim.c (main): Use remove, not unlink.
25869         * tests/test-getline.c (main): Likewise.
25870
25871         Move getline and getdelim into stdio.h, per POSIX 200x.
25872         * modules/getline (Files): Remove getline.h.
25873         (Depends-on): Add stdio.
25874         (configure.ac): Add module indicator.
25875         * modules/getdelim (Files): Remove getdelim.h.
25876         (Depends-on): Add stdio.
25877         (configure.ac): Add module indicator.
25878         * modules/stdio (Makefile.am): Work with new indicators.
25879         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
25880         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
25881         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25882         * lib/getdelim.h: Delete.
25883         * lib/getline.h: Delete.
25884         * lib/stdio_.h (getdelim, getline): Declare.
25885         * modules/getdelim-tests: New module.
25886         * modules/getline-tests: Likewise.
25887         * tests/test-getdelim.c: New file.
25888         * tests/test-getline.c: Likewise.
25889         * NEWS: Document the change.
25890         * lib/getline.c: Update choice of header.
25891         * lib/csharpcomp.c: Likewise.
25892         * lib/getpass.c: Likewise.
25893         * lib/javacomp.c: Likewise.
25894         * lib/javaversion.c: Likewise.
25895         * lib/yesno.c: Likewise.
25896         * lib/getdelim.c: Likewise.
25897         (getdelim): Set errno on failure, and avoid memory leak.
25898
25899 2007-08-19  Bruno Haible  <bruno@clisp.org>
25900
25901         * modules/closein (Depends-on): Add freadahead.
25902         * lib/closein.c: Include freadahead.h.
25903         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
25904         is zero.
25905
25906 2007-08-19  Bruno Haible  <bruno@clisp.org>
25907
25908         * modules/freadahead-tests: New file.
25909         * tests/test-freadahead.sh: New file.
25910         * tests/test-freadahead.c: New file.
25911
25912         * modules/freadahead: New file.
25913         * lib/freadahead.h: New file.
25914         * lib/freadahead.c: New file.
25915         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
25916         fbufmode, fpurge, freadable, fwritable.
25917
25918 2007-08-19  Eric Blake  <ebb9@byu.net>
25919
25920         Test yesno in combination with closein.
25921         * lib/yesno.c (yesno): Document use of stdin.
25922         * modules/yesno-tests (Files): New module.
25923         * tests/test-yesno.c (main): New file.
25924         * tests/test-yesno.sh: Likewise.
25925
25926 2007-08-19  Bruno Haible  <bruno@clisp.org>
25927
25928         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
25929         * lib/fseeko.c (rpl_fseeko): Likewise.
25930         * lib/fseterr.c (fseterr): Likewise.
25931
25932 2007-08-19  Bruno Haible  <bruno@clisp.org>
25933
25934         * tests/test-lseek.c (main): Disable a test for BeOS.
25935         * doc/functions/lseek.texi: Document the BeOS bug.
25936
25937 2007-08-19  Bruno Haible  <bruno@clisp.org>
25938             Eric Blake  <ebb9@byu.net>
25939
25940         * lib/lseek.c: Include <sys/stat.h>.
25941         (rpl_lseek): Add workaround code also for Unix platforms.
25942         Needed for BeOS.
25943         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
25944         * doc/functions/lseek.texi: Document BeOS definiency.
25945
25946 2007-08-18  Bruno Haible  <bruno@clisp.org>
25947
25948         * modules/fstrcmp-tests: New file.
25949         * tests/test-fstrcmp.c: New file.
25950
25951 2007-08-18  Bruno Haible  <bruno@clisp.org>
25952
25953         * modules/fstrcmp: New file, from GNU gettext with modifications.
25954         * lib/fstrcmp.h: New file, from GNU gettext.
25955         * lib/fstrcmp.c: New file, from GNU gettext.
25956         * MODULES.html.sh (String handling): Add fstrcmp.
25957
25958 2007-08-18  Bruno Haible  <bruno@clisp.org>
25959
25960         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
25961         'bool'.
25962         (diag, compareseq): Remove const from the ctxt argument.
25963         (USE_HEURISTIC): Undefine at the end.
25964
25965 2007-08-18  Jim Meyering  <jim@meyering.net>
25966
25967         New file: lib/idcache.h
25968         * NEWS: Mention the addition.
25969         * modules/idcache (Files): Add lib/idcache.h
25970         * lib/idcache.c: Include "idcache.h".
25971         Don't include <sys/types.h>.
25972         Add a FIXME comment.
25973         Move file-scoped "static" declarations to the top.
25974         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
25975
25976 2007-08-17  Bruno Haible  <bruno@clisp.org>
25977         and Paul Eggert  <eggert@cs.ucla.edu>
25978
25979         * MODULES.html.sh: Add diffseq.
25980         * modules/diffseq: New file.
25981         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
25982         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
25983
25984 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
25985
25986         Import changes from coreutils for bootstrap script.
25987
25988         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
25989
25990         * build-aux/bootstrap (slurp): Work even in environments where
25991         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
25992         current code does not slurp files whose names start with ".", and
25993         this looks like it might be a troublesome area.
25994
25995         2007-07-11  Jim Meyering  <jim@meyering.net>
25996
25997         If there's a GPL vN copyright comment, require that N == 3.
25998
25999         2007-07-08  Jim Meyering  <jim@meyering.net>
26000
26001         Run the coreutils-specific code only if tests/Makefile.am.in exists.
26002         * build-aux/bootstrap (mam_template): Move definition out of loop.
26003
26004         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
26005
26006         * build-aux/bootstrap (symlink_to_dir): Rename function from
26007         symlink_to_gnulib.  Add a directory parameter.  Update all
26008         callers.
26009         (cp_mark_as_generated): Also check for -- and link to -- files in
26010         gl/.
26011
26012         2007-07-08  Jim Meyering  <jim@meyering.net>
26013
26014         Adapt to deeper hierarchy in gnulib.
26015         * build-aux/bootstrap (symlink_to_dir): If the destination
26016         directory doesn't exist, create it. This is required at least for
26017         "lib/uniwidth/cjk.h".
26018
26019         2007-05-15  Jim Meyering  <jim@meyering.net>
26020
26021         * build-aux/bootstrap: Now that generated Makefile.am files
26022         are no longer under version control, they must be created at
26023         bootstrap time.
26024
26025 2007-08-14  Ben Pfaff  <blp@gnu.org>
26026
26027         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
26028
26029 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
26030
26031         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
26032         given the changes below.
26033         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
26034         even on hosts that have padding bits beyond the supported 64.
26035
26036 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
26037
26038         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
26039         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
26040         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
26041         depends on it.
26042         (xstrtol_error): Remove.
26043         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
26044         but with a different signature.
26045         (ATTRIBUTE_NORETURN, __attribute__): New macros.
26046         * lib/xstrtol-error.c: Include exitfail.h.
26047         (xstrtol_fatal): New function, with a different signature from the
26048         old xstrtol_error, so that the caller need not worry about passing
26049         in an exit status, or about storage management of the option argument.
26050         (xstrtol_error): Now a static function.  Redo signature to
26051         implement xstrtol_fatal.  Output the correct number of hyphens in
26052         front of the option so that the caller need not worry about
26053         storage management.
26054         (N_): New macro.
26055         (_): Remove; not used now.
26056         * modules/xstrtol: Depend on getopt.
26057         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
26058         of old STRTOL_FATAL_ERROR macro.
26059         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
26060         of test program.
26061         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
26062         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
26063
26064 2007-08-08  Eric Blake  <ebb9@byu.net>
26065
26066         * lib/xstrtol-error.c: Add missing include.
26067
26068         Move xstrtol messages into gnulib domain, when --pobase is used.
26069         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
26070         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
26071         * modules/xstrtol (Files): Distribute new file.
26072         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
26073         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
26074         * tests/test-xstrtol.c: ...into new file.
26075         * tests/test-xstrtoul.c: Also test xstrtoul.
26076         * tests/test-xstrtoimax.c: Also test xstrtoimax.
26077         * tests/test-xstrtoumax.c: Also test xstrtoumax.
26078         * tests/test-xstrtol.sh: Drive the tests.
26079         * tests/test-xstrtoimax.sh: Likewise.
26080         * tests/test-xstrtoumax.sh: Likewise.
26081         * modules/xstrtol-tests: New module.
26082         * modules/xstrtoimax-tests: Likewise.
26083         * modules/xstrtoumax-tests: Likewise.
26084
26085 2007-08-08  Jim Meyering  <jim@meyering.net>
26086
26087         New function: mfile_name_concat.
26088         * lib/filenamecat.c (mfile_name_concat): New function, just like
26089         file_name_concat, but return NULL upon failure rather than exiting
26090         with a diagnostic.
26091         * lib/filenamecat.h: Declare it.
26092
26093 2007-08-07  Bruno Haible  <bruno@clisp.org>
26094
26095         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
26096         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
26097         warning from gcc.
26098         Reported by Eric Blake.
26099
26100 2007-08-07  Simon Josefsson  <simon@josefsson.org>
26101
26102         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
26103         * modules/crypto/arcfour (License): Likewise.
26104         * modules/crypto/des-tests (License): Likewise.
26105         * modules/crypto/gc-arctwo-tests (License): Likewise.
26106         * modules/crypto/gc-des-tests (License): Likewise.
26107         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
26108         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
26109         * modules/crypto/gc-md2-tests (License): Likewise.
26110         * modules/crypto/gc-md4-tests (License): Likewise.
26111         * modules/crypto/gc-md5-tests (License): Likewise.
26112         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
26113         * modules/crypto/gc-rijndael-tests (License): Likewise.
26114         * modules/crypto/gc-sha1-tests (License): Likewise.
26115         * modules/crypto/gc-tests (License): Likewise.
26116         * modules/crypto/hmac-md5 (License): Likewise.
26117         * modules/crypto/hmac-sha1 (License): Likewise.
26118         * modules/crypto/md2-tests (License): Likewise.
26119         * modules/crypto/md4-tests (License): Likewise.
26120         * modules/crypto/md5 (License): Likewise.
26121         * modules/crypto/rijndael (License): Likewise.
26122         * modules/crypto/sha1 (License): Likewise.
26123         * modules/memxor (License): Likewise.
26124
26125 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26126         and Bruno Haible  <bruno@clisp.org>
26127
26128         * NEWS: Describe interface changes to human, xstrtol.
26129         * lib/human.h: Include <xstrtol.h>.
26130         (human_options): Return enum strtol_error, not int.  Remove
26131         bool arg; take int * instead.
26132         * lib/human.c: Don't include "gettext.h".
26133         (_): Remove; no longer used.
26134         Don't include <xstrtol.h>, since human.h does it.
26135         (human_options): Adjust to abovementioned interface changes.
26136         Do not report error to stderr; that's now the caller's
26137         responsibility.
26138         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
26139         interface change.
26140         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
26141         Str, Argument_type_string.  All uses changed.  Put " argument"
26142         in diagnostics to make them clearer.  Change wording of suffix
26143         message for clarity.
26144         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
26145         Argument_type_string.
26146         (STRTOL_FATAL_WARN): Remove; no longer used.
26147         * modules/human (Depends-on): Remove gettext-h.
26148
26149 2007-08-06  Simon Josefsson  <simon@josefsson.org>
26150
26151         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
26152
26153 2007-07-31  Bruno Haible  <bruno@clisp.org>
26154
26155         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
26156         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
26157         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
26158
26159 2007-07-31  Bruno Haible  <bruno@clisp.org>
26160
26161         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
26162         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
26163
26164 2007-07-30  Bruno Haible  <bruno@clisp.org>
26165
26166         * modules/base64 (License): Use the synonymous term "LGPLv2+".
26167         * modules/c-ctype (License): Likewise.
26168         * modules/c-strcase (License): Likewise.
26169         * modules/check-version (License): Likewise.
26170         * modules/iconv (License): Likewise.
26171         * modules/iconv_open (License): Likewise.
26172         * modules/read-file (License): Likewise.
26173         * modules/striconv (License): Likewise.
26174         * modules/strverscmp (License): Likewise.
26175         * modules/vasprintf (License): Likewise.
26176         * modules/crypto/des (License): Likewise.
26177         * modules/crypto/gc (License): Likewise.
26178         * modules/crypto/gc-arcfour (License): Likewise.
26179         * modules/crypto/gc-arctwo (License): Likewise.
26180         * modules/crypto/gc-des (License): Likewise.
26181         * modules/crypto/gc-hmac-md5 (License): Likewise.
26182         * modules/crypto/gc-hmac-sha1 (License): Likewise.
26183         * modules/crypto/gc-md2 (License): Likewise.
26184         * modules/crypto/gc-md4 (License): Likewise.
26185         * modules/crypto/gc-md5 (License): Likewise.
26186         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
26187         * modules/crypto/gc-random (License): Likewise.
26188         * modules/crypto/gc-rijndael (License): Likewise.
26189         * modules/crypto/gc-sha1 (License): Likewise.
26190         * modules/crypto/md2 (License): Likewise.
26191         * modules/crypto/md4 (License): Likewise.
26192
26193 2007-07-30  Jim Meyering  <jim@meyering.net>
26194
26195         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
26196         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
26197         it has valid stat data.  This bug would cause du not to count the
26198         sizes of inaccessible directories.
26199         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
26200         in <http://bugzilla.redhat.com/250077>.
26201
26202 2007-07-25  Peter O'Gorman  <peter@pogma.com>
26203             Bruno Haible  <bruno@clisp.org>
26204
26205         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
26206         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
26207         #include_next, gives a diagnostic about it, but reports no error in
26208         the exit code.
26209         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
26210
26211 2007-07-24  Ben Pfaff  <blp@gnu.org>
26212
26213         Improve name: "count-one-bits" is better than "popcount".
26214         * MODULES.html.sh: Update name.
26215         * lib/popcount.h: Renamed lib/count-one-bits.h.
26216         (popcount): Renamed count_one_bits.
26217         (popcountl): Renamed count_one_bits_l.
26218         (popcountll): Renamed count_one_bits_ll.
26219         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
26220         * modules/popcount: Renamed module/count-one-bits.
26221         * modules/popcount-tests: Renamed module/count-one-bits-tests.
26222         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
26223
26224 2007-07-23  Ben Pfaff  <blp@gnu.org>
26225
26226         * lib/popcount.h (popcount32): Reduce size of constants, to allow
26227         better code generation, and add U to large constants to avoid
26228         warnings, in non-GCC case.
26229         Suggested by Bruno Haible.
26230
26231 2007-07-23  Ben Pfaff  <blp@gnu.org>
26232
26233         * lib/popcount.h: Use verify_true instead of if...abort.
26234         * modules/popcount: Depend on verify module.
26235         Suggested by Jim Meyering.
26236
26237 2007-07-23  Bruno Haible  <bruno@clisp.org>
26238
26239         * gnulib-tool (func_import): Create a .cvsignore file also when the
26240         directory is not yet in CVS but the toplevel directory is. When
26241         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
26242         Reported by Karl Berry.
26243
26244 2007-07-22  Ben Pfaff  <blp@gnu.org>
26245
26246         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
26247         case.
26248         Suggested by Eric Blake.
26249
26250 2007-07-22  Ben Pfaff  <blp@gnu.org>
26251
26252         New module: popcount.
26253         * MODULES.html.sh: Add popcount.
26254         * modules/popcount: New file.
26255         * modules/popcount-tests: New file.
26256         * tests/test-popcount.c: New file.
26257         * lib/popcount.h: New file.
26258         * m4/popcount.m4: New file.
26259
26260 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
26261
26262         * build-aux/announce-gen: Update to GPLv3.
26263
26264         * build-aux/config.guess: Update from config.
26265
26266 2007-07-21  Bruno Haible  <bruno@clisp.org>
26267
26268         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
26269         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
26270
26271 2007-07-20  Jim Meyering  <jim@meyering.net>
26272
26273         * check-module: Diagnose a self-dependency.
26274
26275 2007-07-19  Bruno Haible  <bruno@clisp.org>
26276
26277         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
26278         empty.
26279         Reported by Eric Blake.
26280
26281 2007-07-18  Bruno Haible  <bruno@clisp.org>
26282
26283         * gnulib-tool: New options --po-base, --po-domain.
26284         (func_usage): Document them.
26285         (pobase, po_domain): New variables.
26286         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
26287         DEFAULT_TEXT_DOMAIN.
26288         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
26289         (func_import): Consider pobase and po_domain. Create a po/ directory.
26290         (func_create_testdir): Set pobase and po_domain to empty.
26291         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
26292         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
26293
26294 2007-07-18  Bruno Haible  <bruno@clisp.org>
26295
26296         * gnulib-tool (func_get_automake_snippet): Synthesize also an
26297         EXTRA_DIST augmentation for files in build-aux/.
26298
26299 2007-07-16  Bruno Haible  <bruno@clisp.org>
26300
26301         * modules/lseek (License): Use the synonymous term "LGPLv2+".
26302         * modules/getdelim (License): Likewise.
26303
26304 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26305
26306         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
26307         * modules/d-type (License): Likewise.
26308         * modules/extensions (License): Likewise.
26309         * modules/fnmatch (License): Likewise.
26310         * modules/fseeko (License): Likewise.
26311         * modules/getaddrinfo (License): Likewise.
26312         * modules/getline (License): Likewise.
26313         * modules/getlogin_r (License): Likewise.
26314         * modules/getpass (License): Likewise.
26315         * modules/gettimeofday (License): Likewise.
26316         * modules/glob (License): Likewise.
26317         * modules/inet_ntop (License): Likewise.
26318         * modules/malloc (License): Likewise.
26319         * modules/malloca (License): Likewise.
26320         * modules/memmem (License): Likewise.
26321         * modules/mempcpy (License): Likewise.
26322         * modules/memset (License): Likewise.
26323         * modules/minmax (License): Likewise.
26324         * modules/mktime (License): Likewise.
26325         * modules/netinet_in (License): Likewise.
26326         * modules/pathmax (License): Likewise.
26327         * modules/poll (License): Likewise.
26328         * modules/regex (License): Likewise.
26329         * modules/snprintf (License): Likewise.
26330         * modules/stdbool (License): Likewise.
26331         * modules/stdint (License): Likewise.
26332         * modules/stdio (License): Likewise.
26333         * modules/strcase (License): Likewise.
26334         * modules/strcasestr (License): Likewise.
26335         * modules/strdup (License): Likewise.
26336         * modules/string (License): Likewise.
26337         * modules/strndup (License): Likewise.
26338         * modules/strnlen (License): Likewise.
26339         * modules/strpbrk (License): Likewise.
26340         * modules/strptime (License): Likewise.
26341         * modules/strsep (License): Likewise.
26342         * modules/sys_select (License): Likewise.
26343         * modules/sys_socket (License): Likewise.
26344         * modules/sys_stat (License): Likewise.
26345         * modules/sys_time (License): Likewise.
26346         * modules/time (License): Likewise.
26347         * modules/time_r (License): Likewise.
26348         * modules/timegm (License): Likewise.
26349         * modules/unistd (License): Likewise.
26350         * modules/vsnprintf (License): Likewise.
26351         * modules/wctype (License): Likewise.
26352
26353 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26354
26355         * modules/argz (License): LGPLv2+.
26356
26357 2007-07-15  Karl Berry  <karl@gnu.org>
26358
26359         * doc/gnulib.texi: revise node structure per new fdl.texi.
26360
26361 2007-07-14  Bruno Haible  <bruno@clisp.org>
26362
26363         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
26364         the output file.
26365         * lib/uniname/uninames.h: Regenerated.
26366
26367 2007-07-14  Karl Berry  <karl@gnu.org>
26368
26369         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
26370         omitting sectioning and index commands.
26371
26372 2007-07-13  Bruno Haible  <bruno@clisp.org>
26373
26374         New gnulib-tool option --more-symlinks.
26375         * gnulib-tool (func_usage): Document --more-symlinks.
26376         (do_copyrights): New variable.
26377         Recognize option --more-symlinks.
26378         (func_import): Don't add a copyright notice transform to
26379         sed_transform_lib_file if do_copyrights is empty.
26380
26381 2007-07-13  Bruno Haible  <bruno@clisp.org>
26382
26383         * lib/vasnprintf.c (decimal_point_char): Define also if
26384         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
26385         && !NEED_PRINTF_DIRECTIVE_A.
26386         Reported by Clemens Koller <clemens.koller@anagramm.de> via
26387         Gary V. Vaughan <gary@gnu.org>.
26388
26389 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
26390
26391         * lib/inttypes_.h: Undo previous change, since it was fixed
26392         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
26393
26394 2007-07-13  Bruno Haible  <bruno@clisp.org>
26395
26396         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
26397         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
26398
26399 2007-07-13  Jim Meyering  <jim@meyering.net>
26400
26401         df: Don't fail for Tru64's "file-on-file mount".
26402         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
26403         so we fall through and use statfs instead.  Details here:
26404         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
26405         Reported by Albert Chin.
26406
26407 2007-07-13  Bruno Haible  <bruno@clisp.org>
26408
26409         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
26410         * modules/configmake (License): Likewise.
26411         * modules/gettext (License): Likewise.
26412         * modules/gettext-h (License): Likewise.
26413         * modules/include_next (License): Likewise.
26414         * modules/link-warning (License): Likewise.
26415         * modules/localcharset (License): Likewise.
26416         * modules/localename (License): Likewise.
26417         * modules/lock (License): Likewise.
26418         * modules/relocatable-lib-lgpl (License): Likewise.
26419         * modules/size_max (License): Likewise.
26420         * modules/vasnprintf (License): Likewise.
26421         * modules/wchar (License): Likewise.
26422         * modules/xsize (License): Likewise.
26423
26424 2007-07-13  Bruno Haible  <bruno@clisp.org>
26425
26426         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
26427         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
26428
26429 2007-07-12  Bruno Haible  <bruno@clisp.org>
26430
26431         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
26432         in the modules files.
26433
26434 2007-07-11  Karl Berry  <karl@gnu.org>
26435
26436         * MODULES.html.sh (func_module): use
26437          sed -e '\|^'"${includefile}"'$|d'
26438          instead of /.../d, to avoid errors on $includefile's containing /.
26439
26440 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
26441
26442         * gnulib-tool (func_import): Avoid duplication of --avoid
26443         statements
26444         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
26445         names to `_' in variable names.
26446
26447 2007-07-10  Eric Blake  <ebb9@byu.net>
26448
26449         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
26450         * NEWS: Document this change.
26451
26452 2007-07-08  Bruno Haible  <bruno@clisp.org>
26453
26454         Update to Unicode 5.0.
26455         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
26456         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
26457         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
26458         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
26459         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
26460         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
26461         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
26462         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
26463         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
26464         U+10A3F, U+1D242..U+1D244.
26465         (nonspacing_table_ind): Update.
26466         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
26467         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
26468
26469 2007-07-08  Bruno Haible  <bruno@clisp.org>
26470
26471         Update to Unicode 5.0.
26472         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
26473         code transform. Extend the name index field of unicode_name_to_code and
26474         unicode_code_to_name from 16 to 24 bits.
26475         * lib/uniname/uniname.c (unicode_character_name,
26476         unicode_name_character): Add the range 0x12xxx to the code transform.
26477         * lib/uniname/uninames.h: Regenerated.
26478         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
26479
26480 2007-07-07  Bruno Haible  <bruno@clisp.org>
26481
26482         * modules/wcwidth-tests: New file.
26483         * tests/test-wcwidth.c: New file.
26484
26485         Work around MacOS X wcwidth() bug.
26486         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
26487         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
26488         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
26489         original wcwidth in non-UTF-8 locales.
26490         * modules/wcwidth (Depends-on): Add localcharset, streq,
26491         uniwidth/width.
26492         * doc/functions/wcwidth.texi: Update.
26493
26494 2007-07-07  Bruno Haible  <bruno@clisp.org>
26495
26496         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
26497         (wcwidth): New declaration.
26498         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
26499         macros.
26500         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
26501         here. Prepare for creating <wchar.h> unconditionally.
26502         * modules/wchar (Depends-on): Add link-warning.
26503         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
26504         REPLACE_WCWIDTH, and GL_LINK_WARNING.
26505         * lib/wcwidth.h: Remove file.
26506         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
26507         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
26508         * modules/wcwidth (Files): Remove lib/wcwidth.h.
26509         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
26510         (Include): Replace wcwidth.h with <wchar.h>.
26511         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
26512         * lib/mbchar.h: Don't include wcwidth.h.
26513         * lib/mbswidth.c: Likewise.
26514         * NEWS: Mention the change.
26515
26516 2007-07-07  Bruno Haible  <bruno@clisp.org>
26517
26518         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
26519         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
26520         definition with an external declaration.
26521         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
26522         defined as a function. Remove AC_C_INLINE requirement.
26523         * modules/wcwidth (Files): Add lib/wcwidth.c.
26524         (Makefile.am): Remove redundant statement.
26525
26526 2007-07-07  Bruno Haible  <bruno@clisp.org>
26527
26528         * MODULES.html.sh (Unicode string functions): Add the new modules.
26529
26530         * tests/uniwidth/test-u32-strwidth.c: New file.
26531         * modules/uniwidth/u32-strwidth-tests: New file.
26532
26533         * lib/uniwidth/u32-strwidth.c: New file.
26534         * modules/uniwidth/u32-strwidth: New file.
26535
26536         * tests/uniwidth/test-u16-strwidth.c: New file.
26537         * modules/uniwidth/u16-strwidth-tests: New file.
26538
26539         * lib/uniwidth/u16-strwidth.c: New file.
26540         * modules/uniwidth/u16-strwidth: New file.
26541
26542         * tests/uniwidth/test-u8-strwidth.c: New file.
26543         * modules/uniwidth/u8-strwidth-tests: New file.
26544
26545         * lib/uniwidth/u8-strwidth.c: New file.
26546         * modules/uniwidth/u8-strwidth: New file.
26547
26548         * tests/uniwidth/test-u32-width.c: New file.
26549         * modules/uniwidth/u32-width-tests: New file.
26550
26551         * lib/uniwidth/u32-width.c: New file.
26552         * modules/uniwidth/u32-width: New file.
26553
26554         * tests/uniwidth/test-u16-width.c: New file.
26555         * modules/uniwidth/u16-width-tests: New file.
26556
26557         * lib/uniwidth/u16-width.c: New file.
26558         * modules/uniwidth/u16-width: New file.
26559
26560         * tests/uniwidth/test-u8-width.c: New file.
26561         * modules/uniwidth/u8-width-tests: New file.
26562
26563         * lib/uniwidth/u8-width.c: New file.
26564         * modules/uniwidth/u8-width: New file.
26565
26566         * tests/uniwidth/test-uc_width.c: New file.
26567         * modules/uniwidth/width-tests: New file.
26568
26569         * lib/uniwidth/width.c: New file, from GNU libiconv.
26570         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
26571         * modules/uniwidth/width: New file.
26572
26573         * lib/uniwidth.h: New file, from GNU libiconv.
26574         * modules/uniwidth/base: New file.
26575
26576 2007-07-07  Bruno Haible  <bruno@clisp.org>
26577
26578         * lib/uniname.h: New file, from GNU gettext.
26579         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
26580         * lib/uniname/uninames.h: New file, from GNU gettext.
26581         * lib/uniname/uniname.c: New file, from GNU gettext.
26582         * tests/uniname/test-uninames.sh: New file.
26583         * tests/uniname/test-uninames.c: New file, from GNU gettext.
26584         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
26585         * modules/uniname/base: New file.
26586         * modules/uniname/uniname: New file.
26587         * modules/uniname/uniname-tests: New file.
26588         * MODULES.html.sh (Unicode string functions): Add the new modules.
26589
26590 2007-07-06  Bruno Haible  <bruno@clisp.org>
26591
26592         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
26593
26594 2007-07-06  Bruno Haible  <bruno@clisp.org>
26595
26596         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
26597         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
26598         includes <cygwin/sys_time.h> which includes <sys/select.h> which
26599         include <sys/time.h>.
26600         Reported by Eric Blake.
26601
26602 2007-07-06  Eric Blake  <ebb9@byu.net>
26603
26604         Fix testing canonicalize on cygwin.
26605         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
26606         Revert patch from 2007-06-19.
26607         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
26608         canonicalize module is also in use.
26609         * tests/test-canonicalize.c: New file.
26610         * tests/test-canonicalize.sh: Likewise.
26611         * modules/canonicalize-tests: Likewise.
26612
26613 2007-07-06  Jim Meyering  <jim@meyering.net>
26614
26615         * lib/getugroups.c (getugroups): Detect getgrent failure.
26616         Adjust comment to reflect reality: this function may return -1.
26617
26618 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
26619
26620         * build-aux/bootstrap (TP_URL,get_translations): Update to use
26621         the new TP address.
26622         (usage): Fix typo
26623         (gnulib_mk): New variable.
26624
26625 2007-07-05  Jim Meyering  <jim@meyering.net>
26626
26627         Don't let endgrent clobber errno, no matter how improbable.
26628         * lib/getugroups.c (getugroups): Save and restore errno around
26629         endgrent call.
26630
26631         Close the group DB even when failing with 2^31 or more members.
26632         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
26633
26634 2007-07-04  Jim Meyering  <jim@meyering.net>
26635
26636         * lib/getugroups.h: New file.
26637         * lib/getugroups.c: Include "getugroups.h".
26638         Remove uses of "register" keyword.
26639         Move local variable, "cp", down into scope where used.
26640         Give "username" parameter the "const" attribute.
26641         * modules/getugroups (Files): Add lib/getugroups.h
26642
26643 2007-07-04  Karl Berry  <karl@gnu.org>
26644
26645         * MODULES.html.sh (func_all_modules): Complete rename of
26646         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
26647
26648 2007-07-02  Bruno Haible  <bruno@clisp.org>
26649
26650         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
26651         mode, when inttypes.h comes from gnulib.
26652         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
26653
26654 2007-07-02  Simon Josefsson  <simon@josefsson.org>
26655
26656         * NEWS: Mention lgpl module name change.
26657
26658         * modules/lgpl-2.1: Renamed from lgpl.
26659
26660         * NEWS: Mention gpl module name change.
26661
26662         * modules/gpl-3.0: New file, based on gpl-2.0.
26663
26664         * modules/gpl-2.0: Renamed from gpl.
26665
26666         * modules/gpl: Fix filename, doc/gpl.texi is now found at
26667         doc/gpl-2.0.texi.
26668
26669 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
26670
26671         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
26672         #define __STDC_LIMIT_MACROS temporarily while including
26673         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
26674         Problem reported by Joel E. Denny in
26675         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
26676
26677 2007-07-01  Bruno Haible  <bruno@clisp.org>
26678
26679         * lib/unistdio.h: New file.
26680         * lib/unistdio/u-asnprintf.h: New file.
26681         * lib/unistdio/u-asprintf.h: New file.
26682         * lib/unistdio/u-printf-args.c: New file.
26683         * lib/unistdio/u-printf-args.h: New file.
26684         * lib/unistdio/u-printf-parse.h: New file.
26685         * lib/unistdio/u-snprintf.h: New file.
26686         * lib/unistdio/u-sprintf.h: New file.
26687         * lib/unistdio/u-vasprintf.h: New file.
26688         * lib/unistdio/u-vsnprintf.h: New file.
26689         * lib/unistdio/u-vsprintf.h: New file.
26690         * lib/unistdio/ulc-asnprintf.c: New file.
26691         * lib/unistdio/ulc-asprintf.c: New file.
26692         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
26693         * lib/unistdio/ulc-printf-parse.c: New file.
26694         * lib/unistdio/ulc-snprintf.c: New file.
26695         * lib/unistdio/ulc-sprintf.c: New file.
26696         * lib/unistdio/ulc-vasnprintf.c: New file.
26697         * lib/unistdio/ulc-vasprintf.c: New file.
26698         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
26699         * lib/unistdio/ulc-vsnprintf.c: New file.
26700         * lib/unistdio/ulc-vsprintf.c: New file.
26701         * lib/unistdio/u8-asnprintf.c: New file.
26702         * lib/unistdio/u8-asprintf.c: New file.
26703         * lib/unistdio/u8-printf-parse.c: New file.
26704         * lib/unistdio/u8-snprintf.c: New file.
26705         * lib/unistdio/u8-sprintf.c: New file.
26706         * lib/unistdio/u8-vasnprintf.c: New file.
26707         * lib/unistdio/u8-vasprintf.c: New file.
26708         * lib/unistdio/u8-vsnprintf.c: New file.
26709         * lib/unistdio/u8-vsprintf.c: New file.
26710         * lib/unistdio/u8-u8-asnprintf.c: New file.
26711         * lib/unistdio/u8-u8-asprintf.c: New file.
26712         * lib/unistdio/u8-u8-snprintf.c: New file.
26713         * lib/unistdio/u8-u8-sprintf.c: New file.
26714         * lib/unistdio/u8-u8-vasnprintf.c: New file.
26715         * lib/unistdio/u8-u8-vasprintf.c: New file.
26716         * lib/unistdio/u8-u8-vsnprintf.c: New file.
26717         * lib/unistdio/u8-u8-vsprintf.c: New file.
26718         * lib/unistdio/u16-asnprintf.c: New file.
26719         * lib/unistdio/u16-asprintf.c: New file.
26720         * lib/unistdio/u16-printf-parse.c: New file.
26721         * lib/unistdio/u16-snprintf.c: New file.
26722         * lib/unistdio/u16-sprintf.c: New file.
26723         * lib/unistdio/u16-vasnprintf.c: New file.
26724         * lib/unistdio/u16-vasprintf.c: New file.
26725         * lib/unistdio/u16-vsnprintf.c: New file.
26726         * lib/unistdio/u16-vsprintf.c: New file.
26727         * lib/unistdio/u16-u16-asnprintf.c: New file.
26728         * lib/unistdio/u16-u16-asprintf.c: New file.
26729         * lib/unistdio/u16-u16-snprintf.c: New file.
26730         * lib/unistdio/u16-u16-sprintf.c: New file.
26731         * lib/unistdio/u16-u16-vasnprintf.c: New file.
26732         * lib/unistdio/u16-u16-vasprintf.c: New file.
26733         * lib/unistdio/u16-u16-vsnprintf.c: New file.
26734         * lib/unistdio/u16-u16-vsprintf.c: New file.
26735         * lib/unistdio/u32-asnprintf.c: New file.
26736         * lib/unistdio/u32-asprintf.c: New file.
26737         * lib/unistdio/u32-printf-parse.c: New file.
26738         * lib/unistdio/u32-snprintf.c: New file.
26739         * lib/unistdio/u32-sprintf.c: New file.
26740         * lib/unistdio/u32-vasnprintf.c: New file.
26741         * lib/unistdio/u32-vasprintf.c: New file.
26742         * lib/unistdio/u32-vsnprintf.c: New file.
26743         * lib/unistdio/u32-vsprintf.c: New file.
26744         * lib/unistdio/u32-u32-asnprintf.c: New file.
26745         * lib/unistdio/u32-u32-asprintf.c: New file.
26746         * lib/unistdio/u32-u32-snprintf.c: New file.
26747         * lib/unistdio/u32-u32-sprintf.c: New file.
26748         * lib/unistdio/u32-u32-vasnprintf.c: New file.
26749         * lib/unistdio/u32-u32-vasprintf.c: New file.
26750         * lib/unistdio/u32-u32-vsnprintf.c: New file.
26751         * lib/unistdio/u32-u32-vsprintf.c: New file.
26752         * tests/unistdio/test-ulc-asnprintf1.c: New file.
26753         * tests/unistdio/test-ulc-asnprintf1.h: New file.
26754         * tests/unistdio/test-ulc-printf1.h: New file.
26755         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
26756         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
26757         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
26758         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
26759         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
26760         * tests/unistdio/test-ulc-vasprintf1.c: New file.
26761         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
26762         * tests/unistdio/test-ulc-vsprintf1.c: New file.
26763         * tests/unistdio/test-u8-asnprintf1.c: New file.
26764         * tests/unistdio/test-u8-asnprintf1.h: New file.
26765         * tests/unistdio/test-u8-printf1.h: New file.
26766         * tests/unistdio/test-u8-vasnprintf1.c: New file.
26767         * tests/unistdio/test-u8-vasnprintf2.c: New file.
26768         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
26769         * tests/unistdio/test-u8-vasnprintf3.c: New file.
26770         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
26771         * tests/unistdio/test-u8-vasprintf1.c: New file.
26772         * tests/unistdio/test-u8-vsnprintf1.c: New file.
26773         * tests/unistdio/test-u8-vsprintf1.c: New file.
26774         * tests/unistdio/test-u16-asnprintf1.c: New file.
26775         * tests/unistdio/test-u16-asnprintf1.h: New file.
26776         * tests/unistdio/test-u16-printf1.h: New file.
26777         * tests/unistdio/test-u16-vasnprintf1.c: New file.
26778         * tests/unistdio/test-u16-vasnprintf2.c: New file.
26779         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
26780         * tests/unistdio/test-u16-vasnprintf3.c: New file.
26781         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
26782         * tests/unistdio/test-u16-vasprintf1.c: New file.
26783         * tests/unistdio/test-u16-vsnprintf1.c: New file.
26784         * tests/unistdio/test-u16-vsprintf1.c: New file.
26785         * tests/unistdio/test-u32-asnprintf1.c: New file.
26786         * tests/unistdio/test-u32-asnprintf1.h: New file.
26787         * tests/unistdio/test-u32-printf1.h: New file.
26788         * tests/unistdio/test-u32-vasnprintf1.c: New file.
26789         * tests/unistdio/test-u32-vasnprintf2.c: New file.
26790         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
26791         * tests/unistdio/test-u32-vasnprintf3.c: New file.
26792         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
26793         * tests/unistdio/test-u32-vasprintf1.c: New file.
26794         * tests/unistdio/test-u32-vsnprintf1.c: New file.
26795         * tests/unistdio/test-u32-vsprintf1.c: New file.
26796         * modules/unistdio/base: New file.
26797         * modules/unistdio/u-printf-args: New file.
26798         * modules/unistdio/ulc-asnprintf: New file.
26799         * modules/unistdio/ulc-asprintf: New file.
26800         * modules/unistdio/ulc-fprintf: New file.
26801         * modules/unistdio/ulc-printf-parse: New file.
26802         * modules/unistdio/ulc-snprintf: New file.
26803         * modules/unistdio/ulc-sprintf: New file.
26804         * modules/unistdio/ulc-vasnprintf: New file.
26805         * modules/unistdio/ulc-vasprintf: New file.
26806         * modules/unistdio/ulc-vfprintf: New file.
26807         * modules/unistdio/ulc-vsnprintf: New file.
26808         * modules/unistdio/ulc-vsprintf: New file.
26809         * modules/unistdio/u8-asnprintf: New file.
26810         * modules/unistdio/u8-asprintf: New file.
26811         * modules/unistdio/u8-printf-parse: New file.
26812         * modules/unistdio/u8-snprintf: New file.
26813         * modules/unistdio/u8-sprintf: New file.
26814         * modules/unistdio/u8-vasnprintf: New file.
26815         * modules/unistdio/u8-vasprintf: New file.
26816         * modules/unistdio/u8-vsnprintf: New file.
26817         * modules/unistdio/u8-vsprintf: New file.
26818         * modules/unistdio/u8-u8-asnprintf: New file.
26819         * modules/unistdio/u8-u8-asprintf: New file.
26820         * modules/unistdio/u8-u8-snprintf: New file.
26821         * modules/unistdio/u8-u8-sprintf: New file.
26822         * modules/unistdio/u8-u8-vasnprintf: New file.
26823         * modules/unistdio/u8-u8-vasprintf: New file.
26824         * modules/unistdio/u8-u8-vsnprintf: New file.
26825         * modules/unistdio/u8-u8-vsprintf: New file.
26826         * modules/unistdio/u16-asnprintf: New file.
26827         * modules/unistdio/u16-asprintf: New file.
26828         * modules/unistdio/u16-printf-parse: New file.
26829         * modules/unistdio/u16-snprintf: New file.
26830         * modules/unistdio/u16-sprintf: New file.
26831         * modules/unistdio/u16-vasnprintf: New file.
26832         * modules/unistdio/u16-vasprintf: New file.
26833         * modules/unistdio/u16-vsnprintf: New file.
26834         * modules/unistdio/u16-vsprintf: New file.
26835         * modules/unistdio/u16-u16-asnprintf: New file.
26836         * modules/unistdio/u16-u16-asprintf: New file.
26837         * modules/unistdio/u16-u16-snprintf: New file.
26838         * modules/unistdio/u16-u16-sprintf: New file.
26839         * modules/unistdio/u16-u16-vasnprintf: New file.
26840         * modules/unistdio/u16-u16-vasprintf: New file.
26841         * modules/unistdio/u16-u16-vsnprintf: New file.
26842         * modules/unistdio/u16-u16-vsprintf: New file.
26843         * modules/unistdio/u32-asnprintf: New file.
26844         * modules/unistdio/u32-asprintf: New file.
26845         * modules/unistdio/u32-printf-parse: New file.
26846         * modules/unistdio/u32-snprintf: New file.
26847         * modules/unistdio/u32-sprintf: New file.
26848         * modules/unistdio/u32-vasnprintf: New file.
26849         * modules/unistdio/u32-vasprintf: New file.
26850         * modules/unistdio/u32-vsnprintf: New file.
26851         * modules/unistdio/u32-vsprintf: New file.
26852         * modules/unistdio/u32-u32-asnprintf: New file.
26853         * modules/unistdio/u32-u32-asprintf: New file.
26854         * modules/unistdio/u32-u32-snprintf: New file.
26855         * modules/unistdio/u32-u32-sprintf: New file.
26856         * modules/unistdio/u32-u32-vasnprintf: New file.
26857         * modules/unistdio/u32-u32-vasprintf: New file.
26858         * modules/unistdio/u32-u32-vsnprintf: New file.
26859         * modules/unistdio/u32-u32-vsprintf: New file.
26860         * modules/unistdio/ulc-asnprintf-tests: New file.
26861         * modules/unistdio/ulc-vasnprintf-tests: New file.
26862         * modules/unistdio/ulc-vasprintf-tests: New file.
26863         * modules/unistdio/ulc-vsnprintf-tests: New file.
26864         * modules/unistdio/ulc-vsprintf-tests: New file.
26865         * modules/unistdio/u8-asnprintf-tests: New file.
26866         * modules/unistdio/u8-vasnprintf-tests: New file.
26867         * modules/unistdio/u8-vasprintf-tests: New file.
26868         * modules/unistdio/u8-vsnprintf-tests: New file.
26869         * modules/unistdio/u8-vsprintf-tests: New file.
26870         * modules/unistdio/u16-asnprintf-tests: New file.
26871         * modules/unistdio/u16-vasnprintf-tests: New file.
26872         * modules/unistdio/u16-vasprintf-tests: New file.
26873         * modules/unistdio/u16-vsnprintf-tests: New file.
26874         * modules/unistdio/u16-vsprintf-tests: New file.
26875         * modules/unistdio/u32-asnprintf-tests: New file.
26876         * modules/unistdio/u32-vasnprintf-tests: New file.
26877         * modules/unistdio/u32-vasprintf-tests: New file.
26878         * modules/unistdio/u32-vsnprintf-tests: New file.
26879         * modules/unistdio/u32-vsprintf-tests: New file.
26880         * MODULES.html.sh (Unicode string functions): Add the new modules.
26881
26882 2007-07-01  Bruno Haible  <bruno@clisp.org>
26883
26884         * lib/sprintf.c (sprintf): Limit the available length estimation,
26885         to avoid address wraparound.
26886         * lib/vsprintf.c (vsprintf): Likewise.
26887         * modules/sprintf-posix (Dependencies): Add stdint.
26888         * modules/vsprintf-posix (Dependencies): Likewise.
26889
26890 2007-07-01  Bruno Haible  <bruno@clisp.org>
26891
26892         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
26893         Windows PATH as well. Conservative double-quoting. Comments.
26894
26895 2007-07-01  Bruno Haible  <bruno@clisp.org>
26896             Eric Blake  <ebb9@byu.net>
26897             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26898
26899         * gnulib-tool (self_abspathname): Fix algorithm to cope with
26900         empty components in $PATH, denoting '.'.
26901
26902 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26903
26904         * gnulib-tool: Fix indentation.
26905         (func_create_megatestdir): Likewise.
26906         Report by Bruno Haible.
26907
26908 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26909
26910         Sync from Automake.
26911         * build-aux/gnupload: Fix shell portability issues with for loops.
26912         Report by Karl Berry.
26913
26914 2007-06-29  Simon Josefsson  <simon@josefsson.org>
26915
26916         * build-aux/maint.mk (POURL): Use translationproject.org.
26917
26918 2007-06-27  Simon Josefsson  <simon@josefsson.org>
26919             Bruno Haible  <bruno@clisp.org>
26920
26921         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
26922         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
26923         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
26924         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
26925         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
26926
26927 2007-06-27  Bruno Haible  <bruno@clisp.org>
26928
26929         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
26930         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
26931
26932 2007-06-26  Karl Berry  <karl@gnu.org>
26933
26934         * MODULES.html.sh: remove xreadlink-with-size.
26935
26936 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26937
26938         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
26939         method that I hope also handles the double-include problem noted
26940         by Bruno Haible in
26941         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
26942
26943 2007-06-23  Bruno Haible  <bruno@clisp.org>
26944
26945         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
26946         Don't let the 'mostlyclean' target fail if the last subdirectory could
26947         not be removed.
26948         Reported by Karl Berry.
26949
26950 2007-06-23  Bruno Haible  <bruno@clisp.org>
26951
26952         * gnulib-tool (echo): Add a speedier workaround for ksh.
26953         * tests/test-echo.sh: Likewise.
26954
26955 2007-06-23  Bruno Haible  <bruno@clisp.org>
26956
26957         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
26958         * tests/test-echo.sh: Likewise.
26959
26960 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26961
26962         * gnulib-tool (IFS): Initialize early, so we don't set it to
26963         empty later.
26964         (self_abspathname): Rewrite algorithm to set it, reindent.
26965         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
26966         (func_create_megatestdir): Merge some sed scripts.
26967
26968 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26969
26970         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
26971         exposed by Sun Studio 11 cc on Solaris 8.
26972
26973 2007-06-22  Bruno Haible  <bruno@clisp.org>
26974
26975         * gnulib-tool (echo): Ensure the echo primitive does not interpret
26976         backslashes.
26977         * tests/test-echo.sh: New file.
26978
26979 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26980
26981         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
26982         simplify `sed_replace_build_aux' scripts, they are portable but
26983         echoing them with `echo' is not.
26984         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
26985
26986 2007-06-21  Karl Berry  <karl@gnu.org>
26987
26988         * config/srclist.txt: guess we can't handle the licenses via
26989         srclist at the moment.
26990
26991 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
26992
26993         * MODULES.html.sh: Add include_next.
26994         * modules/include_next: New file.
26995
26996 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
26997
26998         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
26999         INCLUDE_NEXT.
27000         (gl_CHECK_NEXT_HEADERS): New macro.
27001         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
27002         the obsolescent gl_ABSOLUTE_HEADER.
27003         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
27004         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
27005         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
27006         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
27007         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
27008         * m4/math_h.m4 (gl_MATH_H): Likewise.
27009         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
27010         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
27011         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
27012         * m4/stdint.m4 (gl_STDINT_H): Likewise.
27013         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
27014         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
27015         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
27016         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
27017         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
27018         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
27019         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
27020         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
27021         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
27022         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
27023         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
27024         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
27025         * m4/inttypes.m4 (gl_INTTYPES_H): Define
27026         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
27027         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
27028         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
27029         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
27030         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
27031         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
27032         * lib/float_.h: Likewise.
27033         * lib/inttypes_.h: Likewise.
27034         * lib/math_.h: Likewise.
27035         * lib/search_.h: Likewise.
27036         * lib/signal_.h: Likewise.
27037         * lib/stdint_.h: Likewise.
27038         * lib/stdio_.h: Likewise.
27039         * lib/stdlib_.h: Likewise.
27040         * lib/string_.h: Likewise.
27041         * lib/sys_stat_.h: Likewise.
27042         * lib/sys_time_.h: Likewise.
27043         * lib/time_.h: Likewise.
27044         * lib/unistd_.h: Likewise.
27045         * lib/wchar_.h: Likewise.
27046         * lib/wctype_.h: Likewise.
27047         * lib/dirent_.h: Likewise.
27048         * lib/iconv_.h: Likewise.
27049         * lib/locale_.h: Likewise.
27050         * lib/netinet_in_.h: Likewise.
27051         * lib/sys_select_.h: Likewise.
27052         * lib/sys_socket_.h: Likewise.
27053         * lib/sysexits_.h: Likewise.
27054         * modules/fcntl (Depends-on): Depend on include_next, not
27055         absolute_header.
27056         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
27057         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
27058         * modules/fchdir: Likewise.
27059         * modules/float: Likewise.
27060         * modules/iconv_open: Likewise.
27061         * modules/inttypes: Likewise.
27062         * modules/locale: Likewise.
27063         * modules/math: Likewise.
27064         * modules/netinet_in: Likewise.
27065         * modules/search: Likewise.
27066         * modules/signal: Likewise.
27067         * modules/stdint: Likewise.
27068         * modules/stdio: Likewise.
27069         * modules/stdlib: Likewise.
27070         * modules/string: Likewise.
27071         * modules/sys_select: Likewise.
27072         * modules/sys_socket: Likewise.
27073         * modules/sys_stat: Likewise.
27074         * modules/sys_time: Likewise.
27075         * modules/sysexits: Likewise.
27076         * modules/time: Likewise.
27077         * modules/unistd: Likewise.
27078         * modules/wchar: Likewise.
27079         * modules/wctype: Likewise.
27080         * modules/sys_stat: Change maintainer to "all".
27081         * modules/unistd: Likewise.
27082
27083 2007-06-20  Karl Berry  <karl@gnu.org>
27084
27085         * config/srclist.txt: track www changes in license files.
27086
27087 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
27088
27089         * build-aux/bootstrap: Remove stray dot.
27090         Make sure build_aux settings are honored when linking
27091         gnulib_extra_files.
27092
27093 2007-06-19  Eric Blake  <ebb9@byu.net>
27094
27095         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
27096         Allow compilation on cygwin.
27097
27098 2007-06-19  Jim Meyering  <jim@meyering.net>
27099
27100         xreadlink-with-size: Remove module.  No longer used.
27101         Ex-callers now use xreadlink or mreadlink-with-size.
27102         * modules/xreadlink-with-size: Remove module.
27103         * lib/xreadlink-with-size.c: Remove file.
27104         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
27105         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
27106         just before the function definition *is* accurate.
27107
27108         Eliminate one way canonicalize_filename_mode could exit.
27109         * lib/canonicalize.c (canonicalize_filename_mode):
27110         Use mreadlink_with_size, not xreadlink_with_size.
27111
27112 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
27113
27114         Detect porting problems to FreeBSD/arm, which has time_t wider than
27115         long int.  Original problem reported for GNU diff by Xin Li in
27116         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
27117         * modules/getdate (Depends-on): Add intprops, verify.
27118         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
27119         is an integer type no wider than long int.
27120
27121 2007-06-18  Jim Meyering  <jim@meyering.net>
27122
27123         New module: mreadlink-with-size.
27124         * MODULES.html.sh: Add mreadlink-with-size.
27125         * modules/mreadlink-with-size: New module
27126         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
27127         not xreadlink-with-size.
27128         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
27129
27130 2007-06-16  Bruno Haible  <bruno@clisp.org>
27131
27132         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
27133         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
27134         Reported by Gary V. Vaughan <gary@gnu.org>.
27135
27136 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
27137
27138         Revamp lchown so that it lives in unistd.h where it belongs.
27139         * lib/lchown.h: Remove.
27140         * lib/dirchownmod.c: Don't include lib/lchown.h.
27141         * lib/fchownat.c: Likewise.
27142         * lib/openat.c: Likewise.
27143         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
27144         does not follow symlinks.
27145         (EOPNOTSUPP): Define if not defined.
27146         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
27147         is defined to 0.
27148         (lchown): New decl.
27149         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
27150         Do not check for lchown decl.
27151         Set REPLACE_LCHOWN.
27152         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
27153         REPLACE_LCHOWN.
27154         * modules/chown: Make it clear it follows symlinks.
27155         * modules/lchown: Make it clear it doesn't follow symlinks.
27156         (Files): Remove lib/lchown.h
27157         (Depends-on): Add unistd.
27158         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
27159         (Include): Include <unistd.h>, not "lchown.h".
27160         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
27161         REPLACE_LCHOWN.
27162
27163 2007-06-15  Jim Meyering  <jim@meyering.net>
27164
27165         Change license (GPL to LGPL) of fsusage and dependents.
27166         * modules/fsusage (License): Change to LGPL.
27167         * modules/full-read (License): Likewise.
27168         * modules/full-write (License): Likewise.
27169         * modules/safe-read (License): Likewise.
27170         * modules/safe-write (License): Likewise.
27171
27172 2007-06-14  Ben Pfaff  <blp@gnu.org>
27173
27174         Missing part of allocsa -> malloca transition.
27175         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
27176         gl_MALLOCA.
27177
27178 2007-06-12  Bruno Haible  <bruno@clisp.org>
27179
27180         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
27181         to ia64, x86_64, i386.
27182         Reported by Eric Blake.
27183
27184 2007-06-12  Bruno Haible  <bruno@clisp.org>
27185
27186         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
27187         cross-compiling to x86_64.
27188
27189 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
27190
27191         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
27192         glitch reported by Ralf Wildenhues in
27193         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
27194
27195         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
27196         Vin Shelton.
27197
27198 2007-06-11  Bruno Haible  <bruno@clisp.org>
27199
27200         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
27201         replacement string.
27202         Reported by Eric Blake.
27203
27204 2007-06-10  Bruno Haible  <bruno@clisp.org>
27205
27206         Prepare vasnprintf code for use with Unicode strings.
27207         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
27208         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
27209         TYPE_U32_STRING.
27210         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
27211         a_u32_string variants.
27212         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27213         * lib/printf-args.c: Don't include config.h and the specification
27214         header if PRINTF_FETCHARGS is already defined.
27215         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27216         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
27217         TYPE_U16_STRING, TYPE_U32_STRING.
27218         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
27219         u16_directive, u16_directives, u32_directive, u32_directives): New
27220         types.
27221         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
27222         New declarations.
27223         * lib/printf-parse.c: Don't include config.h and the specification
27224         header if PRINTF_PARSE is already defined. Eliminate the set of
27225         parameters for WIDE_CHAR_VERSION; the user of this file must provide
27226         them now. Include c-ctype.h.
27227         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
27228         directive and CHAR_T_ONLY_ASCII.
27229         * lib/vasnprintf.c: Don't include config.h and the specification header
27230         if VASNPRINTF is already defined.
27231         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
27232         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
27233         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
27234         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
27235         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
27236         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
27237         code accordingly.
27238         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
27239         pad_ourselves also in this case, with the 'c' and 's' directives, and
27240         with a different notion of "width".
27241         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
27242
27243 2007-06-10  Bruno Haible  <bruno@clisp.org>
27244
27245         * modules/unistr/u32-mbsnlen: New file.
27246         * lib/unistr/u32-mbsnlen.c: New file.
27247
27248         * modules/unistr/u16-mbsnlen: New file.
27249         * lib/unistr/u16-mbsnlen.c: New file.
27250
27251         * modules/unistr/u8-mbsnlen: New file.
27252         * lib/unistr/u8-mbsnlen.c: New file.
27253
27254         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
27255         declarations.
27256
27257 2007-06-10  Bruno Haible  <bruno@clisp.org>
27258
27259         * lib/string_.h (mbsnlen): New declaration.
27260         * lib/mbsnlen.c: New file.
27261         * m4/mbsnlen.m4: New file.
27262         * modules/mbsnlen: New file.
27263         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
27264         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
27265         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
27266
27267 2007-06-10  Bruno Haible  <bruno@clisp.org>
27268
27269         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
27270
27271 2007-06-10  Bruno Haible  <bruno@clisp.org>
27272
27273         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
27274         * lib/mbuiter.h: Likewise.
27275
27276 2007-06-10  Bruno Haible  <bruno@clisp.org>
27277
27278         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
27279         declaration.
27280
27281 2007-06-10  Karl Berry  <karl@gnu.org>
27282
27283         * config/srclist.txt: remove gettext entries, Bruno prefers
27284         to update individually.
27285
27286 2007-06-10  Bruno Haible  <bruno@clisp.org>
27287
27288         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
27289         'maxlen'. Ensure only length + width bytes are allocated, not
27290         length + 1 + width.
27291
27292 2007-06-09  Bruno Haible  <bruno@clisp.org>
27293
27294         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
27295         (CHAR_T): Remove macro.
27296         (VASNPRINTF): Update.
27297
27298 2007-06-09  Bruno Haible  <bruno@clisp.org>
27299
27300         * MODULES.html.sh (Unicode string functions): Add the new modules.
27301
27302         * modules/uniconv/u32-conv-to-enc: New file.
27303         * lib/uniconv/u32-conv-to-enc.c: New file.
27304         * modules/uniconv/u32-conv-to-enc-tests: New file.
27305         * tests/uniconv/test-u32-conv-to-enc.c: New file.
27306
27307         * modules/uniconv/u16-conv-to-enc: New file.
27308         * lib/uniconv/u16-conv-to-enc.c: New file.
27309         * lib/uniconv/u-conv-to-enc.h: New file.
27310         * modules/uniconv/u16-conv-to-enc-tests: New file.
27311         * tests/uniconv/test-u16-conv-to-enc.c: New file.
27312
27313         * modules/uniconv/u8-conv-to-enc: New file.
27314         * lib/uniconv/u8-conv-to-enc.c: New file.
27315         * modules/uniconv/u8-conv-to-enc-tests: New file.
27316         * tests/uniconv/test-u8-conv-to-enc.c: New file.
27317
27318         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
27319         u32_conv_to_encoding): New declarations.
27320
27321 2007-06-09  Bruno Haible  <bruno@clisp.org>
27322
27323         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
27324
27325 2007-06-09  Bruno Haible  <bruno@clisp.org>
27326
27327         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
27328         * modules/malloca: Renamed from modules/allocsa, updated.
27329         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
27330         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
27331         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
27332         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
27333         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
27334         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
27335         * modules/xmalloca: Renamed from modules/xallocsa, updated.
27336         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
27337         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
27338         * modules/c-strcasestr (Depends-on): Update.
27339         * lib/c-strcasestr.c: Update.
27340         * modules/c-strstr (Depends-on): Update.
27341         * lib/c-strstr.c: Update.
27342         * modules/canonicalize-lgpl (Depends-on): Update.
27343         * lib/canonicalize-lgpl.c: Update.
27344         * modules/clean-temp (Depends-on): Update.
27345         * lib/clean-temp.c: Update.
27346         * modules/csharpcomp (Depends-on): Update.
27347         * lib/csharpcomp.c: Update.
27348         * modules/csharpexec (Depends-on): Update.
27349         * lib/csharpexec.c: Update.
27350         * modules/javacomp (Depends-on): Update.
27351         * lib/javacomp.c: Update.
27352         * modules/javaexec (Depends-on): Update.
27353         * lib/javaexec.c: Update.
27354         * modules/mbscasestr (Depends-on): Update.
27355         * lib/mbscasestr.c: Update.
27356         * modules/mbsstr (Depends-on): Update.
27357         * lib/mbsstr.c: Update.
27358         * modules/setenv (Depends-on): Update.
27359         * lib/setenv.c: Update.
27360         * modules/strcasestr (Depends-on): Update.
27361         * lib/strcasestr.c: Update.
27362         * modules/striconveha (Depends-on): Update.
27363         * lib/striconveha.c: Update.
27364         * modules/relocatable-prog-wrapper (Files): Update.
27365         * lib/relocwrapper.c: Update.
27366         * build-aux/install-reloc: Update.
27367         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
27368
27369 2007-06-08  Bruno Haible  <bruno@clisp.org>
27370
27371         Port to uClibc.
27372         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
27373         * lib/fpurge.c (fpurge): Likewise.
27374         * lib/freading.c (freading): Likewise.
27375         * lib/fseeko.c (rpl_fseeko): Likewise.
27376         * lib/fseterr.c (fseterr): Likewise.
27377         * lib/fwriting.c (fwriting): Likewise.
27378         * tests/test-fflush.c (main): Avoid a failure on uClibc.
27379
27380 2007-06-08  Bruno Haible  <bruno@clisp.org>
27381
27382         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
27383         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
27384         * modules/gettext (Files): Add m4/intlmacosx.m4.
27385
27386 2007-06-07  Bruno Haible  <bruno@clisp.org>
27387
27388         * modules/localename-tests: New file.
27389         * tests/test-localename.c: New file.
27390
27391         New module 'localename'.
27392         * lib/localename.h: New file.
27393         * lib/localename.c: New file, from GNU gettext.
27394         * m4/localename.m4: New file.
27395         * modules/localename: New file.
27396
27397 2007-06-07  Bruno Haible  <bruno@clisp.org>
27398
27399         Work around the lack of <wchar.h> on some builds of uClibc.
27400         * doc/headers/wchar.texi: Update.
27401         * lib/wchar_.h: Include <wchar.h> only if it exists.
27402         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
27403         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
27404         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
27405         doesn't exist.
27406         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
27407         * modules/mbfile (Depends-on): Add wchar.
27408         * modules/mbiter (Depends-on): Likewise.
27409         * modules/mbuiter (Depends-on): Likewise.
27410         Reported by Simon Josefsson.
27411
27412 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
27413
27414         Work around problem reported by Steven M. Schweda in
27415         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
27416         Tru64 5.1B with the Compaq compiler environment installed declares
27417         an 'isblank' function but does not define it in the C library.
27418         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
27419         * lib/regex_internal.h (isblank): Likewise.
27420         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
27421         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
27422
27423 2007-06-05  Bruno Haible  <bruno@clisp.org>
27424
27425         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
27426         ia64.
27427         * modules/printf-safe: New file.
27428         * modules/fprintf-posix (Depends-on): Add printf-safe.
27429         * modules/printf-posix (Depends-on): Likewise.
27430         * modules/snprintf-posix (Depends-on): Likewise.
27431         * modules/sprintf-posix (Depends-on): Likewise.
27432         * modules/vasnprintf-posix (Depends-on): Likewise.
27433         * modules/vasprintf-posix (Depends-on): Likewise.
27434         * modules/vfprintf-posix (Depends-on): Likewise.
27435         * modules/vprintf-posix (Depends-on): Likewise.
27436         * modules/vsnprintf-posix (Depends-on): Likewise.
27437         * modules/vsprintf-posix (Depends-on): Likewise.
27438         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
27439         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
27440         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
27441         "no" on i386, x86_64, ia64.
27442         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
27443         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27444         on i386, x86_64, ia64.
27445         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
27446         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27447         on i386, x86_64, ia64.
27448         * tests/test-vasnprintf-posix.c: Include float.h.
27449         (LDBL80_WORDS): New macro.
27450         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27451         on i386, x86_64, ia64.
27452         * tests/test-vasprintf-posix.c: Include float.h.
27453         (LDBL80_WORDS): New macro.
27454         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27455         on i386, x86_64, ia64.
27456         * tests/test-snprintf-posix.c: Include float.h.
27457         * tests/test-sprintf-posix.c: Likewise.
27458         * tests/test-vsnprintf-posix.c: Likewise.
27459         * tests/test-vsprintf-posix.c: Likewise.
27460
27461 2007-06-05  Bruno Haible  <bruno@clisp.org>
27462
27463         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
27464         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
27465         non-IEEE numbers on i386, x86_64, ia64.
27466         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
27467         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
27468         * tests/test-isnanl.h: Include float.h.
27469         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
27470
27471 2007-06-05  Bruno Haible  <bruno@clisp.org>
27472
27473         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
27474         also the %a / %A. Handle the %a / %A code before this extra handling.
27475
27476 2007-06-05  Bruno Haible  <bruno@clisp.org>
27477
27478         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
27479         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
27480
27481 2007-06-05  Bruno Haible  <bruno@clisp.org>
27482
27483         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
27484         typo in variable name.
27485
27486 2007-06-05  Eric Blake  <ebb9@byu.net>
27487
27488         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
27489         Reported by Simon Josefsson.
27490
27491 2007-06-04  Bruno Haible  <bruno@clisp.org>
27492
27493         Avoid test failures on some PowerPC platforms.
27494         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
27495         Define differently for PowerPC.
27496         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
27497         Reported by Gary V. Vaughan <gary@gnu.org>.
27498
27499 2007-06-02  Bruno Haible  <bruno@clisp.org>
27500
27501         Fix test-stdint failure on FreeBSD/ia64.
27502         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
27503         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
27504         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
27505         * doc/headers/stdint.texi: Update.
27506
27507 2007-06-01  Bruno Haible  <bruno@clisp.org>
27508
27509         * tests/test-binary-io.c (main): Pass a third argument to open().
27510         Reported by Gary V. Vaughan <gary@gnu.org>.
27511
27512 2007-06-01  Bruno Haible  <bruno@clisp.org>
27513
27514         * doc/functions/frexpl.texi: Update for mingw.
27515
27516 2007-06-01  Bruno Haible  <bruno@clisp.org>
27517
27518         * tests/test-lseek.c (main): Disable test of errno for invalid third
27519         argument.
27520         * doc/functions/lseek.texi: Update.
27521         Reported by Gary V. Vaughan <gary@gnu.org>.
27522
27523 2007-05-28  Bruno Haible  <bruno@clisp.org>
27524
27525         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
27526
27527 2007-05-31  Eric Blake  <ebb9@byu.net>
27528
27529         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
27530         cross compiling.
27531
27532 2007-05-30  Eric Blake  <ebb9@byu.net>
27533         and Bruno Haible  <bruno@clisp.org>
27534
27535         Work around mingw test failures exposed by m4-1.4.9b.
27536         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
27537         * tests/test-unistd.c: Disable uid_t and git_t tests for the
27538         moment.
27539
27540 2007-05-30  Bruno Haible  <bruno@clisp.org>
27541
27542         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
27543         assuming that they are closed. Needed on HP-UX 11.
27544
27545 2007-05-29  Bruno Haible  <bruno@clisp.org>
27546
27547         Fix a problem with #include_next.
27548         * lib/dirent_.h: Split the double-inclusion guard.
27549         * lib/fcntl_.h: Likewise.
27550         * lib/float_.h: Likewise.
27551         * lib/iconv_.h: Likewise.
27552         * lib/inttypes_.h: Likewise.
27553         * lib/locale_.h: Likewise.
27554         * lib/math_.h: Likewise.
27555         * lib/netinet_in_.h: Likewise.
27556         * lib/search_.h: Likewise.
27557         * lib/signal_.h: Likewise.
27558         * lib/stdint_.h: Likewise.
27559         * lib/stdio_.h: Likewise.
27560         * lib/stdlib_.h: Likewise.
27561         * lib/string_.h: Likewise.
27562         * lib/sys_select_.h: Likewise.
27563         * lib/sys_socket_.h: Likewise.
27564         * lib/sys_stat_.h: Likewise.
27565         * lib/sys_time_.h: Likewise.
27566         * lib/sysexits_.h: Likewise.
27567         * lib/time_.h: Likewise.
27568         * lib/unistd_.h: Likewise.
27569         * lib/wchar_.h: Likewise.
27570         * lib/wctype_.h: Likewise.
27571
27572 2007-05-29  Bruno Haible  <bruno@clisp.org>
27573
27574         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
27575         for the moment.
27576
27577 2007-05-29  Bruno Haible  <bruno@clisp.org>
27578
27579         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
27580         invocation.
27581         Reported by Eric Blake.
27582
27583 2007-05-29  Bruno Haible  <bruno@clisp.org>
27584
27585         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
27586         compiling case.
27587
27588 2007-05-29  Eric Blake  <ebb9@byu.net>
27589             Bruno Haible  <bruno@clisp.org>
27590
27591         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
27592         cross compiles.
27593
27594 2007-05-28  Eric Blake  <ebb9@byu.net>
27595
27596         * modules/closein-tests (test_closein_LDADD): Support test on
27597         cygwin with libtool.
27598
27599 2007-05-28  Bruno Haible  <bruno@clisp.org>
27600
27601         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
27602         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
27603         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
27604         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
27605         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
27606         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
27607         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
27608         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
27609         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
27610
27611 2007-05-28  Eric Blake  <ebb9@byu.net>
27612
27613         Unconditionally include <config.h> in unit tests.
27614         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
27615         * tests/test-allocsa.c, tests/test-arcfour.c,
27616         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
27617         tests/test-array_list.c, tests/test-array_oset.c,
27618         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
27619         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
27620         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
27621         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
27622         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
27623         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
27624         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
27625         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
27626         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
27627         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
27628         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
27629         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
27630         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
27631         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
27632         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
27633         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
27634         test-md5.c, test-memmem.c, test-printf-posix.c,
27635         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
27636         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
27637         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
27638         test-strcasestr.c, test-striconv.c, test-striconveh.c,
27639         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
27640         test-vasnprintf-posix2.c, test-vasnprintf.c,
27641         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
27642         test-vfprintf-posix.c, test-vprintf-posix.c,
27643         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
27644         test-xvasprintf.c: Likewise.
27645
27646 2007-05-28  Bruno Haible  <bruno@clisp.org>
27647
27648         * gnulib-tool (func_import): Remember the --with-tests command-line
27649         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
27650         Reported by Eric Blake.
27651
27652 2007-05-28  Bruno Haible  <bruno@clisp.org>
27653
27654         * modules/ftell-tests: New file.
27655         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
27656         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
27657
27658         * lib/ftell.c: New file.
27659         * modules/ftell: New file.
27660         * m4/ftell.m4: New file.
27661         * doc/functions/ftell.texi: Update.
27662         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
27663         REPLACE_FTELL.
27664         * lib/stdio_.h (rpl_ftell): New declaration.
27665         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
27666         REPLACE_FTELL.
27667
27668 2007-05-28  Eric Blake  <ebb9@byu.net>
27669
27670         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
27671
27672 2007-05-28  Bruno Haible  <bruno@clisp.org>
27673
27674         * modules/fseek-tests: New file.
27675         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
27676         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
27677
27678         * lib/fseek.c: New file.
27679         * modules/fseek: New file.
27680         * m4/fseek.m4: New file.
27681         * doc/functions/fseek.texi: Update.
27682         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
27683         REPLACE_FSEEK.
27684         * lib/stdio_.h (rpl_fseek): New declaration.
27685         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
27686         REPLACE_FSEEK.
27687
27688 2007-05-28  Bruno Haible  <bruno@clisp.org>
27689
27690         * lib/stdio_.h (fflush): More comments.
27691
27692 2007-05-28  Bruno Haible  <bruno@clisp.org>
27693
27694         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
27695         runtime test.
27696
27697 2007-05-28  Eric Blake  <ebb9@byu.net>
27698
27699         Improve lseek module.
27700         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
27701         * lib/unistd_.h (lseek): Scale back link warning message.
27702         * tests/test-lseek.c: Beef up test.
27703         * tests/test-lseek.sh: Exercise more facets of lseek.
27704         Reported by Bruno Haible.
27705
27706 2007-05-28  Bruno Haible  <bruno@clisp.org>
27707
27708         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
27709         to define.
27710
27711 2007-05-27  Bruno Haible  <bruno@clisp.org>
27712
27713         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
27714
27715 2007-05-27  Bruno Haible  <bruno@clisp.org>
27716
27717         * modules/openmp: New file.
27718         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
27719         Noah Misch.
27720
27721 2007-05-26  Bruno Haible  <bruno@clisp.org>
27722
27723         * modules/chdir-long (Depends-on): Add fchdir.
27724         * modules/chdir-safer (Depends-on): Likewise.
27725         * modules/fts (Depends-on): Likewise.
27726         * modules/fts-lgpl (Depends-on): Likewise.
27727         * modules/openat (Depends-on): Likewise.
27728         * modules/savewd (Depends-on): Likewise.
27729
27730 2007-05-24  Eric Blake  <ebb9@byu.net>
27731
27732         Fix lseek on mingw.
27733         * modules/lseek: New module.
27734         * m4/lseek.m4: New file.
27735         * lib/lseek.c: New file.
27736         * modules/lseek-tests: New file.
27737         * tests/test-lseek.c: New file.
27738         * tests/test-lseek.sh: New file.
27739         * MODULES.html.sh: Document lseek module.
27740         * modules/fflush (Depends-on): Add lseek, fseeko.
27741         * modules/fseeko (Depends-on): Likewise.
27742         * modules/ftello (Depends-on): Likewise.
27743         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
27744         broken.
27745         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
27746         broken.
27747         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
27748         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
27749         * lib/ftello.c (rpl_ftello): Likewise.
27750         * tests/test-fseeko.c (main): Test this.
27751         * tests/test-fseeko.sh: Likewise.
27752         * tests/test-ftello.c (main): Likewise.
27753         * tests/test-ftello.sh: Likewise.
27754         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
27755         implies replacing fseek.
27756         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
27757         HAVE_FTELLO.
27758         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
27759         * modules/unistd (Makefile.am): Likewise.
27760         * lib/unistd_.h (lseek): Declare a replacement.
27761         * doc/functions/lseek.texi (lseek): Document this fix.
27762         * doc/functions/fseek.texi (fseek): Likewise.
27763         * doc/functions/ftell.texi (ftell): Likewise.
27764
27765 2007-05-24  Bruno Haible  <bruno@clisp.org>
27766
27767         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
27768         in the printed representation of a NaN.
27769         * tests/test-vasprintf-posix.c (test_function): Likewise.
27770         * tests/test-snprintf-posix.h (test_function): Likewise.
27771         * tests/test-sprintf-posix.h (test_function): Likewise.
27772         Reported by Eric Blake.
27773
27774 2007-05-23  Eric Blake  <ebb9@byu.net>
27775
27776         Fix fseeko/ftello on cygwin 1.5.24.
27777         * doc/functions/fseeko.texi (fseeko): Document the fix.
27778         * doc/functions/ftello.texi (ftello): Document the fix.
27779         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
27780         * doc/functions/stdout.text (stdout): New file.
27781         * doc/functions/stderr.text (stderr): New file.
27782         * doc/gnulib.texi (Function Substitutes): Use new files.
27783         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
27784         prior to 1.7.0.
27785         * tests/test-ftello.c (main): Likewise for ftello.
27786         * tests/test-fseeko.sh: New file.
27787         * tests/test-ftello.sh: New file.
27788         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
27789         with seekable stdin.
27790         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
27791         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
27792         (gl_REPLACE_FSEEKO): New macro.
27793         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
27794         * modules/fseeko (Files): Distribute fseeko.c.
27795         * modules/ftello (Files): Distribute ftello.c.
27796         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
27797         mode.
27798         * lib/ftello.c (rpl_ftello): New file.
27799         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
27800         fseeko, ftello.
27801         (gl_STDIN_LARGE_OFFSET): New macro.
27802         * modules/stdio (Makefile.am): Perform the replacement.
27803         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
27804
27805 2007-05-23  Bruno Haible  <bruno@clisp.org>
27806
27807         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
27808         GNULIB_POSIXCHECK is defined.
27809
27810 2007-05-21  Bruno Haible  <bruno@clisp.org>
27811
27812         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
27813         Check also the output for NaN arguments. When cross-compiling, guess
27814         no on IRIX.
27815         * lib/vasnprintf.c: Update comments.
27816         * tests/test-vasnprintf-posix.c (strisnan): New function.
27817         (test_function): Use it.
27818         * tests/test-vasprintf-posix.c (strisnan): New function.
27819         (test_function): Use it.
27820         * tests/test-snprintf-posix.h (strisnan): New function.
27821         (test_function): Use it.
27822         * tests/test-sprintf-posix.h (strisnan): New function.
27823         (test_function): Use it.
27824         Reported by Eric Blake.
27825
27826 2007-05-20  Bruno Haible  <bruno@clisp.org>
27827
27828         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
27829         numbers that fails on BeOS.
27830         * doc/functions/frexpl.texi: Update.
27831
27832 2007-05-20  Jim Meyering  <jim@meyering.net>
27833
27834         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
27835         forced upon us by glibc-2.6.
27836
27837 2007-05-20  Bruno Haible  <bruno@clisp.org>
27838
27839         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
27840         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
27841         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
27842         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
27843         NEED_PRINTF_INFINITE.
27844         (is_infinitel): New function.
27845         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
27846         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
27847         gl_PREREQ_VASNPRINTF_INFINITE.
27848         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
27849         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27850         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
27851         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
27852         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
27853         gl_PREREQ_VASNPRINTF_INFINITE.
27854         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27855         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27856         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27857         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27858         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27859         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27860         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27861         * doc/functions/fprintf.texi: Update.
27862         * doc/functions/printf.texi: Update.
27863         * doc/functions/snprintf.texi: Update.
27864         * doc/functions/sprintf.texi: Update.
27865         * doc/functions/vfprintf.texi: Update.
27866         * doc/functions/vprintf.texi: Update.
27867         * doc/functions/vsnprintf.texi: Update.
27868         * doc/functions/vsprintf.texi: Update.
27869
27870 2007-05-20  Bruno Haible  <bruno@clisp.org>
27871
27872         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
27873         was not found in libc.
27874         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
27875
27876 2007-05-20  Bruno Haible  <bruno@clisp.org>
27877
27878         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27879         printed as "-nan" instead of "nan".
27880         * tests/test-vasprintf-posix.c (test_function): Likewise.
27881         * tests/test-snprintf-posix.h (test_function): Likewise.
27882         * tests/test-sprintf-posix.h (test_function): Likewise.
27883         Needed for HP-UX 11.
27884
27885 2007-05-20  Jim Meyering  <jim@meyering.net>
27886
27887         Fix buggy test for the fchownat-deref bug.
27888         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
27889         symlink required for the run-test.  Without it, this test would
27890         always declare that fchownat doesn't work, and client code would
27891         unnecessarily use the replacement function with fixed libc.
27892         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
27893         Reported by Greg Schafer.
27894
27895 2007-05-19  Bruno Haible  <bruno@clisp.org>
27896
27897         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
27898         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
27899         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
27900         Needed for IRIX 6.5 and Solaris 2.5.1.
27901
27902 2007-05-19  Bruno Haible  <bruno@clisp.org>
27903
27904         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
27905         (test_function): Skip tests involving -0.0 on platforms where
27906         -0.0 = 0.0.
27907         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
27908         (test_function): Skip tests involving -0.0 on platforms where
27909         -0.0 = 0.0.
27910         * tests/test-snprintf-posix.h (have_minus_zero): New function.
27911         (test_function): Skip tests involving -0.0 on platforms where
27912         -0.0 = 0.0.
27913         * tests/test-sprintf-posix.h (have_minus_zero): New function.
27914         (test_function): Skip tests involving -0.0 on platforms where
27915         -0.0 = 0.0.
27916         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
27917         tests.
27918         * tests/test-printf-posix.h (test_function): Likewise.
27919         * tests/test-printf-posix.output: Remove all -0.0 related results.
27920         Needed for IRIX 6.5.
27921
27922 2007-05-19  Bruno Haible  <bruno@clisp.org>
27923
27924         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27925         printed as "nan0x7fffffff" instead of "nan".
27926         * tests/test-vasprintf-posix.c (test_function): Likewise.
27927         * tests/test-snprintf-posix.h (test_function): Likewise.
27928         * tests/test-sprintf-posix.h (test_function): Likewise.
27929         * tests/test-fprintf-posix.h (NaN): Remove macro.
27930         (test_function): Remove all NaN related tests.
27931         * tests/test-printf-posix.h (NaN): Remove macro.
27932         (test_function): Remove all NaN related tests.
27933         * tests/test-printf-posix.output: Remove all NaN related results.
27934         Needed for IRIX 6.5.
27935
27936 2007-05-19  Bruno Haible  <bruno@clisp.org>
27937
27938         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
27939         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
27940
27941 2007-05-19  Bruno Haible  <bruno@clisp.org>
27942
27943         * lib/float_.h: New file.
27944         * m4/float_h.m4: New file.
27945         * modules/float: New file.
27946         * modules/isnanl (Dependencies): Add float.
27947         * modules/isnanl-nolibm (Dependencies): Likewise.
27948         * modules/mathl (Dependencies): Likewise.
27949         * modules/printf-frexpl (Dependencies): Likewise.
27950         * modules/signbit (Dependencies): Likewise.
27951         * modules/vasnprintf (Dependencies): Likewise.
27952         * doc/headers/float.texi: Update.
27953
27954 2007-05-19  Jim Meyering  <jim@meyering.net>
27955
27956         * lib/utimens.c (gl_futimens): Rename from futimens,
27957         now that glibc-2.6 declares futimens.
27958         * lib/utimens.h: Likewise.
27959
27960 2007-05-19  Bruno Haible  <bruno@clisp.org>
27961
27962         Avoid test failures on mingw.
27963         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
27964         * tests/test-printf-posix.sh: Likewise.
27965         * tests/test-vfprintf-posix.sh: Likewise.
27966         * tests/test-vprintf-posix.sh: Likewise.
27967
27968 2007-05-19  Bruno Haible  <bruno@clisp.org>
27969
27970         Fix *printf result for NaN, Inf, -0.0 on mingw.
27971         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
27972         * lib/vasnprintf.c: Include math.h and isnan.h.
27973         (is_infinite_or_zero): New function.
27974         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
27975         values in the %f, %F, %e, %E, %g, %G directives.
27976         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
27977         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27978         gl_PRINTF_INFINITE and test its result. Invoke
27979         gl_PREREQ_VASNPRINTF_INFINITE.
27980         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27981         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27982         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27983         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27984         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27985         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27986         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27987         * doc/functions/fprintf.texi: Update.
27988         * doc/functions/printf.texi: Update.
27989         * doc/functions/snprintf.texi: Update.
27990         * doc/functions/sprintf.texi: Update.
27991         * doc/functions/vfprintf.texi: Update.
27992         * doc/functions/vprintf.texi: Update.
27993         * doc/functions/vsnprintf.texi: Update.
27994         * doc/functions/vsprintf.texi: Update.
27995
27996 2007-05-19  Bruno Haible  <bruno@clisp.org>
27997
27998         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
27999         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
28000         Instead of multiplying with 10^k, set extra_zeroes to k.
28001         (scale10_round_long_double): Remove function.
28002
28003 2007-05-18  Bruno Haible  <bruno@clisp.org>
28004
28005         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
28006         introduced on 2007-05-06.
28007
28008 2007-05-18  Bruno Haible  <bruno@clisp.org>
28009
28010         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
28011         %g directives.
28012         * tests/test-vasprintf-posix.c (test_function): Likewise.
28013         * tests/test-snprintf-posix.h (test_function): Likewise.
28014         * tests/test-sprintf-posix.h (test_function): Likewise.
28015
28016 2007-05-18  Bruno Haible  <bruno@clisp.org>
28017
28018         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
28019         (strmatch): New function.
28020         (test_function): Test the %f directive on numbers of various exponents.
28021         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
28022         (strmatch): New function.
28023         (test_function): Test the %f directive on numbers of various exponents.
28024         * tests/test-snprintf-posix.h (strmatch): New function.
28025         (test_function): Test the %f directive on numbers of various exponents.
28026         * tests/test-sprintf-posix.h (strmatch): New function.
28027         (test_function): Test the %f directive on numbers of various exponents.
28028         * tests/test-snprintf-posix.c (SIZEOF): New macro.
28029         * tests/test-sprintf-posix.c (SIZEOF): New macro.
28030         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
28031         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
28032
28033 2007-05-18  Bruno Haible  <bruno@clisp.org>
28034
28035         Add support for 'long double' number output.
28036         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
28037         * lib/vasnprintf.c: Include math.h and float+.h.
28038         (mp_limb_t): New type.
28039         (GMP_LIMB_BITS): New macro.
28040         (mp_twolimb_t): New type.
28041         (GMP_TWOLIMB_BITS): New macro.
28042         (mpn_t): New type.
28043         (multiply, divide, convert_to_decimal, decode_long_double,
28044         scale10_round_long_double, scale10_round_decimal_long_double,
28045         floorlog10l): New functions.
28046         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
28047         for the %f, %F, %e, %E, %g, %G directives.
28048         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
28049         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28050         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
28051         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
28052         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28053         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28054         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28055         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28056         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28057         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28058         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28059         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
28060         * modules/snprintf-posix (Depends-on): Likewise.
28061         * modules/sprintf-posix (Depends-on): Likewise.
28062         * modules/vasnprintf-posix (Depends-on): Likewise.
28063         * modules/vasprintf-posix (Depends-on): Likewise.
28064         * modules/vfprintf-posix (Depends-on): Likewise.
28065         * modules/vsnprintf-posix (Depends-on): Likewise.
28066         * modules/vsprintf-posix (Depends-on): Likewise.
28067         * modules/vasnprintf (Files): Add lib/float+.h.
28068         * doc/functions/fprintf.texi: Update.
28069         * doc/functions/printf.texi: Update.
28070         * doc/functions/snprintf.texi: Update.
28071         * doc/functions/sprintf.texi: Update.
28072         * doc/functions/vfprintf.texi: Update.
28073         * doc/functions/vprintf.texi: Update.
28074         * doc/functions/vsnprintf.texi: Update.
28075         * doc/functions/vsprintf.texi: Update.
28076
28077 2007-05-18  Bruno Haible  <bruno@clisp.org>
28078
28079         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
28080
28081 2007-05-18  Bruno Haible  <bruno@clisp.org>
28082
28083         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
28084         for printing 64-bit integers. Needed for mingw.
28085
28086 2007-05-18  Bruno Haible  <bruno@clisp.org>
28087
28088         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
28089         gl_FUNC_FREXPL_WORKS.
28090         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
28091
28092 2007-05-18  Bruno Haible  <bruno@clisp.org>
28093
28094         * modules/frexpl-nolibm-tests: New file.
28095
28096         * modules/frexpl-nolibm: New file.
28097         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
28098
28099 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
28100
28101         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
28102         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28103         GCC 4.2, which otherwise issues a lot of warnings.
28104         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
28105         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
28106         Likewise.
28107         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
28108         * modules/iconv_open (iconv.h): Likewise.
28109         * modules/locale (locale.h): Likewise.
28110         * modules/netinet_in (netinet/in.h): Likewise.
28111         * modules/sys_select (sys_select.h): Likewise.
28112         * modules/sys_socket (sys/socket.h): Likewise.
28113         * modules/sys_stat (sys/stat.h): Likewise.
28114         * modules/sysexits (sysexits.h): Likewise.
28115         * modules/unistd (unistd.h): Likewise.
28116
28117 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28118
28119         * modules/closein-tests (Makefile.am): Distribute
28120         `test-closein.sh'.
28121
28122 2007-05-17  Bruno Haible  <bruno@clisp.org>
28123
28124         * tests/test-printf-posix.output: Renamed from
28125         tests/test-fprintf-posix.out.
28126         * modules/fprintf-posix-tests: Update.
28127         * modules/printf-posix-tests: Update.
28128         * modules/vfprintf-posix-tests: Update.
28129         * modules/vprintf-posix-tests: Update.
28130         * tests/test-fprintf-posix.sh: Update.
28131         * tests/test-printf-posix.sh: Update.
28132         * tests/test-vfprintf-posix.sh: Update.
28133         * tests/test-vprintf-posix.sh: Update.
28134         Reported by Ralf Wildenhues.
28135
28136 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
28137
28138         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
28139         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28140         GCC 4.2, which otherwise issues a lot of warnings.
28141         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
28142         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
28143         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
28144         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
28145         it should no longer be needed.
28146         * lib/string_.h: Likewise.
28147         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
28148         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
28149         * modules/inttypes (inttypes.h): Likewise.
28150         * modules/math (math.h): Likewise.
28151         * modules/search (search.h): Likewise.
28152         * modules/signal (signal.h): Likewise.
28153         * modules/stdint (stdint.h): Likewise.
28154         * modules/stdio (stdio.h): Likewise.
28155         * modules/stdlib (stdlib.h): Likewise.
28156         * modules/string (string.h): Likewise.
28157         * modules/sys_time (sys/time.h): Likewise.
28158         * modules/time (time.h): Likewise.
28159         * modules/wchar (wchar.h): Likewise.
28160         * modules/wctype (wtype.h): Likewise.
28161
28162 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
28163
28164         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
28165
28166 2007-05-13  Bruno Haible  <bruno@clisp.org>
28167
28168         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
28169         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
28170         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
28171         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
28172         (gl_PREREQ_STRTOK_R): Don't require it here.
28173
28174 2007-05-13  Bruno Haible  <bruno@clisp.org>
28175
28176         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
28177         when used in C++ mode.
28178
28179 2007-05-12  Bruno Haible  <bruno@clisp.org>
28180
28181         * lib/linebuffer.h: Tweak doc.
28182         * lib/linebuffer.c: Likewise.
28183
28184 2007-05-12  James Youngman  <jay@gnu.org>
28185
28186         * lib/linebuffer.c (readlinebuffer_delim): New function,
28187         like readlinebuffer, but use a caller-specified delimiter.
28188         (readlinebuffer): Just call readlinebuffer_delim with '\n'
28189         as the delimiter.
28190         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
28191
28192 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
28193
28194         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
28195         * modules/openat (Files): Remove openat-die.c.
28196         (Depends-on): Add openat-die.
28197         * modules/openat-die: New module.
28198
28199 2007-05-06  Bruno Haible  <bruno@clisp.org>
28200
28201         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
28202         Update with info about Cygwin.
28203         * doc/functions/fprintf.texi: Update.
28204         * doc/functions/printf.texi: Update.
28205         * doc/functions/snprintf.texi: Update.
28206         * doc/functions/sprintf.texi: Update.
28207         * doc/functions/vfprintf.texi: Update.
28208         * doc/functions/vprintf.texi: Update.
28209         * doc/functions/vsnprintf.texi: Update.
28210         * doc/functions/vsprintf.texi: Update.
28211         Reported by Eric Blake.
28212
28213 2007-05-06  Bruno Haible  <bruno@clisp.org>
28214
28215         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
28216         padding ourselves for the floating-point directives.
28217         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
28218         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
28219         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28220         gl_PRINTF_FLAG_ZERO and test its result. Invoke
28221         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
28222         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28223         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28224         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28225         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28226         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28227         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28228         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28229         * tests/test-snprintf-posix.h (test_function): Also check the width
28230         and some flags in the %f directive.
28231         * tests/test-sprintf-posix.h (test_function): Likewise.
28232         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28233         * tests/test-vasprintf-posix.c (test_function): Likewise.
28234         * doc/functions/fprintf.texi: Update.
28235         * doc/functions/printf.texi: Update.
28236         * doc/functions/snprintf.texi: Update.
28237         * doc/functions/sprintf.texi: Update.
28238         * doc/functions/vfprintf.texi: Update.
28239         * doc/functions/vprintf.texi: Update.
28240         * doc/functions/vsnprintf.texi: Update.
28241         * doc/functions/vsprintf.texi: Update.
28242
28243 2007-05-06  Bruno Haible  <bruno@clisp.org>
28244
28245         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
28246         pass the ' flag character to sprintf or snprintf.
28247         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
28248         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
28249         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28250         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
28251         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
28252         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28253         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28254         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28255         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28256         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28257         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28258         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28259         * tests/test-snprintf-posix.h (test_function): Also check the grouping
28260         flag.
28261         * tests/test-sprintf-posix.h (test_function): Likewise.
28262         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28263         * tests/test-vasprintf-posix.c (test_function): Likewise.
28264         * doc/functions/fprintf.texi: Update.
28265         * doc/functions/printf.texi: Update.
28266         * doc/functions/snprintf.texi: Update.
28267         * doc/functions/sprintf.texi: Update.
28268         * doc/functions/vfprintf.texi: Update.
28269         * doc/functions/vprintf.texi: Update.
28270         * doc/functions/vsnprintf.texi: Update.
28271         * doc/functions/vsprintf.texi: Update.
28272
28273 2007-05-01  Bruno Haible  <bruno@clisp.org>
28274
28275         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
28276
28277 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
28278
28279         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
28280         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
28281
28282 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
28283
28284         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
28285         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
28286         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
28287
28288 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
28289
28290         * lib/argp-help.c (struct hol_entry): New member `ord'.
28291         (HOL_ENTRY_PTRCMP): Use ord for comparison
28292         (hol_sort): Initialize ord.
28293
28294 2007-05-01  Bruno Haible  <bruno@clisp.org>
28295
28296         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
28297         Reported by Eric Blake.
28298         * doc/gnulib.texi (Function Substitutes): Update.
28299
28300 2007-05-01  Bruno Haible  <bruno@clisp.org>
28301
28302         * doc/functions.texi: Remove file, now redundant through
28303         doc/functions/*.texi.
28304
28305 2007-05-01  Bruno Haible  <bruno@clisp.org>
28306
28307         * modules/argp (Depends-on): Add sleep.
28308
28309 2007-05-01  Bruno Haible  <bruno@clisp.org>
28310
28311         * modules/sleep-tests: New file.
28312         * tests/test-sleep.c: New file.
28313
28314         * modules/sleep: New file.
28315         * lib/sleep.c: New file.
28316         * m4/sleep.m4: New file.
28317         * lib/unistd_.h (sleep): New declaration.
28318         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
28319         HAVE_SLEEP.
28320         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
28321         * doc/functions/sleep.texi: Document the sleep module.
28322
28323 2007-05-01  Bruno Haible  <bruno@clisp.org>
28324
28325         * lib/sigprocmask.h: Remove file.
28326         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
28327         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
28328         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
28329         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
28330         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
28331         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
28332         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
28333         HAVE_SIGSET_T as a shell variable.
28334         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
28335         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
28336         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
28337         (Depends-on): Add signal. Remove verify.
28338         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
28339         (Include): Mention <signal.h> instead of sigprocmask.h.
28340         * NEWS: Mention the change.
28341         * lib/fatal-signal.c: Don't include sigprocmask.h.
28342
28343 2007-05-01  Bruno Haible  <bruno@clisp.org>
28344
28345         * modules/signal: New file.
28346         * lib/signal_.h: New file.
28347         * m4/signal_h.m4: New file.
28348
28349 2007-05-01  Bruno Haible  <bruno@clisp.org>
28350
28351         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
28352         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
28353         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
28354         HAVE_WCTYPE_CTMP_BUG into wctype.h.
28355
28356 2007-05-01  Bruno Haible  <bruno@clisp.org>
28357
28358         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
28359         configure time.
28360         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
28361         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
28362         * modules/sys_stat (Makefile.am): Substitute their values into
28363         sys/stat.h.
28364
28365 2007-05-01  Bruno Haible  <bruno@clisp.org>
28366
28367         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
28368         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
28369         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
28370
28371 2007-05-01  Bruno Haible  <bruno@clisp.org>
28372
28373         * doc/header/assert.texi: Undo last change: don't mention the gnulib
28374         'assert' module here.
28375
28376 2007-05-01  Bruno Haible  <bruno@clisp.org>
28377
28378         * doc/functions/*.texi: New files.
28379         * doc/functions/google-ranking.txt: New file.
28380         * doc/gnulib.texi (Function Substitutes): New chapter.
28381         (ctime, inet_ntoa): Remove sections.
28382         * doc/ctime.texi: Remove file.
28383         * doc/inet_ntoa.texi: Remove file.
28384         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
28385         dependencies.
28386         (%.info): New rule, specifying a --reference-limit.
28387
28388 2007-05-01  Bruno Haible  <bruno@clisp.org>
28389
28390         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
28391
28392 2007-05-01  Bruno Haible  <bruno@clisp.org>
28393
28394         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
28395         the portability of 'mkdir' to mingw systems.
28396
28397 2007-05-01  Bruno Haible  <bruno@clisp.org>
28398
28399         * doc/headers/google-ranking.txt: New file.
28400
28401 2007-04-30  Eric Blake  <ebb9@byu.net>
28402
28403         Prefer fseeko to fseek.
28404         * modules/getpass (Depends-on): Add fseeko.
28405         * lib/getpass.c (getpass): Use fseeko, not fseek.
28406
28407 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
28408
28409         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
28410         assumes the sorting is stable, while most qsort implementations
28411         are not.  Use argument addresses to ensure they never compare as
28412         equal.
28413
28414         * tests/test-argp-2.sh (usage-indent test): Fix output
28415         (func_compare): Restore diff options
28416         * tests/test-argp.c: Restore #include "progname.h"
28417
28418 2007-04-29  Bruno Haible  <bruno@clisp.org>
28419
28420         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
28421         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28422         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
28423         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28424         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
28425         (configure.ac): Define CHECK_SNPRINTF_POSIX.
28426         (TESTS, check_PROGRAMS): Add test-snprintf.
28427         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
28428         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
28429         (TESTS, check_PROGRAMS): Add test-vsnprintf.
28430         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
28431         assertions that fail on HP-UX, OSF/1, or IRIX.
28432         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
28433
28434 2007-04-29  Bruno Haible  <bruno@clisp.org>
28435
28436         * MODULES.html.sh (posix_functions): Remove 'contents'.
28437
28438 2007-04-29  Karl Berry  <karl@gnu.org>
28439
28440         * config/srclist.txt (gendocs_template_min): new entry.
28441
28442 2007-04-29  Bruno Haible  <bruno@clisp.org>
28443
28444         Work around fpurge bug on BSD systems.
28445         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
28446         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
28447         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
28448         fpurge to rpl_fpurge if the system already has this function.
28449         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
28450         the case where the system already has this function. Correct invariants
28451         on BSD systems.
28452         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
28453         BSD systems.
28454
28455 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
28456
28457         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
28458         proposed by Sven Verdoolaege.
28459
28460         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
28461         options.
28462         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
28463         (usage and help tests): Update
28464
28465 2007-04-29  Bruno Haible  <bruno@clisp.org>
28466
28467         * tests/test-fflush.c (main): Use a file of size 17, not 10.
28468         Print more information in case of failure. Disable a test on BeOS.
28469
28470 2007-04-29  Bruno Haible  <bruno@clisp.org>
28471
28472         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
28473         This helps debugging on systems on which no gdb is available.
28474
28475 2007-04-29  Bruno Haible  <bruno@clisp.org>
28476
28477         * lib/freading.h: Improve comments.
28478         * lib/fwriting.h: Likewise.
28479         * tests/test-freading.c (main): Don't check freading immediately after
28480         repositioning. Needed for glibc.
28481
28482 2007-04-29  Bruno Haible  <bruno@clisp.org>
28483
28484         * lib/freading.c (freading): Trivial simplification.
28485
28486 2007-04-28  Bruno Haible  <bruno@clisp.org>
28487
28488         * tests/test-fwriting.c (main): Also test the interaction between
28489         fflush and fwriting.
28490         * modules/fwriting-tests (Depends-on): Add fflush.
28491
28492         * tests/test-freading.c (main): Also test the interaction between
28493         fflush and freading.
28494         * modules/freading-tests (Depends-on): Add fflush.
28495
28496 2007-04-28  Bruno Haible  <bruno@clisp.org>
28497
28498         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
28499         fseeko and ftello.
28500         Suggested by Eric Blake.
28501
28502 2007-04-28  Jim Meyering  <jim@meyering.net>
28503
28504         Avoid false-negative in gl_STDINT_H's C99 conformance test.
28505         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
28506         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
28507
28508 2007-04-27  Eric Blake  <ebb9@byu.net>
28509
28510         * doc/headers/assert.texi (assert.h): Document assert module use.
28511
28512 2007-04-27  Bruno Haible  <bruno@clisp.org>
28513
28514         * doc/headers/*.texi: New files.
28515         * doc/gnulib.texi (Header File Substitutes): New chapter.
28516         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
28517         dependencies.
28518         (standards.info ,standards.html, standards.dvi): Update dependencies.
28519         (mostlyclean, clean): New targets.
28520
28521 2007-04-27  Bruno Haible  <bruno@clisp.org>
28522
28523         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
28524         * modules/sysexits (Files, Makefile.am): Update.
28525
28526         * lib/sys_socket_.h: Renamed from lib/socket_.h.
28527         * modules/sys_socket (Files, Makefile.am): Update.
28528
28529         * lib/sys_stat_.h: Renamed from lib/stat_.h.
28530         * modules/sys_stat (Files, Makefile.am): Update.
28531
28532 2007-04-27  Eric Blake  <ebb9@byu.net>
28533
28534         * lib/freading.h: Improve comments.
28535         * lib/fwriting.h: Likewise.
28536         * lib/fflush.c: Likewise.
28537
28538         Fix closein for mingw.
28539         * modules/closein-tests: Add tests for closein.
28540         * tests/test-closein.c: New file.
28541         * tests/test-closein.sh: Likewise.
28542         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
28543         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
28544
28545 2007-04-27  Bruno Haible  <bruno@clisp.org>
28546
28547         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
28548         version is < 6.
28549         * lib/math_.h [__DECC]: Likewise.
28550         * lib/stdio_.h [__DECC]: Likewise.
28551         * lib/stdlib_.h [__DECC]: Likewise.
28552         * lib/string_.h [__DECC]: Likewise.
28553         * lib/time_.h [__DECC]: Likewise.
28554         * lib/wchar_.h [__DECC]: Likewise.
28555         * lib/wctype_.h [__DECC]: Likewise.
28556
28557 2007-04-27  Bruno Haible  <bruno@clisp.org>
28558
28559         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
28560
28561 2007-04-27  Bruno Haible  <bruno@clisp.org>
28562
28563         * lib/fflush.c: Add comments.
28564         * modules/fpurge-tests (Depends-on): Add fflush.
28565         * modules/freadable-tests (Depends-on): Likewise.
28566         * modules/fwritable-tests (Depends-on): Likewise.
28567
28568 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
28569
28570         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
28571         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
28572         Report by Bruno Haible <bruno@clisp.org>.
28573
28574 2007-04-26  Eric Blake  <ebb9@byu.net>
28575
28576         Fix fflush on mingw.
28577         * modules/fflush (Depends-on): Add freading.
28578         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
28579         but unread data.
28580
28581 2007-04-26  Eric Blake  <ebb9@byu.net>
28582         and Bruno Haible  <bruno@clisp.org>
28583
28584         Implement freading and fwriting.
28585         * lib/freading.c: New file.
28586         * lib/freading.h: Likewise.
28587         * m4/freading.m4: Likewise.
28588         * modules/freading: Likewise.
28589         * modules/freading-tests: Likewise.
28590         * tests/test-freading.c: Likewise.
28591         * lib/fwriting.c: New file.
28592         * lib/fwriting.h: Likewise.
28593         * m4/fwriting.m4: Likewise.
28594         * modules/fwriting: Likewise.
28595         * modules/fwriting-tests: Likewise.
28596         * tests/test-fwriting.c: Likewise.
28597         * MODULES.html.sh (File stream based Input/Output): Mention them.
28598
28599 2007-04-26  Bruno Haible  <bruno@clisp.org>
28600
28601         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
28602         'long' when we assume it.
28603         Suggested by Eric Blake.
28604
28605 2007-04-26  Bruno Haible  <bruno@clisp.org>
28606
28607         Ensure fseeko, ftello are declared on glibc systems.
28608         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
28609         * modules/fseeko (configure.ac-early): Likewise.
28610         * modules/ftello (configure.ac-early): Likewise.
28611         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
28612         AC_FUNC_FSEEKO for this.
28613         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
28614         (gl_CHECK_FSEEKO): Remove macro.
28615
28616 2007-04-26  Bruno Haible  <bruno@clisp.org>
28617
28618         * tests/test-fflush.c (main): Also check the ftell result after
28619         fflush and fseek/fseeko.
28620         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
28621         file descriptor position cache in the stream.
28622         * lib/fseeko.c (rpl_fseeko): Likewise.
28623
28624 2007-04-26  Bruno Haible  <bruno@clisp.org>
28625
28626         * modules/fflush-tests (Depends-on): Add fseeko.
28627
28628 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
28629             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28630
28631         * lib/argz_.h: ensure error_t definition is obtained in same
28632         mechanism system argz.h would have.
28633         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
28634         argz facilities are known bad.  Err on the side of caution if
28635         cross-compiling.
28636
28637 2007-04-25  Eric Blake  <ebb9@byu.net>
28638
28639         * lib/fpurge.c (includes): Use stdlib.h for free.
28640         * tests/test-fflush.c (main): Also test fflush-fseeko.
28641
28642 2007-04-25  Bruno Haible  <bruno@clisp.org>
28643
28644         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
28645         * lib/fseeko.c: New file.
28646         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
28647         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
28648         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
28649         gl_FUNC_FSEEKO.
28650         (gl_FUNC_FSEEKO): Invoke it.
28651         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
28652         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
28653         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
28654
28655 2007-04-25  Bruno Haible  <bruno@clisp.org>
28656
28657         * modules/fflush (Depends-on): Add ftello.
28658
28659 2007-04-25  Bruno Haible  <bruno@clisp.org>
28660
28661         * modules/ftello-tests: New file.
28662         * tests/test-ftello.c: New file.
28663
28664         * modules/ftello: New file.
28665         * m4/ftello.m4: New file.
28666         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
28667         HAVE_FTELLO.
28668         * lib/stdio_.h (ftello): New declaration.
28669         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
28670         HAVE_FTELLO.
28671
28672 2007-04-25  Bruno Haible  <bruno@clisp.org>
28673
28674         * modules/fseeko-tests: New file.
28675         * tests/test-fseeko.c: New file.
28676
28677         * modules/fseeko: New file.
28678         * m4/fseeko.m4: New file.
28679         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
28680         HAVE_FSEEKO.
28681         * lib/stdio_.h (fseeko): New declaration.
28682         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
28683         HAVE_FSEEKO.
28684
28685 2007-04-25  Bruno Haible  <bruno@clisp.org>
28686
28687         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
28688
28689 2007-04-25  Bruno Haible  <bruno@clisp.org>
28690
28691         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
28692         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
28693         * tests/test-unistd.c: Likewise.
28694         * tests/test-fcntl.c: Likewise.
28695
28696 2007-04-23  Eric Blake  <ebb9@byu.net>
28697
28698         * lib/fflush.c: Fix missing include.
28699         Reported by Bruno Haible.
28700
28701 2007-04-23  Bruno Haible  <bruno@clisp.org>
28702
28703         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
28704         Reported by Eric Blake.
28705
28706 2007-04-23  Bruno Haible  <bruno@clisp.org>
28707
28708         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
28709
28710 2007-04-23  Bruno Haible  <bruno@clisp.org>
28711
28712         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
28713
28714 2007-04-23  Bruno Haible  <bruno@clisp.org>
28715
28716         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
28717         Needed on HP-UX 11.
28718
28719 2007-04-16  Eric Blake  <ebb9@byu.net>
28720
28721         Make fflush rely on fpurge.
28722         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
28723         open coding all variants.
28724         * modules/fflush (Depends-on): Add fpurge and unistd.
28725         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
28726         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
28727
28728         Fix --with-tests compilation on cygwin.
28729         * modules/argmatch-tests (Makefile.am): List gnulib library first
28730         in LDADD.
28731         * modules/argp-tests (Makefile.am): Likewise.
28732         * modules/array-list-tests (Makefile.am): Likewise.
28733         * modules/array-oset-tests (Makefile.am): Likewise.
28734         * modules/avltree-list-tests (Makefile.am): Likewise.
28735         * modules/avltree-oset-tests (Makefile.am): Likewise.
28736         * modules/avltreehash-list-tests (Makefile.am): Likewise.
28737         * modules/carray-list-tests (Makefile.am): Likewise.
28738         * modules/dirname-tests (Makefile.am): Likewise.
28739         * modules/frexp-tests (Makefile.am): Likewise.
28740         * modules/isnanl-tests (Makefile.am): Likewise.
28741         * modules/linked-list-tests (Makefile.am): Likewise.
28742         * modules/linkedhash-list-tests (Makefile.am): Likewise.
28743         * modules/lock-tests (Makefile.am): Likewise.
28744         * modules/rbtree-list-tests (Makefile.am): Likewise.
28745         * modules/rbtree-oset-tests (Makefile.am): Likewise.
28746         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
28747         * modules/tls-tests (Makefile.am): Likewise.
28748         * modules/tsearch-tests (Makefile.am): Likewise.
28749         * modules/xvasprintf-tests (Makefile.am): Likewise.
28750
28751         Fix fpurge for cygwin.
28752         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
28753         value.
28754         * modules/fpurge-tests (Depends-on): Clean up trash.
28755
28756 2007-04-16  Simon Josefsson  <simon@josefsson.org>
28757
28758         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
28759
28760         * m4/autobuild.m4: Re-indent.
28761
28762 2007-04-13  Bruno Haible  <bruno@clisp.org>
28763
28764         * modules/fpurge-tests: New file.
28765         * tests/test-fpurge.c: New file.
28766
28767         * modules/fpurge: New file.
28768         * lib/fpurge.h: New file.
28769         * lib/fpurge.c: New file.
28770         * m4/fpurge.m4: New file.
28771
28772 2007-04-13  Bruno Haible  <bruno@clisp.org>
28773
28774         * modules/fbufmode-tests: New file.
28775         * tests/test-fbufmode.c: New file.
28776
28777         * modules/fbufmode: New file.
28778         * lib/fbufmode.h: New file.
28779         * lib/fbufmode.c: New file.
28780         * m4/fbufmode.m4: New file.
28781
28782 2007-04-13  Bruno Haible  <bruno@clisp.org>
28783
28784         * modules/fwritable-tests: New file.
28785         * tests/test-fwritable.c: New file.
28786
28787         * modules/fwritable: New file.
28788         * lib/fwritable.h: New file.
28789         * lib/fwritable.c: New file.
28790         * m4/fwritable.m4: New file.
28791
28792 2007-04-13  Bruno Haible  <bruno@clisp.org>
28793
28794         * modules/freadable-tests: New file.
28795         * tests/test-freadable.c: New file.
28796
28797         * modules/freadable: New file.
28798         * lib/freadable.h: New file.
28799         * lib/freadable.c: New file.
28800         * m4/freadable.m4: New file.
28801
28802 2007-04-13  Bruno Haible  <bruno@clisp.org>
28803
28804         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
28805         MOSTLYCLEANFILES.
28806
28807 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
28808
28809         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
28810         gzip bootstrap.conf to avoid dragging in i18n machinery.
28811         (gnulib_tool_option): Use it.
28812
28813 2007-04-13  Bruno Haible  <bruno@clisp.org>
28814
28815         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
28816         %F directives.
28817         * tests/test-vasprintf-posix.c (test_function): Likewise.
28818         * tests/test-snprintf-posix.h (test_function): Likewise.
28819         * tests/test-sprintf-posix.h (test_function): Likewise.
28820         * tests/test-fprintf-posix.h (test_function): Likewise.
28821         * tests/test-printf-posix.h (test_function): Likewise.
28822         * tests/test-fprintf-posix.out: Likewise.
28823
28824 2007-04-13  Bruno Haible  <bruno@clisp.org>
28825
28826         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
28827         * modules/tls-tests (configure.ac): Likewise.
28828         Reported by Arto C. Nirkko <anirkko@insel.ch>.
28829
28830 2007-04-13  Bruno Haible  <bruno@clisp.org>
28831
28832         * lib/tls.c (glthread_tls_get): Fix return type.
28833         Patch by Arto C. Nirkko <anirkko@insel.ch>.
28834
28835 2007-04-12  Eric Blake  <ebb9@byu.net>
28836
28837         * modules/gettime (Depends-on): Remove gettime.
28838         Reported by Dmitry V. Levin.
28839
28840 2007-04-12  Bruno Haible  <bruno@clisp.org>
28841
28842         * modules/fflush (Include): Mention <stdio.h>.
28843         * modules/strtoimax (Include): Mention <inttypes.h>.
28844         * modules/strtoumax (Include): Likewise.
28845
28846 2007-04-12  Eric Blake  <ebb9@byu.net>
28847
28848         * .cvsignore: New file.
28849         * .gitignore: Likewise.
28850
28851 2007-04-12  Bruno Haible  <bruno@clisp.org>
28852
28853         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
28854         not before, since $(LDADD) often contains libgnu.a.
28855         * modules/striconv-tests (test_striconv_LDADD): Likewise.
28856         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
28857         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
28858         Needed on Cygwin.
28859
28860 2007-04-12  Eric Blake  <ebb9@byu.net>
28861
28862         Work around glibc's failure to flush stdin on fclose.
28863         * lib/closein.c (close_stdin): Flush stdin before closing.
28864
28865         Work around glibc's failure to reset seekable stdin on exit.
28866         * modules/closein: New module.
28867         * lib/closein.c: New file.
28868         * lib/closein.h: Likewise.
28869         * m4/closein.m4: Likewise.
28870         * MODULES.html.sh (File stream based Input/Output): Document it.
28871
28872 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28873
28874         * gnulib-tool: Rename generated 'autobuild' script to
28875         'do-autobuild' in --create-megatestdir output.
28876
28877         * doc/gnulib.texi (Build robot for gnulib): Fix.
28878
28879 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28880
28881         * modules/sysexits (Depends-on): Add absolute-header.
28882
28883 2007-04-12  Eric Blake  <ebb9@byu.net>
28884
28885         No need to preserve errno on success.
28886         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
28887         Reported by Bruno Haible.
28888
28889 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28890
28891         * MODULES.html.sh (Support for maintaining and releasing
28892         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
28893
28894 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28895
28896         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
28897
28898 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28899
28900         * modules/autobuild: New module.
28901
28902         * m4/autobuild.m4: New file.
28903
28904 2007-04-11  Bruno Haible  <bruno@clisp.org>
28905
28906         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
28907         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
28908         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
28909         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
28910         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28911         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28912         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28913         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28914         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28915         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28916         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
28917         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28918         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28919         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
28920         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28921         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28922         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
28923         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28924         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28925         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
28926         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28927         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28928         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
28929         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28930         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28931         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
28932         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28933         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28934         Reported by Eric Blake.
28935
28936 2007-04-11  Bruno Haible  <bruno@clisp.org>
28937
28938         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
28939
28940 2007-04-10  Bruno Haible  <bruno@clisp.org>
28941
28942         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
28943         for NaN and Infinity. Needed on FreeBSD 6.1.
28944         * tests/test-vasnprintf-posix.c (test_function): Undo last change
28945         regarding results for "%010a" of Infinity and NaN.
28946         * tests/test-vasprintf-posix.c (test_function): Likewise.
28947         * tests/test-snprintf-posix.h (test_function): Likewise.
28948         * tests/test-sprintf-posix.h (test_function): Likewise.
28949         * tests/test-fprintf-posix.h (test_function): Likewise.
28950         * tests/test-printf-posix.h (test_function): Likewise.
28951         * tests/test-fprintf-posix.out: Likewise.
28952
28953 2007-04-10  Bruno Haible  <bruno@clisp.org>
28954
28955         * modules/locale-tests: New file.
28956         * tests/test-locale.c: New file.
28957
28958         * modules/locale: New file.
28959         * lib/locale_.h: New file.
28960         * m4/locale_h.m4: New file.
28961
28962 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
28963             Bruno Haible  <bruno@clisp.org>
28964
28965         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
28966         be determined, test for availability of the copysignf, copysign,
28967         copysignl functions.
28968         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
28969         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
28970         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
28971
28972 2007-04-09  Eric Blake  <ebb9@byu.net>
28973
28974         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
28975         * modules/stdio (Makefile.am): Support fflush.
28976         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
28977         * modules/fflush: New file.
28978         * lib/fflush.c: Likewise.
28979         * m4/fflush.m4: Likewise.
28980         * modules/fflush-tests: New test.
28981         * tests/test-fflush.c: Likewise.
28982         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
28983
28984 2007-04-06  Bruno Haible  <bruno@clisp.org>
28985
28986         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
28987         (VASNPRINTF): Use signbit for faster determination whether to print a
28988         minus sign.
28989         * modules/vasnprintf (Files): Remove lib/float+.h.
28990         * modules/fprintf-posix (Depends-on): Add signbit.
28991         * modules/snprintf-posix (Depends-on): Likewise.
28992         * modules/sprintf-posix (Depends-on): Likewise.
28993         * modules/vasnprintf-posix (Depends-on): Likewise.
28994         * modules/vasprintf-posix (Depends-on): Likewise.
28995         * modules/vfprintf-posix (Depends-on): Likewise.
28996         * modules/vsnprintf-posix (Depends-on): Likewise.
28997         * modules/vsprintf-posix (Depends-on): Likewise.
28998
28999 2007-04-06  Bruno Haible  <bruno@clisp.org>
29000
29001         * tests/test-frexp.c (main): Test also the sign bit of zero results.
29002         * tests/test-frexpl.c (main): Likewise.
29003         * tests/test-ldexpl.c (main): Likewise.
29004         * modules/frexp-tests (Depends-on): Add signbit.
29005         * modules/frexpl-tests (Depdends-on): Likewise.
29006         * modules/ldexpl-tests (Depdends-on): Likewise.
29007
29008 2007-04-06  Bruno Haible  <bruno@clisp.org>
29009
29010         * modules/signbit-tests: New file.
29011         * tests/test-signbit.c: New file.
29012
29013         * modules/signbit: New file.
29014         * lib/signbitf.c: New file.
29015         * lib/signbitd.c: New file.
29016         * lib/signbitl.c: New file.
29017         * m4/signbit.m4: New file.
29018         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
29019         (signbit): New macro.
29020         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
29021         REPLACE_SIGNBIT.
29022         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
29023         REPLACE_FREXPL into math.h.
29024
29025 2007-04-06  Bruno Haible  <bruno@clisp.org>
29026
29027         * modules/isnanf-nolibm-tests: New file.
29028         * tests/test-isnanf.c: New file.
29029
29030         * modules/isnanf-nolibm: New file.
29031         * lib/isnanf.h: New file.
29032         * lib/isnanf.c: New file.
29033         * lib/isnan.c: Consider the USE_FLOAT macro.
29034         * m4/isnanf.m4: New file.
29035
29036 2007-04-06  Bruno Haible  <bruno@clisp.org>
29037
29038         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
29039         (Link): New section.
29040
29041         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
29042
29043 2007-04-06  Bruno Haible  <bruno@clisp.org>
29044
29045         Assume the 'long double' type.
29046         * m4/longdouble.m4: Remove file.
29047         * config/srclist.txt: Don't mention longdouble.m4.
29048         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
29049         * lib/float+.h: Likewise.
29050         * lib/frexp.c: Likewise.
29051         * lib/printf-args.h: Likewise.
29052         * lib/printf-args.c: Likewise.
29053         * lib/printf-frexp.c: Likewise.
29054         * lib/printf-parse.c: Likewise.
29055         * lib/vasnprintf.c: Likewise.
29056         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
29057         * m4/intl.m4: Likewise.
29058         * m4/isnanl.m4: Likewise.
29059         * m4/printf.m4: Likewise.
29060         * m4/printf-frexpl.m4: Likewise.
29061         * m4/vasnprintf.m4: Likewise.
29062         * modules/allocsa (Files): Remove m4/longdouble.m4.
29063         * modules/gettext (Files): Likewise.
29064         * modules/relocatable-prog-wrapper (Files): Likewise.
29065         * modules/vasnprintf (Files): Likewise.
29066         * modules/isnanl (Files): Likewise.
29067         (Include): Simplify.
29068         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
29069         (Include): Simplify.
29070         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
29071         (Include): Simplify.
29072         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
29073         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29074         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
29075         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29076         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29077         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29078         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
29079         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29080         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29081         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29082         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
29083         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29084         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
29085         * tests/test-isnanl.c: Likewise.
29086         * tests/test-snprintf-posix.h: Likewise.
29087         * tests/test-sprintf-posix.h: Likewise.
29088         * tests/test-vasnprintf-posix.c: Likewise.
29089         * tests/test-vasnprintf-posix2.c: Likewise.
29090         * tests/test-vasprintf-posix.c: Likewise.
29091
29092 2007-04-06  Bruno Haible  <bruno@clisp.org>
29093
29094         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
29095         * lib/math_.h [__DECC]: Include the overridden include file through
29096         #include_next, outside the double-inclusion guard.
29097         * lib/stdio_.h [__DECC]: Likewise.
29098         * lib/stdlib_.h [__DECC]: Likewise.
29099         * lib/string_.h [__DECC]: Likewise.
29100         * lib/time_.h [__DECC]: Likewise.
29101         * lib/wchar_.h [__DECC]: Likewise.
29102         * lib/wctype_.h [__DECC]: Likewise.
29103         * lib/inttypes_.h [__DECC]: Likewise.
29104         Reported by Albert Chin <china@thewrittenword.com> in
29105         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
29106
29107 2007-04-04  Eric Blake  <ebb9@byu.net>
29108
29109         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
29110         1.5.x.
29111
29112 2007-04-04  Bruno Haible  <bruno@clisp.org>
29113
29114         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
29115         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
29116
29117 2007-04-04  Bruno Haible  <bruno@clisp.org>
29118
29119         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
29120         results for "%010a" of Infinity and NaN.
29121         * tests/test-vasprintf-posix.c (test_function): Likewise.
29122         * tests/test-snprintf-posix.h (test_function): Likewise.
29123         * tests/test-sprintf-posix.h (test_function): Likewise.
29124         * tests/test-fprintf-posix.h (test_function): Remove these tests.
29125         * tests/test-printf-posix.h (test_function): Likewise.
29126         * tests/test-fprintf-posix.out: Update.
29127         Needed for FreeBSD 6.1.
29128
29129 2007-04-04  Bruno Haible  <bruno@clisp.org>
29130
29131         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
29132         directly used by the gnulib modules nor by gnulib-tool.
29133
29134 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
29135
29136         * DEPENDENCIES: Give overall description of version dependency
29137         desirability.  Use more-typical names for apps.
29138         Add shell, coreutils, diffutils, grep, tar, gzip.
29139
29140 2007-04-04  Simon Josefsson  <simon@josefsson.org>
29141
29142         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
29143
29144 2007-04-04  Karl Berry  <karl@gnu.org>
29145
29146         * MODULES.html.sh (func_module): missing '.
29147
29148 2007-04-03  Bruno Haible  <bruno@clisp.org>
29149
29150         * modules/argmatch-tests (Makefile.am): New variable
29151         test_argmatch_LDADD.
29152         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
29153         * modules/array-list-tests (Makefile.am): New variable
29154         test_array_list_LDADD.
29155         * modules/array-oset-tests (Makefile.am): New variable
29156         test_array_oset_LDADD.
29157         * modules/avltree-list-tests (Makefile.am): New variable
29158         test_avltree_list_LDADD.
29159         * modules/avltree-oset-tests (Makefile.am): New variable
29160         test_avltree_oset_LDADD.
29161         * modules/avltreehash-list-tests (Makefile.am): New variable
29162         test_avltreehash_list_LDADD.
29163         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
29164         test_canonicalize_lgpl_LDADD.
29165         * modules/carray-list-tests (Makefile.am): New variable
29166         test_carray_list_LDADD.
29167         * modules/dirname-tests (Makefile.am): New variable
29168         test_dirname_LDADD.
29169         * modules/linked-list-tests (Makefile.am): New variable
29170         test_linked_list_LDADD.
29171         * modules/linkedhash-list-tests (Makefile.am): New variable
29172         test_linkedhash_list_LDADD.
29173         * modules/rbtree-list-tests (Makefile.am): New variable
29174         test_rbtree_list_LDADD.
29175         * modules/rbtree-oset-tests (Makefile.am): New variable
29176         test_rbtree_oset_LDADD.
29177         * modules/rbtreehash-list-tests (Makefile.am): New variable
29178         test_rbtreehash_list_LDADD.
29179         * modules/xvasprintf-tests (Makefile.am): New variable
29180         test_xvasprintf_LDADD.
29181         Reported by Eric Blake.
29182
29183 2007-04-03  Eric Blake  <ebb9@byu.net>
29184
29185         * DEPENDENCIES: Weaken m4 requirements.
29186
29187 2007-04-03  Bruno Haible  <bruno@clisp.org>
29188
29189         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
29190         * modules/isnanl-tests (configure.ac): Likewise.
29191
29192 2007-04-03  Ben Pfaff  <blp@gnu.org>
29193
29194         * modules/iconv_open: Add $(srcdir)/ to source directory
29195         references in Makefile fragments that call gperf, to fix VPATH
29196         builds.
29197
29198 2007-04-03  Bruno Haible  <bruno@clisp.org>
29199
29200         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
29201         * lib/ldexpl.c: Undo last change.
29202
29203 2007-04-03  Bruno Haible  <bruno@clisp.org>
29204
29205         * modules/printf-frexpl (Depends-on): Undo last change.
29206         (Files): Add m4/ldexpl.m4.
29207
29208 2007-04-03  Bruno Haible  <bruno@clisp.org>
29209
29210         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
29211         * modules/isnanl (Link): New section.
29212
29213         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
29214         * modules/frexp (Link): New section.
29215
29216         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
29217         * modules/frexpl (Link): New section.
29218
29219         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
29220         * modules/ldexpl (Link): New section.
29221
29222 2007-04-03  Bruno Haible  <bruno@clisp.org>
29223
29224         * modules/TEMPLATE-EXTENDED: New file.
29225         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
29226
29227 2007-04-03  Bruno Haible  <bruno@clisp.org>
29228
29229         * DEPENDENCIES: New file.
29230         Suggested by Simon Josefsson.
29231
29232 2007-04-03  Bruno Haible  <bruno@clisp.org>
29233
29234         * doc/gnulib.texi: Escape @.
29235
29236 2007-04-03  James Youngman  <jay@gnu.org>
29237         and Paul Eggert  <eggert@cs.ucla.edu>
29238
29239         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
29240         birthtime on all systems that have birthtime, not just those which
29241         use st_birthtimensec rather than st_birthtim.  Putting zero in
29242         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
29243         that the birth time is not available for files on an NFS mount.
29244
29245 2007-04-03  Simon Josefsson  <simon@josefsson.org>
29246
29247         * modules/memxor: Move back from crypto/, suggested by Bruno.
29248         * modules/crypto/hmac-sha1: Fix memxor dependency.
29249
29250         * modules/crypto/gc: Moved from ../.
29251
29252 2007-04-02  Eric Blake  <ebb9@byu.net>
29253
29254         * lib/ldexpl.c (includes): Avoid libm.
29255
29256         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
29257
29258 2007-04-02  Bruno Haible  <bruno@clisp.org>
29259
29260         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
29261         on IRIX.
29262
29263 2007-04-02  Bruno Haible  <bruno@clisp.org>
29264
29265         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
29266         x86 or x86_64 platforms running MacOS X.
29267         Reported by Ryan Schmidt <@ryandesign.com>.
29268
29269 2007-04-02  Bruno Haible  <bruno@clisp.org>
29270
29271         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
29272         i386.
29273
29274 2007-04-01  Simon Josefsson  <simon@josefsson.org>
29275
29276         * modules/crypto/arcfour: Moved from ../.
29277         * modules/crypto/arcfour-tests: Moved from ../.
29278         * modules/crypto/arctwo: Moved from ../.
29279         * modules/crypto/arctwo-tests: Moved from ../.
29280         * modules/crypto/des: Moved from ../.
29281         * modules/crypto/des-tests: Moved from ../.
29282         * modules/crypto/gc-arcfour: Moved from ../.
29283         * modules/crypto/gc-arcfour-tests: Moved from ../.
29284         * modules/crypto/gc-arctwo: Moved from ../.
29285         * modules/crypto/gc-arctwo-tests: Moved from ../.
29286         * modules/crypto/gc-des: Moved from ../.
29287         * modules/crypto/gc-des-tests: Moved from ../.
29288         * modules/crypto/gc-hmac-md5: Moved from ../.
29289         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
29290         * modules/crypto/gc-hmac-sha1: Moved from ../.
29291         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
29292         * modules/crypto/gc-md2: Moved from ../.
29293         * modules/crypto/gc-md2-tests: Moved from ../.
29294         * modules/crypto/gc-md4: Moved from ../.
29295         * modules/crypto/gc-md4-tests: Moved from ../.
29296         * modules/crypto/gc-md5: Moved from ../.
29297         * modules/crypto/gc-md5-tests: Moved from ../.
29298         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
29299         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
29300         * modules/crypto/gc-random: Moved from ../.
29301         * modules/crypto/gc-rijndael: Moved from ../.
29302         * modules/crypto/gc-rijndael-tests: Moved from ../.
29303         * modules/crypto/gc-sha1: Moved from ../.
29304         * modules/crypto/gc-sha1-tests: Moved from ../.
29305         * modules/crypto/gc-tests: Moved from ../.
29306         * modules/crypto/hmac-md5: Moved from ../.
29307         * modules/crypto/hmac-md5-tests: Moved from ../.
29308         * modules/crypto/hmac-sha1: Moved from ../.
29309         * modules/crypto/hmac-sha1-tests: Moved from ../.
29310         * modules/crypto/md2: Moved from ../.
29311         * modules/crypto/md2-tests: Moved from ../.
29312         * modules/crypto/md4: Moved from ../.
29313         * modules/crypto/md4-tests: Moved from ../.
29314         * modules/crypto/md5: Moved from ../.
29315         * modules/crypto/md5-tests: Moved from ../.
29316         * modules/crypto/memxor: Moved from ../.
29317         * modules/crypto/rijndael: Moved from ../.
29318         * modules/crypto/rijndael-tests: Moved from ../.
29319         * modules/crypto/sha1: Moved from ../.
29320
29321 2007-03-30  James Youngman  <jay@gnu.org>
29322
29323         * tests/test-stat-time.c (prepare_test): use chmod() rather than
29324         rename() to change the ctime of a file (because ctime is unaffected
29325         by rename on jfs2 on AIX 5.1).
29326         (main): Start by doing cleanup, in case a previous run failed leaving
29327         test files behind.
29328
29329 2007-03-31  Bruno Haible  <bruno@clisp.org>
29330
29331         Support old proprietary implementations of iconv.
29332         * modules/iconv_open: New file.
29333         * lib/iconv_.h: New file.
29334         * m4/iconv_h.m4: New file.
29335         * lib/iconv_open.c: New file.
29336         * lib/iconv_open-aix.gperf: New file.
29337         * lib/iconv_open-hpux.gperf: New file.
29338         * lib/iconv_open-irix.gperf: New file.
29339         * lib/iconv_open-osf.gperf: New file.
29340         * m4/iconv_open.m4: New file.
29341         * modules/linebreak (Depends-on): Add iconv_open.
29342         * modules/striconv (Depends-on): Likewise.
29343         * modules/striconveh (Depends-on): Likewise.
29344         * modules/unicodeio (Depends-on): Likewise.
29345         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
29346         (iconv_t)(-1).
29347         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
29348         conversion if cd is (iconv_t)(-1).
29349         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
29350         is not possible.
29351
29352 2007-03-31  Bruno Haible  <bruno@clisp.org>
29353
29354         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29355         work on Solaris either. Protect also second use of "autodetect_jp".
29356
29357 2007-03-31  Bruno Haible  <bruno@clisp.org>
29358
29359         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
29360         the function is not present.
29361
29362 2007-03-31  Bruno Haible  <bruno@clisp.org>
29363
29364         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
29365         the function is not present.
29366
29367 2007-03-31  Bruno Haible  <bruno@clisp.org>
29368
29369         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
29370         a bug in HP-UX iconv_open().
29371
29372 2007-03-31  Bruno Haible  <bruno@clisp.org>
29373
29374         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
29375         (Mathematics <math.h>): New section, add fpieee.
29376         (Input/output <stdio.h>): Add fseterr.
29377         (Mathematics <math.h>): New section, add printf-frexp.
29378         (Container data structures): Add sublist.
29379         (Core language properties): Add fpucw, inline.
29380         (Functions for greatest-width integer types <inttypes.h>): Add
29381         imaxabs, imaxdiv, inttypes.
29382         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
29383         isnanl-nolibm, ldexp.
29384         (Mathematics <math.h>): New section, add printf-frexpl.
29385         (Support for systems lacking POSIX:2001): Add fprintf-posix,
29386         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
29387         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
29388         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
29389         (Unicode string functions): Add unistr/u*-mbtoucr.
29390         (Java): Add javacomp-script, javaexec-script.
29391         (C#): Add csharpcomp-script, csharpexec-script.
29392         (Support for building libraries and executables): Add havelib,
29393         relocatable-*.
29394         (Support for maintaining and releasing projects): Renamed from
29395         'Support for maintaining and release projects'. Add announce-gen.
29396
29397 2007-03-31  Bruno Haible  <bruno@clisp.org>
29398
29399         * README: Talk primarily about git.
29400         (git and CVS): Renamed from CVS.
29401         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
29402         gnulib is available through git.
29403         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
29404
29405 2007-03-30  Bruno Haible  <bruno@clisp.org>
29406
29407         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
29408         * lib/poll_.h: Likewise.
29409         * lib/stat_.h: Likewise.
29410         * lib/sys_time_.h: Likewise.
29411         * lib/sysexit_.h: Likewise.
29412         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
29413         * lib/stdbool_.h: Likewise.
29414         * lib/byteswap_.h: Add double-inclusion guard.
29415
29416 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
29417
29418         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
29419
29420 2007-03-30  Karl Berry  <karl@gnu.org>
29421
29422         * config/srclist-update: double space after USA in the license
29423         substitution, since that's how it's usually (?) written.
29424
29425 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
29426
29427         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
29428         reported by Bruno Haible.
29429
29430 2007-03-29  Bruno Haible  <bruno@clisp.org>
29431
29432         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
29433         a bug in AIX iconv().
29434
29435 2007-03-29  Bruno Haible  <bruno@clisp.org>
29436
29437         * modules/ldexpl-tests: New file.
29438         * tests/test-ldexpl.c: New file.
29439
29440 2007-03-29  Bruno Haible  <bruno@clisp.org>
29441
29442         * lib/ldexpl.c: Include fpucw.h.
29443         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
29444         multiplication.
29445         * modules/ldexpl (Depends-on): Add fpucw.
29446
29447 2007-03-29  Bruno Haible  <bruno@clisp.org>
29448
29449         * modules/ldexpl: New file.
29450         * m4/ldexpl.m4: New file.
29451         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
29452         set.
29453         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
29454         REPLACE_LDEXPL.
29455         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
29456         REPLACE_LDEXPL.
29457         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
29458         gl_FUNC_LDEXPL_WORKS.
29459         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
29460         * modules/mathl (Files): Remove lib/ldexpl.c.
29461         (Depends-on): Add ldexpl.
29462
29463 2007-03-29  Bruno Haible  <bruno@clisp.org>
29464
29465         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
29466
29467 2007-03-29  Bruno Haible  <bruno@clisp.org>
29468
29469         * tests/test-striconveh.c (main): Don't assume that a direct conversion
29470         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
29471         and possibly also HP-UX.
29472         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29473         work on AIX, IRIX, HP-UX, OSF/1.
29474         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
29475         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
29476         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
29477         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
29478         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
29479         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
29480
29481 2007-03-29  Bruno Haible  <bruno@clisp.org>
29482
29483         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
29484
29485 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29486
29487         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
29488         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
29489
29490 2007-03-29  Eric Blake  <ebb9@byu.net>
29491
29492         * lib/acl-internal.h: Remove redundant include.
29493         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
29494         Cygwin when a file is locked.
29495
29496 2007-03-29  Bruno Haible  <bruno@clisp.org>
29497
29498         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
29499         file.
29500         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
29501
29502 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29503
29504         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
29505         try to remove a parent directory if the child couldn't be removed
29506         (except for the first rmdir, which could fail because the child
29507         doesn't exist).  Problem reported by Jeff Blaine in
29508         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
29509
29510 2007-03-28  Bruno Haible  <bruno@clisp.org>
29511
29512         * lib/striconveh.c (utf8conv_carefully): New function.
29513         (mem_cd_iconveh_internal): Invoke it.
29514
29515 2007-03-28  Bruno Haible  <bruno@clisp.org>
29516
29517         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
29518         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
29519         input.
29520         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
29521         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
29522         unistr/u8-uctomb.
29523
29524 2007-03-28  Bruno Haible  <bruno@clisp.org>
29525
29526         * modules/unistr/u8-mbtoucr: New file.
29527         * lib/unistr/u8-mbtoucr.c: New file.
29528         * modules/unistr/u16-mbtoucr: New file.
29529         * lib/unistr/u16-mbtoucr.c: New file.
29530         * modules/unistr/u16-mbtoucr: New file.
29531         * lib/unistr/u16-mbtoucr.c: New file.
29532         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
29533
29534 2007-03-27  Simon Josefsson  <simon@josefsson.org>
29535             Bruno Haible  <bruno@clisp.org>
29536
29537         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
29538         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
29539         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
29540
29541         * m4/stdio_h.m4: Add stubs for vasprintf too.
29542
29543         * modules/stdio: Support vasprintf in sed command.
29544
29545         * modules/vasprintf: Depend on stdio for prototypes.  Remove
29546         vasprintf.h.  Add stdio module indicator.
29547
29548         * lib/stdio_.h: Declare asprintf and vasprintf, based on
29549         vasprintf.h.
29550
29551         * lib/vasprintf.h: File removed.
29552
29553         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
29554         * lib/vasprintf.c: Ditto.
29555         * lib/xvasprintf.c: Ditto.
29556         * tests/test-vasprintf-posix.c: Ditto.
29557         * tests/test-vasprintf.c: Ditto.
29558
29559 2007-03-27  Bruno Haible  <bruno@clisp.org>
29560
29561         Make vasnprintf multithread-safe.
29562         * lib/vasnprintf.c (decimal_point_char): New function.
29563         (VASNPRINTF): Use it.
29564         Suggested by Simon Josefsson.
29565
29566 2007-03-27  Eric Blake  <ebb9@byu.net>
29567
29568         Support sub-second birthtime on cygwin.
29569         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
29570         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
29571         (get_stat_birthtime): Also work with st_birthtim.
29572
29573 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
29574
29575         * lib/stat-time.h (USE_BIRTHTIME): Remove.
29576         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
29577         (get_stat_birthtime_ns): Do not try to use "spare" fields.
29578         (get_stat_birthtime_ns): Simplify compile-time tests.
29579         (get_stat_birthtime): Change the API to look like
29580         get_stat_mtime etc., except return a negative tv_nsec on error.
29581         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
29582         Don't check for "spare" fields.
29583         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
29584         or for struct stat.st_birthtime, as these tests aren't used.
29585         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
29586
29587 2007-03-27  Bruno Haible  <bruno@clisp.org>
29588
29589         * lib/stat-time.h: Include <sys/stat.h>.
29590
29591 2007-03-27  James Youngman  <jay@gnu.org>
29592
29593         * lib/stat-time.h (get_stat_birthtime): New function for
29594           retrieving st_birthtime as provided by UFS2 (hence *BSD).
29595         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
29596           and its variants.
29597         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
29598         * modules/stat-time-test: New file.
29599         * tests/test-stat-time.c: New test, devised by Bruno Haible.
29600
29601 2007-03-26  Bruno Haible  <bruno@clisp.org>
29602
29603         Better support of signalling NaNs.
29604         * lib/atanl.c: Include isnanl.h.
29605         (atanl): Perform test for NaN at the beginning of the function and
29606         through a call to isnanl.
29607         * lib/cosl.c: Include isnanl.h.
29608         (cosl): Perform test for NaN at the beginning of the function and
29609         through a call to isnanl.
29610         * lib/ldexpl.c: Include isnanl.h.
29611         (ldexpl): Perform test for NaN through a call to isnanl.
29612         * lib/logl.c: Include isnanl.h.
29613         (logl): Perform test for NaN at the beginning of the function and
29614         through a call to isnanl.
29615         * lib/sinl.c: Include isnanl.h.
29616         (sinl): Perform test for NaN at the beginning of the function and
29617         through a call to isnanl.
29618         * lib/sqrtl.c: Include isnanl.h.
29619         (sqrtl): Perform test for NaN at the beginning of the function and
29620         through a call to isnanl.
29621         * lib/tanl.c: Include isnanl.h.
29622         (tanl): Perform test for NaN at the beginning of the function and
29623         through a call to isnanl.
29624         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
29625         * modules/mathl (Depends-on): Add isnanl.
29626
29627 2007-03-26  Eric Blake  <ebb9@byu.net>
29628
29629         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
29630         regression in logic sense of previous patch.
29631
29632 2007-03-26  Bruno Haible  <bruno@clisp.org>
29633
29634         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
29635         unportable shell command "if ! ...".
29636         Reported by Ralf Wildenhues.
29637
29638 2007-03-25  Bruno Haible  <bruno@clisp.org>
29639
29640         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
29641         <sysexits.h> file, and only add EX_CONFIG.
29642         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
29643         absolute file name and whether it is sufficient. Substitute also
29644         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
29645         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
29646         ABSOLUTE_SYSEXITS_H into sysexits.h.
29647
29648 2007-03-25  Bruno Haible  <bruno@clisp.org>
29649
29650         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
29651         hints is NULL.
29652
29653 2007-03-25  Bruno Haible  <bruno@clisp.org>
29654
29655         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
29656         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
29657
29658 2007-03-25  Bruno Haible  <bruno@clisp.org>
29659
29660         * lib/vasnprintf.c: Include langinfo.h.
29661         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
29662         multithread-safe.
29663         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
29664         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
29665         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29666         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29667         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29668         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29669         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29670         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
29671         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29672         Reported by Simon Josefsson.
29673
29674 2007-03-25  Bruno Haible  <bruno@clisp.org>
29675
29676         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
29677         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
29678         * modules/vasnprintf (Depends-on): Add stdint.
29679
29680 2007-03-25  Bruno Haible  <bruno@clisp.org>
29681
29682         * modules/fpieee: New file.
29683         * m4/fpieee.m4: New file.
29684         * modules/isnan-nolibm (Depends-on): Add fpieee.
29685         * modules/isnanl-nolibm (Depends-on): Add fpieee.
29686         * modules/isnanl (Depends-on): Add fpieee.
29687
29688 2007-03-25  Bruno Haible  <bruno@clisp.org>
29689
29690         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
29691
29692 2007-03-25  Bruno Haible  <bruno@clisp.org>
29693
29694         Avoid test failures on IRIX 6.5.
29695         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
29696         (main): Use it.
29697         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
29698         macros.
29699         (main): Use them.
29700
29701 2007-03-25  Bruno Haible  <bruno@clisp.org>
29702
29703         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
29704         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
29705         exists but doesn't work.
29706         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
29707         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
29708         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
29709         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
29710
29711 2007-03-25  Bruno Haible  <bruno@clisp.org>
29712
29713         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
29714         returns inf. Needed on IRIX 6.5.
29715
29716 2007-03-25  Bruno Haible  <bruno@clisp.org>
29717
29718         * tests/test-frexpl.c: Include isnanl-nolibm.h.
29719         (main): Use isnanl instead of x != x idiom.
29720         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
29721
29722         * tests/test-frexp.c: Include isnan.h.
29723         (main): Use isnan instead of x != x idiom.
29724         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
29725
29726 2007-03-25  Bruno Haible  <bruno@clisp.org>
29727
29728         * tests/test-frexp.c (NaN): New function/macro.
29729         (main): Use it instead of 0.0 / 0.0.
29730         * tests/test-isnan.c (NaN): New function/macro.
29731         (main): Use it instead of 0.0 / 0.0.
29732         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
29733         (test_function): Use it instead of 0.0 / 0.0.
29734         * tests/test-vasprintf-posix.c (NaN): New function/macro.
29735         (test_function): Use it instead of 0.0 / 0.0.
29736         * tests/test-snprintf-posix.h (NaN): New function/macro.
29737         (test_function): Use it instead of 0.0 / 0.0.
29738         * tests/test-sprintf-posix.h (NaN): New function/macro.
29739         (test_function): Use it instead of 0.0 / 0.0.
29740         * tests/test-fprintf-posix.h (NaN): New function/macro.
29741         (test_function): Use it instead of 0.0 / 0.0.
29742         * tests/test-printf-posix.h (NaN): New function/macro.
29743         (test_function): Use it instead of 0.0 / 0.0.
29744
29745         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
29746
29747 2007-03-25  Bruno Haible  <bruno@clisp.org>
29748
29749         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
29750
29751 2007-03-25  Bruno Haible  <bruno@clisp.org>
29752
29753         * lib/regexec.c (merge_state_with_log): Make static.
29754
29755 2007-03-25  Bruno Haible  <bruno@clisp.org>
29756
29757         * lib/trigl.c (kernel_rem_pio2): Make static.
29758
29759 2007-03-25  Bruno Haible  <bruno@clisp.org>
29760
29761         * lib/sincosl.c (sincosl_table): Make static.
29762
29763 2007-03-25  Bruno Haible  <bruno@clisp.org>
29764
29765         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
29766         if the compiler does not support C99.
29767
29768 2007-03-25  Bruno Haible  <bruno@clisp.org>
29769
29770         * modules/time (Makefile.am): Ensure all rule action lines start with a
29771         tab.
29772
29773 2007-03-24  Bruno Haible  <bruno@clisp.org>
29774
29775         * modules/tsearch-tests: New file.
29776         * tests/test-tsearch.sh: New file.
29777         * tests/test-tsearch.c: New file, mostly copied from glibc.
29778
29779         * modules/search-tests: New file.
29780         * tests/test-search.c: New file.
29781
29782         * modules/search: New file.
29783         * lib/search_.h: New file, incorporating lib/tsearch.h.
29784         * m4/search_h.m4: New file.
29785         * lib/tsearch.h: Remove file.
29786         * lib/tsearch.c: Include search.h instead of tsearch.h.
29787         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
29788         HAVE_TSEARCH.
29789         * modules/tsearch (Files): Remove lib/tsearch.h.
29790         (Depends-on): Add search.
29791         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
29792         (Include): Change tsearch.h into search.h.
29793
29794 2007-03-24  Bruno Haible  <bruno@clisp.org>
29795
29796         * modules/fpucw: New file.
29797         * lib/fpucw.h: New file.
29798         * lib/frexp.c: Include fpucw.h.
29799         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29800         (FUNC): Use them.
29801         * lib/printf-frexp.c: Include fpucw.h.
29802         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29803         (FUNC): Use them.
29804         * lib/vasnprintf.c: Include fpucw.h.
29805         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
29806         'long double' calculations.
29807         * tests/test-frexpl.c: Include fpucw.h.
29808         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29809         * tests/test-printf-frexpl.c: Include fpucw.h.
29810         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29811         * modules/frexpl (Depends-on): Add fpucw.
29812         * modules/printf-frexpl (Depends-on): Likewise.
29813         * modules/fprintf-posix (Depends-on): Likewise.
29814         * modules/snprintf-posix (Depends-on): Likewise.
29815         * modules/sprintf-posix (Depends-on): Likewise.
29816         * modules/vasnprintf-posix (Depends-on): Likewise.
29817         * modules/vasprintf-posix (Depends-on): Likewise.
29818         * modules/vfprintf-posix (Depends-on): Likewise.
29819         * modules/vsnprintf-posix (Depends-on): Likewise.
29820         * modules/vsprintf-posix (Depends-on): Likewise.
29821         * modules/frexpl-tests (Depends-on): Likewise.
29822         * modules/printf-frexpl-tests (Depends-on): Likewise.
29823
29824 2007-03-24  Bruno Haible  <bruno@clisp.org>
29825
29826         * lib/float+.h: New file.
29827         * lib/isnan.c: Include float+.h.
29828         (SIZE): New macro.
29829         (FUNC): Compare only SIZE bytes of the value.
29830         * lib/vasnprintf.c: Include float+.h.
29831         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
29832         SIZEOF_LDBL or SIZEOF_DBL bytes.
29833         * modules/isnan-nolibm (Files): Add lib/float+.h.
29834         * modules/isnanl-nolibm (Files): Add lib/float+.h.
29835         * modules/isnanl (Files): Add lib/float+.h.
29836         * modules/vasnprintf (Files): Add lib/float+.h.
29837
29838 2007-03-24  Bruno Haible  <bruno@clisp.org>
29839
29840         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
29841         include isnanl-nolibm.h.
29842
29843 2007-03-24  Bruno Haible  <bruno@clisp.org>
29844
29845         * tests/test-read-file.c (main): Don't produce spurious output for
29846         expected situations. Make the test fail if it encountered unexpected
29847         results.
29848
29849 2007-03-24  Bruno Haible  <bruno@clisp.org>
29850
29851         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
29852         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
29853
29854 2007-03-24  Bruno Haible  <bruno@clisp.org>
29855
29856         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
29857
29858 2007-03-24  Bruno Haible  <bruno@clisp.org>
29859
29860         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
29861         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
29862
29863         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
29864         * modules/utf8-ucs4: Turn into a symbolic link to module
29865         unistr/u8-mbtouc.
29866
29867         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
29868         utf8-ucs4-unsafe.
29869         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
29870         unistr/u8-mbtouc-unsafe.
29871
29872         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
29873         * modules/utf16-ucs4: Turn into a symbolic link to module
29874         unistr/u16-mbtouc.
29875
29876         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
29877         utf16-ucs4-unsafe.
29878         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
29879         unistr/u16-mbtouc-unsafe.
29880
29881         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
29882         * modules/ucs4-utf8: Turn into a symbolic link to module
29883         unistr/u8-ubtomb.
29884
29885         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
29886         * modules/ucs4-utf16: Turn into a symbolic link to module
29887         unistr/u16-ubtomb.
29888
29889 2007-03-24  Bruno Haible  <bruno@clisp.org>
29890
29891         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
29892         Enable the function only if HAVE_INLINE.
29893         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
29894         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29895         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
29896         Enable the function only if HAVE_INLINE.
29897         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
29898         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29899         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
29900         Enable the function only if HAVE_INLINE.
29901         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
29902         Enable the function only if HAVE_INLINE.
29903         * modules/utf8-ucs4: Update.
29904         * modules/utf8-ucs4-unsafe: Update.
29905         * modules/utf16-ucs4: Update.
29906         * modules/utf16-ucs4-unsafe: Update.
29907         * modules/ucs4-utf8: Update.
29908         * modules/ucs4-utf16: Update.
29909
29910 2007-03-24  Bruno Haible  <bruno@clisp.org>
29911
29912         * lib/utf8-ucs4.h: Remove file.
29913         * lib/utf8-ucs4-unsafe.h: Remove file.
29914         * lib/utf16-ucs4.h: Remove file.
29915         * lib/utf16-ucs4-unsafe.h: Remove file.
29916         * lib/ucs4-utf8.h: Remove file.
29917         * lib/ucs4-utf16.h: Remove file.
29918         * lib/unistr.h: Include their previous contents.
29919         * m4/utf-ucs4.m4: Remove file.
29920         * m4/ucs4-utf.m4: Remove file.
29921         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
29922         (Depends-on): Add unistr/base.
29923         (configure.ac): Remove gl_UTF_UCS4.
29924         (Makefile.am): Update.
29925         (Include): Change to unistr.h.
29926         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
29927         (Depends-on): Add unistr/base.
29928         (configure.ac): Remove gl_UTF_UCS4.
29929         (Makefile.am): Update.
29930         (Include): Change to unistr.h.
29931         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
29932         (Depends-on): Add unistr/base.
29933         (configure.ac): Remove gl_UTF_UCS4.
29934         (Makefile.am): Update.
29935         (Include): Change to unistr.h.
29936         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
29937         (Depends-on): Add unistr/base.
29938         (configure.ac): Remove gl_UTF_UCS4.
29939         (Makefile.am): Update.
29940         (Include): Change to unistr.h.
29941         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
29942         (Depends-on): Add unistr/base.
29943         (configure.ac): Remove gl_UCS4_UTF.
29944         (Makefile.am): Update.
29945         (Include): Change to unistr.h.
29946         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
29947         (Depends-on): Add unistr/base.
29948         (configure.ac): Remove gl_UCS4_UTF.
29949         (Makefile.am): Update.
29950         (Include): Change to unistr.h.
29951         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
29952         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
29953         utf8-ucs4-unsafe.h.
29954         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
29955         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
29956         utf16-ucs4-unsafe.h.
29957         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
29958         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
29959         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
29960         * lib/unistr/u8-strchr.c: Likewise.
29961         * lib/unistr/u8-strrchr.c: Likewise.
29962         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
29963         * lib/unistr/u16-strchr.c: Likewise.
29964         * lib/unistr/u16-strrchr.c: Likewise.
29965         * lib/striconveh.c: Update.
29966         * lib/linebreak.c: Update.
29967
29968 2007-03-24  Bruno Haible  <bruno@clisp.org>
29969
29970         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
29971         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
29972
29973 2007-03-22  Bruno Haible  <bruno@clisp.org>
29974
29975         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
29976
29977 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
29978
29979         * MODULES.html.sh (File system functions): New module write-any-file.
29980         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
29981         * m4/write-any-file.m4: New files.
29982
29983 2007-03-23  Eric Blake  <ebb9@byu.net>
29984
29985         * gnulib-tool: Rearrange space-tab sequences, since some editors
29986         like to eat them.
29987
29988 2007-03-23  Eric Blake  <ebb9@byu.net>
29989
29990         * lib/version-etc.c (version_etc_va): Update license wording to
29991         be more concise.  Recommended by Richard Stallman.
29992
29993 2007-03-22  Bruno Haible  <bruno@clisp.org>
29994
29995         * lib/poll.c (MSG_PEEK): New fallback definition.
29996
29997 2007-03-22  Bruno Haible  <bruno@clisp.org>
29998
29999         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
30000         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
30001         (main): Update.
30002         Fixes a compilation error on BeOS.
30003
30004 2007-03-22  Bruno Haible  <bruno@clisp.org>
30005
30006         * modules/frexpl-tests: New file.
30007         * tests/test-frexpl.c: New file.
30008
30009         * modules/frexpl: New file.
30010         * m4/frexpl.m4: New file.
30011         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
30012         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
30013         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
30014         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
30015         (Depends-on): Add frexpl. Remove isnanl-nolibm.
30016         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
30017
30018 2007-03-22  Bruno Haible  <bruno@clisp.org>
30019
30020         * lib/frexpl.c: Share code with lib/frexp.c.
30021         * modules/mathl (Files): Add lib/frexp.c.
30022         (Depends-on): Add isnanl-nolibm.
30023
30024 2007-03-22  Bruno Haible  <bruno@clisp.org>
30025
30026         * modules/printf-frexp (Files): Add m4/frexp.m4.
30027         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
30028         only if the found frexp function actually works.
30029
30030 2007-03-22  Bruno Haible  <bruno@clisp.org>
30031
30032         * lib/frexp.c: Remove older implementation that uses divisions.
30033
30034 2007-03-21  Bruno Haible  <bruno@clisp.org>
30035
30036         * modules/frexp-tests: New file.
30037         * tests/test-frexp.c: New file.
30038
30039         * modules/frexp: New file.
30040         * lib/frexp.c: New file.
30041         * m4/frexp.m4: New file.
30042         * lib/math_.h (frexp): New declaration.
30043         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
30044         REPLACE_FREXP.
30045         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
30046
30047 2007-03-21  Bruno Haible  <bruno@clisp.org>
30048
30049         * modules/isnanl-tests: New file.
30050         * tests/test-isnanl.c: New file.
30051
30052         * modules/isnanl: New file.
30053         * lib/isnanl.h: New file.
30054         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
30055         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
30056         gl_FUNC_ISNANL_WORKS.
30057         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
30058         New macros.
30059
30060 2007-03-21  Bruno Haible  <bruno@clisp.org>
30061
30062         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
30063         lib/isnanl.h.
30064         (Include): Update.
30065         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
30066         * lib/vasnprintf.c: Update.
30067         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
30068         tests/test-isnanl.h, remove tests/test-isnanl.c.
30069         (Makefile.am): Update.
30070         * tests/test-isnanl-nolibm.c: New file.
30071         * tests/test-isnanl.h: New file.
30072         * tests/test-isnanl.c: Remove file.
30073
30074 2007-03-21  Jim Meyering  <jim@meyering.net>
30075
30076         When trying to open ".", treat ESTALE like EACCES.
30077         * lib/savewd.c (savewd_save): Resort to forking not just upon
30078         failure with EACCES, but also when errno is ESTALE.
30079
30080 2007-03-20  Bruno Haible  <bruno@clisp.org>
30081
30082         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
30083         Needed on AIX 5.1. Reported by Matthew Woehlke.
30084
30085 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30086
30087         Suggestions by Bruno Haible:
30088         * lib/acl-internal.h: Include "gettext.h" rather than rolling
30089         our own.
30090         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
30091         * modules/acl (Depends-on): Add gettext.
30092
30093 2007-03-19  Bruno Haible  <bruno@clisp.org>
30094
30095         * modules/iconvme: Remove file.
30096         * lib/iconvme.h: Remove file.
30097         * lib/iconvme.c: Remove file.
30098         * m4/iconvme.m4: Remove file.
30099
30100 2007-03-19  Bruno Haible  <bruno@clisp.org>
30101
30102         * doc/relocatable-maint.texi: Break long shell script line.
30103         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30104
30105 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30106
30107         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
30108         handle file_has_acl.
30109         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
30110         * lib/acl.c: Move header inclusions and related macro defns into
30111         lib/acl-internal.h.
30112         (S_ISLNK): Remove defn, since that's now done for us.
30113         (file_has_acl): Move to lib/file-has-acl.c.
30114         Call acl_trivial if available.  This is the crucial part of the fix.
30115         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
30116         shared within the library.  Rewrite a bit, partly to make it compatible
30117         with the GNU coding style.
30118         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
30119         Remove unnecessary double-quotes.
30120         Don't test for acl_to_text; the build will catch that.
30121         Replace acl_entries if it doesn't exist and it is needed.
30122         Check for -lsec and acl_trivial (as used on Solaris 10).
30123         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
30124         lib/file-has-acl.c.
30125         (Depends-on): Add sys_stat, for S_ISLNK.
30126
30127 2007-03-19  Ben Pfaff  <blp@gnu.org>
30128
30129         * doc/gnulib.texi: Fix typos.
30130         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30131
30132 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30133
30134         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
30135         If size is zero here, buf must be zero.
30136
30137 2007-03-19  Simon Josefsson  <simon@josefsson.org>
30138
30139         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
30140         <bruno@clisp.org>.
30141
30142 2007-03-18  Bruno Haible  <bruno@clisp.org>
30143
30144         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
30145         Suggested by Eric Blake.
30146
30147 2007-03-18  Ben Pfaff  <blp@gnu.org>
30148
30149         * doc/relocatable.texi: Recommend using as prefix a directory
30150         that does not exist and will never be created.  Based on
30151         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
30152         and others.
30153
30154 2007-03-17  Bruno Haible  <bruno@clisp.org>
30155
30156         * lib/fchownat.c: Include lchown.h.
30157
30158 2007-03-17  Bruno Haible  <bruno@clisp.org>
30159
30160         Fix endless loop when the given allocated size was > INT_MAX.
30161         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
30162         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
30163         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
30164         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
30165         * lib/sprintf.c (sprintf): Likewise.
30166
30167 2007-03-17  Bruno Haible  <bruno@clisp.org>
30168
30169         * tests/test-argp-2.sh (func_compare): Output a context diff.
30170
30171 2007-03-17  Bruno Haible  <bruno@clisp.org>
30172
30173         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
30174         locale's decimal-point character.
30175
30176 2007-03-17  Bruno Haible  <bruno@clisp.org>
30177
30178         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
30179         before comparing it. Needed because on some platforms (e.g. x86) a
30180         'long double' occupies less bytes than sizeof (long double).
30181
30182 2007-03-17  Bruno Haible  <bruno@clisp.org>
30183
30184         * tests/test-crc.c (main): Make printf statements 64-bit clean.
30185         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
30186         * tests/test-getaddrinfo.c (simple): Likewise.
30187         * tests/test-read-file.c (main): Likewise.
30188
30189 2007-03-17  Bruno Haible  <bruno@clisp.org>
30190
30191         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
30192
30193 2007-03-17  Bruno Haible  <bruno@clisp.org>
30194
30195         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
30196         unused variable.
30197
30198 2007-03-17  Bruno Haible  <bruno@clisp.org>
30199
30200         * tests/test-c-strcasecmp.c: Include c-strcase.h.
30201         * tests/test-c-strncasecmp.c: Likewise.
30202
30203 2007-03-17  Bruno Haible  <bruno@clisp.org>
30204
30205         * modules/stdlib (Depends-on): Add unistd.
30206         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
30207         Needed for MacOS X 10.3.
30208
30209 2007-03-17  Bruno Haible  <bruno@clisp.org>
30210
30211         * lib/unistr/u-strdup.h: Include <stdlib.h>.
30212
30213 2007-03-17  Bruno Haible  <bruno@clisp.org>
30214
30215         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
30216
30217 2007-03-17  Bruno Haible  <bruno@clisp.org>
30218
30219         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
30220         to reflect files copied from gnulib (with or without modifications).
30221         Suggested by Jim Meyering.
30222
30223 2007-03-17  Eric Blake  <ebb9@byu.net>
30224
30225         * NEWS: Document stdlib change from 2007-02-18.
30226
30227 2007-03-17  Jim Meyering  <jim@meyering.net>
30228
30229         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
30230         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
30231         someone uses a name containing shell meta-characters.
30232         Reported by Alfred M. Szmidt.
30233
30234         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
30235
30236 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30237
30238         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
30239         and copy gettext configuration files only if configure.ac contains
30240         a use of AM_GNU_GETTEXT_VERSION.
30241
30242 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30243
30244         * build-aux/bootstrap (gnulib_name): New variable.
30245         (gnulib_tool_options): Use it.
30246
30247 2007-03-13  Simon Josefsson  <simon@josefsson.org>
30248
30249         * tests/test-des.c: Use new namespace.
30250
30251 2007-03-15  Bruno Haible  <bruno@clisp.org>
30252
30253         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
30254         Reported by James Youngman <jay@gnu.org>.
30255
30256 2007-03-15  Bruno Haible  <bruno@clisp.org>
30257
30258         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
30259         declared prototype. Needed with cc on OSF/1 5.1.
30260
30261 2007-03-15  Bruno Haible  <bruno@clisp.org>
30262
30263         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
30264         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
30265         (struct gl_list_implementation): Add dispose_fn argument to the
30266         'create_empty', 'create' methods.
30267         (struct gl_list_impl_base): Add field 'dispose_fn'.
30268         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
30269         argument.
30270         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
30271         dispose_fn argument.
30272         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
30273         dispose_fn on the dropped values.
30274         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
30275         dispose_fn argument.
30276         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
30277         dropped values.
30278         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
30279         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30280         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
30281         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30282         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
30283         argument.
30284         (gl_tree_list_free): Call dispose_fn on the dropped values.
30285         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
30286         the dropped values.
30287         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
30288         Add dispose_fn argument.
30289         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
30290         Call dispose_fn on the dropped values.
30291         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
30292         Add dispose_fn argument.
30293         (gl_sublist_create): Initialize the 'dispose_fn' field.
30294         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
30295         * tests/test-array_list.c (main): Update.
30296         * tests/test-carray_list.c (main): Update.
30297         * tests/test-avltree_list.c (main): Update.
30298         * tests/test-rbtree_list.c (main): Update.
30299         * tests/test-avltreehash_list.c (main): Update.
30300         * tests/test-rbtreehash_list.c (main): Update.
30301         * tests/test-linked_list.c (main): Update.
30302         * tests/test-linkedhash_list.c (main): Update.
30303         * tests/test-array_oset.c (main): Update.
30304
30305 2007-03-15  Bruno Haible  <bruno@clisp.org>
30306
30307         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
30308         (gl_oset_create_empty): Add dispose_fn argument.
30309         (struct gl_oset_implementation): Add dispose_fn argument to
30310         'create_empty' method.
30311         (struct gl_oset_impl_base): Add dispose_fn field.
30312         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
30313         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
30314         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
30315         values.
30316         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
30317         (gl_tree_oset_free): Call dispose_fn on the dropped values.
30318         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30319         dropped value.
30320         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30321         dropped value.
30322         * tests/test-array_oset.c (main): Update.
30323         * tests/test-avltree_oset.c (main): Update.
30324         * tests/test-rbtree_oset.c (main): Update.
30325         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
30326
30327 2007-03-13  Bruno Haible  <bruno@clisp.org>
30328
30329         * tests/test-stdbool.c (i): Update after last patch.
30330
30331 2007-03-12  Bruno Haible  <bruno@clisp.org>
30332
30333         * lib/quotearg.c: Include <wctype.h> early, before the definition of
30334         the iswprint macro. Needed on Solaris 2.5.1.
30335
30336 2007-03-12  Bruno Haible  <bruno@clisp.org>
30337
30338         * tests/test-printf-frexp.c (main): Declare x as volatile.
30339
30340 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30341
30342         * doc/gnulib.texi (Build robot for gnulib): New section.
30343
30344 2007-03-12  Jim Meyering  <jim@meyering.net>
30345
30346         * build-aux/bootstrap: New file.
30347         * build-aux/bootstrap.conf: New file, from coreutils.
30348
30349 2007-03-11  Bruno Haible  <bruno@clisp.org>
30350
30351         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
30352
30353 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30354
30355         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
30356         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
30357         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
30358
30359 2007-03-11  Bruno Haible  <bruno@clisp.org>
30360
30361         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
30362         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
30363
30364 2007-03-11  Bruno Haible  <bruno@clisp.org>
30365
30366         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
30367         formula. Needed for SunPRO C 5.0.
30368
30369 2007-03-11  Bruno Haible  <bruno@clisp.org>
30370
30371         * modules/long-options (Depends-on): Add getopt.
30372
30373 2007-03-11  Bruno Haible  <bruno@clisp.org>
30374
30375         * modules/modechange (Depends-on): Add stdbool.
30376
30377 2007-03-11  Bruno Haible  <bruno@clisp.org>
30378
30379         * modules/i-ring (Depends-on): Add stdbool.
30380
30381 2007-03-11  Bruno Haible  <bruno@clisp.org>
30382
30383         * modules/gc-des (Depends-on): Add stdbool.
30384
30385 2007-03-11  Bruno Haible  <bruno@clisp.org>
30386
30387         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
30388
30389 2007-03-11  Bruno Haible  <bruno@clisp.org>
30390
30391         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
30392
30393 2007-03-11  Bruno Haible  <bruno@clisp.org>
30394
30395         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
30396
30397 2007-03-11  Bruno Haible  <bruno@clisp.org>
30398
30399         * lib/vasnprintf.c (sprintf): Undefine.
30400
30401 2007-03-11  Bruno Haible  <bruno@clisp.org>
30402
30403         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
30404         initializers in SunPRO C and Compaq C compilers.
30405
30406 2007-03-11  Bruno Haible  <bruno@clisp.org>
30407
30408         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
30409         decrementing code ANSI C compliant.
30410
30411 2007-03-11  Bruno Haible  <bruno@clisp.org>
30412
30413         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
30414         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
30415
30416 2007-03-11  Bruno Haible  <bruno@clisp.org>
30417
30418         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
30419         <stdbool.h> substitute doesn't pass.
30420
30421 2007-03-11  Bruno Haible  <bruno@clisp.org>
30422
30423         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
30424
30425 2007-03-11  Bruno Haible  <bruno@clisp.org>
30426
30427         * gnulib-tool (func_create_megatestdir): Create also an autobuild
30428         script, for submission to autobuild.josefsson.org.
30429
30430 2007-03-10  Bruno Haible  <bruno@clisp.org>
30431
30432         * modules/canonicalize-lgpl-tests: New file.
30433         * tests/test-canonicalize-lgpl.sh: New file.
30434         * tests/test-canonicalize-lgpl.c: New file.
30435
30436         * modules/c-strcase-tests: New file.
30437         * tests/test-c-strcase.sh: New file.
30438         * tests/test-c-strcasecmp.c: New file.
30439         * tests/test-c-strncasecmp.c: New file.
30440
30441         * modules/atexit-tests: New file.
30442         * tests/test-atexit.sh: New file.
30443         * tests/test-atexit.c: New file.
30444
30445 2007-03-10  Bruno Haible  <bruno@clisp.org>
30446
30447         * tests/test-binary-io.sh: Use temporary filenames that are not so
30448         likely to clash with those of other tests (in a parallel make).
30449         * tests/test-binary-io.c: Likewise.
30450
30451 2007-03-10  Bruno Haible  <bruno@clisp.org>
30452
30453         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
30454         fallback; use #error instead.
30455         Suggested by Simon Josefsson.
30456
30457 2007-03-10  Bruno Haible  <bruno@clisp.org>
30458
30459         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
30460         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
30461         first and the last.
30462
30463 2007-03-10  Bruno Haible  <bruno@clisp.org>
30464
30465         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
30466
30467 2007-03-10  Bruno Haible  <bruno@clisp.org>
30468
30469         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
30470         "make distcheck".
30471         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
30472         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
30473         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
30474
30475 2007-03-10  Bruno Haible  <bruno@clisp.org>
30476
30477         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
30478         variable.
30479         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
30480         variable.
30481
30482 2007-03-09  Eric Blake  <ebb9@byu.net>
30483         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
30484
30485         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
30486         types are not being provided by gnulib.
30487         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
30488         types are supported.
30489
30490 2007-03-10  Bruno Haible  <bruno@clisp.org>
30491
30492         * lib/stdio_.h (__attribute__): New macro.
30493         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
30494         vsprintf): Specify __attribute__ __format__ for GCC.
30495         Suggested by Eric Blake.
30496
30497 2007-03-09  Bruno Haible  <bruno@clisp.org>
30498
30499         * modules/printf-posix-tests: New file.
30500         * tests/test-printf-posix.sh: New file.
30501         * tests/test-printf-posix.c: New file.
30502
30503         * modules/printf-posix: New file.
30504         * lib/printf.c: New file.
30505         * m4/printf-posix-rpl.m4: New file.
30506         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
30507         REPLACE_PRINTF.
30508         * lib/stdio_.h (printf): New declaration.
30509         (format, __format__, ____printf____, ____scanf____, ____strftime____,
30510         ____strfmon____): New macros.
30511         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
30512         REPLACE_PRINTF.
30513
30514 2007-03-09  Bruno Haible  <bruno@clisp.org>
30515
30516         * tests/test-vasnprintf-posix2.sh: New file.
30517         * tests/test-vasnprintf-posix2.c: New file.
30518         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
30519         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
30520         (Makefile.am): Activate test-vasnprintf-posix2.sh.
30521
30522         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
30523         a locale dependent decimal point, rather than always '.'.
30524
30525 2007-03-09  Eric Blake  <ebb9@byu.net>
30526
30527         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
30528         spite of platforms like Tandem/NSK that define it to -1.
30529
30530 2007-03-08  Bruno Haible  <bruno@clisp.org>
30531
30532         * modules/vprintf-posix-tests: New file.
30533         * tests/test-vprintf-posix.sh: New file.
30534         * tests/test-vprintf-posix.c: New file.
30535         * tests/test-printf-posix.h: New file.
30536
30537         * modules/vprintf-posix: New file.
30538         * lib/vprintf.c: New file.
30539         * m4/vprintf-posix.m4: New file.
30540         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
30541         REPLACE_VPRINTF.
30542         * lib/stdio_.h (vprintf): New declaration.
30543         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
30544         REPLACE_VPRINTF.
30545
30546 2007-03-08  Bruno Haible  <bruno@clisp.org>
30547
30548         * modules/fprintf-posix-tests: New file.
30549         * tests/test-fprintf-posix.sh: New file.
30550         * tests/test-fprintf-posix.c: New file.
30551
30552         * modules/fprintf-posix: New file.
30553         * lib/fprintf.c: New file.
30554         * m4/fprintf-posix.m4: New file.
30555         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
30556         REPLACE_FPRINTF.
30557         * lib/stdio_.h (fprintf): New declaration.
30558         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
30559         REPLACE_FPRINTF.
30560
30561 2007-03-08  Bruno Haible  <bruno@clisp.org>
30562
30563         * modules/vfprintf-posix-tests: New file.
30564         * tests/test-vfprintf-posix.sh: New file.
30565         * tests/test-vfprintf-posix.c: New file.
30566         * tests/test-fprintf-posix.h: New file.
30567         * tests/test-fprintf-posix.out: New file.
30568
30569         * modules/vfprintf-posix: New file.
30570         * lib/vfprintf.c: New file.
30571         * m4/vfprintf-posix.m4: New file.
30572         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
30573         REPLACE_VFPRINTF.
30574         * lib/stdio_.h (vfprintf): New declaration.
30575         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
30576         REPLACE_VFPRINTF.
30577
30578 2007-03-08  Bruno Haible  <bruno@clisp.org>
30579
30580         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
30581
30582 2007-03-08  Bruno Haible  <bruno@clisp.org>
30583
30584         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
30585         instead of 'expr' invocations.
30586         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30587         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30588         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30589         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30590         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30591         Suggested by Paul Eggert.
30592
30593 2007-03-08  Bruno Haible  <bruno@clisp.org>
30594
30595         * modules/fseterr-tests: New file.
30596         * tests/test-fseterr.c: New file.
30597
30598         * modules/fseterr: New file.
30599         * lib/fseterr.h: New file.
30600         * lib/fseterr.c: New file.
30601
30602 2007-03-08  Bruno Haible  <bruno@clisp.org>
30603
30604         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
30605         * lib/getopt_.h: Likewise.
30606         * lib/mbswidth.h: Likewise.
30607         * lib/setenv.h: Likewise.
30608         * lib/vasnprintf.h: Likewise.
30609         * lib/vasprintf.h: Likewise.
30610         * lib/verror.h: Likewise.
30611         * lib/xsetenv.h: Likewise.
30612         * lib/xvasprintf.h: Likewise.
30613
30614 2007-03-08  Jim Meyering  <jim@meyering.net>
30615
30616         * users.txt: Add parted.
30617
30618         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
30619
30620 2007-03-07  Bruno Haible  <bruno@clisp.org>
30621
30622         * m4/printf.m4: Make the shell script snippets copy&pastable.
30623
30624 2007-03-02  Bruno Haible  <bruno@clisp.org>
30625
30626         * lib/netinet_in_.h: New file.
30627         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
30628         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
30629         * modules/netinet_in (Files): Add lib/netinet_in_.h.
30630         (Depends-on): Add absolute-header.
30631         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
30632         into netinet/in.h.
30633
30634 2007-03-03  Bruno Haible  <bruno@clisp.org>
30635
30636         * lib/sys_select_.h: New file.
30637         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
30638         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
30639         * modules/sys_select (Files): Add lib/sys_select_.h.
30640         (Depends-on): Add absolute-header.
30641         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
30642         into sys/select.h.
30643
30644 2007-03-02  Bruno Haible  <bruno@clisp.org>
30645
30646         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
30647         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
30648         values.
30649         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
30650         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
30651         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
30652         * modules/sys_socket (Depends-on): Add absolute-header.
30653         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
30654         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
30655         (Include): Remove requirement of inclusion of <sys/types.h>.
30656
30657 2007-03-02  Bruno Haible  <bruno@clisp.org>
30658
30659         * lib/byteswap_.h (bswap_32): Fix formula.
30660
30661 2007-03-06  Bruno Haible  <bruno@clisp.org>
30662
30663         * modules/sprintf-posix-tests: New file.
30664         * tests/test-sprintf-posix.c: New file.
30665
30666         * modules/sprintf-posix: New file.
30667         * lib/sprintf.c: New file.
30668         * m4/sprintf-posix.m4: New file.
30669         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
30670         REPLACE_SPRINTF.
30671         * lib/stdio_.h (sprintf): New declaration.
30672         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
30673         REPLACE_SPRINTF.
30674
30675 2007-03-06  Bruno Haible  <bruno@clisp.org>
30676
30677         * modules/vsprintf-posix-tests: New file.
30678         * tests/test-vsprintf-posix.c: New file.
30679         * tests/test-sprintf-posix.h: New file.
30680
30681         * modules/vsprintf-posix: New file.
30682         * lib/vsprintf.c: New file.
30683         * m4/vsprintf-posix.m4: New file.
30684         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
30685         REPLACE_VSPRINTF.
30686         * lib/stdio_.h (vsprintf): New declaration.
30687         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
30688         REPLACE_VSPRINTF.
30689
30690 2007-03-06  Bruno Haible  <bruno@clisp.org>
30691
30692         * modules/vsnprintf (Depend-on): Remove minmax.
30693
30694 2007-03-06  Bruno Haible  <bruno@clisp.org>
30695
30696         * modules/snprintf-posix-tests: New file.
30697         * tests/test-snprintf-posix.c: New file.
30698
30699         * modules/snprintf-posix: New file.
30700         * m4/snprintf-posix.m4: New file.
30701         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
30702         gl_FUNC_SNPRINTF.
30703         (gl_FUNC_SNPRINTF): Invoke it.
30704         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
30705         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
30706         is set.
30707         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
30708
30709 2007-03-06  Bruno Haible  <bruno@clisp.org>
30710
30711         * modules/vsnprintf-posix-tests: New file.
30712         * tests/test-vsnprintf-posix.c: New file.
30713         * tests/test-snprintf-posix.h: New file.
30714
30715         * modules/vsnprintf-posix: New file.
30716         * m4/vsnprintf-posix.m4: New file.
30717         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
30718         gl_FUNC_VSNPRINTF.
30719         (gl_FUNC_VSNPRINTF): Invoke it.
30720         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
30721         * lib/stdio_.h (vsnprintf): Define as a replacement if
30722         REPLACE_VSNPRINTF is set.
30723         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
30724
30725 2007-03-06  Bruno Haible  <bruno@clisp.org>
30726
30727         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
30728         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
30729
30730 2007-03-06  Bruno Haible  <bruno@clisp.org>
30731
30732         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
30733         (asinl): Declare also if HAVE_DECL_ASINL is set.
30734         (atanl): Declare also if HAVE_DECL_ATANL is set.
30735         (ceill): Declare also if HAVE_DECL_CEILL is set.
30736         (cosl): Declare also if HAVE_DECL_COSL is set.
30737         (expl): Declare also if HAVE_DECL_EXPL is set.
30738         (floorl): Declare also if HAVE_DECL_FLOORL is set.
30739         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
30740         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
30741         (logl): Declare also if HAVE_DECL_LOGL is set.
30742         (sinl): Declare also if HAVE_DECL_SINL is set.
30743         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
30744         (tanl): Declare also if HAVE_DECL_TANL is set.
30745         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
30746         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
30747         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
30748         declaration of frexpl, ldexpl.
30749         * modules/printf-frexpl (Depends-on): Add math.
30750         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
30751
30752 2007-03-05  Bruno Haible  <bruno@clisp.org>
30753
30754         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
30755         frexpl and ldexpl are declared.
30756         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
30757
30758 2007-03-05  Bruno Haible  <bruno@clisp.org>
30759
30760         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
30761         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
30762
30763 2007-03-05  Bruno Haible  <bruno@clisp.org>
30764
30765         * lib/stdio_.h: Include <stddef.h>.
30766
30767 2007-03-05  Bruno Haible  <bruno@clisp.org>
30768
30769         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
30770
30771 2007-03-05  Bruno Haible  <bruno@clisp.org>
30772
30773         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
30774         NetBSD 4, from Ralf Wildenhues.
30775
30776 2007-03-04  Bruno Haible  <bruno@clisp.org>
30777
30778         * lib/vasprintf.h: Update #if logic for the case when the functions
30779         exist but are overridden.
30780
30781 2007-03-04  Bruno Haible  <bruno@clisp.org>
30782
30783         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
30784         implementations: glibc-2.4 and MacOS X 10.3.
30785         * tests/test-vasnprintf-posix.c (test_function): Test also the case
30786         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
30787         * tests/test-vasprintf-posix.c (test_function): Likewise.
30788
30789 2007-03-04  Bruno Haible  <bruno@clisp.org>
30790
30791         * modules/vasprintf-posix-tests: New file.
30792         * tests/test-vasprintf-posix.c: New file.
30793
30794         * modules/vasprintf-posix: New file.
30795         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
30796         defined.
30797         * m4/vasprintf-posix.m4: New file.
30798         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
30799         gl_FUNC_VASPRINTF.
30800         (gl_FUNC_VASPRINTF): Invoke it.
30801         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
30802         here.
30803         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
30804
30805 2007-03-04  Bruno Haible  <bruno@clisp.org>
30806
30807         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
30808         REPLACE_GETTIMEOFDAY.
30809         * modules/sys_time (Makefile.am): Likewise.
30810         * m4/sys_time_h.m4: Likewise.
30811         * m4/gettimeofday.m4: Likewise.
30812
30813 2007-03-04  Bruno Haible  <bruno@clisp.org>
30814
30815         * modules/vasnprintf-posix-tests: New file.
30816         * tests/test-vasnprintf-posix.c: New file.
30817
30818         * modules/vasnprintf-posix: New file.
30819         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
30820         printf-frexpl.h.
30821         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
30822         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
30823         REPLACE_VASNPRINTF is defined.
30824         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
30825         gl_FUNC_VASNPRINTF.
30826         (gl_FUNC_VASNPRINTF): Invoke it.
30827         * m4/vasnprintf-posix.m4: New file.
30828         * m4/printf.m4: New file.
30829
30830 2007-03-04  Bruno Haible  <bruno@clisp.org>
30831
30832         Compile progreloc.c only if --enable-relocatable is specified.
30833         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
30834         if --enable-relocatable was specified.
30835         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
30836         lib_SOURCES.
30837
30838 2007-03-04  Jim Meyering  <jim@meyering.net>
30839
30840         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
30841         Use it consistently, rather than enumerating errno constants.
30842
30843 2007-03-04  Bruno Haible  <bruno@clisp.org>
30844
30845         * modules/xvasprintf-tests: New file.
30846         * tests/test-xvasprintf.c: New file.
30847
30848         * modules/vasprintf-tests: New file.
30849         * tests/test-vasprintf.c: New file.
30850
30851         * modules/vasnprintf-tests: New file.
30852         * tests/test-vasnprintf.c: New file.
30853
30854         * modules/vsnprintf-tests: New file.
30855         * tests/test-vsnprintf.c: New file.
30856
30857         * modules/snprintf-tests: New file.
30858         * tests/test-snprintf.c: New file.
30859
30860 2007-03-04  Bruno Haible  <bruno@clisp.org>
30861
30862         Compile relocatable.c only if --enable-relocatable is specified.
30863         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
30864         gl_RELOCATABLE_LIBRARY.
30865         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
30866         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
30867         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
30868         gl_RELOCATABLE_LIBRARY.
30869         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
30870         (Makefile.am): Remove lib_SOURCES.
30871         * modules/relocatable-lib-lgpl (configure.ac): Invoke
30872         gl_RELOCATABLE_LIBRARY.
30873         (Makefile.am): Remove lib_SOURCES.
30874         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
30875         always.
30876         * modules/relocatable-prog-wrapper (configure.ac): Invoke
30877         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
30878
30879 2007-03-04  Bruno Haible  <bruno@clisp.org>
30880
30881         * modules/argmatch-tests: New file.
30882         * tests/test-argmatch.c: New file.
30883
30884         * tests/test-allocsa.c (main): Halve the number of loop runs.
30885
30886         * modules/alloca-opt-tests: New file.
30887         * tests/test-alloca-opt.c: New file.
30888
30889 2007-03-04  Jim Meyering  <jim@meyering.net>
30890
30891         Work around difference between Linux ACLs and Solaris 10 ZFS.
30892         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
30893         for EINVAL.
30894
30895 2007-03-03  Bruno Haible  <bruno@clisp.org>
30896
30897         * modules/relocatable-prog (Depends-on): Add back progreloc's
30898         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
30899
30900 2007-03-03  Bruno Haible  <bruno@clisp.org>
30901
30902         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
30903         * modules/relocatable-lib: New file.
30904
30905 2007-03-03  Bruno Haible  <bruno@clisp.org>
30906
30907         * modules/relocatable-prog: Renamed from modules/relocatable.
30908         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
30909
30910 2007-03-03  Bruno Haible  <bruno@clisp.org>
30911
30912         * modules/relocatable-script (Files): Add doc/relocatable.texi,
30913         m4/relocatable-lib.m4.
30914         (Depends-on): Remove 'relocatable'.
30915         (configure.ac): Add gl_RELOCATABLE_NOP.
30916
30917 2007-03-03  Bruno Haible  <bruno@clisp.org>
30918
30919         * modules/relocatable-prog-wrapper: New file.
30920         * modules/relocatable (Depends-on): Add it. Remove all other
30921         dependencies except progname.
30922         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
30923
30924         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
30925         (gl_FUNC_STRERROR): Nop.
30926         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
30927
30928         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
30929         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
30930
30931         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
30932         (gl_FUNC_READLINK): Update.
30933
30934         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
30935
30936 2007-03-03  Bruno Haible  <bruno@clisp.org>
30937
30938         * lib/xreadlink.c: Include <unistd.h> unconditionally.
30939         * modules/xreadlink (Depends-on): Add unistd.
30940         * modules/xreadlink-with-size (Depends-on): Likewise.
30941
30942 2007-03-03  Bruno Haible  <bruno@clisp.org>
30943
30944         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
30945         extracted from gt_FUNC_SETENV.
30946         (gt_FUNC_SETENV): Remove macro.
30947         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
30948         remove gt_FUNC_SETENV.
30949
30950 2007-03-03  Bruno Haible  <bruno@clisp.org>
30951
30952         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
30953         ENABLE_RELOCATABLE here.
30954         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
30955
30956 2007-03-03  Bruno Haible  <bruno@clisp.org>
30957
30958         * modules/rbtreehash-list-tests (Depends-on): Add progname.
30959         * tests/test-rbtreehash_list.c: Include progname.h.
30960         (main): Call set_program_name.
30961
30962         * modules/rbtree-oset-tests (Depends-on): Add progname.
30963         * tests/test-rbtree_oset.c: Include progname.h.
30964         (main): Call set_program_name.
30965
30966         * modules/rbtree-list-tests (Depends-on): Add progname.
30967         * tests/test-rbtree_list.c: Include progname.h.
30968         (main): Call set_program_name.
30969
30970         * modules/linked-list-tests (Depends-on): Add progname.
30971         * tests/test-linked_list.c: Include progname.h.
30972         (main): Call set_program_name.
30973
30974 2007-03-03  Bruno Haible  <bruno@clisp.org>
30975
30976         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
30977         All uses of __restrict changed to _Restrict_.
30978         * lib/glob_.h (__restrict): Remove macro.
30979
30980 2007-03-02  Bruno Haible  <bruno@clisp.org>
30981
30982         * modules/gettext (configure.ac): Require gettext infrastructure
30983         from version 0.16.1.
30984
30985 2007-03-02  Bruno Haible  <bruno@clisp.org>
30986
30987         * modules/linkedhash-list-tests (Depends-on): Add progname.
30988         * tests/test-linkedhash_list.c: Include progname.h.
30989         (main): Call set_program_name.
30990
30991         * modules/carray-list-tests (Depends-on): Add progname.
30992         * tests/test-carray_list.c: Include progname.h.
30993         (main): Call set_program_name.
30994
30995         * modules/avltreehash-list-tests (Depends-on): Add progname.
30996         * tests/test-avltreehash_list.c: Include progname.h.
30997         (main): Call set_program_name.
30998
30999         * modules/avltree-oset-tests (Depends-on): Add progname.
31000         * tests/test-avltree_oset.c: Include progname.h.
31001         (main): Call set_program_name.
31002
31003         * modules/avltree-list-tests (Depends-on): Add progname.
31004         * tests/test-avltree_list.c: Include progname.h.
31005         (main): Call set_program_name.
31006
31007         * modules/array-oset-tests (Depends-on): Add progname.
31008         * tests/test-array_oset.c: Include progname.h.
31009         (main): Call set_program_name.
31010
31011         * modules/array-list-tests (Depends-on): Add progname.
31012         * tests/test-array_list.c: Include progname.h.
31013         (main): Call set_program_name.
31014
31015         * modules/argp-tests (Depends-on): Add progname.
31016         * tests/test-argp.c: Include argp.h first. Include progname.h.
31017         (main): Call set_program_name.
31018
31019 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
31020
31021         * doc/gnulib-tool.texi (Initial import): Reword description of
31022         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
31023         limited effect even if defined after the first system include.
31024
31025 2007-03-01  Bruno Haible  <bruno@clisp.org>
31026
31027         * build-aux/config.libpath: Update to libtool-1.5.22.
31028         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
31029
31030 2007-03-01  Bruno Haible  <bruno@clisp.org>
31031
31032         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
31033         foo_CFLAGS.
31034         Reported by Ralf Wildenhues.
31035
31036 2007-03-01  Bruno Haible  <bruno@clisp.org>
31037
31038         * build-aux/install-reloc: Remove object files left over by some
31039         compilers.
31040         Reported by Ralf Wildenhues.
31041
31042 2007-03-01  Bruno Haible  <bruno@clisp.org>
31043
31044         * build-aux/install-reloc: Break long lines.
31045
31046 2007-03-01  Bruno Haible  <bruno@clisp.org>
31047
31048         * doc/relocatable.texi: Document that it may not work on OpenBSD.
31049         Reported by Ralf Wildenhues.
31050
31051 2007-03-01  Bruno Haible  <bruno@clisp.org>
31052
31053         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
31054         include ordering constraints.
31055
31056 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31057
31058         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
31059         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
31060         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
31061         as another example.
31062         * lib/time_.h: Fix misspelling.
31063         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
31064         Require gl_HEADER_TIME_H_DEFAULTS.
31065         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
31066         * m4/time_r.m4 (gl_TIME_R): Likewise.
31067         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
31068
31069 2007-03-01  Bruno Haible  <bruno@clisp.org>
31070
31071         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
31072         * m4/utimens.m4 (gl_UTIMENS): Likewise.
31073
31074 2007-03-01  Jim Meyering  <jim@meyering.net>
31075
31076         * modules/xreadlink (Maintainer): Add my name.
31077         * modules/xreadlink-with-size (Depends-on): Alphabetize.
31078
31079 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
31080             Bruno Haible  <bruno@clisp.org>
31081
31082         * build-aux/install-reloc: Compile also c-ctype.c.
31083         * build-aux/relocatable.sh.in: New file.
31084         * doc/relocatable.texi: New file.
31085         * doc/relocatable-maint.texi: New file.
31086         * doc/gnulib.texi: Include relocatable-maint.texi.
31087         * lib/progreloc.c: Include unistd.h unconditionally.
31088         * lib/relocwrapper.c: Include unistd.h unconditionally.
31089         Include c-ctype.h.
31090         (add_dotbin): Use c_tolower.
31091         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
31092         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
31093         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
31094         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
31095         to m4/relocatable-lib.m4.
31096         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
31097         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
31098         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
31099         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
31100         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
31101         * modules/relocatable: New file.
31102         * modules/relocatable-lib: New file.
31103         * modules/relocatable-script: New file.
31104
31105 2007-02-28  Bruno Haible  <bruno@clisp.org>
31106
31107         Import --enable-relocatable infrastructure.
31108         * build-aux/config.libpath: New file, from GNU gettext.
31109         * build-aux/install-reloc: New file, from GNU gettext.
31110         * build-aux/reloc-ldflags: New file, from GNU gettext.
31111         * lib/relocatable.h: New file, from GNU gettext.
31112         * lib/relocatable.c: New file, from GNU gettext.
31113         * lib/relocwrapper.c: New file, from GNU gettext.
31114         * m4/relocatable.m4: New file, from GNU gettext.
31115
31116 2007-02-28  Bruno Haible  <bruno@clisp.org>
31117
31118         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
31119
31120         * modules/xreadlink: New file, from GNU gettext with modifications.
31121         * lib/xreadlink.c: New file, from GNU gettext.
31122         * lib/xreadlink.h: Add comments.
31123         (xreadlink): New declaration.
31124
31125         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
31126         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
31127         lib/xreadlink-with-size.c.
31128         (configure.ac): Remove gl_XREADLINK invocation.
31129         (Makefile.am): Augment lib_SOURCES.
31130         * m4/xreadlink.m4: Remove file.
31131         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
31132         (xreadlink_with_size): Renamed from xreadink.
31133         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
31134         * modules/canonicalize (Depends-on): Replace xreadlink with
31135         xreadlink-with-size.
31136         * lib/canonicalize.c (canonicalize_filename_mode): Update.
31137
31138 2007-02-25  Jim Meyering  <jim@meyering.net>
31139
31140         * build-aux/announce-gen: When complaining about excess arguments,
31141         list them.
31142
31143 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31144
31145         * README: Document signed integer overflow situation more
31146         accurately.
31147
31148 2007-02-25  Bruno Haible  <bruno@clisp.org>
31149
31150         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
31151         'a' or 'A' conversion.
31152
31153 2007-02-25  Bruno Haible  <bruno@clisp.org>
31154
31155         * modules/filename: Renamed from modules/pathname.
31156         (Files): Replace lib/pathname.h with lib/filename.h. Replace
31157         lib/concatpath.c with lib/concat-filename.c.
31158         (Makefile.am): Update.
31159         (Include): Replace pathname.h with filename.h.
31160         * lib/filename.h: Renamed from lib/pathname.h.
31161         (concatenated_filename): Renamed from concatenated_pathname.
31162         * lib/concat-filename.c: Renamed from lib/concatpath.c.
31163         (concatenated_filename): Renamed from concatenated_pathname.
31164         * lib/findprog.c: Include filename.h instead of pathname.h.
31165         (find_in_path): Update.
31166         * lib/javacomp.c: Include filename.h instead of pathname.h.
31167         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
31168         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
31169         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
31170         is_oldgcj_14_13_usable, is_javac_usable): Update.
31171         * lib/javaexec.c: Include filename.h instead of pathname.h.
31172         (execute_java_class): Update.
31173         * modules/findprog: Update.
31174         * modules/javacomp: Update.
31175         * modules/javaexec: Update.
31176         * MODULES.html.sh (File system functions): Add 'filename', remove
31177         'pathname'.
31178
31179 2007-02-25  Bruno Haible  <bruno@clisp.org>
31180
31181         * modules/printf-frexpl-tests: New file.
31182         * tests/test-printf-frexpl.c: New file.
31183
31184         * modules/printf-frexpl: New file.
31185         * lib/printf-frexpl.h: New file.
31186         * lib/printf-frexpl.c: New file.
31187         * m4/printf-frexpl.m4: New file.
31188
31189 2007-02-25  Bruno Haible  <bruno@clisp.org>
31190
31191         * modules/printf-frexp-tests: New file.
31192         * tests/test-printf-frexp.c: New file.
31193
31194         * modules/printf-frexp: New file.
31195         * lib/printf-frexp.h: New file.
31196         * lib/printf-frexp.c: New file.
31197         * m4/printf-frexp.m4: New file.
31198
31199 2007-02-25  Bruno Haible  <bruno@clisp.org>
31200
31201         Assume automake >= 1.10 for the tests.
31202         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
31203         * modules/arctwo-tests: Likewise.
31204         * modules/argp-tests: Likewise.
31205         * modules/avltree-list-tests: Likewise.
31206         * modules/avltree-oset-tests: Likewise.
31207         * modules/avltreehash-list-tests: Likewise.
31208         * modules/carray-list-tests: Likewise.
31209         * modules/crc-tests: Likewise.
31210         * modules/des-tests: Likewise.
31211         * modules/gc-arcfour-tests: Likewise.
31212         * modules/gc-arctwo-tests: Likewise.
31213         * modules/gc-des-tests: Likewise.
31214         * modules/gc-hmac-md5-tests: Likewise.
31215         * modules/gc-hmac-sha1-tests: Likewise.
31216         * modules/gc-md2-tests: Likewise.
31217         * modules/gc-md4-tests: Likewise.
31218         * modules/gc-md5-tests: Likewise.
31219         * modules/gc-pbkdf2-sha1-tests: Likewise.
31220         * modules/gc-rijndael-tests: Likewise.
31221         * modules/gc-sha1-tests: Likewise.
31222         * modules/gc-tests: Likewise.
31223         * modules/getaddrinfo-tests: Likewise.
31224         * modules/hmac-md5-tests: Likewise.
31225         * modules/hmac-sha1-tests: Likewise.
31226         * modules/linked-list-tests: Likewise.
31227         * modules/linkedhash-list-tests: Likewise.
31228         * modules/lock-tests: Likewise.
31229         * modules/md2-tests: Likewise.
31230         * modules/md4-tests: Likewise.
31231         * modules/md5-tests: Likewise.
31232         * modules/rbtree-list-tests: Likewise.
31233         * modules/rbtree-oset-tests: Likewise.
31234         * modules/rbtreehash-list-tests: Likewise.
31235         * modules/read-file-tests: Likewise.
31236         * modules/rijndael-tests: Likewise.
31237         * modules/stdint-tests: Likewise.
31238         * modules/tls-tests: Likewise.
31239
31240 2007-02-24  Bruno Haible  <bruno@clisp.org>
31241
31242         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
31243         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
31244         function; instead check whether isnan with a double argument links.
31245         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
31246         function; instead check whether isnan with a 'long double' argument
31247         links.
31248         Reported by Eric Blake <ebb9@byu.net>.
31249
31250 2007-02-24  Bruno Haible  <bruno@clisp.org>
31251
31252         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
31253         defined.
31254         * lib/isnanl.c: Remove all code. Just include isnan.c.
31255         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
31256
31257 2007-02-25  Jim Meyering  <jim@meyering.net>
31258
31259         Avoid conflicting types for 'unsetenv' on FreeBSD.
31260         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
31261         conflicting with FreeBSD's (5.0 and 6.1) function declaration
31262         in stdlib.h.
31263
31264 2007-02-24  Bruno Haible  <bruno@clisp.org>
31265
31266         * modules/isnanl-nolibm-tests: New file.
31267         * tests/test-isnanl.c: New file.
31268
31269         * modules/isnanl-nolibm: New file.
31270         * lib/isnanl.h: New file.
31271         * lib/isnanl.c: New file.
31272         * m4/isnanl.m4: New file.
31273
31274 2007-02-24  Bruno Haible  <bruno@clisp.org>
31275
31276         * modules/isnan-nolibm-tests: New file.
31277         * tests/test-isnan.c: New file.
31278
31279         * modules/isnan-nolibm: New file.
31280         * lib/isnan.h: New file.
31281         * lib/isnan.c: New file.
31282         * m4/isnan.m4: New file.
31283
31284 2007-02-24  Bruno Haible  <bruno@clisp.org>
31285
31286         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
31287         assume that an exponent fits in 20 bits.
31288
31289 2007-02-24  Jim Meyering  <jim@meyering.net>
31290
31291         * m4/regex.m4: Update the description of the configure-time option,
31292         --without-included-regex, to state accurately what the defaults are,
31293         and perhaps to give people an idea why using this option is risky.
31294
31295 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
31296
31297         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
31298         loops on small arguments.  This attempts to avoid the problem
31299         Bruno Haible reported for AIX 4.3.2 in
31300         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
31301
31302 2007-02-23  Bruno Haible  <bruno@clisp.org>
31303
31304         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
31305         Needed for help2man.
31306
31307 2007-02-23  Karl Berry  <karl@gnu.org>
31308
31309         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
31310         exists, foo.h should be cvs-ignored, not committed.
31311
31312 2007-02-23  Eric Blake  <ebb9@byu.net>
31313
31314         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
31315         * lib/stat-time.h (includes): Likewise.
31316         * lib/utimecmp.c (includes): Likewise.
31317         * lib/utimens.h (includes): Likewise.
31318         * lib/getdate.y (includes): Also include "timespec.h" for use
31319         internal to the module.
31320         * modules/utimens (Depends-on): Revert yesterday's patch.
31321         * modules/nanosleep (Depends-on): Add missing dependency.
31322
31323 2007-02-22  Bruno Haible  <bruno@clisp.org>
31324
31325         * lib/glob.c: Don't include getlogin_r.h.
31326
31327 2007-02-22  Jim Meyering  <jim@meyering.net>
31328
31329         * modules/utimens (Depends-on): Add timespec, required for
31330         utimens.h's inclusion of timespec.h.
31331
31332 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
31333
31334         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
31335         long unreadable paths in GNU/Linux.  Problem reported by Andreas
31336         Schwab in
31337         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
31338         I'll try to think of a better way to fix the Solaris problem.
31339
31340         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
31341         like glibc; on Solaris 10, it fails with errno == EINVAL.
31342         POSIX says the behavior is unspecified if the first argument is NULL,
31343         so play it safe and never pass NULL to the system getcwd.
31344
31345 2007-02-21  Jim Meyering  <jim@meyering.net>
31346
31347         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
31348         of gettimeofday.  It would conflict with the one now always
31349         provided via sys_time_.h.  Reported by Matthew Woehlke, as
31350         an IRIX 6.5 build failure.
31351
31352 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
31353
31354         Minor fixups to port to Solaris 10 with Sun C 5.8.
31355         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
31356         * modules/getcwd (Depends-on): Add dirfd.
31357         * lib/putenv.c (putenv): #undef it.
31358         (rpl_putenv): New decl.
31359         (malloc, free): Include <stdlib.h> rather than prototyping separately.
31360
31361 2007-02-20  Bruno Haible  <bruno@clisp.org>
31362
31363         * modules/stdio-tests: New file.
31364         * tests/test-stdio.c: New file.
31365
31366         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
31367         (Depends-on): Add stdio.
31368         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31369         (Include): Use <stdio.h> instead of vsnprintf.h.
31370         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31371         HAVE_DECL_VSNPRINTF.
31372         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
31373
31374         * modules/snprintf (Files): Remove lib/snprintf.h.
31375         (Depends-on): Add stdio.
31376         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31377         (Include): Use <stdio.h> instead of snprintf.h.
31378         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31379         HAVE_DECL_SNPRINTF.
31380         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
31381         * lib/getaddrinfo.c: Likewise.
31382
31383         * modules/stdio: New file.
31384         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
31385         * lib/snprintf.h: Remove file.
31386         * lib/vsnprintf.h: Remove file.
31387         * lib/.cppi-disable: Remove snprintf.h.
31388         * m4/stdio_h.m4: New file.
31389         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
31390
31391 2007-02-20  Jim Meyering  <jim@meyering.net>
31392
31393         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
31394         used by e.g., mingw.  From Bruno Haible.
31395
31396 2007-02-19  Bruno Haible  <bruno@clisp.org>
31397
31398         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
31399         warnings.
31400         Reported by Ben Pfaff <blp@cs.stanford.edu>.
31401
31402 2007-02-19  Bruno Haible  <bruno@clisp.org>
31403
31404         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
31405         from mingw users.
31406
31407 2007-02-19  Bruno Haible  <bruno@clisp.org>
31408
31409         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
31410         warnings.
31411         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
31412
31413 2007-02-19  Jim Meyering  <jim@meyering.net>
31414
31415         Don't use FD after a successful "fdopendir (fd)".
31416         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
31417         Reset it by calling dirfd on the just-obtained DIR*.
31418
31419         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
31420         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
31421
31422 2007-02-18  Bruno Haible  <bruno@clisp.org>
31423
31424         * lib/readlink.c: Include <unistd.h>.
31425         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
31426         HAVE_READLINK.
31427         * modules/readlink (Depends-on): Add unistd.
31428         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31429         (Include): Add <unistd.h>.
31430
31431         * lib/getlogin_r.h: Remove file.
31432         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
31433         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
31434         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
31435         HAVE_DECL_GETLOGIN_R.
31436         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
31437         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31438         (Include): Use <unistd.h> instead of getlogin_r.h.
31439
31440         * lib/getcwd.h: Remove file.
31441         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
31442         * lib/xgetcwd.c: Likewise.
31443         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
31444         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
31445         * modules/getcwd (Files): Remove lib/getcwd.h.
31446         (Depends-on): Add unistd.
31447         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31448         (Include): Use <unistd.h> instad of getcwd.h.
31449
31450         * lib/ftruncate.c: Include <unistd.h> first.
31451         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
31452         Set HAVE_FTRUNCATE.
31453         * modules/ftruncate (Depends-on): Add unistd.
31454         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31455
31456         * lib/fchdir.c: Include <unistd.h> first.
31457         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
31458         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
31459         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
31460         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31461         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
31462
31463         * lib/dup2.c: Include <unistd.h> first.
31464         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
31465         HAVE_DUP2.
31466         * modules/dup2 (Depends-on): Add unistd.
31467         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31468
31469         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
31470         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
31471         REPLACE_CHOWN. Don't define chown as a macro here.
31472         * modules/chown (Depends-on): Add unistd.
31473         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31474
31475         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
31476         Add definition for GL_LINK_WARNING.
31477         (chown, dup2): New declarations.
31478         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
31479         link warning.
31480         (ftruncate): New declaration.
31481         (getcwd): New declaration, taken from old getcwd.h.
31482         (getlogin_r): New declaration, taken from old getlogin_r.h.
31483         (readlink): New declaration.
31484         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
31485         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
31486         (gl_PREREQ_UNISTD): Remove macro.
31487         (gl_UNISTD_MODULE_INDICATOR): New macro.
31488         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
31489         many new variables. Don't set UNISTD_H.
31490         * modules/unistd (Description): Change.
31491         (Depends-on): Add link-warning.
31492         (configure.ac): Update.
31493         (Makefile.am): Create unistd.h always. Substitute many new variables
31494         into it.
31495
31496 2007-02-18  Bruno Haible  <bruno@clisp.org>
31497
31498         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
31499         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
31500         HAVE_GETSUBOPT.
31501         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
31502         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
31503         * lib/getsubopt.h: Remove file.
31504         * modules/getsubopt (Files): Remove lib/getsubopt.h.
31505         (Depends-on): Add stdlib.
31506         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31507         (Includes): Use <stdlib.h> instead of getsubopt.h.
31508         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
31509         Set HAVE_GETSUBOPT.
31510         * lib/getsubopt.c: Don't include getsubopt.h.
31511
31512 2007-02-18  Bruno Haible  <bruno@clisp.org>
31513
31514         * modules/fchdir (Depends-on): Add dup2.
31515
31516 2007-02-18  Bruno Haible  <bruno@clisp.org>
31517
31518         * lib/stdlib_.h: Handle glibc's special invocation convention
31519         specially.
31520
31521 2007-02-18  Bruno Haible  <bruno@clisp.org>
31522
31523         * modules/stdlib-tests: New file.
31524         * tests/test-stdlib.c: New file.
31525
31526         * modules/mkstemp (Files): Remove lib/mkstemp.h.
31527         (Depends-on): Add stdlib.
31528         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31529         (Includes): Use <stdlib.h> instead of mkstemp.h.
31530         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31531         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
31532         * lib/mkstemp.c: Don't include mkstemp.h.
31533         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
31534         * lib/stdlib--.h: Don't include mkstemp.h.
31535
31536         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
31537         (Depends-on): Add stdlib.
31538         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31539         (Includes): Use <stdlib.h> instead of mkdtemp.h.
31540         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31541         HAVE_MKDTEMP.
31542         * lib/mkdtemp.c: Don't include mkdtemp.h.
31543         * lib/clean-temp.c: Don't include mkdtemp.h.
31544
31545         * modules/exit (Files): Remove lib/exit.h.
31546         (Depends-on): Add stdlib.
31547         (Makefile.am): Remove lib_SOURCES.
31548         (Include): Use <stdlib.h> instead of exit.h.
31549         * lib/argmatch.c: Don't include exit.h.
31550         * lib/execute.c: Likewise.
31551         * lib/pagealign_alloc.c: Likewise.
31552         * lib/pipe.c: Likewise.
31553         * lib/wait-process.c: Likewise.
31554         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
31555         * lib/exitfail.c: Likewise.
31556         * lib/savewd.c: Likewise.
31557         * lib/xsetenv.c: Likewise.
31558
31559         * modules/stdlib: New file.
31560         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
31561         and extra comments about mkstemp().
31562         * lib/exit.h: Remove file.
31563         * lib/mkdtemp.h: Remove file.
31564         * lib/mkstemp.h: Remove file.
31565         * m4/stdlib_h.m4: New file.
31566         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
31567
31568 2007-02-18  Bruno Haible  <bruno@clisp.org>
31569
31570         * modules/math-tests: New file.
31571         * tests/test-math.c: New file.
31572
31573         * modules/math: New file.
31574         * modules/mathl (Files): Remove lib/mathl.h.
31575         (Depends-on): Add math.
31576         (Makefile.am): Don't mention mathl.h.
31577         (Include): Use <math.h> instead of mathl.h.
31578         * lib/math_.h: New file.
31579         * lib/mathl.h: Remove file.
31580         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
31581         mathl.h.
31582         * lib/asinl.c: Likewise.
31583         * lib/atanl.c: Likewise.
31584         * lib/ceill.c: Likewise.
31585         * lib/cosl.c: Likewise.
31586         * lib/expl.c: Likewise.
31587         * lib/floorl.c: Likewise.
31588         * lib/frexpl.c: Likewise.
31589         * lib/ldexpl.c: Likewise.
31590         * lib/logl.c: Likewise.
31591         * lib/sincosl.c: Likewise.
31592         * lib/sinl.c: Likewise.
31593         * lib/sqrtl.c: Likewise.
31594         * lib/tanl.c: Likewise.
31595         * lib/trigl.c: Likewise.
31596         * m4/math_h.m4: New file.
31597         * MODULES.html.sh (Mathematics): Add math.
31598
31599 2007-02-17  Bruno Haible  <bruno@clisp.org>
31600
31601         * modules/wctype-tests: New file.
31602         * tests/test-wctype.c: New file.
31603
31604         * modules/wchar-tests: New file.
31605         * tests/test-wchar.c: New file.
31606
31607         * modules/unistd-tests: New file.
31608         * tests/test-unistd.c: New file.
31609
31610         * modules/time-tests: New file.
31611         * tests/test-time.c: New file.
31612
31613         * modules/sysexits-tests: New file.
31614         * tests/test-sysexits.c: New file.
31615
31616         * modules/sys_time-tests: New file.
31617         * tests/test-sys_time.c: New file.
31618
31619         * modules/sys_stat-tests: New file.
31620         * tests/test-sys_stat.c: New file.
31621
31622         * modules/sys_socket-tests: New file.
31623         * tests/test-sys_socket.c: New file.
31624
31625         * modules/sys_select-tests: New file.
31626         * tests/test-sys_select.c: New file.
31627
31628         * modules/string-tests: New file.
31629         * tests/test-string.c: New file.
31630
31631         * modules/stdbool-tests: New file.
31632         * tests/test-stdbool.c: New file.
31633
31634         * modules/netinet_in-tests: New file.
31635         * tests/test-netinet_in.c: New file.
31636
31637         * modules/inttypes-tests: New file.
31638         * tests/test-inttypes.c: New file.
31639
31640         * modules/fcntl-tests: New file.
31641         * tests/test-fcntl.c: New file.
31642
31643         * modules/byteswap-tests: New file.
31644         * tests/test-byteswap.c: New file.
31645
31646         * modules/arpa_inet-tests: New file.
31647         * tests/test-arpa_inet.c: New file.
31648
31649 2007-02-17  Bruno Haible  <bruno@clisp.org>
31650
31651         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
31652         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
31653         if the corresponding module is not enabled. Emit link warnings if
31654         the function is used nevertheless.
31655         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
31656         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
31657         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
31658         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
31659         * modules/inttypes (Depends-on): Add link-warning.
31660         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31661         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
31662         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
31663         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
31664         * modules/imaxdiv (configure.ac): Likewise.
31665         * modules/strtoimax (configure.ac): Likewise.
31666         * modules/strtoumax (configure.ac): Likewise.
31667
31668 2007-02-17  Bruno Haible  <bruno@clisp.org>
31669
31670         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
31671         gl_STRING_MODULE_INDICATOR_DEFAULTS.
31672         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
31673         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
31674
31675 2007-02-17  Bruno Haible  <bruno@clisp.org>
31676
31677         * modules/link-warning: New file.
31678         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
31679         * lib/string_.h (GL_LINK_WARNING): Remove definition.
31680         * modules/string (Depends-on): Add link-warning.
31681         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31682         string.h.
31683         * MODULES.html.sh (Support for building libraries and executables): Add
31684         link-warning.
31685
31686 2007-02-17  Bruno Haible  <bruno@clisp.org>
31687
31688         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
31689         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
31690         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
31691         long lines.
31692
31693 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
31694             Bruno Haible  <bruno@clisp.org>
31695
31696         * modules/tmpfile: New file.
31697         * lib/tmpfile.c: New file.
31698         * m4/tmpfile.m4: New file.
31699         * MODULES.html.sh (func_all_modules): New section "Input/output".
31700
31701 2007-02-15  Bruno Haible  <bruno@clisp.org>
31702
31703         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
31704         (supports_delete_on_close): New function.
31705         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
31706
31707 2007-02-14  Bruno Haible  <bruno@clisp.org>
31708
31709         * modules/mbspcasecmp-tests: New file.
31710         * tests/test-mbspcasecmp.sh: New file.
31711         * tests/test-mbspcasecmp.c: New file.
31712
31713         New module mbspcasecmp.
31714         * modules/mbspcasecmp: New file.
31715         * lib/mbspcasecmp.c: New file.
31716         * lib/string_.h (strncasecmp): Change warning message.
31717         (mbspcasecmp): New declaration.
31718         * m4/mbspcasecmp.m4: New file.
31719         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31720         GNULIB_MBSPCASECMP.
31721         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
31722         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
31723
31724 2007-02-14  Bruno Haible  <bruno@clisp.org>
31725
31726         * modules/mbsncasecmp-tests: New file.
31727         * tests/test-mbsncasecmp.sh: New file.
31728         * tests/test-mbsncasecmp.c: New file.
31729
31730         New module mbsncasecmp.
31731         * modules/mbsncasecmp: New file.
31732         * lib/mbsncasecmp.c: New file.
31733         * lib/string_.h (mbsncasecmp): New declaration.
31734         * m4/mbsncasecmp.m4: New file.
31735         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31736         GNULIB_MBSNCASECMP.
31737         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
31738         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
31739
31740 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
31741
31742         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
31743         Verify that it doesn't overlap with our flags.
31744         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
31745         do not have the desired effect in multibyte locales; instead, use
31746         mbscasecmp.
31747         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
31748         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
31749         we don't require GNU fnmatch ourselves (if our users require it, they
31750         should do so explicitly).
31751
31752         Fix regex code so it doesn't rely on strcasecmp.
31753         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
31754         Otherwise, include gnulib's langinfo.h.
31755         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
31756         undesirable behavior in non-C locales.  Instead, rely on localecharset.
31757         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
31758         * modules/regex (FILES): Remove m4/codeset.m4.
31759         (Depends-on): Add localcharset.  Remove strcase.
31760
31761 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31762
31763         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
31764         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
31765
31766 2007-02-13  Bruno Haible  <bruno@clisp.org>
31767
31768         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
31769         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31770
31771 2007-02-12  Bruno Haible  <bruno@clisp.org>
31772
31773         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
31774         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
31775         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
31776         time warning rather than a link error.
31777
31778 2007-02-12  Bruno Haible  <bruno@clisp.org>
31779
31780         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
31781         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
31782         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31783
31784 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31785
31786         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
31787         args, not 2.
31788
31789 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31790
31791         New module 'time', so that apps can include <time.h> as per
31792         POSIX and GNU instead of separate include files like time_r.h
31793         and timegm.h.  This implementation tries out a simpler approach
31794         for replacing decls in standard include files (as compared to
31795         the string module), somewhat as an experiment.
31796
31797         * config/srclist.txt: Comment out mktime.c for now.
31798         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
31799         since it doesn't apply any more.  Use generic wording instead.
31800         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
31801         'time'.
31802         * lib/time_.h, m4/time_h.m4, modules/time: New files.
31803         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
31804         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
31805         Don't include <sys/types.h>; no longer needed since we assume C89.
31806         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
31807         * lib/strftime.c: Likewise.
31808         * lib/time_r.c: Likewise.
31809         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
31810         * lib/nanosleep.c: Include <time.h> first, to check interface.
31811         * lib/strptime.c: Likewise.
31812         * lib/time_r.c: Likewise.
31813         * lib/timegm.c: Likewise.
31814         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
31815         needed.
31816         * lib/timegm.c: Don't include timegm.h; no longer needed.
31817         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
31818         time.h now handles any problems in that area.
31819         (struct timespec, nanosleep): Remove; time.h now arranges for these.
31820         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
31821         that time.h defines struct timespec.
31822         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
31823         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
31824         handles that.
31825         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
31826         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
31827         needed.  Set REPLACE_LOCALTIME.
31828         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
31829         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
31830         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
31831         nanosleep; time_h.m4 now does that.  Don't require
31832         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
31833         module handles this now.
31834         * modules/getdate (Depends-on): Remove timespec.  Add time.
31835         * modules/nanosleep (Depends-on): Likewise.
31836         * modules/stat-time (Depends-on): Likewise.
31837         * modules/nanosleep (Include): Include time.h, not timespec.h.
31838         * modules/strptime (Files): Remove lib/strptime.h.
31839         (Depends-on): Add extensions, time.
31840         (Include): Include time.h, not strptime.h.
31841         * modules/time_r (Files): Remove lib/time_r.h.
31842         (Depends-on): Add time.
31843         (Include): Include time.h, not time_r.h.
31844         * modules/timegm: Likewise.
31845         * modules/timespec (Description): Now does timespec-related decls
31846         of our own, instead of struct timespec itself.
31847         (Depends-on): Add time; remove extensions.
31848         (Maintainer): Add self.
31849         * modules/utimecmp (Depends-on): Add time; remove timespec.
31850         * modules/utimens (Depends-on): Likewise.
31851         * modules/xnanosleep (Depends-on): Likewise.
31852
31853 2007-02-11  Bruno Haible  <bruno@clisp.org>
31854
31855         * lib/c-strstr.c: Include allocsa.h.
31856         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31857         * lib/c-strcasestr.c: Include allocsa.h.
31858         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31859         * lib/strcasestr.c: Include allocsa.h.
31860         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31861         * lib/mbsstr.c: Include allocsa.h.
31862         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31863         allocsa/freesa instead of malloc/free.
31864         * lib/mbscasestr.c: Include allocsa.h.
31865         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31866         allocsa/freesa instead of malloc/free.
31867         * modules/c-strstr (Depends-on): Add allocsa.
31868         * modules/c-strcasestr (Depends-on): Likewise.
31869         * modules/strcasestr (Depends-on): Likewise.
31870         * modules/mbsstr (Depends-on): Likewise.
31871         * modules/mbscasestr (Depends-on): Likewise.
31872
31873 2007-02-11  Bruno Haible  <bruno@clisp.org>
31874
31875         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
31876
31877         * modules/mbsspn-tests: New file.
31878         * tests/test-mbsspn.sh: New file.
31879         * tests/test-mbsspn.c: New file.
31880
31881 2007-02-11  Bruno Haible  <bruno@clisp.org>
31882
31883         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
31884
31885         * modules/mbspbrk-tests: New file.
31886         * tests/test-mbspbrk.sh: New file.
31887         * tests/test-mbspbrk.c: New file.
31888
31889 2007-02-11  Bruno Haible  <bruno@clisp.org>
31890
31891         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
31892         unneeded cast.
31893
31894         * modules/mbscspn-tests: New file.
31895         * tests/test-mbscspn.sh: New file.
31896         * tests/test-mbscspn.c: New file.
31897
31898 2007-02-11  Bruno Haible  <bruno@clisp.org>
31899
31900         * modules/mbscasecmp-tests: New file.
31901         * tests/test-mbscasecmp.sh: New file.
31902         * tests/test-mbscasecmp.c: New file.
31903
31904 2007-02-11  Bruno Haible  <bruno@clisp.org>
31905
31906         Ensure O(n) worst-case complexity of mbscasestr.
31907         * lib/mbscasestr.c: Include stdbool.h.
31908         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31909         functions.
31910         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
31911         the bookkeeping indicates that it's worth it.
31912         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
31913
31914         * modules/mbscasestr-tests: New file.
31915         * tests/test-mbscasestr1.c: New file.
31916         * tests/test-mbscasestr2.sh: New file.
31917         * tests/test-mbscasestr2.c: New file.
31918         * tests/test-mbscasestr3.sh: New file.
31919         * tests/test-mbscasestr3.c: New file.
31920         * tests/test-mbscasestr4.sh: New file.
31921         * tests/test-mbscasestr4.c: New file.
31922         * m4/locale-tr.m4: New file.
31923
31924 2007-02-11  Bruno Haible  <bruno@clisp.org>
31925
31926         Ensure O(n) worst-case complexity of mbsstr.
31927         * lib/mbsstr.c: Include stdbool.h.
31928         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31929         functions.
31930         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
31931         bookkeeping indicates that it's worth it.
31932         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
31933
31934         * modules/mbsstr-tests: New file.
31935         * tests/test-mbsstr1.c: New file.
31936         * tests/test-mbsstr2.sh: New file.
31937         * tests/test-mbsstr2.c: New file.
31938         * tests/test-mbsstr3.sh: New file.
31939         * tests/test-mbsstr3.c: New file.
31940         * m4/locale-fr.m4: New file.
31941
31942 2007-02-11  Bruno Haible  <bruno@clisp.org>
31943
31944         * lib/mbsrchr.c (mbsrchr): Fix bug.
31945
31946         * modules/mbsrchr-tests: New file.
31947         * tests/test-mbsrchr.sh: New file.
31948         * tests/test-mbsrchr.c: New file.
31949
31950 2007-02-11  Bruno Haible  <bruno@clisp.org>
31951
31952         * lib/mbschr.c (mbschr): Fix bug.
31953
31954         * modules/mbschr-tests: New file.
31955         * tests/test-mbschr.sh: New file.
31956         * tests/test-mbschr.c: New file.
31957         * m4/locale-zh.m4: New file.
31958
31959 2007-02-11  Bruno Haible  <bruno@clisp.org>
31960
31961         Support for copying multibyte string iterators.
31962         * lib/mbiter.h: Include <string.h>.
31963         (mbiter_multi_copy): New function.
31964         (mbi_copy): New macro.
31965         * lib/mbuiter.h: Include <string.h>.
31966         (mbuiter_multi_copy): New function.
31967         (mbui_copy): New macro.
31968
31969 2007-02-11  Bruno Haible  <bruno@clisp.org>
31970
31971         New module mbslen.
31972         * modules/mbslen: New file.
31973         * lib/mbslen.c: New file.
31974         * lib/string_.h (mbslen): New declaration.
31975         * m4/mbslen.m4: New file.
31976         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31977         GNULIB_MBSLEN.
31978         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
31979         * MODULES.html.sh (Internationalization functions): Add mbslen.
31980
31981 2007-02-11  Bruno Haible  <bruno@clisp.org>
31982
31983         Ensure O(n) worst-case complexity of strcasestr substitute.
31984         * lib/strcasestr.c: Include stdbool.h.
31985         (knuth_morris_pratt): New function.
31986         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
31987         bookkeeping indicates that it's worth it.
31988         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
31989
31990         * modules/strcasestr-tests: New file.
31991         * tests/test-strcasestr.c: New file.
31992
31993 2007-02-11  Bruno Haible  <bruno@clisp.org>
31994
31995         Ensure O(n) worst-case complexity of c_strcasestr.
31996         * lib/c-strcasestr.c: Include stdbool.h, string.h.
31997         (knuth_morris_pratt): New function.
31998         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
31999         the bookkeeping indicates that it's worth it.
32000         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
32001
32002         * modules/c-strcasestr-tests: New file.
32003         * tests/test-c-strcasestr.c: New file.
32004
32005 2007-02-11  Bruno Haible  <bruno@clisp.org>
32006
32007         Ensure O(n) worst-case complexity of c_strstr.
32008         * lib/c-strstr.c: Include stdbool.h, string.h.
32009         (knuth_morris_pratt): New function.
32010         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
32011         bookkeeping indicates that it's worth it.
32012         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
32013
32014         * lib/c-strstr.c: Complete rewrite for maintainability.
32015
32016         * modules/c-strstr-tests: New file.
32017         * tests/test-c-strstr.c: New file.
32018
32019 2007-02-11  Bruno Haible  <bruno@clisp.org>
32020
32021         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
32022         5.2.1 and earlier, whereby \055 was treated just like the range
32023         delimiter '-'.
32024         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
32025
32026 2007-02-08  Bruno Haible  <bruno@clisp.org>
32027
32028         * modules/regex (Depends-on): Add stdbool.
32029         Reported by Dalibor Topic <robilad@kaffe.org>.
32030
32031 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
32032
32033         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
32034         Prefer returning from main to exiting from it.
32035         Remove unnecessary parens after sizeof.
32036
32037 2007-02-05  Bruno Haible  <bruno@clisp.org>
32038
32039         New module mbssep.
32040         * modules/mbssep: New file.
32041         * lib/mbssep.c: New file.
32042         * lib/string_.h (strsep): Add a conditional link warning.
32043         (mbssep): New declaration.
32044         * m4/mbssep.m4: New file.
32045         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32046         GNULIB_MBSSEP.
32047         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
32048         * MODULES.html.sh (Internationalization functions): Add mbssep.
32049
32050 2007-02-05  Bruno Haible  <bruno@clisp.org>
32051
32052         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
32053         Optimize search in case of 1 delimiter.
32054
32055 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
32056
32057         * lib/acl.h: Include sys/types.h before sys/acl.h.
32058
32059 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
32060
32061         Merge upstream fix for glibc bugzilla #3957:
32062
32063         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
32064
32065         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
32066         bit for RE_HAT_LISTS_NOT_NEWLINE.
32067         (build_charclass_op): Remove bogus comment.
32068
32069 2007-02-05  Simon Josefsson  <simon@josefsson.org>
32070
32071         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
32072
32073 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32074
32075         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
32076         * lib/memmem.c [!defined _LIBC]: Include config.h.
32077
32078 2007-02-04  Bruno Haible  <bruno@clisp.org>
32079
32080         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
32081         warning message.
32082
32083 2007-02-04  Bruno Haible  <bruno@clisp.org>
32084
32085         New module mbstok_r.
32086         * modules/mbstok_r: New file.
32087         * lib/mbstok_r.c: New file.
32088         * lib/string_.h (strtok_r): Change argument names to match the
32089         comments. Add a conditional link warning.
32090         (mbstok_r): New declaration.
32091         * m4/mbstok_r.m4: New file.
32092         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32093         GNULIB_MBSTOK_R.
32094         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
32095         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
32096
32097 2007-02-04  Bruno Haible  <bruno@clisp.org>
32098
32099         New module mbsspn.
32100         * modules/mbsspn: New file.
32101         * lib/mbsspn.c: New file.
32102         * lib/string_.h (strspn): Add a conditional link warning.
32103         (mbsspn): New declaration.
32104         * m4/mbsspn.m4: New file.
32105         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32106         GNULIB_MBSSPN.
32107         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
32108         * MODULES.html.sh (Internationalization functions): Add mbsspn.
32109
32110 2007-02-04  Bruno Haible  <bruno@clisp.org>
32111
32112         New module mbspbrk.
32113         * modules/mbspbrk: New file.
32114         * lib/mbspbrk.c: New file.
32115         * lib/string_.h (strpbrk): Add a conditional link warning.
32116         (mbspbrk): New declaration.
32117         * m4/mbspbrk.m4: New file.
32118         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32119         GNULIB_MBSPBRK.
32120         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
32121         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
32122
32123 2007-02-04  Bruno Haible  <bruno@clisp.org>
32124
32125         New module mbscspn.
32126         * modules/mbscspn: New file.
32127         * lib/mbscspn.c: New file.
32128         * lib/string_.h (strcspn): Add a conditional link warning.
32129         (mbscspn): New declaration.
32130         * m4/mbscspn.m4: New file.
32131         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32132         GNULIB_MBSCSPN.
32133         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
32134         * MODULES.html.sh (Internationalization functions): Add mbscspn.
32135
32136 2007-02-04  Bruno Haible  <bruno@clisp.org>
32137
32138         New module mbscasestr, reduced goal of strcasestr.
32139         * modules/mbscasestr: New file.
32140         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
32141         (mbscasestr): Renamed from strcasestr.
32142         * lib/strcasestr.c: Don't include mbuiter.h.
32143         (strcasestr): Remove support for multibyte locales.
32144         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
32145         Change the conditional link warning.
32146         (mbscasestr): New declaration.
32147         * m4/mbscasestr.m4: New file.
32148         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
32149         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
32150         REPLACE_STRCASESTR.
32151         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
32152         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32153         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32154         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
32155         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
32156         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32157         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
32158         (Depends-on): Remove mbuiter.
32159         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
32160
32161 2007-02-04  Bruno Haible  <bruno@clisp.org>
32162
32163         Simplify handling of strncasecmp.
32164         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
32165         the conditional link warning.
32166         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32167         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
32168         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
32169         * modules/strcase (configure.ac): Don't invoke
32170         gl_STRING_MODULE_INDICATOR.
32171         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
32172
32173 2007-02-04  Bruno Haible  <bruno@clisp.org>
32174
32175         New module mbscasecmp, reduced goal of strcasecmp.
32176         * modules/mbscasecmp: New file.
32177         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
32178         (mbscasecmp): Renamed from strcasecmp.
32179         * lib/strcasecmp.c: Don't include mbuiter.h.
32180         (strcasecmp): Remove support for multibyte locales.
32181         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
32182         Change the conditional link warning.
32183         (mbscasecmp): New declaration.
32184         * m4/mbscasecmp.m4: New file.
32185         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
32186         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
32187         REPLACE_STRCASECMP.
32188         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
32189         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32190         GNULIB_MBSCASECMP.
32191         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
32192         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
32193         * modules/strcase (Files): Remove m4/mbrtowc.m4.
32194         (Depends-on): Remove mbuiter.
32195         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
32196
32197 2007-02-04  Bruno Haible  <bruno@clisp.org>
32198
32199         New module mbsstr. Remove module strstr.
32200         * modules/mbsstr: New file.
32201         * modules/strstr: Remove file.
32202         * lib/mbsstr.c: Renamed from lib/strstr.c.
32203         (mbsstr): Renamed from strstr.
32204         * lib/string_.h (strstr): Remove declaration. Change the conditional
32205         link warning.
32206         (mbsstr): New declaration.
32207         * m4/mbsstr.m4: New file.
32208         * m4/strstr.m4: Remove file.
32209         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
32210         REPLACE_STRSTR.
32211         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
32212         Don't initialize GNULIB_STRSTR.
32213         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
32214         substitute GNULIB_STRSTR and REPLACE_STRSTR.
32215         * MODULES.html.sh (Internationalization functions): Add mbsstr.
32216         (Support for systems lacking ANSI C 89): Remove strstr.
32217
32218 2007-02-04  Bruno Haible  <bruno@clisp.org>
32219
32220         New module mbsrchr.
32221         * modules/mbsrchr: New file.
32222         * lib/mbsrchr.c: New file.
32223         * lib/string_.h (strrchr): Add a conditional link warning.
32224         (mbsrchr): New declaration.
32225         * m4/mbsrchr.m4: New file.
32226         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32227         GNULIB_MBSRCHR.
32228         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
32229         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
32230
32231 2007-02-04  Bruno Haible  <bruno@clisp.org>
32232
32233         New module mbschr.
32234         * modules/mbschr: New file.
32235         * lib/mbschr.c: New file.
32236         * lib/string_.h (strchr): Add a conditional link warning.
32237         (mbschr): New declaration.
32238         * m4/mbschr.m4: New file.
32239         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32240         GNULIB_MBSCHR.
32241         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
32242         * MODULES.html.sh (Internationalization functions): Add mbschr.
32243
32244 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32245
32246         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
32247
32248         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
32249
32250 2007-02-04  Bruno Haible  <bruno@clisp.org>
32251
32252         New module description section 'configure.ac-early'.
32253         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
32254         (func_get_autoconf_early_snippet): New function.
32255         (func_import, func_create_testdir): Use it. Remove special cases for
32256         modules 'extensions' and 'lock'.
32257         * modules/extensions (configure.ac-early): Require
32258         gl_USE_SYSTEM_EXTENSIONS.
32259         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
32260
32261 2007-02-04  Bruno Haible  <bruno@clisp.org>
32262
32263         Make use of gcj-4.3's -fsource and -ftarget option.
32264         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
32265         and if so try the options -fsource and -ftarget.
32266         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
32267         source_version, ftarget_option, target_version arguments.
32268         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
32269         (is_envjavac_oldgcj_14_14_usable): Renamed from
32270         is_envjavac_gcj_14_14_usable.
32271         (is_envjavac_oldgcj_14_13_usable): Renamed from
32272         is_envjavac_gcj_14_13_usable.
32273         (is_gcj_present): Update.
32274         (is_gcj_43, is_gcj43_usable): New functions.
32275         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
32276         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
32277         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
32278         try the options -fsource and -ftarget.
32279
32280 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
32281
32282         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
32283         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
32284         larger value.
32285
32286 2007-02-03  Jim Meyering  <jim@meyering.net>
32287
32288         Give tools a better chance to allocate space for very large buffers.
32289         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
32290
32291         Make pwd and readlink work also when run with an unreadable parent dir
32292         on systems with openat support.
32293         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
32294         provided getcwd function, even when we have openat support.
32295         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
32296
32297 2007-02-02  Bruno Haible  <bruno@clisp.org>
32298
32299         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
32300         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
32301         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
32302         portability problems if one of these functions is only used on specific
32303         platforms.
32304         Reported by Paul Eggert.
32305
32306 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
32307
32308         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
32309         is causing more trouble than it's curing.
32310         * lib/regex_internal.h (__mempcpy): Remove.
32311         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
32312         (and make the code a tad smaller to boot).
32313         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
32314
32315 2007-02-02  Jim Meyering  <jim@meyering.net>
32316
32317         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
32318         section, not in the Makefile.am: one.
32319
32320 2007-02-02  Eric Blake  <ebb9@byu.net>
32321
32322         * lib/strchrnul.c: Always include config.h first.
32323
32324         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
32325         gnulib strstr is not necessary here.
32326
32327 2007-02-02  Simon Josefsson  <simon@josefsson.org>
32328
32329         * m4/socklen.m4: Fix typo.
32330
32331 2007-02-02  Eric Blake  <ebb9@byu.net>
32332
32333         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
32334         * modules/netinet_in (Makefile.am): Likewise.
32335
32336 2007-02-01  Bruno Haible  <bruno@clisp.org>
32337
32338         * lib/string_.h (GL_LINK_WARNING): New macro.
32339         (strcasecmp, strstr, strcasestr): If provided by the system,
32340         conditionally define as a macro that leads to a warning instead of to
32341         an error.
32342         (strncasecmp): Conditionally define as a macro that leads to a warning.
32343
32344 2007-02-01  Karl Berry  <karl@gnu.org>
32345
32346         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
32347
32348 2007-02-01  Bruno Haible  <bruno@clisp.org>
32349
32350         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
32351         renamings.
32352
32353 2007-02-01  Eric Blake  <ebb9@byu.net>
32354
32355         * modules/regex (Depends-on): Revert dependence on mempcpy.
32356         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
32357         module's definition of mempcpy.
32358         Reported by Paul Eggert.
32359
32360 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
32361
32362         * lib/string_.h: If the gnulib module XYZ is not present, undefine
32363         the symbol XYZ before redefining it.  This fixes a problem with
32364         programs that don't use XYZ, when compiled on systems that define
32365         XYZ to something else.
32366
32367 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
32368
32369         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
32370         occurs when "mkdir -m foo" creates a setgid directory that is (1)
32371         writeable to group or other and (2) is intended to have a special
32372         mode bit that is set or cleared.  In such a case, the directory
32373         should be neither group- nor other-writeable until the special
32374         mode bits are right.
32375
32376 2007-01-31  Eric Blake  <ebb9@byu.net>
32377
32378         * modules/mountlist (Depends-on): Add strstr.
32379
32380         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
32381         bug.
32382         * modules/string (Makefile.am): Remove redundant replacement.
32383         * modules/regex (Depends-on): Add mempcpy.
32384
32385 2007-01-31  Bruno Haible  <bruno@clisp.org>
32386
32387         New module description field 'Link'.
32388         * gnulib-tool (func_usage): Document --extract-link-directive.
32389         (sed_extract_prog): Recognize 'Link' directive.
32390         (func_get_link_directive): New function.
32391         (func_import): Show summary of link directives.
32392         Handle --extract-link-directive option.
32393         * modules/acl (Link): New section.
32394         * modules/clock-time (Link): New section.
32395         * modules/euidaccess (Link): New section.
32396         * modules/gettext (Link): New section.
32397         * modules/iconv (Link): New section.
32398         * modules/lock (Link): New section.
32399         * modules/nanosleep (Link): New section.
32400         * modules/readline (Link): New section.
32401
32402 2007-01-27  Bruno Haible  <bruno@clisp.org>
32403
32404         Enforce the use of gnulib modules for unportable <string.h> functions.
32405         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
32406         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
32407         (gl_HEADER_STRING_H_BODY): Require it.
32408         * lib/string_.h: If the gnulib module XYZ is not present, redefine
32409         the symbol XYZ to one that gives a link error.
32410         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
32411         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
32412         * modules/mempcpy (configure.ac): Likewise.
32413         * modules/memrchr (configure.ac): Likewise.
32414         * modules/stpcpy (configure.ac): Likewise.
32415         * modules/stpncpy (configure.ac): Likewise.
32416         * modules/strcase (configure.ac): Likewise.
32417         * modules/strcasestr (configure.ac): Likewise.
32418         * modules/strchrnul (configure.ac): Likewise.
32419         * modules/strdup (configure.ac): Likewise.
32420         * modules/strndup (configure.ac): Likewise.
32421         * modules/strnlen (configure.ac): Likewise.
32422         * modules/strpbrk (configure.ac): Likewise.
32423         * modules/strsep (configure.ac): Likewise.
32424         * modules/strstr (configure.ac): Likewise.
32425         * modules/strtok_r (configure.ac): Likewise.
32426
32427 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
32428
32429         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
32430
32431 2007-01-30  Jim Meyering  <jim@meyering.net>
32432
32433         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
32434
32435 2007-01-29  Bruno Haible  <bruno@clisp.org>
32436
32437         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
32438         * lib/execute.c: Likewise.
32439         * lib/pipe.c: Likewise.
32440         * lib/printf-args.h: Likewise.
32441         * lib/printf-args.c: Likewise.
32442         * lib/printf-parse.c: Likewise.
32443         * lib/vasnprintf.c: Likewise.
32444
32445 2007-01-29  Eric Blake  <ebb9@byu.net>
32446
32447         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
32448         declaration.
32449
32450 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
32451
32452         * lib/strptime.h (strptime): Use 'restrict' for args where
32453         POSIX requires this.
32454         * lib/strptime.c (strptime): Likewise.
32455         Change license notice from LGPL to GPL, since gnulib-tool will
32456         change this as needed.
32457         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
32458         defined.
32459         Include "strptime.h" first, to check interface.
32460         Do not #undef _LIBC and _NL_CURRENT.
32461         Do not include <stdlib.h>; no longer needed.
32462         Include "time_r.h" and declare ptime_locale_status
32463         only if _LIBC is not defined.
32464         (__P): Remove unused macro.
32465         (match_string): Bring back glibc version, but use it only if _LIBC
32466         is defined.
32467         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
32468         Remove unnecessary assertion and abort() call.
32469         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
32470         * m4/strptime.m4: Fix serial number comment.
32471         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
32472         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
32473         (Depends-on): Add time_r.
32474
32475 2007-01-29  Bruno Haible  <bruno@clisp.org>
32476
32477         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32478         strptime.
32479         * modules/strptime (Depends-on): Add stdbool.
32480         * lib/strptime.h: Include <time.h> always. Add comments.
32481
32482 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32483
32484         * modules/strptime: New file.
32485         * lib/strptime.h: New file.
32486         * lib/strptime.c: New file.
32487         * m4/strptime.m4: New file.
32488
32489 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
32490
32491         * MODULES.html.sh: New module mpsort.
32492         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
32493
32494         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
32495         a circularity problem with HP-UX ia64 reported by Bob Proulx in
32496         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
32497         All uses changed.
32498         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
32499         All uses changed.
32500         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
32501         to _Restrict_.
32502         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
32503         the parameter matches the prototype.
32504
32505 2007-01-28  Jim Meyering  <jim@meyering.net>
32506
32507         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
32508         sys/time.h here, reverting that part of the previous patch:
32509         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
32510
32511 2007-01-28  Bruno Haible  <bruno@clisp.org>
32512
32513         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
32514         value of $(SYS_TIME_H).
32515         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
32516         remove it conditionally, too. [added by Jim Meyering]
32517         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
32518         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
32519         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
32520         GETTIMEOFDAY_REPLACEMENT to 1.
32521
32522 2007-01-28  Bruno Haible  <bruno@clisp.org>
32523
32524         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
32525         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
32526         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
32527         Set UNISTD_H instead of UNISTD_H2.
32528         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
32529
32530 2007-01-28  Bruno Haible  <bruno@clisp.org>
32531
32532         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
32533         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
32534
32535 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32536
32537         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
32538         (func_create_testdir): Ensure C locale for `grep' and `tr'
32539         character ranges.
32540         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
32541         ACLOCAL_AMFLAGS parsing state machine.
32542
32543 2007-01-27  Bruno Haible  <bruno@clisp.org>
32544
32545         * modules/unistr/base: Update.
32546
32547 2007-01-27  Bruno Haible  <bruno@clisp.org>
32548
32549         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
32550         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
32551         * modules/unistr/u32-mbtouc-unsafe: Renamed from
32552         modules/unistr/u32-mbtouc.
32553         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
32554         * lib/unistr.h: Update.
32555         * lib/linebreak.c: Update.
32556         * modules/unistr/u32-mbtouc: Renamed from
32557         modules/unistr/u32-mbtouc-safe.
32558         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
32559         * lib/unistr.h: Update.
32560         * lib/unistr/u32-to-u8.c: Update.
32561         * lib/unistr/u32-to-u16.c: Update.
32562
32563 2007-01-27  Bruno Haible  <bruno@clisp.org>
32564
32565         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
32566         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
32567         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
32568         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
32569         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
32570         * modules/unistr/u16-mbtouc-unsafe: Renamed from
32571         modules/unistr/u16-mbtouc.
32572         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
32573         * lib/unistr.h: Update.
32574         * lib/linebreak.c: Update.
32575         * modules/linebreak: Update.
32576         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
32577         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
32578         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
32579         * modules/unistr/u16-mbtouc: Renamed from
32580         modules/unistr/u16-mbtouc-safe.
32581         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
32582         * lib/unistr.h: Update.
32583         * lib/unistr/u16-to-u8.c: Update.
32584         * modules/unistr/u16-to-u8: Update.
32585         * lib/unistr/u16-to-u32.c: Update.
32586         * modules/unistr/u16-to-u32: Update.
32587
32588 2007-01-27  Bruno Haible  <bruno@clisp.org>
32589
32590         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
32591         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
32592         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
32593         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
32594         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
32595         * modules/unistr/u8-mbtouc-unsafe: Renamed from
32596         modules/unistr/u8-mbtouc.
32597         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
32598         * lib/unistr.h: Update.
32599         * lib/striconveh.c: Update.
32600         * modules/striconveh: Update.
32601         * lib/linebreak.c: Update.
32602         * modules/linebreak: Update.
32603         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
32604         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
32605         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
32606         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
32607         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
32608         * lib/unistr.h: Update.
32609         * lib/striconveh.c: Update.
32610         * modules/striconveh: Update.
32611         * lib/unistr/u8-to-u16.c: Update.
32612         * modules/unistr/u8-to-u16: Update.
32613         * lib/unistr/u8-to-u32.c: Update.
32614         * modules/unistr/u8-to-u32: Update.
32615
32616 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32617
32618         Sync from Libtool.
32619         * lib/argz.c: Do not include strings.h nor memory.h, include
32620         string.h unconditionally.  Patch by Simon Josefsson.
32621
32622 2007-01-27  Bruno Haible  <bruno@clisp.org>
32623
32624         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
32625         from gl_HEADER_STRING_H_BODY.
32626         (gl_HEADER_STRING_H_BODY): Require it.
32627         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
32628         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
32629         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
32630         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
32631         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
32632         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
32633         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
32634         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
32635         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
32636         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
32637         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
32638         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
32639         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
32640         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
32641         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
32642
32643 2007-01-27  Bruno Haible  <bruno@clisp.org>
32644
32645         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
32646         check_PROGRAMS into noinst_PROGRAMS.
32647         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
32648         check_PROGRAMS in this case.
32649         (func_import): Set for_test to false.
32650         (func_create_testdir): Set for_test to true.
32651
32652 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
32653             Bruno Haible  <bruno@clisp.org>
32654
32655         * modules/strcasestr (Files): Remove lib/strcasestr.h.
32656         (Depends-on): Add string.
32657         (Includes): Use <string.h> instead of strcasestr.h.
32658         * modules/string (Makefile.am): Also substitute the value of
32659         REPLACE_STRCASESTR.
32660         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
32661         assume strcasestr is declared in <string.h> not <strings.h>. Also
32662         set REPLACE_STRCASESTR.
32663         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
32664         REPLACE_STRCASESTR.
32665         * lib/strcasestr.h: Remove file.
32666         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
32667         * lib/string_.h (strcasestr): New declaration.
32668
32669 2007-01-27  Bruno Haible  <bruno@clisp.org>
32670
32671         * lib/string_.h: Use 'extern'.
32672
32673 2007-01-27  Jim Meyering  <jim@meyering.net>
32674
32675         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
32676         of set-but-not-used local, "q".
32677
32678         * lib/mempcpy.c: Include <config.h> before <string.h>.
32679         This fixes a compilation error on HP-UX, due to the system's
32680         "restrict"-using mempcpy prototype.
32681
32682 2007-01-26  Bruno Haible  <bruno@clisp.org>
32683
32684         Small optimization.
32685         * lib/javacomp.c: Include c-strstr.h.
32686          (is_envjavac_gcj): Use c_strstr instead of strstr.
32687         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
32688
32689 2007-01-26  Bruno Haible  <bruno@clisp.org>
32690
32691         * MODULES.html.sh (Unicode string functions): Add the new modules.
32692
32693         * modules/uniconv/u32-strconv-to-locale: New file.
32694         * lib/uniconv/u32-strconv-to-locale.c: New file.
32695
32696         * modules/uniconv/u16-strconv-to-locale: New file.
32697         * lib/uniconv/u16-strconv-to-locale.c: New file.
32698
32699         * modules/uniconv/u8-strconv-to-locale: New file.
32700         * lib/uniconv/u8-strconv-to-locale.c: New file.
32701
32702         * modules/uniconv/u32-strconv-from-locale: New file.
32703         * lib/uniconv/u32-strconv-from-locale.c: New file.
32704
32705         * modules/uniconv/u16-strconv-from-locale: New file.
32706         * lib/uniconv/u16-strconv-from-locale.c: New file.
32707
32708         * modules/uniconv/u8-strconv-from-locale: New file.
32709         * lib/uniconv/u8-strconv-from-locale.c: New file.
32710
32711         * modules/uniconv/u32-strconv-to-enc: New file.
32712         * lib/uniconv/u32-strconv-to-enc.c: New file.
32713         * modules/uniconv/u32-strconv-to-enc-tests: New file.
32714         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
32715
32716         * modules/uniconv/u16-strconv-to-enc: New file.
32717         * lib/uniconv/u16-strconv-to-enc.c: New file.
32718         * lib/uniconv/u-strconv-to-enc.h: New file.
32719         * modules/uniconv/u16-strconv-to-enc-tests: New file.
32720         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
32721
32722         * modules/uniconv/u8-strconv-to-enc: New file.
32723         * lib/uniconv/u8-strconv-to-enc.c: New file.
32724         * modules/uniconv/u8-strconv-to-enc-tests: New file.
32725         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
32726
32727         * modules/uniconv/u32-strconv-from-enc: New file.
32728         * lib/uniconv/u32-strconv-from-enc.c: New file.
32729         * modules/uniconv/u32-strconv-from-enc-tests: New file.
32730         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
32731
32732         * modules/uniconv/u16-strconv-from-enc: New file.
32733         * lib/uniconv/u16-strconv-from-enc.c: New file.
32734         * modules/uniconv/u16-strconv-from-enc-tests: New file.
32735         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
32736
32737         * modules/uniconv/u8-strconv-from-enc: New file.
32738         * lib/uniconv/u8-strconv-from-enc.c: New file.
32739         * lib/uniconv/u-strconv-from-enc.h: New file.
32740         * modules/uniconv/u8-strconv-from-enc-tests: New file.
32741         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
32742
32743         * modules/uniconv/u32-conv-from-enc: New file.
32744         * lib/uniconv/u32-conv-from-enc.c: New file.
32745         * modules/uniconv/u32-conv-from-enc-tests: New file.
32746         * tests/uniconv/test-u32-conv-from-enc.c: New file.
32747
32748         * modules/uniconv/u16-conv-from-enc: New file.
32749         * lib/uniconv/u16-conv-from-enc.c: New file.
32750         * lib/uniconv/u-conv-from-enc.h: New file.
32751         * modules/uniconv/u16-conv-from-enc-tests: New file.
32752         * tests/uniconv/test-u16-conv-from-enc.c: New file.
32753
32754         * modules/uniconv/u8-conv-from-enc: New file.
32755         * lib/uniconv/u8-conv-from-enc.c: New file.
32756         * modules/uniconv/u8-conv-from-enc-tests: New file.
32757         * tests/uniconv/test-u8-conv-from-enc.c: New file.
32758
32759         * modules/uniconv/base: New file.
32760         * lib/uniconv.h: New file.
32761
32762 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
32763
32764         * doc/gnulib-tool.texi (Initial import): Update to match current
32765         behavior with strdup module.
32766         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
32767         * lib/memmem.h: Remove; all uses removed.  This is now done
32768         by <string.h>.
32769         * lib/mempcpy.h: Likewise.
32770         * lib/memrchr.h: Likewise.
32771         * lib/stpcpy.h: Likewise.
32772         * lib/stpncpy.h: Likewise.
32773         * lib/strcase.h: Likewise.
32774         * lib/strchrnul.h: Likewise.
32775         * lib/strdup.h: Likewise.
32776         * lib/strndup.h: Likewise.
32777         * lib/strnlen.h: Likewise.
32778         * lib/strpbrk.h: Likewise.
32779         * lib/strsep.h: Likewise.
32780         * lib/strstr.h: Likewise.
32781         * lib/strtok_r.h: Likewise.
32782         * lib/string_.h: New file.
32783         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
32784         Rely on <string.h> instead.
32785         * lib/canon-host.c: Likewise.
32786         * lib/chdir-long.c: Likewise.
32787         * lib/concatpath.c: Likewise.
32788         * lib/exclude.c: Likewise.
32789         * lib/fchdir.c: Likewise.
32790         * lib/getaddrinfo.c: Likewise.
32791         * lib/getcwd.c: Likewise.
32792         * lib/getsubopt.c: Likewise.
32793         * lib/glob.c: Likewise.
32794         * lib/hard-locale.c: Likewise.
32795         * lib/iconvme.c: Likewise.
32796         * lib/javacomp.c: Likewise.
32797         * lib/mempcpy.c: Likewise.
32798         * lib/memrchr.c: Likewise.
32799         * lib/regex_internal.h: Likewise.
32800         * lib/stpncpy.c: Likewise.
32801         * lib/strcasecmp.c: Likewise.
32802         * lib/strchrnul.c: Likewise.
32803         * lib/strdup.c: Likewise.
32804         * lib/striconv.c: Likewise.
32805         * lib/striconveh.c: Likewise.
32806         * lib/striconveha.c: Likewise.
32807         * lib/strncasecmp.c: Likewise.
32808         * lib/strndup.c: Likewise.
32809         * lib/strnlen.c: Likewise.
32810         * lib/strsep.c: Likewise.
32811         * lib/strstr.c: Likewise.
32812         * lib/strtok_r.c: Likewise.
32813         * lib/userspec.c: Likewise.
32814         * lib/w32spawn.h: Likewise.
32815         * lib/xstrndup.c: Likewise.
32816         * lib/mountlist.c (strstr): Remove decl.
32817         * m4/string_h.m4: New file.
32818         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
32819         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
32820         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
32821         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
32822         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
32823         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
32824         Set REPLACE_STRCASECMP if necessary.
32825         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
32826         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
32827         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
32828         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
32829         HAVE_DECL_STRDUP if necessary.
32830         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
32831         since gl_FUNC_STRNDUP does that now.
32832         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
32833         Check for decl here...
32834         (gl_PREREQ_STRNLEN): ... not here.
32835         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
32836         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
32837         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
32838         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
32839         necessary.
32840         * modules/string: New file.
32841         * modules/memmem (Files): Remove special-purpose include file.
32842         (Depends-on): Add string.
32843         (Include): Include <string.h>, not the removed file.
32844         * modules/mempcpy: Likewise.
32845         * modules/memrchr: Likewise.
32846         * modules/stpcpy: Likewise.
32847         * modules/stpncpy: Likewise.
32848         * modules/strcase: Likewise.
32849         * modules/strchrnul: Likewise.
32850         * modules/strdup: Likewise.
32851         * modules/strndup: Likewise.
32852         * modules/strnlen: Likewise.
32853         * modules/strpbrk: Likewise.
32854         * modules/strsep: Likewise.
32855         * modules/strstr: Likewise.
32856         * modules/strtok_r: Likewise.
32857         * tests/test-dirname.c: Don't include "strdup.h", since
32858         <string.h> now suffices.
32859         * tests/test-memmem.c: Don't include "memmem.h", since
32860         <string.h> now suffices.
32861
32862 2007-01-25  Bruno Haible  <bruno@clisp.org>
32863
32864         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
32865         *resultp is 0.
32866
32867         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
32868         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
32869         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
32870         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
32871
32872         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
32873         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
32874         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
32875         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
32876         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
32877         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
32878
32879 2007-01-24  Bruno Haible  <bruno@clisp.org>
32880
32881         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
32882         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
32883         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
32884         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
32885         gl_FUNC_FTS_CORE.
32886         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
32887         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
32888         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
32889         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
32890         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
32891         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
32892         gl_FUNC_FCHOWNAT.
32893         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
32894         gl_FUNC_STRFTIME.
32895         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
32896         Reported by Ralf Wildenhues.
32897
32898 2007-01-24  Bruno Haible  <bruno@clisp.org>
32899
32900         Drop AC_REQUIRE calls that are redundant with the module dependencies.
32901         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
32902         gl_GETADDRINFO.
32903         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
32904         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
32905         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
32906
32907 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
32908
32909         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
32910         Don't use 'exit'; just return from 'main'.
32911         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
32912
32913         * lib/fnmatch_.h: Readjust white space and comments to match
32914         glibc, to avoid spurious diffs.
32915
32916 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32917
32918         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
32919         2004-12-01 change by Jakub Jelinek, since this code won't compile
32920         if !LIBC.  Problem reported by Bob Proulx.
32921
32922 2007-01-23  Bruno Haible  <bruno@clisp.org>
32923
32924         * lib/striconveh.c: Include c-strcaseeq.h.
32925         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
32926         * modules/striconveh (Depends-on): Add c-strcaseeq.
32927
32928 2007-01-23  Bruno Haible  <bruno@clisp.org>
32929
32930         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
32931
32932         * modules/c-strcaseeq: New file.
32933         * lib/c-strcaseeq.h: New file.
32934
32935         * modules/streq: New file.
32936         * lib/streq.h: New file.
32937
32938 2007-01-23  Bruno Haible  <bruno@clisp.org>
32939
32940         * modules/striconveha-tests: New file.
32941         * tests/test-striconveha.c: New file.
32942
32943         * lib/striconveha.h: Include <stdbool.h>.
32944         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
32945         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
32946         (mem_iconveha_notranslit): Renamed from mem_iconveha.
32947         (mem_iconveha): New function.
32948         (str_iconveha_notranslit): Renamed from str_iconveha.
32949         (str_iconveha): New function.
32950         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
32951         c-strcase.
32952
32953 2007-01-23  Bruno Haible  <bruno@clisp.org>
32954
32955         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
32956         encodings without forgiving before trying any encoding with handler.
32957         (str_iconveha): Try all encodings without forgiving before trying any
32958         encoding with handler.
32959
32960 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32961
32962         Import the following changes from libc.
32963
32964         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
32965
32966         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
32967
32968         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
32969
32970         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
32971         normal_bracket label.
32972
32973         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
32974
32975         [BZ #361]
32976         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
32977         to normal_bracket after fetching the next character.
32978
32979 2007-01-22  Bruno Haible  <bruno@clisp.org>
32980
32981         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
32982         argument.
32983         * lib/striconveh.c (iconv_carefully_1): New function.
32984         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
32985         argument.
32986         (str_cd_iconveh): Update.
32987         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
32988         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
32989         * tests/test-striconveh.c (MAGIC): New macro.
32990         (new_offsets): New function.
32991         (main): Test call with and without offsets.
32992
32993 2007-01-22  Bruno Haible  <bruno@clisp.org>
32994
32995         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
32996         * modules/sys_select (Makefile.am): Likewise.
32997         * modules/sys_socket (Makefile.am): Likewise.
32998         * modules/sys_time (Makefile.am): Likewise.
32999
33000 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
33001
33002         * modules/gettimeofday (License): Change from GPL to LGPL, since
33003         gettimeofday is a library function.
33004
33005 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33006
33007         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
33008
33009 2007-01-21  Bruno Haible  <bruno@clisp.org>
33010
33011         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
33012
33013 2007-01-21  Bruno Haible  <bruno@clisp.org>
33014
33015         * modules/striconveha: New file.
33016         * lib/striconveha.h: New file.
33017         * lib/striconveha.c: New file.
33018         * MODULES.html.sh (Internationalization functions): Add striconveha.
33019         * lib/striconv.c (str_iconv): Optimize the case of an empty input
33020         string.
33021         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
33022
33023 2007-01-21  Bruno Haible  <bruno@clisp.org>
33024
33025         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
33026         * lib/striconveh.c (str_iconveh): Likewise.
33027
33028 2007-01-21  Bruno Haible  <bruno@clisp.org>
33029
33030         * lib/striconveh.h (mem_iconveh): New declaration.
33031         * lib/striconveh.c (mem_iconveh): New function.
33032         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
33033
33034 2007-01-21  Bruno Haible  <bruno@clisp.org>
33035
33036         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
33037
33038         * lib/striconveh.h (mem_cd_iconveh): Change specification.
33039         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
33040         original result buffer.
33041         (str_cd_iconveh): Update.
33042         * tests/test-striconveh.c (main): Update.
33043
33044         * lib/striconv.h (mem_cd_iconv): Change specification.
33045         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
33046         result buffer.
33047         (str_cd_iconv): Update.
33048         * tests/test-striconv.c (main): Update.
33049
33050 2007-01-21  Bruno Haible  <bruno@clisp.org>
33051
33052         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
33053
33054 2007-01-20  Jim Meyering  <jim@meyering.net>
33055
33056         * lib/userspec.c (parse_with_separator): If a user or group string
33057         starts with "+", skip the corresponding name-to-ID look-up, since
33058         such a look-up must fail: user and group names may not include "+".
33059
33060 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
33061
33062         * lib/poll.c: Include sys/time.h and time.h unconditionally,
33063         since we now assume the sys_time module.
33064         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
33065         check for sys/time.h; no longer needed.
33066         * modules/poll (Depends-on): Depend on sys_time.
33067
33068 2007-01-18  Bruno Haible  <bruno@clisp.org>
33069
33070         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
33071         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33072
33073         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
33074         gettimeofday.
33075
33076         * tests/test-gettimeofday.c: Include <time.h>.
33077         (dummy): Remove variable.
33078
33079         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
33080         gl_HEADER_SYS_TIME_H.
33081         (gl_HEADER_SYS_TIME_H): New macro.
33082
33083         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
33084         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33085         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
33086         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
33087         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33088         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
33089         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
33090         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33091         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
33092         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
33093         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33094
33095         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
33096         last change; it caused a compilation error when cross-compiling to
33097         Cygwin.
33098
33099 2007-01-18  Jim Meyering  <jim@meyering.net>
33100
33101         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
33102         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
33103         than the race-prone "test -d sys || mkdir sys".
33104         (configure.ac): Use AC_PROG_MKDIR_P.
33105         * modules/sys_select: Likewise.
33106         * modules/sys_socket: Likewise.
33107         * modules/sys_time: Likewise.
33108
33109 2007-01-18  Eric Blake  <ebb9@byu.net>
33110
33111         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
33112         replace gettimeofday.
33113         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
33114         name, to avoid infinite recursion.
33115
33116 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
33117
33118         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
33119         module sys_time.
33120         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
33121         assume timespec.h defines struct timeval.
33122         * lib/settime.c: Likewise.
33123         * lib/utimens.c: Likewise.
33124         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
33125         since we now assume the gettimeofday module.
33126         * lib/tempname.c (__gen_tempname): Likewise.
33127         * lib/gettimeofday.h: Remove.
33128         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
33129         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
33130         Include <time.h>, for 'time()'.
33131         (localtime_buffer_addr): Also use this workaround if
33132         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
33133         to simplify the uses.  All uses changed.
33134         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
33135         that #undef is inside {}, and 'const' follows type name consistently.
33136         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
33137         (gettimeofday): Do not use the maximum possible value for
33138         tv->tv_usec, since that might break usages other than ls.c.
33139         Instead, we'll leave ls.c alone.  This undoes today's patch
33140         by Bruno.  Add a compile-time warning for 1s-clock resolution;
33141         we've never observed the problem but might as well keep the
33142         canary.
33143         * lib/nanosleep.c: Include timespec.h first, for interface check.
33144         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
33145         now assume the sys_time module.
33146         * lib/tempname.c: Likewise.
33147         * lib/timespec.h: Likewise.
33148         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
33149         needed.
33150         * lib/strftime.c: Likewise.
33151         * lib/timespec.h: Likewise.
33152         * lib/posixtm.c: Include posixtm.h first, for interface check.
33153         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
33154         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
33155         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
33156         * lib/sys_time_.h: New file.
33157         * lib/timespec.h (struct timespec): Use long int, not long.
33158         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
33159         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
33160         Remove obsolescent call to AC_HEADER_TIME.
33161         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
33162         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
33163         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33164         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
33165         Likewise.
33166         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
33167         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
33168         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
33169         into the sys_time module.  Check for gettimeofday just once.
33170         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
33171         for gettimeofday signature to just check the signature.  Merely
33172         compile it, since linking doesn't test signature.  Improve test for
33173         whether gettimeofday.o is actually needed.
33174         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
33175         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
33176         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
33177         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33178         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
33179         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
33180         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
33181         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
33182         than worrying about sys/time.h.
33183         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
33184         Don't bother worrying about TIME_WITH_SYS_TIME.
33185         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
33186         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
33187         * m4/sys_time_h.m4: New file.
33188         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
33189         Don't include sys/time.h.  Return from main rather than exiting.
33190         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
33191         all uses changed.
33192         * modules/gethrxtime (Depends-on): Add sys_time.
33193         * modules/gettime (Depends-on): Likewise.
33194         * modules/gettimeofday (Depends-on): Likewise.
33195         * modules/nanosleep (Depends-on): Likewise.
33196         * modules/settime (Depends-on): Likewise.
33197         * modules/tempname (Depends-on): Likewise.
33198         * modules/utimens (Depends-on): Likewise.
33199         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
33200         (Include:) Change back to <sys/time.h>.
33201         (Maintainer:) Add self.
33202         * modules/sys_time: New file.
33203         * modules/tempname (Depends-on): Add gettimeofday.
33204         * tests/test-gettimeofday.c: Include <sys/time.h>
33205         rather than gettimeofday.h.
33206
33207 2007-01-17  Bruno Haible  <bruno@clisp.org>
33208
33209         * gnulib-tool (func_get_license): Revert last patch. Instead, let
33210         the license default to GPL.
33211         (func_create_testdir): Don't complain if a module is LGPL and its
33212         tests module depends on GPLed modules.
33213
33214 2007-01-17  Bruno Haible  <bruno@clisp.org>
33215
33216         * lib/gettimeofday.c (gettimeofday): Add code for the case
33217         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
33218         maximum possible value for tv->tv_usec, rather than the minimum one.
33219
33220 2005-10-08  Martin Lambers  <marlam@marlam.de>
33221 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
33222 2007-01-16  Bruno Haible  <bruno@clisp.org>
33223
33224         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
33225         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
33226         gl_FUNC_GETTIMEOFDAY.
33227         (Include): Add gettimeofday.h.
33228         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
33229         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
33230         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
33231         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
33232         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
33233         * lib/gettimeofday.h: New file.
33234         * lib/gettimeofday.c: Include <sys/timeb.h>.
33235         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
33236         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33237         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
33238         fall back on time().
33239
33240         * tests/test-gettimeofday.c: New file.
33241         * modules/gettimeofday-tests: New file.
33242
33243 2007-01-16  Eric Blake  <ebb9@byu.net>
33244
33245         * modules/fnmatch (Depends-on): Depend on wchar.
33246         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
33247         * m4/fnmatch.m4: Likewise.
33248         * modules/mbchar (Makefile.am): Assume <wchar.h>.
33249         * m4/mbchar.m4: Likewise.
33250         * modules/mbswidth (Depends-on): Depend on wchar.
33251         * lib/mbswidth.c: Assume <wchar.h>.
33252         * m4/mbswidth.m4: Likewise.
33253         * modules/quotearg (Depends-on): Depend on wchar.
33254         * lib/quotearg.c: Assume <wchar.h>.
33255         * m4/quotearg.m4: Likewise.
33256         * modules/regex (Depends-on): Depend on wchar.
33257         * lib/regex_internal.h: Assume <wchar.h>.
33258         * m4/regex.m4: Likewise.
33259         * modules/stdint (Depends-on): Depend on wchar.
33260         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
33261         * m4/stdint.m4: Likewise.
33262         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
33263         * modules/strftime (Depends-on): Depend on wchar.
33264         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
33265         * modules/strtol (Depends-on): Depend on wchar.
33266         * lib/strtol.c: Assume <wchar.h>.
33267         * modules/wcwidth (Depends-on): Depend on wchar.
33268         * lib/wcwidth.h: Assume <wchar.h>.
33269         * m4/wcwidth.m4: Likewise.
33270
33271 2007-01-16  Bruno Haible  <bruno@clisp.org>
33272
33273         * modules/csharpexec-script: New, created from...
33274         * modules/csharpexec: ... this.
33275
33276 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
33277
33278         * modules/javaexec-script: New, created from...
33279         * modules/javaexec: ... this.
33280
33281 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33282
33283         * modules/poll (Dependencies): Add sys_select.
33284
33285 2007-01-15  Jim Meyering  <jim@meyering.net>
33286
33287         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
33288         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
33289         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
33290         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
33291
33292 2007-01-15  Bruno Haible  <bruno@clisp.org>
33293
33294         * modules/striconveh: New file.
33295         * lib/striconveh.h: New file.
33296         * lib/striconveh.c: New file.
33297         * MODULES.html.sh (Internationalization functions): Add striconveh.
33298
33299         * modules/striconveh-tests: New file.
33300         * tests/test-striconveh.c: New file.
33301
33302 2007-01-15  Bruno Haible  <bruno@clisp.org>
33303
33304         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
33305         not from GNU libiconv or GNU libc.
33306
33307 2007-01-15  Bruno Haible  <bruno@clisp.org>
33308
33309         * doc/gnulib-intro.texi (Copyright): Explain the different license
33310         terms for module descriptions, autoconf macros, tests, documentation.
33311
33312 2007-01-14  Bruno Haible  <bruno@clisp.org>
33313
33314         * modules/striconv-tests: New file.
33315         * tests/test-striconv.c: New file.
33316
33317 2007-01-14  Bruno Haible  <bruno@clisp.org>
33318
33319         * modules/iconv-tests: New file.
33320         * tests/test-iconv.c: New file.
33321
33322 2007-01-14  Bruno Haible  <bruno@clisp.org>
33323
33324         * gnulib-tool (func_get_license): For test modules, use the license of
33325         the main module.
33326
33327 2007-01-14  Bruno Haible  <bruno@clisp.org>
33328
33329         * modules/iconv (Include): Clarify that <iconv.h> can only be included
33330         if iconv is found to exist.
33331
33332 2007-01-14  Bruno Haible  <bruno@clisp.org>
33333
33334         * modules/c-ctype-tests: New file.
33335         * tests/test-c-ctype.c: New file.
33336
33337 2007-01-14  Bruno Haible  <bruno@clisp.org>
33338
33339         * modules/binary-io-tests: New file.
33340         * tests/test-binary-io.sh: New file.
33341         * tests/test-binary-io.c: New file.
33342
33343 2007-01-14  Bruno Haible  <bruno@clisp.org>
33344
33345         * modules/array-oset-tests: New file.
33346         * tests/test-array_oset.c: New file.
33347
33348 2007-01-14  Bruno Haible  <bruno@clisp.org>
33349
33350         * modules/array-list-tests: New file.
33351         * tests/test-array_list.c: New file.
33352
33353 2007-01-14  Bruno Haible  <bruno@clisp.org>
33354
33355         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
33356         and make.
33357         Reported by Simon Josefsson in
33358         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
33359
33360 2007-01-14  Bruno Haible  <bruno@clisp.org>
33361
33362         * modules/allocsa-tests: New file.
33363         * tests/test-allocsa.c: New file.
33364
33365 2007-01-14  Bruno Haible  <bruno@clisp.org>
33366
33367         * modules/fchdir (Depends-on): Add absolute-header.
33368         * modules/unistd (Depends-on): Likewise.
33369
33370 2006-12-30  Bruno Haible  <bruno@clisp.org>
33371
33372         * modules/fchdir: New file.
33373         * modules/unistd (Files): Add lib/unistd_.h.
33374         (Makefile.am): Generate unistd.h from unistd_.h.
33375         * lib/fchdir.c: New file.
33376         * lib/dirent_.h: New file.
33377         * lib/unistd_.h: New file.
33378         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
33379         * m4/fchdir.m4: New file.
33380         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
33381         (gl_HEADER_UNISTD): Invoke it.
33382         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
33383         function.
33384         * lib/backupfile.c (opendir, closedir): Undefine.
33385         * lib/chown.c (open, close): Undefine.
33386         * lib/clean-temp.c (open, close): Undefine.
33387         * lib/copy-file.c (open, close): Undefine.
33388         * lib/execute.c (open, close): Undefine.
33389         * lib/fsusage.c (open, close): Undefine.
33390         * lib/gc-gnulib.c (open, close): Undefine.
33391         * lib/getcwd.c (opendir, closedir): Undefine.
33392         * lib/glob.c (opendir, closedir): Undefine.
33393         * lib/javacomp.c (open, close): Undefine.
33394         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
33395         * lib/openat-proc.c (open, close): Undefine.
33396         * lib/pagealign_alloc.c (open, close): Undefine.
33397         * lib/pipe.c (open, close): Undefine.
33398         * lib/progreloc.c (open, close): Undefine.
33399         * lib/savedir.c (opendir, closedir): Undefine.
33400         * lib/utime.c (open, close): Undefine.
33401         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
33402
33403 2007-01-10  Bruno Haible  <bruno@clisp.org>
33404
33405         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
33406
33407 2007-01-12  Eric Blake  <ebb9@byu.net>
33408
33409         Provide a robust <wchar.h>.  Further simplifications are now
33410         possible in other modules, but not included here.
33411         * modules/wchar: New module.
33412         * m4/wchar.m4: New file.
33413         * lib/wchar_.h: Likewise.
33414         * modules/mbchar (Depends-on): Depend on wchar, as the first use
33415         of the new module.
33416         * MODULES.html.sh (Extended multibyte and wide character utilities):
33417         New section.
33418
33419 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
33420
33421         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
33422         to a reasonable default for memory allocation.
33423         (xreadlink): Don't allocate a huge buffer, to work around a buggy
33424         file system that reports garbage st_size values for symlinks.
33425         Problem reported by Liyang Hu.
33426
33427 2007-01-11  Simon Josefsson  <simon@josefsson.org>
33428
33429         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
33430         Emacs .#* auto-save files).
33431
33432 2007-01-11  Bruno Haible  <bruno@clisp.org>
33433
33434         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
33435         directory.
33436
33437 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
33438
33439         Use @...@ consistently in lib/wctype_.h.
33440         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
33441         on it being set to 1 or 0.
33442         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
33443         go back to AC_SUBSTing it.
33444         * modules/wctype (Makefile.am): Undo previous change.
33445
33446 2007-01-10  Eric Blake  <ebb9@byu.net>
33447
33448         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
33449         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
33450         * modules/wctype (Makefile.am): Likewise.
33451         Reported by Chris McGuire.
33452
33453 2007-01-10  Jim Meyering  <jim@meyering.net>
33454
33455         fts.c: a small readability/maintainability improvement
33456         * lib/fts.c (fts_read): Make this code slightly more readable and
33457         maintainable by hoisting the "sp->fts_cur = p" assignments to
33458         immediately follow the statements that set P.  Derived from
33459         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
33460
33461 2007-01-10  Eric Blake  <ebb9@byu.net>
33462
33463         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
33464         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
33465         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33466         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
33467         Reported by Chris McGuire.
33468
33469 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33470
33471         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
33472         in sed script.
33473
33474 2007-01-09  Bruno Haible  <bruno@clisp.org>
33475
33476         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
33477         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
33478         variables.
33479         (func_module): Use them.
33480
33481 2007-01-09  Bruno Haible  <bruno@clisp.org>
33482
33483         * modules/unistr/base: New file.
33484         * lib/unistr.h: New file.
33485
33486         * modules/unistr/u8-to-u16: New file.
33487         * lib/unistr/u8-to-u16.c: New file.
33488
33489         * modules/unistr/u8-to-u32: New file.
33490         * lib/unistr/u8-to-u32.c: New file.
33491
33492         * modules/unistr/u16-to-u8: New file.
33493         * lib/unistr/u16-to-u8.c: New file.
33494
33495         * modules/unistr/u16-to-u32: New file.
33496         * lib/unistr/u16-to-u32.c: New file.
33497
33498         * modules/unistr/u32-to-u8: New file.
33499         * lib/unistr/u32-to-u8.c: New file.
33500
33501         * modules/unistr/u32-to-u16: New file.
33502         * lib/unistr/u32-to-u16.c: New file.
33503
33504         * modules/unistr/u8-check: New file.
33505         * modules/unistr/u16-check: New file.
33506         * modules/unistr/u32-check: New file.
33507         * lib/unistr/u8-check.c: New file.
33508         * lib/unistr/u16-check.c: New file.
33509         * lib/unistr/u32-check.c: New file.
33510
33511         * modules/unistr/u8-chr: New file.
33512         * modules/unistr/u16-chr: New file.
33513         * modules/unistr/u32-chr: New file.
33514         * lib/unistr/u8-chr.c: New file.
33515         * lib/unistr/u16-chr.c: New file.
33516         * lib/unistr/u32-chr.c: New file.
33517
33518         * modules/unistr/u8-cmp: New file.
33519         * modules/unistr/u16-cmp: New file.
33520         * modules/unistr/u32-cmp: New file.
33521         * lib/unistr/u8-cmp.c: New file.
33522         * lib/unistr/u16-cmp.c: New file.
33523         * lib/unistr/u32-cmp.c: New file.
33524
33525         * modules/unistr/u8-cpy: New file.
33526         * modules/unistr/u16-cpy: New file.
33527         * modules/unistr/u32-cpy: New file.
33528         * lib/unistr/u8-cpy.c: New file.
33529         * lib/unistr/u16-cpy.c: New file.
33530         * lib/unistr/u32-cpy.c: New file.
33531         * lib/unistr/u-cpy.h: New file.
33532
33533         * modules/unistr/u8-cpy-alloc: New file.
33534         * modules/unistr/u16-cpy-alloc: New file.
33535         * modules/unistr/u32-cpy-alloc: New file.
33536         * lib/unistr/u8-cpy-alloc.c: New file.
33537         * lib/unistr/u16-cpy-alloc.c: New file.
33538         * lib/unistr/u32-cpy-alloc.c: New file.
33539         * lib/unistr/u-cpy-alloc.h: New file.
33540
33541         * modules/unistr/u8-endswith: New file.
33542         * modules/unistr/u16-endswith: New file.
33543         * modules/unistr/u32-endswith: New file.
33544         * lib/unistr/u8-endswith.c: New file.
33545         * lib/unistr/u16-endswith.c: New file.
33546         * lib/unistr/u32-endswith.c: New file.
33547         * lib/unistr/u-endswith.h: New file.
33548
33549         * modules/unistr/u8-mblen: New file.
33550         * modules/unistr/u16-mblen: New file.
33551         * modules/unistr/u32-mblen: New file.
33552         * lib/unistr/u8-mblen.c: New file.
33553         * lib/unistr/u16-mblen.c: New file.
33554         * lib/unistr/u32-mblen.c: New file.
33555
33556         * modules/unistr/u8-mbtouc: New file.
33557         * modules/unistr/u16-mbtouc: New file.
33558         * modules/unistr/u32-mbtouc: New file.
33559         * lib/unistr/u8-mbtouc.c: New file.
33560         * lib/unistr/u16-mbtouc.c: New file.
33561         * lib/unistr/u32-mbtouc.c: New file.
33562
33563         * modules/unistr/u8-mbtouc-safe: New file.
33564         * modules/unistr/u16-mbtouc-safe: New file.
33565         * modules/unistr/u32-mbtouc-safe: New file.
33566         * lib/unistr/u8-mbtouc-safe.c: New file.
33567         * lib/unistr/u16-mbtouc-safe.c: New file.
33568         * lib/unistr/u32-mbtouc-safe.c: New file.
33569
33570         * modules/unistr/u8-move: New file.
33571         * modules/unistr/u16-move: New file.
33572         * modules/unistr/u32-move: New file.
33573         * lib/unistr/u8-move.c: New file.
33574         * lib/unistr/u16-move.c: New file.
33575         * lib/unistr/u32-move.c: New file.
33576         * lib/unistr/u-move.h: New file.
33577
33578         * modules/unistr/u8-next: New file.
33579         * modules/unistr/u16-next: New file.
33580         * modules/unistr/u32-next: New file.
33581         * lib/unistr/u8-next.c: New file.
33582         * lib/unistr/u16-next.c: New file.
33583         * lib/unistr/u32-next.c: New file.
33584
33585         * modules/unistr/u8-prev: New file.
33586         * modules/unistr/u16-prev: New file.
33587         * modules/unistr/u32-prev: New file.
33588         * lib/unistr/u8-prev.c: New file.
33589         * lib/unistr/u16-prev.c: New file.
33590         * lib/unistr/u32-prev.c: New file.
33591
33592         * modules/unistr/u8-set: New file.
33593         * modules/unistr/u16-set: New file.
33594         * modules/unistr/u32-set: New file.
33595         * lib/unistr/u8-set.c: New file.
33596         * lib/unistr/u16-set.c: New file.
33597         * lib/unistr/u32-set.c: New file.
33598         * lib/unistr/u-set.h: New file.
33599
33600         * modules/unistr/u8-startswith: New file.
33601         * modules/unistr/u16-startswith: New file.
33602         * modules/unistr/u32-startswith: New file.
33603         * lib/unistr/u8-startswith.c: New file.
33604         * lib/unistr/u16-startswith.c: New file.
33605         * lib/unistr/u32-startswith.c: New file.
33606         * lib/unistr/u-startswith.h: New file.
33607
33608         * modules/unistr/u8-stpcpy: New file.
33609         * modules/unistr/u16-stpcpy: New file.
33610         * modules/unistr/u32-stpcpy: New file.
33611         * lib/unistr/u8-stpcpy.c: New file.
33612         * lib/unistr/u16-stpcpy.c: New file.
33613         * lib/unistr/u32-stpcpy.c: New file.
33614         * lib/unistr/u-stpcpy.h: New file.
33615
33616         * modules/unistr/u8-stpncpy: New file.
33617         * modules/unistr/u16-stpncpy: New file.
33618         * modules/unistr/u32-stpncpy: New file.
33619         * lib/unistr/u8-stpncpy.c: New file.
33620         * lib/unistr/u16-stpncpy.c: New file.
33621         * lib/unistr/u32-stpncpy.c: New file.
33622         * lib/unistr/u-stpncpy.h: New file.
33623
33624         * modules/unistr/u8-strcat: New file.
33625         * modules/unistr/u16-strcat: New file.
33626         * modules/unistr/u32-strcat: New file.
33627         * lib/unistr/u8-strcat.c: New file.
33628         * lib/unistr/u16-strcat.c: New file.
33629         * lib/unistr/u32-strcat.c: New file.
33630         * lib/unistr/u-strcat.h: New file.
33631
33632         * modules/unistr/u8-strchr: New file.
33633         * modules/unistr/u16-strchr: New file.
33634         * modules/unistr/u32-strchr: New file.
33635         * lib/unistr/u8-strchr.c: New file.
33636         * lib/unistr/u16-strchr.c: New file.
33637         * lib/unistr/u32-strchr.c: New file.
33638
33639         * modules/unistr/u8-strcmp: New file.
33640         * modules/unistr/u16-strcmp: New file.
33641         * modules/unistr/u32-strcmp: New file.
33642         * lib/unistr/u8-strcmp.c: New file.
33643         * lib/unistr/u16-strcmp.c: New file.
33644         * lib/unistr/u32-strcmp.c: New file.
33645
33646         * modules/unistr/u8-strcpy: New file.
33647         * modules/unistr/u16-strcpy: New file.
33648         * modules/unistr/u32-strcpy: New file.
33649         * lib/unistr/u8-strcpy.c: New file.
33650         * lib/unistr/u16-strcpy.c: New file.
33651         * lib/unistr/u32-strcpy.c: New file.
33652         * lib/unistr/u-strcpy.h: New file.
33653
33654         * modules/unistr/u8-strcspn: New file.
33655         * modules/unistr/u16-strcspn: New file.
33656         * modules/unistr/u32-strcspn: New file.
33657         * lib/unistr/u8-strcspn.c: New file.
33658         * lib/unistr/u16-strcspn.c: New file.
33659         * lib/unistr/u32-strcspn.c: New file.
33660         * lib/unistr/u-strcspn.h: New file.
33661
33662         * modules/unistr/u8-strdup: New file.
33663         * modules/unistr/u16-strdup: New file.
33664         * modules/unistr/u32-strdup: New file.
33665         * lib/unistr/u8-strdup.c: New file.
33666         * lib/unistr/u16-strdup.c: New file.
33667         * lib/unistr/u32-strdup.c: New file.
33668         * lib/unistr/u-strdup.h: New file.
33669
33670         * modules/unistr/u8-strlen: New file.
33671         * modules/unistr/u16-strlen: New file.
33672         * modules/unistr/u32-strlen: New file.
33673         * lib/unistr/u8-strlen.c: New file.
33674         * lib/unistr/u16-strlen.c: New file.
33675         * lib/unistr/u32-strlen.c: New file.
33676         * lib/unistr/u-strlen.h: New file.
33677
33678         * modules/unistr/u8-strmblen: New file.
33679         * modules/unistr/u16-strmblen: New file.
33680         * modules/unistr/u32-strmblen: New file.
33681         * lib/unistr/u8-strmblen.c: New file.
33682         * lib/unistr/u16-strmblen.c: New file.
33683         * lib/unistr/u32-strmblen.c: New file.
33684
33685         * modules/unistr/u8-strmbtouc: New file.
33686         * modules/unistr/u16-strmbtouc: New file.
33687         * modules/unistr/u32-strmbtouc: New file.
33688         * lib/unistr/u8-strmbtouc.c: New file.
33689         * lib/unistr/u16-strmbtouc.c: New file.
33690         * lib/unistr/u32-strmbtouc.c: New file.
33691
33692         * modules/unistr/u8-strncat: New file.
33693         * modules/unistr/u16-strncat: New file.
33694         * modules/unistr/u32-strncat: New file.
33695         * lib/unistr/u8-strncat.c: New file.
33696         * lib/unistr/u16-strncat.c: New file.
33697         * lib/unistr/u32-strncat.c: New file.
33698         * lib/unistr/u-strncat.h: New file.
33699
33700         * modules/unistr/u8-strncmp: New file.
33701         * modules/unistr/u16-strncmp: New file.
33702         * modules/unistr/u32-strncmp: New file.
33703         * lib/unistr/u8-strncmp.c: New file.
33704         * lib/unistr/u16-strncmp.c: New file.
33705         * lib/unistr/u32-strncmp.c: New file.
33706
33707         * modules/unistr/u8-strncpy: New file.
33708         * modules/unistr/u16-strncpy: New file.
33709         * modules/unistr/u32-strncpy: New file.
33710         * lib/unistr/u8-strncpy.c: New file.
33711         * lib/unistr/u16-strncpy.c: New file.
33712         * lib/unistr/u32-strncpy.c: New file.
33713         * lib/unistr/u-strncpy.h: New file.
33714
33715         * modules/unistr/u8-strnlen: New file.
33716         * modules/unistr/u16-strnlen: New file.
33717         * modules/unistr/u32-strnlen: New file.
33718         * lib/unistr/u8-strnlen.c: New file.
33719         * lib/unistr/u16-strnlen.c: New file.
33720         * lib/unistr/u32-strnlen.c: New file.
33721         * lib/unistr/u-strnlen.h: New file.
33722
33723         * modules/unistr/u8-strpbrk: New file.
33724         * modules/unistr/u16-strpbrk: New file.
33725         * modules/unistr/u32-strpbrk: New file.
33726         * lib/unistr/u8-strpbrk.c: New file.
33727         * lib/unistr/u16-strpbrk.c: New file.
33728         * lib/unistr/u32-strpbrk.c: New file.
33729         * lib/unistr/u-strpbrk.h: New file.
33730
33731         * modules/unistr/u8-strrchr: New file.
33732         * modules/unistr/u16-strrchr: New file.
33733         * modules/unistr/u32-strrchr: New file.
33734         * lib/unistr/u8-strrchr.c: New file.
33735         * lib/unistr/u16-strrchr.c: New file.
33736         * lib/unistr/u32-strrchr.c: New file.
33737
33738         * modules/unistr/u8-strspn: New file.
33739         * modules/unistr/u16-strspn: New file.
33740         * modules/unistr/u32-strspn: New file.
33741         * lib/unistr/u8-strspn.c: New file.
33742         * lib/unistr/u16-strspn.c: New file.
33743         * lib/unistr/u32-strspn.c: New file.
33744         * lib/unistr/u-strspn.h: New file.
33745
33746         * modules/unistr/u8-strstr: New file.
33747         * modules/unistr/u16-strstr: New file.
33748         * modules/unistr/u32-strstr: New file.
33749         * lib/unistr/u8-strstr.c: New file.
33750         * lib/unistr/u16-strstr.c: New file.
33751         * lib/unistr/u32-strstr.c: New file.
33752         * lib/unistr/u-strstr.h: New file.
33753
33754         * modules/unistr/u8-strtok: New file.
33755         * modules/unistr/u16-strtok: New file.
33756         * modules/unistr/u32-strtok: New file.
33757         * lib/unistr/u8-strtok.c: New file.
33758         * lib/unistr/u16-strtok.c: New file.
33759         * lib/unistr/u32-strtok.c: New file.
33760         * lib/unistr/u-strtok.h: New file.
33761
33762         * modules/unistr/u8-uctomb: New file.
33763         * modules/unistr/u16-uctomb: New file.
33764         * modules/unistr/u32-uctomb: New file.
33765         * lib/unistr/u8-uctomb.c: New file.
33766         * lib/unistr/u16-uctomb.c: New file.
33767         * lib/unistr/u32-uctomb.c: New file.
33768
33769         * MODULES.html.sh (Unicode string functions): Add the new modules.
33770
33771 2007-01-08  Bruno Haible  <bruno@clisp.org>
33772
33773         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
33774         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
33775         subdirectories.
33776
33777 2007-01-08  Karl Berry  <karl@gnu.org>
33778
33779         * doc/error.texi: mention that main() fns must set program_name
33780         when progname is used.
33781
33782 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
33783
33784         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
33785         WCTYPE_H is empty, for the benefit of builds from non-distclean
33786         directories.  Problem reported by Eric Blake in
33787         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
33788
33789 2007-01-08  Bruno Haible  <bruno@clisp.org>
33790
33791         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
33792         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
33793         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
33794         PROVIDE_CANONICALIZE_FILENAME_MODE.
33795         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
33796
33797 2007-01-08  Bruno Haible  <bruno@clisp.org>
33798
33799         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
33800         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
33801         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
33802         * lib/fts.c: Likewise.
33803         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
33804
33805 2006-12-25  Bruno Haible  <bruno@clisp.org>
33806
33807         * modules/utf8-ucs4-safe: New file.
33808         * lib/utf8-ucs4-safe.h: New file.
33809         * lib/unistr/utf8-ucs4-safe.c: New file.
33810
33811         * modules/utf16-ucs4-safe: New file.
33812         * lib/utf16-ucs4-safe.h: New file.
33813         * lib/unistr/utf16-ucs4-safe.c: New file.
33814
33815         * MODULES.html.sh (Unicode string functions): Add the new modules.
33816
33817 2007-01-08  Bruno Haible  <bruno@clisp.org>
33818
33819         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
33820         (Depends-on): Add unitypes.
33821         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33822         (u8_mbtouc_aux): Move out to separate file.
33823         (u8_mbtouc): Use ucs4_t, uint8_t types.
33824         * lib/unistr/utf8-ucs4.c: New file.
33825
33826         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
33827         (Depends-on): Add unitypes.
33828         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33829         (u16_mbtouc_aux): Move out to separate file.
33830         (u16_mbtouc): Use ucs4_t, uint16_t types.
33831         * lib/unistr/utf16-ucs4.c: New file.
33832
33833         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
33834         (Depends-on): Add unitypes.
33835         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
33836         (u8_uctomb_aux): Move out to separate file.
33837         (u8_uctomb): Use ucs4_t, uint8_t types.
33838         * lib/unistr/ucs4-utf8.c: New file.
33839
33840         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
33841         (Depends-on): Add unitypes.
33842         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
33843         (u16_uctomb_aux): Move out to separate file.
33844         (u16_uctomb): Use ucs4_t, uint16_t types.
33845         * lib/unistr/ucs4-utf16.c: New file.
33846
33847 2006-12-25  Bruno Haible  <bruno@clisp.org>
33848
33849         * modules/unitypes: New file.
33850         * lib/unitypes.h: New file.
33851         * MODULES.html.sh (func_all_modules): New section "Unicode string
33852         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
33853         this section. Add unitypes.
33854
33855 2007-01-08  Bruno Haible  <bruno@clisp.org>
33856
33857         Avoid variable names that conflict with those from libtool.
33858         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
33859         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
33860         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
33861         library_names_spec to acl_library_names_spec, hardcode_* to
33862         acl_hardcode_*.
33863         Reported by Ralf Wildenhues.
33864
33865 2007-01-08  Bruno Haible  <bruno@clisp.org>
33866
33867         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
33868         definition.
33869         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
33870         definition.
33871         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
33872         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
33873         definition.
33874         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
33875         definition.
33876         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
33877         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
33878         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
33879         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
33880         definition.
33881         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
33882         definition.
33883         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
33884         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
33885         GC_USE_<algorithm>.
33886         * lib/gc-libgcrypt.c: Likewise.
33887         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
33888         * modules/gc-arctwo (configure.ac): Likewise.
33889         * modules/gc-des (configure.ac): Likewise.
33890         * modules/gc-hmac-md5 (configure.ac): Likewise.
33891         * modules/gc-hmac-sha1 (configure.ac): Likewise.
33892         * modules/gc-md2 (configure.ac): Likewise.
33893         * modules/gc-md4 (configure.ac): Likewise.
33894         * modules/gc-md5 (configure.ac): Likewise.
33895         * modules/gc-random (configure.ac): Likewise.
33896         * modules/gc-rijndael (configure.ac): Likewise.
33897         * modules/gc-sha1 (configure.ac): Likewise.
33898
33899 2007-01-08  Bruno Haible  <bruno@clisp.org>
33900
33901         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
33902         macro definition.
33903         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
33904         definition.
33905         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
33906         definition.
33907         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
33908         * modules/fcntl-safer (configure.ac): Likewise.
33909         * modules/fopen-safer (configure.ac): Likewise.
33910         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
33911         GNULIB_FWRITEERROR macro definition.
33912
33913 2007-01-08  Bruno Haible  <bruno@clisp.org>
33914
33915         * m4/gnulib-common.m4: New file.
33916         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
33917         (func_get_filelist): Add m4/gnulib-common.m4.
33918
33919 2007-01-08  Bruno Haible  <bruno@clisp.org>
33920
33921         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
33922         command.
33923
33924 2007-01-08  Jim Meyering  <jim@meyering.net>
33925
33926         Use a more robust test for a "can't happen" condition.
33927         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
33928         narrowed the st_size value.  Presuming the "can't happen" condition
33929         is true, that narrowing could conceivably convert an invalid st_size
33930         value into a valid one.  Instead, use a change based on Matthew
33931         Woehlke's original patch.
33932
33933         Slight readability improvement: use an assert-like macro
33934         in place of literal "abort ()" uses.
33935         * lib/fts.c (fts_assert): Define.
33936         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
33937         Use this macro instead of a bare 'abort'.
33938
33939 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
33940
33941         Don't worry about using IRIX 5.3's wctype.h broken definitions;
33942         simply work around them.
33943         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
33944         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
33945         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
33946         declaring.
33947         Don't bother to define as macros, since the standard doesn't require it.
33948         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
33949         longer worry about IRIX 5.3.
33950         (HAVE_WCTYPE_CTMP_BUG): Remove.
33951
33952 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
33953
33954         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
33955         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
33956         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33957         Problems reported by Georg Schwarz for IRIX 5.3.
33958
33959         * gnulib-tool (autoconf_minversion): Take the maximum version number
33960         found, not the minimum.  Problem reported by James Youngman.
33961
33962 2007-01-03  Karl Berry  <karl@gnu.org>
33963
33964         * doc/error.texi: new file, explaining interaction with progname.
33965         * doc/gnulib.texi: include it.  Update copyright.
33966
33967 2007-01-03  Simon Josefsson  <simon@josefsson.org>
33968
33969         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
33970         AC_CANONICAL_HOST, to improve autobuild outputs.
33971
33972 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
33973             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
33974
33975         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
33976         sockets, server sockets, and other file descriptors.  Count errors
33977         to compute the return value.  Reorder the code a bit to be easier
33978         to follow.  Don't set event bits that were not requested (except
33979         POLLERR and POLLHUP).
33980
33981 2007-01-01  Bruno Haible  <bruno@clisp.org>
33982
33983         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
33984
33985 2007-01-03  Jim Meyering  <jim@meyering.net>
33986
33987         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
33988
33989 2007-01-02  Bruno Haible  <bruno@clisp.org>
33990
33991         * modules/settime (Include): Require timespec.h.
33992         * modules/nanosleep (Include): Likewise.
33993
33994 2007-01-01  Bruno Haible  <bruno@clisp.org>
33995
33996         * gnulib-tool (func_emit_copyright_notice): Bump year.
33997         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
33998
33999 2007-01-01  Bruno Haible  <bruno@clisp.org>
34000
34001         Improve support for OpenBSD.
34002         * build-aux/config.rpath (libname_spec): Export.
34003         (library_names_spec): New variable. Export.
34004         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
34005         library_names_spec from the config.rpath output. Locate shared library
34006         through the name pattern in library_names_spec.
34007
34008 2007-01-01  Eric Blake  <ebb9@byu.net>
34009
34010         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
34011
34012 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
34013
34014         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
34015         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
34016         assume the C locale, and avoid an "eval" that could cause trouble.
34017         Problem with SORT reported by Bob Proulx.
34018
34019         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
34020         Define.  Trivial patch from Henning Nielsen Lund, originally
34021         sent to bug-grep@gnu.org today.
34022
34023 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
34024
34025         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
34026         struct stat.  Problem reported by Henning Nielsen Lund.
34027         * lib/acl.c: Include acl.h first, to check interface.  Don't
34028         bother to include sys/types.h and sys/stat.h again.
34029
34030 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
34031
34032         Import the following change from libc; problem reported by
34033         Sven Verdoolaege.
34034
34035         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
34036
34037         [BZ #1373]
34038         * lib/argp.h: Remove __NTH for __argp_usage inline function.
34039
34040 2006-12-28  Jim Meyering  <jim@meyering.net>
34041
34042         * build-aux/announce-gen: Do not assume that the package
34043         builds any of tar.gz, tar.bz2, and .xdelta files.
34044         Suggestion from Simon Josefsson.
34045
34046 2006-12-28  Simon Josefsson  <simon@josefsson.org>
34047
34048         * modules/announce-gen: New file.
34049
34050 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
34051
34052         * lib/mbchar.h: Just include <wctype.h>; the wctype module
34053         handles its gotchas now.
34054         * lib/mbswidth.c: Likewise.
34055         * lib/wcwidth.h: Likewise.
34056         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
34057         and iswcntrl; the wctype module does this stuff now.
34058         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
34059         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
34060         * modules/mbchar (Depends-on): Add wctype.
34061         * modules/mbswidth (Depends-on): Likewise.
34062         * modules/wcwidth (Depends-on): Likewise.
34063
34064 2006-12-27  Eric Blake  <ebb9@byu.net>
34065
34066         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
34067         module uses more than what <wctype.h> is required to provide.
34068
34069 2006-12-26  Eric Blake  <ebb9@byu.net>
34070
34071         * gnulib-tool (sed_extract_prog): Avoid space-tab.
34072
34073 2006-12-26  Eric Blake  <ebb9@byu.net>
34074
34075         * modules/absolute-header: New module.
34076         * modules/fcntl (Depends-on): Depend on it.
34077         * modules/inttypes (Depends-on): Likewise.
34078         * modules/stdint (Depends-on): Likewise.
34079         * modules/sys_stat (Depends-on): Likewise.
34080         * modules/wctype (Depends-on): Likewise.
34081         * MODULES.html.sh (Support for building libraries and
34082         executables): Document it.
34083
34084 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
34085
34086         * gnulib-tool (SED): Remove, undoing previous change.
34087         The problem was that it broke coreutils on Solaris, because
34088         "sed --posix" leaked into a makefile.
34089         (sed): New alias, if 'alias' and GNU sed.
34090
34091 2006-12-24  Jim Meyering  <jim@meyering.net>
34092
34093         Work around an fchownat bug in glibc-2.4:
34094         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
34095         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
34096         in spite of the -P option.
34097         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
34098         New macros.
34099         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
34100         * modules/openat (Files): Add lib/fchownat.c.
34101         * lib/openat.c (fchownat): Don't define here.  Move to...
34102         * lib/fchownat.c: ...this new file.
34103
34104 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
34105
34106         Fix bug reported by Bruno Haible in
34107         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
34108         where quotearg.c didn't compile on Mac OS X 10.2 because it
34109         lacks <wchar.h> and wint_t.
34110         * lib/wctype_.h (__wctype_wint_t): New type.
34111         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
34112         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
34113         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
34114         Arg is now of type __wctype_wint_t, not wint_t.
34115         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
34116         substitute HAVE_WINT_T.
34117         * modules/wctype (Files): Add m4/wint_t.m4.
34118         (wctype.h): Substitute HAVE_WINT_T.
34119
34120 2006-12-23  Bruno Haible  <bruno@clisp.org>
34121
34122         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
34123
34124 2006-12-23  Bruno Haible  <bruno@clisp.org>
34125
34126         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
34127         S_ISLNK.
34128         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
34129         mingw.
34130
34131 2006-12-22  Bruno Haible  <bruno@clisp.org>
34132
34133         * lib/copy-file.c: Include acl.h.
34134         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
34135         Close the file descriptors only after being done with copy_acl.
34136         * modules/copy-file (Depends-on): Add acl.
34137
34138 2006-12-22  Bruno Haible  <bruno@clisp.org>
34139
34140         * gnulib-tool (SED): New variable.
34141         Use $SED instead of sed everywhere.
34142
34143 2006-12-22  Bruno Haible  <bruno@clisp.org>
34144
34145         * modules/no-c++: New file.
34146         * m4/no-c++.m4: New file.
34147         * MODULES.html.sh (Support for building libraries and executables):
34148         Add no-c++.
34149
34150 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
34151
34152         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
34153         Include <limits.h>, and use its INT_MAX to rewrite the
34154         j loop so that it does not overflow 'int'.  Problem reported by
34155         Ralf Wildenhues in
34156         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
34157         Play it safe by shifting left by 1 rather than multiplying by 2,
34158         as GCC is less likely to optimize this away when the value
34159         is signed (when it assumes overflow leads to undefined behavior).
34160         Also, don't assume time_t uses two's complement.
34161
34162 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
34163
34164         * MODULES.html.sh: New module wctype.
34165         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
34166         * lib/fnmatch.c: Don't bother to include <wchar.h> before
34167         <wctype.h>, since the new wctype module should fix this.
34168         * lib/quotearg.c: Include <wctype.h> unconditionally, since
34169         the wctype module should arrange for it.
34170         * lib/regex_internal.h: Likewise.
34171         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
34172         since the wctype module should handle this now.
34173         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
34174         * modules/fnmatch (Depends-on): Add wctype.
34175         * modules/quotearg (Depends-on): Likewise.
34176         * modules/regex (Depends-on): Likewise.
34177
34178 2006-12-19  Bruno Haible  <bruno@clisp.org>
34179
34180         * lib/strdup.h [C++]: Wrap definitions in extern "C".
34181         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
34182
34183 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34184
34185         * modules/savewd (Depends-on): Fix dependency on fcntl.
34186
34187 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34188
34189         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
34190         conforms to C99, rather than relying on the user's environment
34191         setting of STDINT_H.
34192
34193 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34194         and Eric Blake  <ebb9@byu.net>
34195
34196         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
34197         This is more consistent with the other defines here.
34198         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
34199         Port to z/OS.  Problem reported by Paul Gilmartin.
34200         Change local vars to use gl_ prefix rather than ac_.
34201         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
34202         with other defines.
34203         * modules/double-slash-root: New module.
34204         * modules/dirname (Files): Remove m4/double-slash-root.m4.
34205         (Depends-on): Add double-slash-root.
34206         * MODULES.html.sh (File system functions): Mention new module.
34207
34208 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
34209
34210         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
34211         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
34212         This is for the benefit of gzip, which doesn't do i18n.
34213
34214 2006-12-12  Jim Meyering  <jim@meyering.net>
34215
34216         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
34217         Reported by Andreas Schwab <schwab@suse.de>.
34218
34219 2006-12-12  Bruno Haible  <bruno@clisp.org>
34220
34221         Merge these changes.
34222         2006-09-05  Bruno Haible  <bruno@clisp.org>
34223         * lib/iconvme.c (iconv_string): No need to save and restore errno when
34224         iconv_alloc succeeded.
34225         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
34226         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
34227         test for " && dest " at the end - dest is always != NULL there. Call
34228         iconv with 4xNULL arguments initially, to reset the state. Call iconv
34229         with 2xNULL arguments, also to flush the state storage. Handle the
34230         IRIX iconv behaviour. Realloc the final result, to throw away unused
34231         memory.
34232
34233 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
34234
34235         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
34236         and fchmodat unconditionally, since glibc 2.4 has them.
34237         Problem reported by Arkadiusz Miskiewicz.
34238
34239 2006-12-10  Bruno Haible  <bruno@clisp.org>
34240
34241         * gnulib-tool (func_import): Show the include files only for those
34242         modules that are copied and specified.
34243         Reported by Karl Berry.
34244
34245 2006-12-08  Jim Meyering  <jim@meyering.net>
34246
34247         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
34248         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
34249
34250         * build-aux/announce-gen: Add two new options, both optional:
34251         --bootstrap-tools=TOOL_LIST
34252               a comma-separated list of tools, e.g.,
34253               autoconf,automake,bison,gnulib
34254         --gnulib-snapshot-date=DATE
34255               if gnulib is in the bootstrap tool list,
34256               then report this as the snapshot date.
34257               If not specified, use the current date/time.
34258               If you specify a date here, be sure it's UTC.
34259
34260 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34261
34262         * tests/test-argp-2.sh: Fix test to match actual output.
34263         (func_compare): Fix sed script to be portable.
34264
34265 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
34266
34267         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
34268         workaround for this case.  It is not autoconfigured now; offhand
34269         it's hard to see how to autoconfigure it.
34270
34271 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
34272
34273         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
34274         a directory that is about to be chowned.  Such a directory's
34275         initial file permissions should permit the owner only and this
34276         should not be changed until after the chown, since the group and
34277         other bits would be incorrect if they granted permission before
34278         the chown.
34279
34280         Fix porting problem for iswctype reported by Georg Schwarz in:
34281         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
34282         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
34283         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
34284         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
34285         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
34286
34287 2006-12-03  Jim Meyering  <jim@meyering.net>
34288
34289         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
34290         p->fts_statp may not yet be defined.
34291         (fts_read): Instead, set it in the caller, once p->fts_statp is
34292         sure to be defined, and corresponds to a top-level directory.
34293         This bug made du -x fail.  Here's the coreutils test case:
34294         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
34295         Reported by Mike Frysinger.
34296
34297 2006-12-01  Jim Meyering  <jim@meyering.net>
34298
34299         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
34300         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
34301         Reported by Simon Josefsson.
34302
34303 2006-11-30  Jim Meyering  <jim@meyering.net>
34304
34305         * m4/warning.m4: Use the all-permissive copyright notice
34306         recommended by RMS (rather than LGPL).
34307         * m4/vararrays.m4: Likewise.
34308         * m4/flexmember.m4: Likewise.
34309
34310 2006-11-29  Bruno Haible  <bruno@clisp.org>
34311
34312         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34313         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
34314         using +=.
34315         Reported by Simon Josefsson <simon@josefsson.org>.
34316
34317 2006-11-28  James Youngman <jay@gnu.org>
34318
34319         * README: Advise users that they might find the bug-gnulib@gnu.org
34320         and autotools-announce@gnu.org mailing lists useful.
34321
34322 2006-11-28  Bruno Haible  <bruno@clisp.org>
34323
34324         * m4/ptrdiff_max.m4: Remove file.
34325
34326 2006-11-21  Bruno Haible  <bruno@clisp.org>
34327
34328         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
34329         _AC_COMPUTE_INT.
34330         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34331         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
34332         _AC_COMPUTE_INT.
34333         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34334         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
34335         _AC_COMPUTE_INT.
34336         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34337
34338 2006-11-28  Jim Meyering  <jim@meyering.net>
34339
34340         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
34341         warning from "gcc -Wshadow" about shadowing the builtin.
34342
34343 2006-11-27  Bruno Haible  <bruno@clisp.org>
34344
34345         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
34346         _AC_COMPUTE_INT.
34347         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34348
34349 2006-11-27  Bruno Haible  <bruno@clisp.org>
34350             Paul Eggert  <eggert@cs.ucla.edu>
34351
34352         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
34353
34354 2006-11-26  Bruno Haible  <bruno@clisp.org>
34355
34356         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34357         noinst_LTLIBRARIES.
34358
34359 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
34360             Bruno Haible  <bruno@clisp.org>
34361
34362         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
34363         if compiling with "gcc -ansi".
34364
34365 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
34366
34367         Fix some incompatibilities with gcc -ansi -pedantic.
34368         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
34369         if compiling pedantically with GCC, unless it's C99 or later.
34370         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
34371         it mishandles gcc -ansi -pedantic as well.
34372         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
34373         if gcc -pedantic.
34374         * lib/regexec.c (check_node_accept_bytes): Don't use auto
34375         initializers for struct if -pedantic, unless it's C99 or later.
34376
34377 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
34378
34379         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
34380         Don't close an fd more than once. Identical atimes indicate
34381         success, not failure.
34382
34383 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
34384
34385         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
34386
34387 2006-11-23  Jim Meyering  <jim@meyering.net>
34388
34389         * build-aux/announce-gen: New file.  From coreutils.
34390
34391 2006-11-22  Jim Meyering  <jim@meyering.net>
34392
34393         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
34394         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
34395         (fts_read): Use a temporary to narrow the overused st_size member
34396         before using it in a switch statement.  Reported by Matthew Woehlke.
34397
34398         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
34399         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
34400
34401 2006-11-20  Bruno Haible  <bruno@clisp.org>
34402
34403         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
34404         changequote instead of pairs of brackets.
34405         Reported by Andreas Schwab <schwab@suse.de>.
34406
34407 2006-11-21  Jim Meyering  <jim@meyering.net>
34408
34409         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
34410         so as to remain compatible with older compilers.
34411         Patch from Michael Deutschmann.
34412
34413 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34414
34415         * MODULES.html.sh (File system functions): Add openat.
34416
34417         * lib/openat.h (rpl_fstatat): New macro, if
34418         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
34419         (fstatat): Define to rpl_fstatat under the same conditions,
34420         unless COMPILING_FSTATAT.
34421         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
34422         seems to have the bug.
34423         * lib/fstatat.c: New file.
34424         * modules/openat (Files): Add it.
34425
34426 2006-11-20  Bruno Haible  <bruno@clisp.org>
34427
34428         * Makefile: New file.
34429
34430 2006-11-20  Jim Meyering  <jim@meyering.net>
34431
34432         The beginnings of syntax-related checks for gnulib.
34433         * lib/Makefile: New file.
34434         * lib/t-idcache: New script.  Ensure that the two halves of
34435         idcache.c stay in sync.
34436
34437         * lib/idcache.c: Adjust comments in user- and group- portions to
34438         be more accurate, and to be consistent with one another.
34439
34440 2006-11-20  Jim Meyering  <jim@meyering.net>
34441
34442         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
34443         continue using the flexible array member (thus, this module performs
34444         half as many malloc calls), with the addition that...
34445         (getgroup, getuser): Consistently record a non-match via an empty
34446         "name" string, and map an empty string match to a NULL return value.
34447         * modules/idcache (Depends-on): Re-add flexmember.
34448
34449         * lib/idcache.c (getuser): Remove all uses of the register keyword.
34450         (getuidbyname, getgroup, getgidbyname): Likewise.
34451
34452         Use cleaner syntax: NULL rather than 0.
34453         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
34454
34455 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34456
34457         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
34458         It mishandled the case where the group was missing.
34459         Problem reported by Greg Schafer.
34460         * modules/idcache: Likewise.
34461
34462 2006-11-18  Jim Meyering  <jim@meyering.net>
34463
34464         * check-module (%exempt_header): Add exception for some
34465         conditionally-included headers.
34466
34467         * modules/i-ring (Depends-on): Add verify.
34468         (License): Change to LGPL.
34469
34470 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
34471
34472         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
34473         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
34474         and inttostr.h.  Use snprintf rather than uinttostr, so that
34475         LGPLed code doesn't depend on GPLed.
34476
34477 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
34478
34479         * modules/inline (License): Change from GPL to LGPL.
34480
34481 2006-11-17  Jim Meyering  <jim@meyering.net>
34482
34483         * modules/d-type (License): Switch to LGPL.
34484
34485 2006-11-15  Bruno Haible  <bruno@clisp.org>
34486
34487         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
34488
34489 2006-11-15  Eric Blake  <ebb9@byu.net>
34490
34491         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
34492         the module dependency.
34493
34494 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34495             Bruno Haible  <bruno@clisp.org>
34496
34497         * gnulib-tool (func_create_testdir): Add license consistency check.
34498
34499 2006-11-15  Eric Blake  <ebb9@byu.net>
34500
34501         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
34502         random "(cached)" in configure output.
34503
34504 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34505
34506         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
34507         test for conforming inttypes.h is both announced and cached.
34508
34509         * MODULES.html.sh (seen_modules, seen_files): New variables.
34510         (func_module): Rewrite to use a few less gnulib-tool and sed
34511         invocations.  Avoid a couple of quadratic algorithms for ...
34512         (missed_modules, missed_files): ... these, with ...
34513         (func_append, func_tmpdir): ... these new functions, from
34514         gnulib-tool.  Analogously, install traps for cleanup.
34515
34516         * tests/test-gc.c (main): Remove unused variables.
34517         * tests/test-read-file.c: Include stdlib.h, for 'free'.
34518
34519 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
34520
34521         * modules/inttostr (License): Change to LGPL.
34522
34523 2006-11-14  Eric Blake  <ebb9@byu.net>
34524
34525         * modules/tempname (License): Change to LGPL.
34526
34527 2006-11-14  Eric Blake  <ebb9@byu.net>
34528
34529         * doc/functions.texi (Function Portability): *printf functions on
34530         Cygwin now understand all POSIX size specifiers.
34531
34532 2006-11-14  Bruno Haible  <bruno@clisp.org>
34533
34534         * modules/c-ctype (License): Change to LGPL.
34535
34536 2006-11-12  Bruno Haible  <bruno@clisp.org>
34537
34538         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
34539         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
34540         for GNOME libraries, for which the include files are installed in
34541         subdirectories of $prefix/include.
34542
34543 2006-11-12  Bruno Haible  <bruno@clisp.org>
34544
34545         * m4/lib-link.m4: Require at least autoconf-2.54.
34546         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
34547         name to underscores for the --with option.
34548
34549 2006-11-13  Bruno Haible  <bruno@clisp.org>
34550
34551         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
34552         the tests directory.
34553         Reported by Ralf Wildenhues.
34554
34555 2006-11-13  Bruno Haible  <bruno@clisp.org>
34556
34557         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
34558         (func_emit_initmacro_end): Undo the override here.
34559         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
34560         Works around the famous automake error in coreutils.
34561
34562 2006-11-13  Eric Blake  <ebb9@byu.net>
34563
34564         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
34565         element, not its node.
34566
34567 2006-11-12  Bruno Haible  <bruno@clisp.org>
34568
34569         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
34570         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
34571
34572 2006-11-12  Bruno Haible  <bruno@clisp.org>
34573
34574         * gnulib-tool: New option --local-symlink.
34575         (func_usage): Document it.
34576         (lsymbolic): New variable.
34577         (func_import, func_create_testdir): If --symlink was not specified,
34578         test whether --local-symlink was specified and the file comes from
34579         the local_gnulib_dir.
34580
34581 2006-11-12  Bruno Haible  <bruno@clisp.org>
34582
34583         * gnulib-tool (func_ln): New function.
34584         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
34585
34586 2006-11-12  Bruno Haible  <bruno@clisp.org>
34587
34588         Finish support for source files in subdirectories.
34589         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
34590         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
34591         AUTOMAKE_OPTIONS.
34592         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
34593
34594 2006-11-12  Bruno Haible  <bruno@clisp.org>
34595
34596         * gnulib-tool (func_get_automake_snippet): Synthesize also an
34597         EXTRA_lib_SOURCES augmentation.
34598         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
34599
34600 2006-11-12  Jim Meyering  <jim@meyering.net>
34601
34602         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
34603         file descriptors.  This also averts a failure on systems with
34604         native openat support when a traversed directory lacks "x" access.
34605         * lib/fts_.h: Include "i-ring.h"
34606         (struct FTS) [fts_fd_ring]: New member.
34607         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
34608         (FCHDIR): Add parentheses.
34609         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
34610         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
34611         When descending, rather than simply closing the previous
34612         fts_cwd_fd value, push that file descriptor onto the ring.
34613         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
34614         (fts_open): Initialize the new fd_ring member.
34615         (fts_close): Clear the ring.
34616         (fts_safe_changedir): When possible, use our new fd_ring to skip
34617         the diropen and fstat and dev/ino comparison that would normally
34618         accompany a virtual `chdir ("..")'.
34619
34620         * modules/fts (Depends-on): Add i-ring.
34621         * modules/i-ring: New module.
34622         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
34623         * m4/i-ring.m4: New file.
34624
34625 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34626
34627         * gnulib-tool (func_create_testdir): Fix replacement of
34628         `build-aux' in configure.ac.  Run autotools in gltests
34629         subdirectory.
34630         (func_create_testdir, func_create_megatestdir, test): There is
34631         no need for '--force' in most autotool invocations in a new
34632         tree.  Actually fail the whole test if any of the tools, or the
34633         configure or make stages fail.
34634
34635         Sync from Automake.
34636         * build-aux/gnupload: Revert last change.  Add pointer to upload
34637         instructions of the GNU Maintenance Instructions.
34638         Suggestion by Karl Berry.
34639
34640 2006-11-10  Jim Meyering  <jim@meyering.net>
34641
34642         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
34643
34644 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34645
34646         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
34647         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
34648         (bind_textdomain_codeset) [! ENABLE_NLS]:
34649         Evaluate all the arguments.  That way, callers get compatible behavior
34650         if the arguments have side effects.  Also, it avoids some GCC
34651         diagnostics in some cases; Joel E. Denny reported problems when Bison
34652         was configured with --enable-gcc-warnigs.
34653
34654 2006-11-10  Jim Meyering  <jim@meyering.net>
34655
34656         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
34657         relevant options in CFLAGS (like -O, -fno-inline) are taken into
34658         account.
34659
34660 2006-11-10  Jim Meyering  <jim@meyering.net>
34661
34662         * modules/inline: New file/module.
34663         * modules/xalloc (Files): Remove m4/inline.m4.
34664         (Depends-on): Add inline, instead.
34665         * modules/oset: Likewise.
34666         * modules/list: Likewise.
34667
34668 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34669
34670         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
34671         Problem reported by Matthew Woehlke.
34672
34673 2006-11-09  Bruno Haible  <bruno@clisp.org>
34674
34675         * lib/tempname.c (gen_tempname): Remove variant that invokes
34676         __gen_tempname.
34677         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
34678         __gen_tempname.
34679
34680 2006-11-08  Bruno Haible  <bruno@clisp.org>
34681
34682         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
34683         to 'yes' instead of 'cross-compiling'.
34684
34685 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
34686
34687         * lib/quotearg.h (quotearg_free): New decl.
34688         * lib/quotearg.c (quotearg_free): New function.
34689         (slot0, nslots, slotvec0, slotvec):
34690         Now file-scope so that quotearg_free can get at them.
34691
34692 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34693
34694         Sync from Automake.
34695         * build-aux/gnupload: Add missing 'gnu' to example URL.
34696         Report by Karl Berry.
34697
34698 2006-11-08  Bruno Haible  <bruno@clisp.org>
34699
34700         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
34701         Suggested by Paul Eggert.
34702
34703 2006-11-08  Jim Meyering  <jim@meyering.net>
34704
34705         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
34706         It's already included if !_LIBC.
34707         (fts_safe_changedir): Add a comment.
34708
34709 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34710
34711         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
34712         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
34713         Matthew Woehlke.
34714
34715         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
34716         definitions up, to avoid colliding with change below.
34717         (static_inline) [HAVE_INLINE]: New macro.
34718         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
34719         Provide extern decls when !HAVE_INLINE.  Do not define unless
34720         static_inline is defined, either by us or by xmalloc.c.  Use
34721         static_inline rather than static inline.
34722         (XCALLOC): Optimize sizeof(T) = 1 case.
34723         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
34724
34725 2006-11-07  Bruno Haible  <bruno@clisp.org>
34726
34727         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
34728         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
34729         AC_C_INLINE.
34730         * modules/xalloc (Files): Add m4/inline.m4.
34731
34732 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34733
34734         * README: Fix typo.
34735         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
34736         (Miscellanous Notes): ...from this.
34737
34738 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34739
34740         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
34741         Mention that offsetof should be used instead of sizeof.
34742         From Bruno Haible.
34743
34744 2006-11-07  Bruno Haible  <bruno@clisp.org>
34745
34746         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
34747
34748 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
34749
34750         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34751         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
34752         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
34753         (gl_tree_add_before, gl_tree_add_after):
34754         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
34755         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
34756         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
34757         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
34758         (gl_linked_add_after, gl_linked_add_at): Likewise.
34759         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
34760         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
34761         (gl_tree_add_before, gl_tree_add_after): Likewise.
34762         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
34763         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
34764         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
34765
34766 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34767
34768         * lib/gl_oset.h: Use C comment style, not C++ comment style.
34769
34770 2006-11-06  Bruno Haible  <bruno@clisp.org>
34771
34772         * m4/inline.m4: New file.
34773         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
34774         * modules/list (Files): Add m4/inline.m4.
34775         * modules/oset (Files): Likewise.
34776
34777 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
34778
34779         * lib/idcache.c: Include <stddef.h>, for offsetof.
34780         (struct userid.name): Change from char * to a flexible array member.
34781         All uses changed.
34782         * modules/idcache (Depends-on): Add flexmember.
34783
34784         * MODULES.html.sh (Core language properties): New module flexmember.
34785         * modules/flexmember, m4/flexmember.m4: New files.
34786
34787         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
34788         inline functions that are identical with the old xnmalloc_inline,
34789         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
34790         that we can avoid some unnecessary integer multiplications and
34791         divisions in the common case where the element size is known at
34792         compile time.
34793         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
34794         needed.
34795         (xnboundedmalloc): Remove.
34796         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
34797         arguments, for consistency with rest of this header.
34798         (xcharalloc): Rewrite using XNMALLOC.
34799         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
34800         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
34801         versions have been moved to lib/xalloc.h and renamed to be the
34802         non-*_inline versions.
34803         (xmalloc, xrealloc): Implement without reference to the xnmalloc
34804         and xnrealloc functions, since those functions are now inline and
34805         now call us.
34806         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
34807         renaming described above.
34808         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
34809         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
34810         captures the dependency in AC_C_INLINE.
34811
34812         New module canonicalize-lgpl, proposed by Charles Wilson in
34813         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
34814         with a few small changes afterwards.
34815         * MODULES.html.sh (File system functions): New module
34816         canonicalize-lgpl.
34817         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
34818         and canonicalize_file_name.
34819         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
34820         * modules/canonicalize-lgpl: New files.
34821
34822 2006-11-05  Bruno Haible  <bruno@clisp.org>
34823
34824         * gnulib-tool (func_import, func_create_testdir): Create directories
34825         also for files in subdirectories of lib/.
34826
34827 2006-11-05  Bruno Haible  <bruno@clisp.org>
34828
34829         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
34830         ANSI C compliant.
34831
34832 2006-11-03  Bruno Haible  <bruno@clisp.org>
34833
34834         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34835         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
34836         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
34837         (xnboundedmalloc): New inline function.
34838         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
34839         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
34840         xmalloc.
34841         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
34842         xmalloc.
34843         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
34844         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
34845         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
34846         xmalloc.
34847         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34848         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
34849         xmalloc.
34850         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
34851         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34852         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
34853         xmalloc.
34854         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34855         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
34856         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34857         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
34858         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
34859         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
34860         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
34861
34862 2006-11-03  Bruno Haible  <bruno@clisp.org>
34863
34864         * lib/c-ctype.h [C++]: Define functions without name mangling.
34865         * lib/fwriteerror.h [C++]: Likewise.
34866         * lib/gcd.h [C++]: Likewise.
34867         * lib/linebreak.h [C++]: Likewise.
34868
34869 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
34870
34871         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
34872         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
34873         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
34874         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
34875         Check for functions and headers just once.
34876         Check for declaration of canonicalize_file_name.
34877         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
34878
34879 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
34880
34881         * gnulib-tool (func_import): Fix typo in actioncmd.
34882
34883 2006-11-02  Bruno Haible  <bruno@clisp.org>
34884
34885         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
34886         newline sequence in the Makefile.am snippet as a space, like "make"
34887         does.
34888         Reported by Roger Persson <perrog@gmail.com>.
34889
34890 2006-11-01  Bruno Haible  <bruno@clisp.org>
34891
34892         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
34893         already declared in <string.h>.
34894         * lib/strcase.h (strncasecmp): Don't declare it if yes.
34895
34896 2006-11-01  Bruno Haible  <bruno@clisp.org>
34897
34898         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
34899         * lib/strcase.h: Include <string.h>.
34900         (strcasecmp): Define to rpl_strcasecmp here.
34901
34902 2006-11-01  Bruno Haible  <bruno@clisp.org>
34903
34904         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
34905
34906 2006-11-01  Eric Blake  <ebb9@byu.net>
34907
34908         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
34909
34910         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
34911
34912 2006-10-29  Bruno Haible  <bruno@clisp.org>
34913
34914         Make it compile in C++ mode.
34915         * lib/full-write.c (full_rw): Add a cast.
34916
34917 2006-11-01  Bruno Haible  <bruno@clisp.org>
34918
34919         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
34920         be POSIX compliant.
34921         Reported by Roger Persson <perrog@gmail.com>.
34922
34923 2006-11-01  Eric Blake  <ebb9@byu.net>
34924
34925         * lib/getopt_.h: Fix comments.
34926
34927 2006-10-31  Eric Blake  <ebb9@byu.net>
34928
34929         * modules/tmpdir (Depends-on): Add sys_stat.
34930         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
34931         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
34932         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
34933         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
34934         tempname.
34935
34936 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
34937
34938         Avoid some C++ diagnostics reported by Bruno Haible.
34939         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
34940         xmalloc.
34941         (quotearg_alloc): Use xcharalloc rather than xmalloc.
34942         (struct slotvec): Move to top level.
34943         (quotearg_n_options): Rewrite to avoid xmalloc.
34944         * lib/xalloc.h (xcharalloc): New function.
34945         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
34946         [defined __cplusplus]: Add function template that provides result
34947         type propagation.  This part of the change is from Bruno Haible.
34948
34949 2006-10-29  Bruno Haible  <bruno@clisp.org>
34950
34951         Make it compile in C++ mode.
34952         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
34953         * lib/strnlen1.c (strnlen1): Cast memchr result.
34954         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
34955         * lib/clean-temp.c (string_equals, string_hash): Add casts.
34956         (create_temp_dir): Rename local variable 'template'.
34957         (compile_csharp_using_sscli): Add cast.
34958         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
34959         * lib/findprog.c (find_in_path): Likewise.
34960         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
34961         * lib/wait-process.c (register_slave_subprocess): Likewise.
34962
34963 2006-10-22  Bruno Haible  <bruno@clisp.org>
34964
34965         * modules/tsearch: New file.
34966         * lib/tsearch.h: New file.
34967         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
34968         * m4/tsearch.m4: New file.
34969         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
34970
34971 2006-10-29  Eric Blake  <ebb9@byu.net>
34972
34973         * lib/arcfour.c: Assume config.h.
34974         * lib/arctwo.c: Likewise.
34975         * lib/base64.c: Likewise.
34976         * lib/check-version.c: Likewise.
34977         * lib/crc.c: Likewise.
34978         * lib/des.c: Likewise.
34979         * lib/gc-gnulib.c: Likewise.
34980         * lib/gc-libgcrypt.c: Likewise.
34981         * lib/gc-pbkdf2-sha1.c: Likewise.
34982         * lib/getaddrinfo.c: Likewise.
34983         * lib/getdelim.c: Likewise.
34984         * lib/getline.c: Likewise.
34985         * lib/hmac-md5.c: Likewise.
34986         * lib/hmac-sha1.c: Likewise.
34987         * lib/iconvme.c: Likewise.
34988         * lib/md2.c: Likewise.
34989         * lib/md4.c: Likewise.
34990         * lib/memxor.c: Likewise.
34991         * lib/read-file.c: Likewise.
34992         * lib/readline.c: Likewise.
34993         * lib/rijndael-alg-fst.c: Likewise.
34994         * lib/rijndael-api-fst.c: Likewise.
34995         * lib/xgetdomainname.c: Likewise.
34996
34997 2006-10-28  Eric Blake  <ebb9@byu.net>
34998
34999         * lib/xstrndup.c: Assume config.h.
35000
35001 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
35002
35003         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
35004         stat-macros.h is now for our own macros, whereas stat_h is for
35005         macros in the <sys/stat.h> name space.
35006         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
35007         (STAT_MACROS_H): Remove.
35008         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
35009         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
35010         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
35011         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
35012         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
35013         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
35014         Move these macros to ...
35015         * lib/stat_.h: here.  Don't include stat-macros.h.
35016         * lib/canonicalize.c: Don't include stat-macros.h.
35017         * lib/chown.c: Likewise.
35018         * lib/euidaccess.c: Likewise.
35019         * lib/file-type.c: Likewise.
35020         * lib/filemode.c: Likewise.
35021         * lib/glob.c: Likewise.
35022         * lib/isapipe.c: Likewise.
35023         * lib/lchown.c: Likewise.
35024         * lib/lstat.c: Likewise.
35025         * lib/mkdir-p.c: Likewise.
35026         * lib/rmdir.c: Likewise.
35027         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
35028         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
35029         unless mkdir isn't declared, to speed up 'configure'.
35030         Always create sys/stat.h, since it's unlikely any real sys/stat.h
35031         would define all the S_* symbols.
35032         * modules/canonicalize (Depends-on):
35033         Depend on sys_stat, not stat-macros.
35034         * modules/chown: Likewise.
35035         * modules/euidaccess: Likewise.
35036         * modules/filemode: Likewise.
35037         * modules/file-type: Likewise.
35038         * modules/glob: Likewise.
35039         * modules/isapipe: Likewise.
35040         * modules/lchown: Likewise.
35041         * modules/lstat: Likewise.
35042         * modules/mkancesdirs: Likewise.
35043         * modules/rmdir: Likewise.
35044         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
35045         * modules/modechange: Likewise.
35046         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
35047         (configure.ac): Remove gl_STAT_MACROS.
35048         * modules/sys_stat (Depends-on): Remove stat-macros.
35049
35050 2006-10-27  Bruno Haible  <bruno@clisp.org>
35051
35052         * m4/signed.m4: Remove file.
35053         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
35054         invocation.
35055         * modules/vasnprintf (Files): Remove m4/signed.m4.
35056
35057 2006-10-27  Bruno Haible  <bruno@clisp.org>
35058
35059         Update to GNU gettext 0.16.
35060         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
35061         m4/inttypes-h.m4, m4/signed.m4.
35062         * m4/gettext.m4: Update to GNU gettext 0.16.
35063         * m4/intl.m4: New file, from GNU gettext.
35064         * m4/intldir.m4: New file, from GNU gettext.
35065         * config/srclist.txt: Update
35066
35067 2006-10-27  Eric Blake  <ebb9@byu.net>
35068
35069         * MODULES.html.sh: Document tempname.
35070         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
35071         dependencies.
35072         (Files): Move lib/tempname.c...
35073         * modules/tempname: ...to this new module.
35074         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
35075         (gl_PREREQ_TEMPNAME): Move...
35076         * m4/tempname.m4: ...to this new file.
35077         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
35078         * modules/sys_stat (Depends-on): Add stat-macros.
35079         * lib/stat_.h (includes): Pick up stat macros.
35080         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
35081         if stat macros are broken.
35082         * lib/tempname.c (includes): No need to include "stat-macros.h".
35083         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
35084         (direxists, __path_search) [!_LIBC]: Don't compile these in
35085         gnulib; the tmpdir module covers that.
35086         * lib/tempname.h: New file.
35087
35088 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
35089
35090         * COPYING: Explain how gnulib-tool converts licence headers.
35091         Almost all wording by Eric Blake.
35092
35093 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
35094
35095         * lib/mbchar.h (is_basic_table): Make read-only.
35096         * lib/mbchar.c (is_basic_table): Likewise.
35097         Reported by John Darrington.
35098
35099 2006-10-25  Bruno Haible  <bruno@clisp.org>
35100
35101         * lib/progname.h (set_program_name): Undefine before defining.
35102
35103 2006-10-25  Bruno Haible  <bruno@clisp.org>
35104
35105         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
35106         false for non-gcc C++ compilers.
35107         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
35108
35109 2006-10-24  Bruno Haible  <bruno@clisp.org>
35110
35111         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
35112         iconv implementations like Irix iconv.
35113
35114 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35115
35116         * modules/vararrays: New file.
35117         * m4/vararrays.m4: New file, taken from diffutils.
35118         * MODULES.html.sh: New module vararrays.
35119
35120 2006-10-24  Karl Berry  <karl@gnu.org>
35121
35122         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
35123         Don't call GNU Unix.
35124
35125 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35126
35127         * users.txt: Add Libtool.
35128
35129         Sync from Libtool:
35130
35131         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35132
35133         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
35134         to gnulib's policy of including config.h unconditionally.
35135
35136 2006-10-24  Bruno Haible  <bruno@clisp.org>
35137
35138         * modules/wcwidth (Files): Add m4/wint_t.m4.
35139         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
35140         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
35141
35142 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35143
35144         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
35145         to pacify GCC with some -W flags enabled.  Problem reported by
35146         Bruno Haible.
35147
35148 2006-10-24  Jim Meyering  <jim@meyering.net>
35149
35150         * MODULES.html.sh: Remove uinttostr.  It's not a module.
35151         Reported by Karl Berry.
35152
35153 2006-10-23  Bruno Haible  <bruno@clisp.org>
35154
35155         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
35156
35157 2006-10-24  Bruno Haible  <bruno@clisp.org>
35158
35159         * lib/gl_list.h: Use C comment style, not C++ comment style.
35160
35161 2006-10-23  Eric Blake  <ebb9@byu.net>
35162
35163         * lib/getaddrinfo.c (includes): Add missing include.
35164
35165 2006-10-23  Bruno Haible  <bruno@clisp.org>
35166             Paul Eggert  <eggert@cs.ucla.edu>
35167
35168         Ability to rename obstack_free.
35169         * lib/obstack.h (__obstack_free): New macro. Declare instead of
35170         obstack_free.
35171         (obstack_free): Invoke the __obstack_free macro.
35172         * lib/obstack.c (obstack_free): Use __obstack_free macro.
35173
35174 2006-10-23  Bruno Haible  <bruno@clisp.org>
35175             Paul Eggert  <eggert@cs.ucla.edu>
35176
35177         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
35178         __argc, __argv from the declaration. (They are defined as macros on
35179         mingw.)
35180
35181 2006-10-22  Bruno Haible  <bruno@clisp.org>
35182
35183         * doc/gnulib-intro.texi: New file.
35184         * doc/gnulib.texi: Include it.
35185
35186 2006-10-21  Bruno Haible  <bruno@clisp.org>
35187
35188         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
35189         "Introduction", "Miscellanous Notes", "Particular Modules".
35190
35191 2006-10-21  Bruno Haible  <bruno@clisp.org>
35192
35193         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35194         Change mostlyclean-local rule to avoid sh syntax error from bash
35195         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
35196
35197 2006-10-23  Jim Meyering  <jim@meyering.net>
35198
35199         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
35200         in place of snprintf.
35201
35202         * modules/inttostr (Files): Add lib/uinttostr.c.
35203         * lib/uinttostr.c (inttostr): New file/function.
35204         * lib/inttostr.h (uinttostr): Declare.
35205         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
35206         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
35207         Add uinttostr.
35208         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
35209
35210 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35211
35212         * lib/canonicalize.c (ELOOP): Define if not already defined.
35213         Problem reported by Bruno Haible in
35214         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
35215
35216 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35217
35218         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
35219         Problem reported by Perry Smith and Ville Laurikari.
35220
35221         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
35222         uses.
35223
35224 2006-10-19  Bruno Haible  <bruno@clisp.org>
35225
35226         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
35227         for mingw.
35228
35229 2006-10-19  Bruno Haible  <bruno@clisp.org>
35230
35231         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
35232         Needed for mingw.
35233
35234 2006-10-19  Bruno Haible  <bruno@clisp.org>
35235
35236         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
35237
35238 2006-10-19  Bruno Haible  <bruno@clisp.org>
35239
35240         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
35241         it.
35242
35243 2006-10-19  Bruno Haible  <bruno@clisp.org>
35244
35245         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
35246         invocation.
35247
35248 2006-10-19  Bruno Haible  <bruno@clisp.org>
35249
35250         * gnulib-tool (func_create_testdir): Don't include ftruncate and
35251         mountlist by default.
35252
35253 2006-10-16  Bruno Haible  <bruno@clisp.org>
35254
35255         * lib/c-strstr.c: Include c-strstr.h.
35256
35257 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
35258
35259         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
35260         in a slash.
35261
35262 2006-10-18  Bruno Haible  <bruno@clisp.org>
35263
35264         * lib/lock.h [C++]: Wrap definitions in extern "C".
35265
35266 2006-10-18  Bruno Haible  <bruno@clisp.org>
35267
35268         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
35269         gl_LIBOBJS list.
35270
35271 2006-10-18  Bruno Haible  <bruno@clisp.org>
35272
35273         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
35274
35275 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
35276
35277         * lib/xstrtol.h: Include gettext.h.
35278         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
35279         Problem reported by Eric Blake.
35280         * modules/xstrtol (Depends-on): Add gettext-h.
35281
35282 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
35283
35284         * lib/strftime.c (advance): New macro.
35285         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
35286         incomplete type, so you can't add 0 to it.  Problem and patch
35287         reported by Eelco Dolstra for dietlibc.
35288
35289 2006-10-18  Jim Meyering  <jim@meyering.net>
35290
35291         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
35292         type for a local, and rename it: s/up/user_proc/.
35293
35294 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
35295
35296         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
35297         READ_UTMP_USER_PROCESS.
35298         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
35299
35300 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
35301
35302         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
35303         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
35304
35305 2006-10-17  Eric Blake  <ebb9@byu.net>
35306
35307         * lib/sigprocmask.c (sigprocmask): Fix typo.
35308
35309         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
35310
35311         * modules/clean-temp (Makefile.am): Don't add to make output...
35312         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
35313         config.h.
35314
35315 2006-10-17  Bruno Haible  <bruno@clisp.org>
35316
35317         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
35318         differently if DEFAULT_TEXT_DOMAIN is set.
35319
35320 2006-10-16  Bruno Haible  <bruno@clisp.org>
35321
35322         * lib/clean-temp.c: Include fwriteerror.h.
35323
35324 2006-10-16  Bruno Haible  <bruno@clisp.org>
35325
35326         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
35327
35328 2006-10-16  Bruno Haible  <bruno@clisp.org>
35329
35330         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
35331         * lib/sigprocmask.h: Include <sys/types.h>.
35332         (sigset_t): Use the system's definition if present.
35333
35334 2006-10-17  Eric Blake  <ebb9@byu.net>
35335
35336         * lib/xvasprintf.c (includes): Assume config.h.
35337         * lib/xasprintf.c (includes): Likewise.
35338
35339 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
35340
35341         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
35342         at least as wide as intmax_t.
35343
35344 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
35345
35346         (Imported from Automake.)
35347         * build-aux/gnupload: Update to version 1.1 of directive file.
35348
35349 2006-10-16  Eric Blake  <ebb9@byu.net>
35350
35351         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
35352         match Automake 1.10a.
35353
35354 2006-10-14  Bruno Haible  <bruno@clisp.org>
35355
35356         * modules/sigprocmask: New file.
35357         * lib/sigprocmask.h: New file.
35358         * lib/sigprocmask.c: New file.
35359         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
35360         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
35361         request sigprocmask.o.
35362         (gl_PREREQ_SIGPROCMASK): New macro.
35363         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
35364         (Depends-on): Add sigprocmask.
35365         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
35366         gt_SIGNALBLOCKING. Test for 'raise' only once.
35367         * lib/fatal-signal.c: Include sigprocmask.h.
35368         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
35369         unblock_fatal_signals): Define always.
35370         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
35371         sigprocmask.
35372
35373 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
35374
35375         Sync from Automake.
35376         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
35377         which incorrectly sets the mode of an existing destination
35378         directory.  In some cases the unpatched install-sh could do the
35379         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
35380         system.  We hope this is rare in practice, but it's clearly worth
35381         fixing.  Problem reported by Alex Unleashed in
35382         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
35383         Also, don't bother to check for -m bugs unless we're using -m;
35384         suggested by Stepan Kasal.
35385
35386 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35387
35388         Sync from Automake.
35389         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
35390         `-c' flag, so they appear at the same position as in %FASTDEP%
35391         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
35392         which ignores unknown options only after the first non-option.
35393         Bug report against M4 by Nelson H. F. Beebe.
35394
35395 2006-10-13  Jim Meyering  <jim@meyering.net>
35396
35397         Fix a bug in yesterday's change.
35398         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
35399         p->fts_statp->st_dev would be used uninitialized.
35400         Ensures that we always call fts_stat on the very first entry.
35401         Miklos Szeredi reported that find -xdev stopped working.
35402
35403 2006-10-12  Bruno Haible  <bruno@clisp.org>
35404
35405         * gnulib-tool (func_get_automake_snippet): Append an automatically
35406         computed EXTRA_DIST augmentation.
35407         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
35408         * modules/alloca-opt (Makefile.am): Likewise.
35409         * modules/allocsa (Makefile.am): Likewise.
35410         * modules/arcfour (Makefile.am): Likewise.
35411         * modules/arctwo (Makefile.am): Likewise.
35412         * modules/argmatch (Makefile.am): Likewise.
35413         * modules/argz (Makefile.am): Likewise.
35414         * modules/atexit (Makefile.am): Likewise.
35415         * modules/backupfile (Makefile.am): Likewise.
35416         * modules/byteswap (Makefile.am): Likewise.
35417         * modules/c-strtod (Makefile.am): Likewise.
35418         * modules/c-strtold (Makefile.am): Likewise.
35419         * modules/calloc (Makefile.am): Likewise.
35420         * modules/canon-host (Makefile.am): Likewise.
35421         * modules/canonicalize (Makefile.am): Likewise.
35422         * modules/chdir-long (Makefile.am): Likewise.
35423         * modules/chdir-safer (Makefile.am): Likewise.
35424         * modules/check-version (Makefile.am): Likewise.
35425         * modules/chown (Makefile.am): Likewise.
35426         * modules/cloexec (Makefile.am): Likewise.
35427         * modules/close-stream (Makefile.am): Likewise.
35428         * modules/closeout (Makefile.am): Likewise.
35429         * modules/crc (Makefile.am): Likewise.
35430         * modules/csharpexec (Makefile.am): Likewise.
35431         * modules/cycle-check (Makefile.am): Likewise.
35432         * modules/des (Makefile.am): Likewise.
35433         * modules/dev-ino (Makefile.am): Likewise.
35434         * modules/dirfd (Makefile.am): Likewise.
35435         * modules/dirname (Makefile.am): Likewise.
35436         * modules/dup2 (Makefile.am): Likewise.
35437         * modules/eealloc (Makefile.am): Likewise.
35438         * modules/error (Makefile.am): Likewise.
35439         * modules/euidaccess (Makefile.am): Likewise.
35440         * modules/exclude (Makefile.am): Likewise.
35441         * modules/exitfail (Makefile.am): Likewise.
35442         * modules/fcntl-safer (Makefile.am): Likewise.
35443         * modules/fcntl (Makefile.am): Likewise.
35444         * modules/file-type (Makefile.am): Likewise.
35445         * modules/fileblocks (Makefile.am): Likewise.
35446         * modules/filemode (Makefile.am): Likewise.
35447         * modules/filenamecat (Makefile.am): Likewise.
35448         * modules/fnmatch (Makefile.am): Likewise.
35449         * modules/fopen-safer (Makefile.am): Likewise.
35450         * modules/fpending (Makefile.am): Likewise.
35451         * modules/fprintftime (Makefile.am): Likewise.
35452         * modules/free (Makefile.am): Likewise.
35453         * modules/fsusage (Makefile.am): Likewise.
35454         * modules/ftruncate (Makefile.am): Likewise.
35455         * modules/fts (Makefile.am): Likewise.
35456         * modules/gc-arcfour (Makefile.am): Likewise.
35457         * modules/gc-des (Makefile.am): Likewise.
35458         * modules/gc-hmac-md5 (Makefile.am): Likewise.
35459         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
35460         * modules/gc-md4 (Makefile.am): Likewise.
35461         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35462         * modules/gc-sha1 (Makefile.am): Likewise.
35463         * modules/gc (Makefile.am): Likewise.
35464         * modules/getaddrinfo (Makefile.am): Likewise.
35465         * modules/getcwd (Makefile.am): Likewise.
35466         * modules/getdelim (Makefile.am): Likewise.
35467         * modules/getdomainname (Makefile.am): Likewise.
35468         * modules/getgroups (Makefile.am): Likewise.
35469         * modules/gethostname (Makefile.am): Likewise.
35470         * modules/gethrxtime (Makefile.am): Likewise.
35471         * modules/getline (Makefile.am): Likewise.
35472         * modules/getloadavg (Makefile.am): Likewise.
35473         * modules/getlogin_r (Makefile.am): Likewise.
35474         * modules/getndelim2 (Makefile.am): Likewise.
35475         * modules/getopt (Makefile.am): Likewise.
35476         * modules/getpagesize (Makefile.am): Likewise.
35477         * modules/getpass-gnu (Makefile.am): Likewise.
35478         * modules/getpass (Makefile.am): Likewise.
35479         * modules/getsubopt (Makefile.am): Likewise.
35480         * modules/gettime (Makefile.am): Likewise.
35481         * modules/gettimeofday (Makefile.am): Likewise.
35482         * modules/getugroups (Makefile.am): Likewise.
35483         * modules/getusershell (Makefile.am): Likewise.
35484         * modules/glob (Makefile.am): Likewise.
35485         * modules/group-member (Makefile.am): Likewise.
35486         * modules/hard-locale (Makefile.am): Likewise.
35487         * modules/hash (Makefile.am): Likewise.
35488         * modules/hmac-md5 (Makefile.am): Likewise.
35489         * modules/hmac-sha1 (Makefile.am): Likewise.
35490         * modules/human (Makefile.am): Likewise.
35491         * modules/idcache (Makefile.am): Likewise.
35492         * modules/imaxabs (Makefile.am): Likewise.
35493         * modules/imaxdiv (Makefile.am): Likewise.
35494         * modules/inet_ntop (Makefile.am): Likewise.
35495         * modules/inet_pton (Makefile.am): Likewise.
35496         * modules/intprops (Makefile.am): Likewise.
35497         * modules/inttostr (Makefile.am): Likewise.
35498         * modules/inttypes (Makefile.am): Likewise.
35499         * modules/isapipe (Makefile.am): Likewise.
35500         * modules/javaversion (Makefile.am): Likewise.
35501         * modules/lchmod (Makefile.am): Likewise.
35502         * modules/lchown (Makefile.am): Likewise.
35503         * modules/localcharset (Makefile.am): Likewise.
35504         * modules/long-options (Makefile.am): Likewise.
35505         * modules/lstat (Makefile.am): Likewise.
35506         * modules/malloc (Makefile.am): Likewise.
35507         * modules/mathl (Makefile.am): Likewise.
35508         * modules/mbchar (Makefile.am): Likewise.
35509         * modules/md2 (Makefile.am): Likewise.
35510         * modules/md4 (Makefile.am): Likewise.
35511         * modules/md5 (Makefile.am): Likewise.
35512         * modules/memcasecmp (Makefile.am): Likewise.
35513         * modules/memchr (Makefile.am): Likewise.
35514         * modules/memcmp (Makefile.am): Likewise.
35515         * modules/memcoll (Makefile.am): Likewise.
35516         * modules/memcpy (Makefile.am): Likewise.
35517         * modules/memmem (Makefile.am): Likewise.
35518         * modules/memmove (Makefile.am): Likewise.
35519         * modules/mempcpy (Makefile.am): Likewise.
35520         * modules/memrchr (Makefile.am): Likewise.
35521         * modules/memset (Makefile.am): Likewise.
35522         * modules/memxor (Makefile.am): Likewise.
35523         * modules/mkancesdirs (Makefile.am): Likewise.
35524         * modules/mkdir-p (Makefile.am): Likewise.
35525         * modules/mkdir (Makefile.am): Likewise.
35526         * modules/mkdtemp (Makefile.am): Likewise.
35527         * modules/mkstemp (Makefile.am): Likewise.
35528         * modules/mktime (Makefile.am): Likewise.
35529         * modules/modechange (Makefile.am): Likewise.
35530         * modules/mountlist (Makefile.am): Likewise.
35531         * modules/nanosleep (Makefile.am): Likewise.
35532         * modules/obstack (Makefile.am): Likewise.
35533         * modules/openat (Makefile.am): Likewise.
35534         * modules/pagealign_alloc (Makefile.am): Likewise.
35535         * modules/pathmax (Makefile.am): Likewise.
35536         * modules/physmem (Makefile.am): Likewise.
35537         * modules/poll (Makefile.am): Likewise.
35538         * modules/posixtm (Makefile.am): Likewise.
35539         * modules/posixver (Makefile.am): Likewise.
35540         * modules/putenv (Makefile.am): Likewise.
35541         * modules/quote (Makefile.am): Likewise.
35542         * modules/quotearg (Makefile.am): Likewise.
35543         * modules/raise (Makefile.am): Likewise.
35544         * modules/read-file (Makefile.am): Likewise.
35545         * modules/readline (Makefile.am): Likewise.
35546         * modules/readlink (Makefile.am): Likewise.
35547         * modules/readtokens (Makefile.am): Likewise.
35548         * modules/readutmp (Makefile.am): Likewise.
35549         * modules/realloc (Makefile.am): Likewise.
35550         * modules/regex (Makefile.am): Likewise.
35551         * modules/rename-dest-slash (Makefile.am): Likewise.
35552         * modules/rename (Makefile.am): Likewise.
35553         * modules/rijndael (Makefile.am): Likewise.
35554         * modules/rmdir (Makefile.am): Likewise.
35555         * modules/rpmatch (Makefile.am): Likewise.
35556         * modules/safe-read (Makefile.am): Likewise.
35557         * modules/safe-write (Makefile.am): Likewise.
35558         * modules/same-inode (Makefile.am): Likewise.
35559         * modules/same (Makefile.am): Likewise.
35560         * modules/save-cwd (Makefile.am): Likewise.
35561         * modules/savedir (Makefile.am): Likewise.
35562         * modules/setenv (Makefile.am): Likewise.
35563         * modules/settime (Makefile.am): Likewise.
35564         * modules/sha1 (Makefile.am): Likewise.
35565         * modules/sig2str (Makefile.am): Likewise.
35566         * modules/snprintf (Makefile.am): Likewise.
35567         * modules/stat-macros (Makefile.am): Likewise.
35568         * modules/stat-time (Makefile.am): Likewise.
35569         * modules/stdbool (Makefile.am): Likewise.
35570         * modules/stdint (Makefile.am): Likewise.
35571         * modules/stdlib-safer (Makefile.am): Likewise.
35572         * modules/stpcpy (Makefile.am): Likewise.
35573         * modules/stpncpy (Makefile.am): Likewise.
35574         * modules/strcase (Makefile.am): Likewise.
35575         * modules/strcasestr (Makefile.am): Likewise.
35576         * modules/strchrnul (Makefile.am): Likewise.
35577         * modules/strcspn (Makefile.am): Likewise.
35578         * modules/strdup (Makefile.am): Likewise.
35579         * modules/strerror (Makefile.am): Likewise.
35580         * modules/strftime (Makefile.am): Likewise.
35581         * modules/strndup (Makefile.am): Likewise.
35582         * modules/strnlen (Makefile.am): Likewise.
35583         * modules/strpbrk (Makefile.am): Likewise.
35584         * modules/strsep (Makefile.am): Likewise.
35585         * modules/strstr (Makefile.am): Likewise.
35586         * modules/strtod (Makefile.am): Likewise.
35587         * modules/strtoimax (Makefile.am): Likewise.
35588         * modules/strtok_r (Makefile.am): Likewise.
35589         * modules/strtol (Makefile.am): Likewise.
35590         * modules/strtoll (Makefile.am): Likewise.
35591         * modules/strtoul (Makefile.am): Likewise.
35592         * modules/strtoull (Makefile.am): Likewise.
35593         * modules/strtoumax (Makefile.am): Likewise.
35594         * modules/strverscmp (Makefile.am): Likewise.
35595         * modules/sys_socket (Makefile.am): Likewise.
35596         * modules/sys_stat (Makefile.am): Likewise.
35597         * modules/sysexits (Makefile.am): Likewise.
35598         * modules/time_r (Makefile.am): Likewise.
35599         * modules/timegm (Makefile.am): Likewise.
35600         * modules/timespec (Makefile.am): Likewise.
35601         * modules/tmpfile-safer (Makefile.am): Likewise.
35602         * modules/trim (Makefile.am): Likewise.
35603         * modules/unistd-safer (Makefile.am): Likewise.
35604         * modules/unlinkdir (Makefile.am): Likewise.
35605         * modules/unlocked-io (Makefile.am): Likewise.
35606         * modules/userspec (Makefile.am): Likewise.
35607         * modules/utime (Makefile.am): Likewise.
35608         * modules/utimecmp (Makefile.am): Likewise.
35609         * modules/utimens (Makefile.am): Likewise.
35610         * modules/vasnprintf (Makefile.am): Likewise.
35611         * modules/vasprintf (Makefile.am): Likewise.
35612         * modules/vsnprintf (Makefile.am): Likewise.
35613         * modules/xalloc (Makefile.am): Likewise.
35614         * modules/xgetcwd (Makefile.am): Likewise.
35615         * modules/xnanosleep (Makefile.am): Likewise.
35616         * modules/xreadlink (Makefile.am): Likewise.
35617         * modules/xstrtod (Makefile.am): Likewise.
35618         * modules/xstrtol (Makefile.am): Likewise.
35619         * modules/xstrtold (Makefile.am): Likewise.
35620         * modules/yesno (Makefile.am): Likewise.
35621         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
35622
35623 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35624
35625         * modules/error (Makefile.am): Distribute files through
35626         EXTRA_DIST, not lib_SOURCES.
35627
35628 2006-10-12  Eric Blake  <ebb9@byu.net>
35629
35630         * modules/error (Makefile.am): Distribute files in /lib.
35631         * modules/obstack (Makefile.am): Likewise.
35632
35633 2006-10-12  Bruno Haible  <bruno@clisp.org>
35634
35635         * modules/acl (Makefile.am): Distribute all files in lib/ through
35636         EXTRA_DIST.
35637         * modules/arcfour (Makefile.am): Likewise.
35638         * modules/arctwo (Makefile.am): Likewise.
35639         * modules/argmatch (Makefile.am): Likewise.
35640         * modules/argz (Makefile.am): Likewise.
35641         * modules/atexit (Makefile.am): Likewise.
35642         * modules/backupfile (Makefile.am): Likewise.
35643         * modules/c-strtod (Makefile.am): Likewise.
35644         * modules/c-strtold (Makefile.am): Likewise.
35645         * modules/calloc (Makefile.am): Likewise.
35646         * modules/canon-host (Makefile.am): Likewise.
35647         * modules/canonicalize (Makefile.am): Likewise.
35648         * modules/chdir-long (Makefile.am): Likewise.
35649         * modules/chdir-safer (Makefile.am): Likewise.
35650         * modules/check-version (Makefile.am): Likewise.
35651         * modules/chown (Makefile.am): Likewise.
35652         * modules/cloexec (Makefile.am): Likewise.
35653         * modules/close-stream (Makefile.am): Likewise.
35654         * modules/closeout (Makefile.am): Likewise.
35655         * modules/crc (Makefile.am): Likewise.
35656         * modules/cycle-check (Makefile.am): Likewise.
35657         * modules/des (Makefile.am): Likewise.
35658         * modules/dirfd (Makefile.am): Likewise.
35659         * modules/dirname (Makefile.am): Likewise.
35660         * modules/dup2 (Makefile.am): Likewise.
35661         * modules/euidaccess (Makefile.am): Likewise.
35662         * modules/exclude (Makefile.am): Likewise.
35663         * modules/exitfail (Makefile.am): Likewise.
35664         * modules/fcntl-safer (Makefile.am): Likewise.
35665         * modules/file-type (Makefile.am): Likewise.
35666         * modules/fileblocks (Makefile.am): Likewise.
35667         * modules/filemode (Makefile.am): Likewise.
35668         * modules/filenamecat (Makefile.am): Likewise.
35669         * modules/fnmatch (Makefile.am): Likewise.
35670         * modules/fopen-safer (Makefile.am): Likewise.
35671         * modules/fpending (Makefile.am): Likewise.
35672         * modules/fprintftime (Makefile.am): Likewise.
35673         * modules/free (Makefile.am): Likewise.
35674         * modules/fsusage (Makefile.am): Likewise.
35675         * modules/ftruncate (Makefile.am): Likewise.
35676         * modules/fts (Makefile.am): Likewise.
35677         * modules/gc (Makefile.am): Likewise.
35678         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35679         * modules/getaddrinfo (Makefile.am): Likewise.
35680         * modules/getcwd (Makefile.am): Likewise.
35681         * modules/getdelim (Makefile.am): Likewise.
35682         * modules/getdomainname (Makefile.am): Likewise.
35683         * modules/getgroups (Makefile.am): Likewise.
35684         * modules/gethostname (Makefile.am): Likewise.
35685         * modules/gethrxtime (Makefile.am): Likewise.
35686         * modules/getline (Makefile.am): Likewise.
35687         * modules/getloadavg (Makefile.am): Likewise.
35688         * modules/getlogin_r (Makefile.am): Likewise.
35689         * modules/getopt (Makefile.am): Likewise.
35690         * modules/getpass (Makefile.am): Likewise.
35691         * modules/getpass-gnu (Makefile.am): Likewise.
35692         * modules/getsubopt (Makefile.am): Likewise.
35693         * modules/gettime (Makefile.am): Likewise.
35694         * modules/gettimeofday (Makefile.am): Likewise.
35695         * modules/getugroups (Makefile.am): Likewise.
35696         * modules/getusershell (Makefile.am): Likewise.
35697         * modules/glob (Makefile.am): Likewise.
35698         * modules/group-member (Makefile.am): Likewise.
35699         * modules/hard-locale (Makefile.am): Likewise.
35700         * modules/hash (Makefile.am): Likewise.
35701         * modules/hmac-md5 (Makefile.am): Likewise.
35702         * modules/hmac-sha1 (Makefile.am): Likewise.
35703         * modules/human (Makefile.am): Likewise.
35704         * modules/idcache (Makefile.am): Likewise.
35705         * modules/imaxabs (Makefile.am): Likewise.
35706         * modules/imaxdiv (Makefile.am): Likewise.
35707         * modules/inet_ntop (Makefile.am): Likewise.
35708         * modules/inet_pton (Makefile.am): Likewise.
35709         * modules/inttostr (Makefile.am): Likewise.
35710         * modules/isapipe (Makefile.am): Likewise.
35711         * modules/lchown (Makefile.am): Likewise.
35712         * modules/long-options (Makefile.am): Likewise.
35713         * modules/lstat (Makefile.am): Likewise.
35714         * modules/malloc (Makefile.am): Likewise.
35715         * modules/mathl (Makefile.am): Likewise.
35716         * modules/mbchar (Makefile.am): Likewise.
35717         * modules/md2 (Makefile.am): Likewise.
35718         * modules/md4 (Makefile.am): Likewise.
35719         * modules/md5 (Makefile.am): Likewise.
35720         * modules/memcasecmp (Makefile.am): Likewise.
35721         * modules/memchr (Makefile.am): Likewise.
35722         * modules/memcmp (Makefile.am): Likewise.
35723         * modules/memcoll (Makefile.am): Likewise.
35724         * modules/memcpy (Makefile.am): Likewise.
35725         * modules/memmem (Makefile.am): Likewise.
35726         * modules/memmove (Makefile.am): Likewise.
35727         * modules/mempcpy (Makefile.am): Likewise.
35728         * modules/memrchr (Makefile.am): Likewise.
35729         * modules/memset (Makefile.am): Likewise.
35730         * modules/memxor (Makefile.am): Likewise.
35731         * modules/mkancesdirs (Makefile.am): Likewise.
35732         * modules/mkdir (Makefile.am): Likewise.
35733         * modules/mkdir-p (Makefile.am): Likewise.
35734         * modules/mkdtemp (Makefile.am): Likewise.
35735         * modules/mkstemp (Makefile.am): Likewise.
35736         * modules/mktime (Makefile.am): Likewise.
35737         * modules/modechange (Makefile.am): Likewise.
35738         * modules/mountlist (Makefile.am): Likewise.
35739         * modules/nanosleep (Makefile.am): Likewise.
35740         * modules/openat (Makefile.am): Likewise.
35741         * modules/pagealign_alloc (Makefile.am): Likewise.
35742         * modules/physmem (Makefile.am): Likewise.
35743         * modules/poll (Makefile.am): Likewise.
35744         * modules/posixtm (Makefile.am): Likewise.
35745         * modules/posixver (Makefile.am): Likewise.
35746         * modules/putenv (Makefile.am): Likewise.
35747         * modules/quote (Makefile.am): Likewise.
35748         * modules/quotearg (Makefile.am): Likewise.
35749         * modules/raise (Makefile.am): Likewise.
35750         * modules/read-file (Makefile.am): Likewise.
35751         * modules/readline (Makefile.am): Likewise.
35752         * modules/readlink (Makefile.am): Likewise.
35753         * modules/readtokens (Makefile.am): Likewise.
35754         * modules/readutmp (Makefile.am): Likewise.
35755         * modules/realloc (Makefile.am): Likewise.
35756         * modules/regex (Makefile.am): Likewise.
35757         * modules/rename (Makefile.am): Likewise.
35758         * modules/rename-dest-slash (Makefile.am): Likewise.
35759         * modules/rijndael (Makefile.am): Likewise.
35760         * modules/rmdir (Makefile.am): Likewise.
35761         * modules/rpmatch (Makefile.am): Likewise.
35762         * modules/safe-read (Makefile.am): Likewise.
35763         * modules/safe-write (Makefile.am): Likewise.
35764         * modules/same (Makefile.am): Likewise.
35765         * modules/save-cwd (Makefile.am): Likewise.
35766         * modules/savedir (Makefile.am): Likewise.
35767         * modules/setenv (Makefile.am): Likewise.
35768         * modules/settime (Makefile.am): Likewise.
35769         * modules/sha1 (Makefile.am): Likewise.
35770         * modules/sig2str (Makefile.am): Likewise.
35771         * modules/snprintf (Makefile.am): Likewise.
35772         * modules/stdlib-safer (Makefile.am): Likewise.
35773         * modules/stpcpy (Makefile.am): Likewise.
35774         * modules/stpncpy (Makefile.am): Likewise.
35775         * modules/strcase (Makefile.am): Likewise.
35776         * modules/strcasestr (Makefile.am): Likewise.
35777         * modules/strchrnul (Makefile.am): Likewise.
35778         * modules/strcspn (Makefile.am): Likewise.
35779         * modules/strdup (Makefile.am): Likewise.
35780         * modules/strerror (Makefile.am): Likewise.
35781         * modules/strftime (Makefile.am): Likewise.
35782         * modules/strndup (Makefile.am): Likewise.
35783         * modules/strnlen (Makefile.am): Likewise.
35784         * modules/strpbrk (Makefile.am): Likewise.
35785         * modules/strsep (Makefile.am): Likewise.
35786         * modules/strstr (Makefile.am): Likewise.
35787         * modules/strtod (Makefile.am): Likewise.
35788         * modules/strtoimax (Makefile.am): Likewise.
35789         * modules/strtok_r (Makefile.am): Likewise.
35790         * modules/strtol (Makefile.am): Likewise.
35791         * modules/strtoll (Makefile.am): Likewise.
35792         * modules/strtoul (Makefile.am): Likewise.
35793         * modules/strtoull (Makefile.am): Likewise.
35794         * modules/strtoumax (Makefile.am): Likewise.
35795         * modules/strverscmp (Makefile.am): Likewise.
35796         * modules/time_r (Makefile.am): Likewise.
35797         * modules/timegm (Makefile.am): Likewise.
35798         * modules/tmpfile-safer (Makefile.am): Likewise.
35799         * modules/unistd-safer (Makefile.am): Likewise.
35800         * modules/unlinkdir (Makefile.am): Likewise.
35801         * modules/userspec (Makefile.am): Likewise.
35802         * modules/utime (Makefile.am): Likewise.
35803         * modules/utimecmp (Makefile.am): Likewise.
35804         * modules/utimens (Makefile.am): Likewise.
35805         * modules/vasnprintf (Makefile.am): Likewise.
35806         * modules/vasprintf (Makefile.am): Likewise.
35807         * modules/vsnprintf (Makefile.am): Likewise.
35808         * modules/xalloc (Makefile.am): Likewise.
35809         * modules/xgetcwd (Makefile.am): Likewise.
35810         * modules/xnanosleep (Makefile.am): Likewise.
35811         * modules/xreadlink (Makefile.am): Likewise.
35812         * modules/xstrtod (Makefile.am): Likewise.
35813         * modules/xstrtol (Makefile.am): Likewise.
35814         * modules/xstrtold (Makefile.am): Likewise.
35815         * modules/yesno (Makefile.am): Likewise.
35816
35817 2006-10-12  Jim Meyering  <jim@meyering.net>
35818
35819         * m4/getloadavg.m4: Revert the change below.
35820
35821         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
35822         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
35823         fail with a symlink, which is what coreutils' ./bootstrap now
35824         creates by default.
35825
35826 2006-10-12  Bruno Haible  <bruno@clisp.org>
35827
35828         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
35829         mingw.
35830         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
35831         MSVC and mingw explicitly.
35832
35833 2006-10-11  Simon Josefsson  <jas@extundo.com>
35834             Bruno Haible  <bruno@clisp.org>
35835
35836         Add support for multiple gnulib-tool invocations in the scope of a
35837         single configure.ac file.
35838         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
35839         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
35840         with the same contents as the _LIBADD variable.
35841         (func_emit_initmacro_start, func_emit_initmacro_end,
35842         func_emit_initmacro_done): New functions.
35843         (func_import, func_create_testdir): Invoke them. Allow the identifiers
35844         gl_LIBOBJS and gl_LTLIBOBJS.
35845
35846 2006-10-11  Bruno Haible  <bruno@clisp.org>
35847
35848         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
35849         (func_create_testdir): Don't create po/Makefile.am, don't invoke
35850         autoreconf. Instead, invoke autopoint explicitly but move back the
35851         *.m4 files from gnulib.
35852
35853 2006-10-11  Bruno Haible  <bruno@clisp.org>
35854
35855         * gnulib-tool (func_usage): Make module names after --create-testdir
35856         optional.
35857         (func_create_testdir): If no module was specified, use nearly all
35858         modules.
35859
35860 2006-10-12  Jim Meyering  <jim@meyering.net>
35861
35862         Big performance improvement for fts-based tools that use FTS_NOSTAT.
35863         Avoid spurious inode-mismatch problems on non-POSIX file systems.
35864         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
35865         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
35866         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
35867         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
35868         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
35869         (fts_set_stat_required): New function.
35870         (fts_open): Defer the calls to fts_stat, if possible or requested.
35871         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
35872         into fts_stat itself.
35873         (fts_read): Perform any required (deferred) fts_stat call.
35874         (fts_build): Likewise, for the directory we're about to open and read.
35875         In the readdir loop, carefully decide whether each entry will require
35876         an eventual call to fts_stat, using dirent.d_type info if available.
35877         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
35878         a command line argument into this function.  Update all callers.
35879         Map a return value of FTS_DOT to FTS_D for a command line argument.
35880         * modules/fts (Depends-on): Add d-type.  Alphabetize.
35881         Thanks to Miklos Szeredi for his tenacity and for the initial
35882         bug report about "find" failing on a FUSE-based file system.
35883
35884         * lib/fts.c (fts_open): Use consistent indentation.
35885
35886 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35887
35888         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
35889         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
35890         reported by Jim Meyering.  All uses of cache variables renamed
35891         to match Autoconf's.
35892         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
35893         the other one.
35894
35895         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
35896         Fix misspelling in diagnostic.
35897
35898 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35899
35900         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
35901         defined.  Problem reported by Matthew Woehlke.
35902
35903         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
35904         Add support for Tandem NonStop R series.
35905         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
35906         Use new macro.
35907
35908         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
35909         (has_trailing_slash): Omit size arg; all callers changed.
35910         Omit 'inline', since it doesn't help performance and we'd
35911         need to configure it.
35912         Don't count //, ///, etc. as having a trailing slash.
35913         As a side effect, this removes a C99ism reported by Matthew Woehlke.
35914         (rpl_rename_dest_slash): On failure, use rename's errno rather
35915         than (in some cases) an incorrect or junk errno.
35916         Simplify code by removing need to compute length; this does
35917         cause it to make two passes instead of one over the file name,
35918         but it's worth it.
35919
35920         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
35921         change, since Autoconf's version may no longer be appropriate now
35922         that we are using CVS Autoconf's version.  Add support for Tandem.
35923
35924 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35925             Bruno Haible  <bruno@clisp.org>
35926
35927         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
35928         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
35929         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
35930         gl_AC_TYPE_LONG_LONG.
35931
35932         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
35933         instead of HAVE_LONG_LONG.
35934         * lib/printf-args.c (printf_fetchargs): Likewise.
35935         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
35936         * lib/vasnprintf.c (VASNPRINTF): Likewise.
35937         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
35938         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
35939         gl_AC_TYPE_LONG_LONG.
35940
35941 2006-10-11  Bruno Haible  <bruno@clisp.org>
35942
35943         * m4/longlong.m4: Add comments.
35944         * m4/ulonglong.m4: Likewise.
35945
35946 2006-10-10  Bruno Haible  <bruno@clisp.org>
35947
35948         Make it possible to #define stpcpy, strdup to aliases.
35949         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
35950         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
35951
35952 2006-10-10  Bruno Haible  <bruno@clisp.org>
35953
35954         Make it possible to #define gcd to an alias.
35955         * lib/gcd.c: Include config.h.
35956
35957 2006-10-10  Bruno Haible  <bruno@clisp.org>
35958
35959         Make it possible to #define c_isascii to an alias.
35960         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
35961         defined. Undefine the macros before defining them, to avoid gcc
35962         warnings.
35963         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
35964         define NO_C_CTYPE_MACROS early.
35965
35966 2006-10-10  Bruno Haible  <bruno@clisp.org>
35967
35968         Make it possible to #define set_program_name to an alias.
35969         * lib/progname.c: Don't undefine set_program_name; instead, undefine
35970         ENABLE_RELOCATABLE early.
35971
35972 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
35973
35974         Port to Tandem NSK OSS, which has 64-bit signed int but at most
35975         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
35976         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
35977         More generally, don't assume that 64-bit signed int is available
35978         if unsigned int is, and vice versa.
35979         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
35980         unsigned symbols, not on their signed counterparts.
35981         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
35982         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
35983         (UINT64_C, UINTMAX_C):
35984         Likewise.
35985         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
35986         unsigned counterparts.
35987         (Have_long_long, Unsigned): New macros.
35988         (Int): Renamed from INT.
35989         (strtoimax): Use the new macros.
35990         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
35991         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
35992         * modules/inttypes (inttypes.h): Substitute
35993         HAVE_UNSIGNED_LONG_LONG_INT.
35994         * modules/stdint (stdint.h): Likewise.
35995         (Files): Add m4/ulonglong.m4.
35996
35997 2006-10-10  Bruno Haible  <bruno@clisp.org>
35998
35999         Fix a gcc -Wshadow warning.
36000         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
36001         to 'bucket'.
36002         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
36003         gl_linked_indexof_from_to): Likewise.
36004         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
36005         Likewise.
36006         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
36007         Likewise.
36008         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
36009         Reported by Eric Blake.
36010
36011 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
36012
36013         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
36014         for NetBSD.  Problem reported by Bruno Haible.
36015
36016 2006-10-09  Jim Meyering  <jim@meyering.net>
36017
36018         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
36019         Patch from Bruno Haible.
36020
36021 2006-10-09  Jim Meyering  <jim@meyering.net>
36022
36023         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
36024         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
36025         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
36026
36027 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
36028
36029         Don't include <config.h> twice; this doesn't work in some cases,
36030         e.g., when config.h has "#define intmax_t long long int" and
36031         we include <config.h>, <inttypes.h>, <config.h> in that order.
36032         Problem reported by Matthew Woehlke in:
36033         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
36034         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
36035         * lib/fts-cycle.c: Don't include config.h.
36036         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
36037         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
36038         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
36039         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
36040         inttypes.h.
36041         * lib/xstrtoumax.c: Likewise.
36042         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
36043         __strtol and the like, so that this module is more like its siblings.
36044         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
36045         Remove; no longer needed now that we assume gnulib inttypes.h.
36046
36047 2006-10-08  Bruno Haible  <bruno@clisp.org>
36048
36049         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
36050         option.
36051
36052 2006-10-07  Jim Meyering  <jim@meyering.net>
36053
36054         * modules/inttypes (inttypes.h): Revert what seems to have been
36055         an inadvertent part of today's change: use "|", not "/" in the
36056         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
36057
36058 2006-10-07  Bruno Haible  <bruno@clisp.org>
36059
36060         * modules/sublist: New file.
36061
36062 2006-10-07  Bruno Haible  <bruno@clisp.org>
36063
36064         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
36065         * modules/argz (argz.h): Likewise.
36066         * modules/arpa_inet (arpa/inet.h): Likewise.
36067         * modules/byteswap (byteswap.h): Likewise.
36068         * modules/configmake (configmake.h): Likewise.
36069         * modules/fcntl (fcntl.h): Likewise.
36070         * modules/fnmatch (fnmatch.h): Likewise.
36071         * modules/getopt (getopt.h): Likewise.
36072         * modules/glob (glob.h): Likewise.
36073         * modules/inttypes (inttypes.h): Likewise.
36074         * modules/netinet_in (netinet/in.h): Likewise.
36075         * modules/poll (poll.h): Likewise.
36076         * modules/stdbool (stdbool.h): Likewise.
36077         * modules/stdint (stdint.h): Likewise.
36078         * modules/sys_select (sys/select.h): Likewise.
36079         * modules/sys_socket (sys/socket.h): Likewise.
36080         * modules/sys_stat (sys/stat.h): Likewise.
36081         * modules/sysexits (sysexits.h): Likewise.
36082         * modules/unistd (unistd.h): Likewise.
36083         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
36084         Add a "DO NOT EDIT" comment to the generated file.
36085         (func_import): Likewise for gnulib-comp.m4.
36086
36087 2006-10-07  Bruno Haible  <bruno@clisp.org>
36088
36089         * lib/gl_sublist.h: New file.
36090         * lib/gl_sublist.c: New file.
36091
36092 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
36093
36094         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
36095         name (relative to the original working directory) and the file
36096         name component (relative to the temporary working directory).  All
36097         callers changed.
36098         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
36099         * lib/mkdir-p.c (make_dir_parents): Likewise.
36100         * lib/mkdir-p.h (make_dir_parents): Likewise.
36101
36102 2006-10-06  Eric Blake  <ebb9@byu.net>
36103
36104         Define several macros for use by the clean-temp module.
36105         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
36106         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
36107         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
36108
36109         * lib/clean-temp.h (close_stream_temp): New declaration.
36110         * lib/clean-temp.c (includes): Pull in headers according to what
36111         other modules are in use.
36112         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
36113
36114 2006-10-06  Bruno Haible  <bruno@clisp.org>
36115
36116         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
36117         instead of fopen, fwriteerror.
36118
36119 2006-10-06  Bruno Haible  <bruno@clisp.org>
36120
36121         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
36122         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
36123         int.
36124         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
36125         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
36126         Return an error indicator.
36127         Suggested by Eric Blake.
36128
36129 2006-10-06  Bruno Haible  <bruno@clisp.org>
36130
36131         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
36132         Reported by Eric Blake.
36133
36134 2006-10-06  Bruno Haible  <bruno@clisp.org>
36135
36136         * modules/closeout (Description): Mention stderr too.
36137
36138 2006-10-06  Bruno Haible  <bruno@clisp.org>
36139         and Paul Eggert  <eggert@cs.ucla.edu>
36140
36141         * lib/closeout.c (close_stdout): Also close stderr.
36142         * lib/closeout.h: Update comment.
36143
36144 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
36145
36146         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
36147         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
36148         * lib/dirchownmod.c: Include lchown.h.
36149         * lib/lchown.c: Don't include files that lchown.h now includes.
36150         Don't declare chown, since lchown.h now does that.
36151         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
36152         (lchown): Define to rpl_chown if lchown is declared but
36153         does not exist.  Declare using a prototype if lchown is not
36154         declared.  Add a copyright notice.
36155         * lib/mkstemp.h: Include <unistd.h>.
36156         * lib/openat.c: Include lchown.h.
36157
36158         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
36159         we now test for that separately.
36160         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
36161         rather than O_NOFOLLOW, when testing whether it's possible to
36162         avoid a race condition reliably.
36163         * lib/savewd.c (savewd_chdir): Likewise.
36164
36165         Remove macros that are no longer needed now that stdint.h is
36166         reliable.
36167         * lib/fsusage.c (UINTMAX_MAX): Remove.
36168         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
36169         * lib/utimecmp.c (SIZE_MAX): Remove.
36170
36171         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
36172
36173         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
36174         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
36175         O_NOATIME works.
36176
36177 2006-10-05  Bruno Haible  <bruno@clisp.org>
36178
36179         * lib/gl_list.h (gl_sortedlist_search_from_to,
36180         gl_sortedlist_indexof_from_to): New declarations.
36181         (gl_list_implementation): New fields sortedlist_search_from_to,
36182         sortedlist_indexof_from_to.
36183         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
36184         inline functions.
36185         * lib/gl_list.c (gl_sortedlist_search_from_to,
36186         gl_sortedlist_indexof_from_to): New functions.
36187         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
36188         function.
36189         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
36190         (gl_array_sortedlist_search_from_to): New function.
36191         (gl_array_list_implementation): Update.
36192         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
36193         function.
36194         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
36195         (gl_carray_sortedlist_search_from_to): New function.
36196         (gl_carray_list_implementation): Update.
36197         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
36198         gl_linked_sortedlist_indexof_from_to): New functions.
36199         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36200         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36201         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
36202         gl_tree_sortedlist_indexof_from_to): New functions.
36203         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36204         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36205         Update.
36206         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36207         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
36208         Update.
36209
36210 2006-10-05  Bruno Haible  <bruno@clisp.org>
36211
36212         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
36213         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
36214         (struct gl_list_implementation): Add fields search_from_to,
36215         indexof_from_to. Remove fields search, indexof.
36216         (gl_list_search): Use the search_from_to method.
36217         (gl_list_search_from, gl_list_search_from_to): New functions.
36218         (gl_list_indexof): Use the indexof_from_to method.
36219         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36220         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
36221         (gl_list_search_from, gl_list_search_from_to): New functions.
36222         (gl_list_indexof): Use the indexof_from_to method.
36223         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36224         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
36225         gl_array_indexof. Add start_index, end_index arguments.
36226         (gl_array_search_from_to): Renamed from gl_array_search. Add
36227         start_index, end_index arguments.
36228         (gl_array_remove, gl_array_list_implementation): Update.
36229         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
36230         gl_carray_indexof. Add start_index, end_index arguments.
36231         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
36232         start_index, end_index arguments.
36233         (gl_carray_remove, gl_carray_list_implementation): Update.
36234         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
36235         gl_linked_search. Add start_index, end_index arguments.
36236         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
36237         start_index, end_index arguments.
36238         (gl_linked_remove): Update.
36239         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36240         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36241         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
36242         field to 'size_t'.
36243         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
36244         gl_tree_search. Add start_index, end_index arguments.
36245         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36246         start_index, end_index arguments.
36247         (gl_tree_remove): Update.
36248         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36249         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36250         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
36251         function.
36252         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
36253         gl_tree_search. Add start_index, end_index arguments.
36254         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36255         start_index, end_index arguments.
36256         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36257         Update.
36258         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
36259
36260 2006-10-05  Bruno Haible  <bruno@clisp.org>
36261
36262         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
36263
36264         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
36265         fwriteerror_temp): New declarations.
36266         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
36267         (descriptors): New variable.
36268         (cleanup): First, close the descriptors.
36269         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
36270         fclose_temp, fwriteerror_temp): New functions.
36271
36272 2006-10-04  Jim Meyering  <jim@meyering.net>
36273
36274         * lib/fts.c (fts_open): Tiny comment change.
36275
36276 2006-10-04  Bruno Haible  <bruno@clisp.org>
36277
36278         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
36279         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
36280         gl_LOCK_BODY.
36281         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
36282         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
36283         gl_LOCK_EARLY_BODY.
36284         (gl_LOCK): Require gl_LOCK_BODY.
36285
36286 2006-10-04  Bruno Haible  <bruno@clisp.org>
36287
36288         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
36289         (gl_oset_search_atleast): New declaration.
36290         (struct gl_oset_implementation): Add field 'search_atleast'.
36291         (gl_oset_search_atleast): New inline function.
36292         * lib/gl_oset.c (gl_oset_search_atleast): New function.
36293         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
36294         (gl_array_oset_implementation): Update.
36295         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
36296         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
36297         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
36298
36299 2006-10-04  Bruno Haible  <bruno@clisp.org>
36300
36301         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
36302
36303 2006-10-03  Bruno Haible  <bruno@clisp.org>
36304
36305         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
36306         from gl_avltreehash_list_implementation.
36307
36308 2006-10-03  Bruno Haible  <bruno@clisp.org>
36309
36310         * lib/gl_oset.c (gl_oset_add): Fix return type.
36311
36312 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
36313
36314         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
36315
36316 2006-10-02  Eric Blake  <ebb9@byu.net>
36317
36318         * modules/strnlen (Depends-on): Add extensions.
36319
36320 2006-10-02  Eric Blake  <ebb9@byu.net>
36321
36322         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
36323         definition in 2.60+.
36324
36325 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
36326
36327         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
36328         checks.
36329
36330 2006-10-02  Bruno Haible  <bruno@clisp.org>
36331
36332         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
36333         to the AUTOMAKE_OPTIONS.
36334         Reported by Jim Meyering.
36335
36336 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
36337
36338         Work around bug in Solaris 10 /proc file system:
36339         /proc/self/fd/NNN/.. isn't the parent directory of
36340         the directory whose file descriptor is NNN.  This needs to
36341         be worked around at run time, not compile time, since a
36342         program might be built on Solaris 8, where things work, and
36343         run on Solaris 10.
36344         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
36345         to use the following interface instead:
36346         (OPENAT_BUFFER_SIZE): New macro.
36347         (openat_proc_name): New function.
36348         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
36349         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
36350         Likewise.
36351         * lib/openat-proc.c: New file.
36352         * modules/openat (Files): Add lib/openat-proc.c.
36353         (Depends-on): Add same-inode, stdbool.
36354         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
36355
36356 2006-09-29  Bruno Haible  <bruno@clisp.org>
36357
36358         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
36359         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
36360         argument. Set stdout_closed before testing for ferror, not after.
36361         (fwriteerror, fwriteerror_no_ebadf): New functions.
36362
36363 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36364
36365         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
36366
36367 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
36368
36369         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
36370         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
36371
36372 2006-09-28  Jim Meyering  <jim@meyering.net>
36373
36374         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
36375         Include <unistd.h>.
36376
36377 2006-09-28  Bruno Haible  <bruno@clisp.org>
36378
36379         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
36380         * modules/linkedhash-list (Depends-on): Likewise.
36381         * modules/rbtreehash-list (Depends-on): Likewise.
36382
36383 2006-09-28  Bruno Haible  <bruno@clisp.org>
36384
36385         * lib/strndup.h: Simplify the redefinition of strndup.
36386         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
36387         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
36388
36389 2006-09-28  Bruno Haible  <bruno@clisp.org>
36390
36391         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
36392         * lib/gl_linkedhash_list.c: Likewise.
36393         * lib/gl_rbtreehash_list.c: Likewise.
36394
36395 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
36396
36397         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
36398         getaddrinfo.
36399
36400         * lib/__fpending.h: Don't include <stdio_ext.h> unless
36401         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
36402         it causes <stdio_ext.h> to cause a compile-time error.
36403         Problem reported by Nelson H. F. Beebe.
36404         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
36405         of HAVE_DECL___PENDING.
36406
36407         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
36408         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
36409         declaration.
36410
36411 2006-09-27  Jim Meyering  <jim@meyering.net>
36412
36413         This file could end up with a definition for a function
36414         named __strndup, rather than rpl_strndup on a system with
36415         incomplete weak_alias support.
36416         * lib/strndup.c (strndup): Rename from __strndup.
36417         Remove #defines that used to map __strndup to strndup.
36418         Don't use K&R prototypes.
36419         Remove LIBC-related code, since this file is not sync'd with glibc.
36420         * lib/strndup.h: Revamp, accordingly.
36421         * m4/strndup.m4: Modernize.
36422
36423 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
36424
36425         * modules/savewd (Depends-on): Add 'raise'.
36426         * lib/savewd.c: Include <signal.h>, for 'raise'.
36427
36428 2006-09-26  Jim Meyering  <jim@meyering.net>
36429
36430         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
36431         when we detect Darwin 8.7.0's acl_get_file bug.
36432         Rearrange to perform the new (below) run-test while $LIBS
36433         contains any acl-related library.  Set USE_ACL at the end.
36434         (gl_ACL_GET_FILE): New function.
36435
36436 2006-09-26  Eric Blake  <ebb9@byu.net>
36437
36438         * lib/verror.c: Include <config.h> unconditionally.
36439
36440 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
36441
36442         * modules/clock-time (Maintainer): Add self.
36443         * modules/getlogin_r (Depends-on): Add extensions.
36444
36445 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36446
36447         * modules/clock-time: New module.
36448         * modules/nanosleep (Depends-on): Add clock-time.
36449         * modules/gethrxtime (Depends-on): Likewise.
36450         * modules/gettime (Depends-on): Likewise.
36451         * modules/settime (Depends-on): Likewise.
36452
36453         * modules/fts-lgpl: Depend on openat.
36454         * modules/mkancesdirs: Depend on savewd.
36455         * modules/mkdir-p: Likewise.
36456
36457 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36458
36459         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
36460
36461         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
36462         `gl_have_arbitrary_file_name_length_limit' to
36463         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
36464         actually works between configure runs.
36465
36466 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36467             Bruno Haible  <bruno@clisp.org>
36468
36469         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
36470
36471 2006-09-25  Jim Meyering  <jim@meyering.net>
36472
36473         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
36474         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
36475
36476 2006-09-25  Eric Blake  <ebb9@byu.net>
36477
36478         * gnulib-tool (func_import, func_create_testdir): Fix typos in
36479         exec's in 2006-09-18 patch when shuffling fds.
36480
36481 2006-09-25  Bruno Haible  <bruno@clisp.org>
36482
36483         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
36484         Reported by Jim Meyering.
36485
36486 2006-09-24  Jim Meyering  <jim@meyering.net>
36487
36488         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
36489         compare a pointer against a literal "0".  That caused failures with
36490         at least HP-UX's hpcc.
36491
36492 2006-09-22  Simon Josefsson  <jas@extundo.com>
36493
36494         * modules/gc-sha1:
36495         * modules/gc-md4:
36496         * modules/gc-hmac-sha1:
36497         * modules/gc-hmac-md5:
36498         * modules/gc-des:
36499         * modules/gc-arcfour: Distribute more files.
36500
36501 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36502
36503         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
36504         (gl_linked_iterator_from_to): Initialize struct completely.
36505         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
36506         (gl_tree_iterator_from_to): Likewise
36507         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
36508         * lib/gl_array_list.c [lint] (gl_array_iterator)
36509         (gl_array_iterator_from_to): Likewise.
36510         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
36511         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
36512         (gl_carray_iterator_from_to): Likewise.
36513
36514         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
36515         * lib/md4.c (md4_process_block): Remove unused variable.
36516         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
36517         parentheses for clarity.
36518
36519 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36520
36521         * modules/bison-i18n (Depends-on): Add gettext.
36522
36523 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36524
36525         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
36526         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
36527         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
36528         also add missing comma that caused broken test.
36529         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
36530         stdlib.h, for `abort'.
36531         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
36532         variables.
36533         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
36534         include unistd.h if present, for `rmdir'.
36535         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
36536         variables.
36537         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
36538         in the process include standard headers for prototypes.
36539         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
36540         gets declared on GNU/Linux.
36541         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
36542         unistd.h, for `rmdir'.
36543         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
36544
36545         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
36546         always true.
36547         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
36548
36549         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
36550
36551 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36552
36553         * gnulib-tool (func_version): Create output all at once.  This
36554         may help avoid triggering unnecessary SIGPIPEs, and at any
36555         rate it doesn't hurt.
36556
36557 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36558             Bruno Haible  <bruno@clisp.org>
36559
36560         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
36561         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
36562         * m4/signed.m4 (bh_C_SIGNED): Likewise.
36563
36564         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
36565         (gl_FUNC_VASPRINTF): Invoke it.
36566
36567 2006-09-22  Bruno Haible  <bruno@clisp.org>
36568
36569         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
36570         getloadavg.c as first argument.
36571
36572 2006-09-22  Bruno Haible  <bruno@clisp.org>
36573
36574         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
36575         at the beginning of the gl_INIT macro.
36576         * modules/getloadavg (configure.ac): Pass $gl_source_base to
36577         gl_GETLOADAVG.
36578
36579 2006-09-22  Bruno Haible  <bruno@clisp.org>
36580
36581         * gnulib-tool (func_create_megatestdir): Don't include the config-h
36582         module.
36583         Suggested by Ralf Wildenhues.
36584
36585 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
36586
36587         Import this patch from libc:
36588
36589         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
36590
36591         * lib/regex_internal.c (re_string_reconstruct): Handle
36592         offset < pstr->valid_raw_len && pstr->offsets_needed case.
36593         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
36594         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
36595         re_string_context_at.
36596
36597         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
36598         now requires it.
36599         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
36600         gl_REGEX now does it for us.
36601         (gl_REGEX): Add test taken from
36602         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
36603
36604         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
36605         Check that large offsets work.  Modernize Autoconf usages.
36606         Prefer "yes" to mean a good thing rather than a bad.
36607         Don't put "#define mkstemp" in config.h, as this might interfere
36608         with standard system headers that "#define mkstemp mkstemp64".
36609
36610         * modules/mkstemp (Depends-on): Add extensions, so that
36611         mkstemp is visible on some platforms.
36612         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
36613         (Include): Change to "mkstemp.h" from <stdlib.h>.
36614         (Files): Add mkstemp.h.
36615
36616         * lib/mkstemp.h: New file, since some standard headers
36617         #define mkstemp.
36618         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
36619         Include "mkstemp.h".
36620         Make the _LIBC code resemble glibc original more,
36621         e.g., use K&R style.
36622         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
36623         (mkstemp): Remove, since mkstemp.h does this for us.
36624         * lib/stdlib--.h: Include mkstemp.h.
36625
36626         Import this patch from libc:
36627
36628         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36629
36630         * lib/tempname.c (__gen_tempname): Change attempts_min
36631         into a macro.  Use preprocessor to decide how to initialize
36632         attempts [Coverity CID 67].
36633
36634 2006-09-20  Bruno Haible  <bruno@clisp.org>
36635
36636         * lib/mkdtemp.c: Import from libc.
36637         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36638                 * sysdeps/posix/tempname.c (__gen_tempname): Change
36639                 attempts_min into a macro.  Use preprocessor to decide how to
36640                 initialize attempts [Coverity CID 67].
36641         2001-11-27  Paul Eggert  <eggert@twinsun.com>
36642                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
36643                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
36644
36645 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36646
36647         * gnulib-tool (func_exit): New function, to allow to pass the
36648         exit status portably through the trap.  Use everywhere.
36649         (--help, --version): Signal a write error.
36650         (trap): catch SIGPIPE, for write errors.
36651         Exit at the end of the trap, with the correct exit status.
36652
36653 2006-09-19  Karl Berry  <karl@gnu.org>
36654
36655         * doc/gnulib.texi: note about the license texinfo files.
36656
36657 2006-09-19  Eric Blake  <ebb9@byu.net>
36658
36659         * gnulib-tool: Avoid space-tab.
36660
36661 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36662
36663         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
36664         that prevented coreutils 6.1 from building.  Problem reported
36665         by Petter Reinholdtsen.
36666
36667 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36668
36669         * gnulib-tool (avoidlist): Fix typo that broke options like
36670         --avoid=lock that are used by coreutils bootstrap.
36671
36672 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
36673
36674         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
36675         more systematically.
36676
36677 2006-09-18  Jim Meyering  <jim@meyering.net>
36678
36679         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
36680
36681 2006-09-18  Bruno Haible  <bruno@clisp.org>
36682
36683         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
36684
36685 2006-09-18  Bruno Haible  <bruno@clisp.org>
36686
36687         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
36688         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
36689         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
36690         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
36691         * m4/gettext.m4: Require autoconf >= 2.52.
36692         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
36693         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
36694         of gl_cv_header_inttypes_h.
36695
36696 2006-09-18  Bruno Haible  <bruno@clisp.org>
36697
36698         * lib/javaversion.c: Include configmake.h.
36699
36700 2006-09-18  Bruno Haible  <bruno@clisp.org>
36701
36702         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
36703         avoid that the while loops be executed in a subshell.
36704
36705 2006-09-18  Bruno Haible  <bruno@clisp.org>
36706
36707         * MODULES.html.sh (func_module): Break long lines.
36708         Suggested by Bruce Korb <bkorb@gnu.org>.
36709
36710 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36711
36712         Speed up by a factor of 1.12.
36713         * gnulib-tool (nl): New variable.
36714         (func_import): Rewrite include directive extraction to only read each
36715         directive once.
36716
36717 2006-09-17  Bruno Haible  <bruno@clisp.org>
36718
36719         * modules/javaversion (Makefile.am): Remove DEFS setting.
36720         (Depends-on): Add configmake, for PKGDATADIR definition.
36721
36722 2006-09-17  Bruno Haible  <bruno@clisp.org>
36723
36724         * gnulib-tool (func_create_testdir): Rewrite all files at once.
36725
36726 2006-09-17  Bruno Haible  <bruno@clisp.org>
36727
36728         * gnulib-tool (func_append): New function, stolen from libtool.m4.
36729         (func_modules_transitive_closure, func_modules_add_dummy,
36730         func_modules_to_filelist, func_import, func_create_testdir,
36731         func_create_megatestdir, ...): Use it wherever possible.
36732         Suggested by Ralf Wildenhues.
36733
36734 2006-09-16  Karl Berry  <karl@gnu.org>
36735
36736         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
36737         to avoid sectioning errors.
36738         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
36739         [ifinfo]: blank line after @center-ed titles.
36740         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
36741         Spell FSF address consistently with others.
36742         (These changes approved by rms.)
36743
36744 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36745
36746         Speed up by a factor of 1.61.
36747         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
36748         already checked module names again.
36749
36750 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36751
36752         Speed up by a factor of 1.13.
36753         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
36754         for new_files, and the input to func_add_or_update.
36755
36756 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36757
36758         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
36759         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
36760
36761 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36762
36763         * modules/mkancesdirs (Depends-on): Add fcntl.
36764         * modules/savewd: New file.
36765         * MODULES.html.sh (File system functions): Add savewd.
36766
36767         * modules/configmake (Makefile.am): Add support for the
36768         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
36769
36770 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36771
36772         * m4/savewd.m4: New file.
36773
36774 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36775
36776         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
36777         (dirchownmod): New arg FD.  All callers changed.
36778         Use FD rather than opening the directory ourself, as opening is
36779         now the caller's responsibility.
36780         * lib/dirchownmod.h: Likewise.
36781         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
36782         hosts that require <sys/types.h> before <sys/stat.h>.  Include
36783         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
36784         (test_dir): Remove.
36785         (mkancesdirs): Return length of prefix of FILE that has already
36786         been made, or -2 if there is a child doing the work.  Redo
36787         algorithm so that it is O(N) rather than O(N**2).  Optimize away
36788         ".", and treat ".." specially since it might stray back into
36789         already-created areas.  Use a subprocess if necessary.  New arg
36790         WD; all users changed.  MAKE_DIR function should now return 1
36791         if it creates a directory that is not readable.  Return -2 if
36792         a child process is spun off.
36793         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
36794         Adjust signature to match code.
36795         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
36796         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
36797         all users changed.
36798         * lib/savewd.c, lib/savewd.h: New files.
36799
36800 2006-09-15  Jim Meyering  <jim@meyering.net>
36801
36802         * modules/rename-dest-slash: New module.
36803         * MODULES.html.sh (posix_compat): Add it here.
36804
36805         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
36806
36807 2006-09-15  Jim Meyering  <jim@meyering.net>
36808
36809         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
36810         file.
36811
36812         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
36813
36814 2006-09-15  Jim Meyering  <jim@meyering.net>
36815
36816         * lib/rename-dest-slash.c (has_trailing_slash): Use
36817         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
36818         (rpl_rename_dest_slash): Perform the cheaper trailing slash
36819         test before testing whether SRC is a directory.
36820         Suggestions from Bruno Haible.
36821
36822         Avoid a warning about an unused variable.
36823         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
36824         into the #ifdef block where it's used.
36825
36826         * lib/rename-dest-slash.c: New file.
36827
36828 2006-09-14  Bruno Haible  <bruno@clisp.org>
36829
36830         * lib/allocsa.c: Include <config.h> unconditionally.
36831         * lib/asnprintf.c: Likewise.
36832         * lib/asprintf.c: Likewise.
36833         * lib/c-strcasecmp.c: Likewise.
36834         * lib/c-strcasestr.c: Likewise.
36835         * lib/c-strncasecmp.c: Likewise.
36836         * lib/c-strstr.c: Likewise.
36837         * lib/classpath.c: Likewise.
36838         * lib/clean-temp.c: Likewise.
36839         * lib/concatpath.c: Likewise.
36840         * lib/copy-file.c: Likewise.
36841         * lib/csharpcomp.c: Likewise.
36842         * lib/csharpexec.c: Likewise.
36843         * lib/execute.c: Likewise.
36844         * lib/fatal-signal.c: Likewise.
36845         * lib/findprog.c: Likewise.
36846         * lib/fwriteerror.c: Likewise.
36847         * lib/gl_array_list.c: Likewise.
36848         * lib/gl_array_oset.c: Likewise.
36849         * lib/gl_avltree_list.c: Likewise.
36850         * lib/gl_avltree_oset.c: Likewise.
36851         * lib/gl_avltreehash_list.c: Likewise.
36852         * lib/gl_carray_list.c: Likewise.
36853         * lib/gl_linked_list.c: Likewise.
36854         * lib/gl_linkedhash_list.c: Likewise.
36855         * lib/gl_list.c: Likewise.
36856         * lib/gl_oset.c: Likewise.
36857         * lib/gl_rbtree_list.c: Likewise.
36858         * lib/gl_rbtree_oset.c: Likewise.
36859         * lib/gl_rbtreehash_list.c: Likewise.
36860         * lib/imaxabs.c: Likewise.
36861         * lib/imaxdiv.c: Likewise.
36862         * lib/javacomp.c: Likewise.
36863         * lib/javaexec.c: Likewise.
36864         * lib/javaversion.c: Likewise.
36865         * lib/linebreak.c: Likewise.
36866         * lib/localcharset.c: Likewise.
36867         * lib/lock.c: Likewise.
36868         * lib/mbchar.c: Likewise.
36869         * lib/mbswidth.c: Likewise.
36870         * lib/mkdtemp.c: Likewise.
36871         * lib/pipe.c: Likewise.
36872         * lib/printf-args.c: Likewise.
36873         * lib/printf-parse.c: Likewise.
36874         * lib/progname.c: Likewise.
36875         * lib/progreloc.c: Likewise.
36876         * lib/readlink.c: Likewise.
36877         * lib/sh-quote.c: Likewise.
36878         * lib/stpcpy.c: Likewise.
36879         * lib/stpncpy.c: Likewise.
36880         * lib/strcasecmp.c: Likewise.
36881         * lib/strcasestr.c: Likewise.
36882         * lib/strcspn.c: Likewise.
36883         * lib/striconv.c: Likewise.
36884         * lib/strncasecmp.c: Likewise.
36885         * lib/strnlen1.c: Likewise.
36886         * lib/strstr.c: Likewise.
36887         * lib/strtok_r.c: Likewise.
36888         * lib/tls.c: Likewise.
36889         * lib/tmpdir.c: Likewise.
36890         * lib/unicodeio.c: Likewise.
36891         * lib/unsetenv.c: Likewise.
36892         * lib/vasnprintf.c: Likewise.
36893         * lib/vasprintf.c: Likewise.
36894         * lib/wait-process.c: Likewise.
36895         * lib/xallocsa.c: Likewise.
36896         * lib/xsetenv.c: Likewise.
36897         * lib/xstriconv.c: Likewise.
36898
36899 2006-09-13  Simon Josefsson  <jas@extundo.com>
36900
36901         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
36902         that internally, suggested by Ralf Wildenhues
36903         <Ralf.Wildenhues@gmx.de>.
36904
36905 2006-09-13  Simon Josefsson  <jas@extundo.com>
36906
36907         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
36908         @LIBOBJS@.
36909         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36910
36911 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
36912
36913         * lib/_fpending.c: Include <config.h> unconditionally, since we no
36914         longer worry about uses that don't define HAVE_CONFIG_H.
36915         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
36916         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
36917         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
36918         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
36919         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
36920         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
36921         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
36922         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
36923         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
36924         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
36925         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
36926         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
36927         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
36928         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
36929         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
36930         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
36931         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
36932         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
36933         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
36934         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
36935         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
36936         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
36937         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
36938         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
36939         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
36940         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
36941         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
36942         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
36943         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
36944         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
36945         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
36946         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
36947         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
36948         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
36949         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
36950         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
36951         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
36952         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
36953         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
36954         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
36955         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
36956         Likewise.
36957
36958 2006-09-13  Eric Blake  <ebb9@byu.net>
36959
36960         * lib/getopt.c: Fix typo in last commit.
36961
36962 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
36963
36964         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
36965         dgettext.
36966
36967 2006-09-12  Jim Meyering  <jim@meyering.net>
36968
36969         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
36970         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
36971         Reported by Nelson H. F. Beebe.
36972
36973 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
36974
36975         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
36976         program_invocation_name and program_invocation_short_name are
36977         initialized.
36978         * lib/argp-namefrob.h: Move declarations of program_invocation_name
36979         and program_invocation_short_name to argp.h, so they are visible
36980         to user programs.
36981         * lib/argp.h: Likewise
36982
36983 2006-09-10  Bruno Haible  <bruno@clisp.org>
36984
36985         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
36986         m4/inttypes_h.m4, m4/uintmax_t.m4.
36987
36988 2006-09-10  Bruno Haible  <bruno@clisp.org>
36989
36990         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
36991         gl_AC_TYPE_UINTMAX_T.
36992
36993 2006-09-10  Bruno Haible  <bruno@clisp.org>
36994
36995         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
36996
36997 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
36998
36999         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
37000         convention.  Text proposed by Bruno Haible.
37001         (struct argp_option): Document the use of N_() wrappers.
37002
37003         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
37004         '\v', and translate the two parts separately, instead of feeding
37005         the whole string to gettext.  This allows to exclude
37006         '\v' from the strings visible to the translator by writing doc
37007         strings as N_("..") "\v" N_("..").
37008
37009 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
37010
37011         * config/srclist.txt: Undo latest change; the bug was fixed.
37012
37013 2006-09-09  Bruno Haible  <bruno@clisp.org>
37014
37015         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
37016         assignments if building a library without libtool.
37017         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
37018         in func_emit_lib_Makefile_am.
37019         (func_import): When building a static library libfoo.a, arrange to
37020         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
37021         (func_create_testdir): Likewise.
37022         * modules/gc (configure.ac, Makefile.am): If building statically,
37023         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
37024         * modules/iconvme (configure.ac, Makefile.am): Likewise.
37025         * modules/striconv (configure.ac, Makefile.am): Likewise.
37026         Based on a suggestion by Ralf Wildenhues.
37027
37028 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37029
37030         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
37031         Check for unistd.h too, since Autoconf doesn't assume POSIX.
37032         Also:
37033
37034         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37035         Add year_2050_test to catch glibc bug 2821
37036         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
37037
37038         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
37039         Prefer #ifdef to #if.
37040
37041         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
37042         Return from 'main' instead of calling 'exit'.
37043
37044 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37045
37046         * lib/mktime.c (guess_time_tm): Fix bug where mktime
37047         returned the maximum time_t value rather than (time_t) -1.
37048         Problem originally reported by William Bardwell
37049         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
37050
37051         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
37052         Moved to here ...
37053         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
37054         ... from here.
37055
37056 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37057
37058         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
37059         2821 is fixed.
37060
37061 2006-09-08  Jim Meyering  <jim@meyering.net>
37062
37063         Don't make generated files read-only.  That would bother too many
37064         people.  However, do retain the ability to work when targets are
37065         read-only: remove the destination and temporary files before writing
37066         them (when generated via sed or echo), or by using the -f option for
37067         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
37068         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37069         * modules/byteswap, modules/configmake, modules/fcntl:
37070         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37071         * modules/localcharset, modules/netinet_in, modules/poll:
37072         * modules/stdbool, modules/stdint, modules/sys_select:
37073         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37074
37075 2006-09-08  Jim Meyering  <jim@meyering.net>
37076
37077         Avoid new build failure on FreeBSD 6.0.
37078         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
37079         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
37080         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
37081
37082 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37083
37084         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
37085
37086 2006-09-07  Jim Meyering  <jim@meyering.net>
37087
37088         Fix global typo in last change: use chmod u-w, not chmod u-x.
37089         Spotted by Paul Eggert and Bruce Korb.
37090         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37091         * modules/byteswap, modules/configmake, modules/fcntl:
37092         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37093         * modules/localcharset, modules/netinet_in, modules/poll:
37094         * modules/stdbool, modules/stdint, modules/sys_select:
37095         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37096
37097 2006-09-06  Jim Meyering  <jim@meyering.net>
37098
37099         Make generated files be read-only.
37100         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
37101         Ensure that each generated file is now read-only.
37102         * modules/argz: Likewise.
37103         * modules/arpa_inet: Likewise.
37104         * modules/byteswap: Likewise.
37105         * modules/configmake: Likewise.
37106         * modules/fcntl: Likewise.
37107         * modules/fnmatch: Likewise.
37108         * modules/getopt: Likewise.
37109         * modules/glob: Likewise.
37110         * modules/inttypes: Likewise.
37111         * modules/netinet_in: Likewise.
37112         * modules/poll: Likewise.
37113         * modules/stdbool: Likewise.
37114         * modules/stdint: Likewise.
37115         * modules/sys_select: Likewise.
37116         * modules/sys_socket: Likewise.
37117         * modules/sys_stat: Likewise.
37118         * modules/sysexits: Likewise.
37119         * modules/localcharset: Same as above, but continue using temporary
37120         file named "t-$@" (why different?) rather than the "$@-t" used
37121         everywhere else.
37122
37123         * modules/sysexits (Makefile.am): Replace literal occurrences
37124         of "sysexit.h" more readable, and more consistent, "$@".
37125
37126 2006-09-06  Bruno Haible  <bruno@clisp.org>
37127
37128         * modules/striconv: New file.
37129         * modules/xstriconv: New file.
37130         * MODULES.html.sh (Internationalization functions): Add striconv,
37131         xstriconv.
37132
37133 2006-09-06  Bruno Haible  <bruno@clisp.org>
37134
37135         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
37136         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
37137         not using libtool correctly.
37138
37139 2006-09-06  Bruno Haible  <bruno@clisp.org>
37140
37141         * lib/striconv.h: New file.
37142         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
37143         iconvstring.c.
37144         * lib/xstriconv.h: New file.
37145         * lib/xstriconv.c: New file.
37146
37147 2006-09-06  Bruno Haible  <bruno@clisp.org>
37148
37149         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
37150         lib_..._LDFLAGS.
37151
37152 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37153
37154         * lib/argz_.h: Sync from Libtool.
37155
37156         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
37157                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
37158
37159         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
37160
37161 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37162
37163         * modules/trim: New file.
37164
37165 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37166
37167         * lib/trim.h: New file.
37168         * lib/trim.c: New file.
37169
37170 2006-09-05  Bruno Haible  <bruno@clisp.org>
37171
37172         * MODULES.html.sh (String handling): Add trim.
37173
37174 2006-09-04  Karl Berry  <karl@gnu.org>
37175
37176         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
37177         until next release.
37178
37179 2006-09-03  Bruno Haible  <bruno@clisp.org>
37180
37181         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
37182         correctly.
37183
37184 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37185
37186         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
37187         not gl_GETLOADAVG.  Omit unneeded semicolons.
37188         Problems reported by Ralf Wildenhues in
37189         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37190         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
37191         at the end, which is the usual gnulib style.
37192
37193         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
37194         of doing all the work ourselves.
37195         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
37196         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
37197
37198 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37199
37200         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
37201         Problem reported by Ralf Wildenhues in
37202         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37203
37204         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
37205         HAVE_STRUCT_STATFS_F_FSTYPENAME.
37206
37207 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37208
37209         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
37210         yesterday's patch by changing test -n to test -z.
37211
37212 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37213
37214         * modules/getloadavg (Files): Add m4/getloadavg.m4.
37215         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
37216         the former is now obsolescent.
37217
37218         * modules/chdir-long (Depends-on): Add fcntl.
37219
37220 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37221
37222         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
37223         obsolescent, and programs should use gnulib instead.
37224         * m4/getloadavg.m4: New file, with contents taken from Autoconf
37225         but with prefixes changed.
37226
37227 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37228
37229         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
37230         or stdbool.h, because they might not exist while configuring.
37231
37232         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
37233         Don't include unistd.h or limits.h; not needed, since chdir-long.h
37234         does that for us.
37235         (O_DIRECTORY): Remove.
37236
37237 2006-08-31  Eric Blake  <ebb9@byu.net>
37238
37239         * gnulib-tool: Don't let emacs change spaces to TAB.
37240
37241 2006-08-31  Bruno Haible  <bruno@clisp.org>
37242
37243         * gnulib-tool: When calling func_import more than once, do it in a
37244         subshell.
37245         Reported by Eric Blake <ebb9@byu.net>.
37246
37247 2006-08-31  Bruno Haible  <bruno@clisp.org>
37248
37249         * gnulib-tool (nl): Remove variable.
37250         (sed_transform_lib_file): Use more robust test for config-h module.
37251         (func_import): Fix typo in 2006-08-25 patch.
37252
37253 2006-08-31  Bruno Haible  <bruno@clisp.org>
37254
37255         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
37256         specified, augment Makefile.am variables instead of assigning them.
37257
37258 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37259
37260         Work around a bug in both the Linux and SunOS 64-bit kernels:
37261         nanosleep mishandles sleeps for longer than 2**31 seconds.
37262         Problem reported by Frank v Waveren in
37263         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37264         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
37265         Check for nanosleep bug.
37266         (LIB_NANOSLEEP): Append clock_gettime library if needed.
37267
37268 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37269
37270         Work around a bug in both the Linux and SunOS 64-bit kernels:
37271         nanosleep mishandles sleeps for longer than 2**31 seconds.
37272         Problem reported by Frank v Waveren in
37273         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37274         * lib/nanosleep.c (BILLION): New constant.
37275         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
37276         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
37277         implementation.
37278
37279 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37280
37281         * modules/nanosleep (Depends-on): Add gettime.
37282
37283 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37284         and Simon Josefsson  <jas@extundo.com>
37285         and Oskar Liljeblad  <oskar@osk.mine.nu>
37286
37287         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
37288         * gnulib-tool (func_import): New license type 'unmodifiable license
37289         text'.
37290         * modules/fdl: Use it.  Longer description.
37291         * module/gpl, module/lgpl: New files.
37292
37293 2006-08-30  Jim Meyering  <jim@meyering.net>
37294
37295         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
37296         shadowing the parameter.
37297
37298 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37299
37300         Sync from Libtool:
37301
37302         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37303
37304         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
37305         sharing with gnulib.  Report by Eric Blake.
37306
37307 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37308
37309         * modules/isapipe: New file.
37310         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
37311
37312 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37313
37314         * modules/configmake (Makefile.am): Add a comment, and omit
37315         the CONFIGMAKE_ prefix from generated macro names.  Suggested
37316         by Bruno Haible.
37317
37318 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37319
37320         * m4/isapipe.m4: New file.
37321
37322 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37323
37324         * lib/isapipe.c, lib/isapipe.h: New files.
37325
37326 2006-08-29  Jim Meyering  <jim@meyering.net>
37327
37328         * modules/configmake (Makefile.am): Make configmake.h depend on
37329         Makefile.  Otherwise, a stale configmake.h could hang around.
37330
37331 2006-08-29  Eric Blake  <ebb9@byu.net>
37332
37333         * lib/error.c (error_at_line, print_errno_message): Match libc, after
37334         resolution of upstream bug 3044.
37335
37336 2006-08-29  Bruno Haible  <bruno@clisp.org>
37337
37338         * modules/localcharset (Depends-on): Add configmake.
37339         (Makefile.am): Remove setting of LIBDIR through DEFS.
37340
37341 2006-08-29  Bruno Haible  <bruno@clisp.org>
37342
37343         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
37344         defined.
37345
37346 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37347
37348         * modules/fcntl: New file.
37349         * modules/chdir-safer (Depends-on): Add fcntl.
37350         * modules/fts: Likewise.
37351         * modules/mkdir-p: Likewise.
37352
37353         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
37354         This undoes the most recent change, since we're now addressing the
37355         problem in a different way.
37356
37357         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
37358         into output, since the output might be called Makefile.am even
37359         if $makefile_name is something different.
37360         (func_import): Use $makefile_am rather than
37361         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
37362         empty.
37363
37364         * modules/inttypes (Files): Add m4/inttypes-h.m4.
37365
37366 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37367
37368         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
37369         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
37370         recent change to stdint.m4, since we're now addressing the problem in a
37371         different way.
37372
37373 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37374
37375         * m4/fcntl_h.m4: New file.
37376
37377 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37378
37379         * lib/fcntl_.h: New file.
37380         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
37381         the fcntl module.
37382         * lib/dirchownmod.c: Likewise.
37383         * lib/fts.c: Likewise.
37384
37385         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
37386         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
37387         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
37388         just before including <inttypes.h>, to avoid circular inclusion.
37389
37390 2006-08-28  Jim Meyering  <jim@meyering.net>
37391
37392         * doc/visibility.texi: Actually read and correct the grammar of the
37393         sentence affected by yesterday's change.
37394
37395 2006-08-28  Eric Blake  <ebb9@byu.net>
37396
37397         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
37398         needs wrapper.
37399
37400 2006-08-28  Eric Blake  <ebb9@byu.net>
37401
37402         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
37403
37404 2006-08-28  Eric Blake  <ebb9@byu.net>
37405
37406         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
37407
37408 2006-08-28  Bruno Haible  <bruno@clisp.org>
37409
37410         * modules/c-strstr: New file, from GNU gettext.
37411         * MODULES.html.sh (String handling): Add c-strstr.
37412
37413 2006-08-28  Bruno Haible  <bruno@clisp.org>
37414
37415         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
37416         macros.
37417         Reported by Eric Blake.
37418
37419 2006-08-28  Bruno Haible  <bruno@clisp.org>
37420
37421         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
37422         (VASNPRINTF): Return a string of length > INT_MAX without failing.
37423         * lib/vasprintf.c: Include errno.h, limits.h.
37424         (EOVERFLOW): New fallback definition.
37425         (vasprintf): Test here whether the string length is > INT_MAX.
37426         * lib/vsnprintf.c: Include errno.h, limits.h.
37427         (EOVERFLOW): New fallback definition.
37428         (vsnprintf): Fix bug when generated string was too long for the buffer.
37429         Test here whether the string length is > INT_MAX.
37430
37431 2006-08-28  Bruno Haible  <bruno@clisp.org>
37432
37433         * lib/inttypes_.h (SCNX*): Remove definitions.
37434         Reported by Eric Blake.
37435
37436 2006-08-28  Bruno Haible  <bruno@clisp.org>
37437
37438         * lib/c-strstr.h: New file, from GNU gettext.
37439         * lib/c-strstr.c: New file, from GNU gettext.
37440
37441 2006-08-28  Bruno Haible  <bruno@clisp.org>
37442
37443         * gnulib-tool: Reorder some statements.
37444
37445 2006-08-28  Bruno Haible  <bruno@clisp.org>
37446
37447         * gnulib-tool: New option --makefile-name.
37448         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
37449         $makefile_name.
37450         (func_import): Write $makefile_name to the cache file, and read it from
37451         there unless explicitly specified. Use $makefile_name as file name
37452         instead of Makefile.am. Adjust the recommendations accordingly.
37453
37454 2006-08-28  Bruno Haible  <bruno@clisp.org>
37455
37456         * gnulib-tool (func_verify_module): Check against misapplying patch.
37457
37458 2006-08-28  Bruno Haible  <bruno@clisp.org>
37459
37460         * gnulib-tool (func_relativize, func_relconcat): New functions.
37461         Give an error if --local-dir is given with --update.
37462         Remove trailing slashes from $local_gnulib_dir.
37463         (func_import): Store the relativized $local_gnulib_dir in
37464         gnulib-cache.m4, and read it from there if not specified explicitly.
37465
37466 2006-08-28  Bruno Haible  <bruno@clisp.org>
37467
37468         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
37469         is the current directory. Respect also $local_gnulib_dir.
37470
37471 2006-08-28  Bruno Haible  <bruno@clisp.org>
37472             Simon Josefsson  <jas@extundo.com>
37473
37474         BeOS portability.
37475         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
37476
37477 2006-08-27  Jim Meyering  <jim@meyering.net>
37478
37479         * doc/visibility.texi: Remove duplicate word: "pointer".
37480
37481 2006-08-26  Bruno Haible  <bruno@clisp.org>
37482
37483         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
37484         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
37485         (Makefile.am): Create inttypes.h from inttypes_.h.
37486         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
37487
37488         * modules/imaxabs: New file.
37489
37490         * modules/imaxdiv: New file.
37491
37492 2006-08-26  Bruno Haible  <bruno@clisp.org>
37493
37494         * m4/inttypes.m4: New file.
37495         * m4/_inttypes_h.m4: Remove file.
37496         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
37497         PRI_MACROS_BROKEN.
37498         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
37499
37500         * m4/imaxabs.m4: New file.
37501
37502         * m4/imaxdiv.m4: New file.
37503
37504 2006-08-26  Bruno Haible  <bruno@clisp.org>
37505
37506         * lib/inttypes_.h: New file.
37507         * lib/inttypes.h: Remove file.
37508         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
37509
37510         * lib/imaxabs.c: New file.
37511
37512         * lib/imaxdiv.c: New file.
37513
37514 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37515
37516         New config-h module, so that "make" output needn't be cluttered
37517         by -DHAVE_CONFIG_H.
37518         * MODULES.html.sh (Support for building libraries and executables):
37519         Add config-h.
37520         * modules/config-h: New file.
37521         * gnulib-tool (nl, sed_transform_lib_file): New vars.
37522         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
37523         the config-h module is used.
37524
37525         New configmake module, so that "make" output needn't be cluttered
37526         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
37527         * MODULES.html.sh (Support for building libraries and executables):
37528         Add configmake.
37529         * modules/configmake: New file.
37530
37531 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37532
37533         * m4/config-h.m4: New file.
37534
37535 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37536
37537         * config/srclist.txt: Add elisp-comp.
37538
37539 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37540
37541         * MODULES.html.sh (Support for building libraries and executables):
37542         Add elisp-comp.
37543         * build-aux/elisp-comp: New file.
37544         * modules/elisp-comp: New file.
37545
37546 2006-08-24  Bruno Haible  <bruno@clisp.org>
37547
37548         * gnulib-tool (func_create_testdir): Use non-default values of
37549         sourcebase and m4base.
37550
37551 2006-08-24  Bruno Haible  <bruno@clisp.org>
37552
37553         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
37554         HTML structure.
37555
37556 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
37557
37558         * modules/openat (Depends-on): Add lchown.
37559
37560 2006-08-23  Bruno Haible  <bruno@clisp.org>
37561
37562         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
37563         of gl_LOCK_EARLY instead of gl_LOCK.
37564
37565 2006-08-23  Bruno Haible  <bruno@clisp.org>
37566
37567         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
37568         on OSF/1 to no.
37569         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
37570
37571 2006-08-23  Bruno Haible  <bruno@clisp.org>
37572
37573         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
37574         as unusable.
37575
37576         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
37577         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
37578         (gl_LOCK): New macro.
37579
37580 2006-08-22  Simon Josefsson  <jas@extundo.com>
37581
37582         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
37583         to md5 module.
37584
37585 2006-08-22  Simon Josefsson  <jas@extundo.com>
37586
37587         * MODULES.html.sh: Add "Support for maintaining and release
37588         projects".
37589
37590         * build-aux/gnupload: New file, from coreutils.
37591
37592 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37593
37594         Avoid the need for AC_LIBSOURCES in m4 macros.
37595         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
37596         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
37597         * modules/check-version (EXTRA_DIST): Add check-version.h.
37598         * modules/crc (EXTRA_DIST): Add crc.h.
37599         * modules/des (EXTRA_DIST): Add des.h.
37600         * modules/gc (EXTRA_DIST): Add gc.h.
37601         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
37602         * modules/getline (EXTRA_DIST): Add getline.h.
37603         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
37604         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
37605         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
37606         * modules/md2 (EXTRA_DIST): Add md2.h.
37607         * modules/md4 (EXTRA_DIST): Add md4.h.
37608         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
37609         * modules/read-file (EXTRA_DIST): Add read-file.h.
37610         * modules/readline (EXTRA_DIST): Add readline.h.
37611         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
37612         rijndael-api-fst.h.
37613
37614 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37615
37616         * m4/rijndael.m4 (gl_ARCFOUR):
37617         * m4/arctwo.m4 (gl_ARCTWO):
37618         * m4/check-version.m4 (gl_CHECK_VERSION):
37619         * m4/crc.m4 (gl_CRC):
37620         * m4/des.m4 (gl_DES):
37621         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
37622         * m4/gc.m4 (gl_GC):
37623         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
37624         * m4/getline.m4 (gl_FUNC_GETLINE):
37625         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
37626         * m4/hmac-md5.m4 (gl_HMAC_MD5):
37627         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
37628         * m4/md2.m4 (gl_MD2):
37629         * m4/md4.m4 (gl_MD4):
37630         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
37631         * m4/read-file.m4 (gl_FUNC_READ_FILE):
37632         * m4/readline.m4 (gl_FUNC_READLINE):
37633         * m4/rijndael.m4 (gl_RIJNDAEL):
37634         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37635         to get the necessary .h files and whatnot.
37636
37637 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37638
37639         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
37640         gnulib rather than the other way around.
37641         * config/srclistvars.sh (COREUTILS): Remove.
37642
37643 2006-08-22  Jim Meyering  <jim@meyering.net>
37644
37645         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
37646
37647         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
37648
37649 2006-08-22  Eric Blake  <ebb9@byu.net>
37650
37651         * modules/regexprops-generic: New file.
37652         * MODULES.html.sh (Support for building documentation): List it.
37653
37654 2006-08-22  Eric Blake  <ebb9@byu.net>
37655
37656         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
37657         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
37658         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
37659         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
37660
37661 2006-08-22  Bruno Haible  <bruno@clisp.org>
37662
37663         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
37664         and lib_LTLIBRARIES like the other lib_* variables.
37665
37666 2006-08-22  Bruno Haible  <bruno@clisp.org>
37667
37668         * build-aux/x-to-1.in: New file, from GNU gettext.
37669
37670 2006-08-22  Bruno Haible  <bruno@clisp.org>
37671
37672         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
37673         <utmpx.h> exists.
37674
37675 2006-08-22  Bruno Haible  <bruno@clisp.org>
37676
37677         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
37678         <utmpx.h> exists.
37679
37680 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37681
37682         BeOS portability.
37683         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
37684         exist.
37685         Problem reported by Bruno Haible.
37686
37687 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37688
37689         Avoid the need for AC_LIBSOURCES in m4 macros.
37690         * modules/acl (EXTRA_DIST): Add acl.h.
37691         * modules/argmatch (Files): Add m4/argmatch.m4.
37692         (configure.ac): Add gl_ARGMATCH.
37693         (EXTRA_DIST): Renamed from lib_SOURCES, for
37694         consistency with the other modules.  Remove argmatch.c.
37695         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
37696         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
37697         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
37698         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
37699         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
37700         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
37701         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
37702         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
37703         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
37704         * modules/closeout (EXTRA_DIST): Add closeout.h.
37705         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
37706         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
37707         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
37708         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
37709         dirname.h; remove basename.c and stripslash.c.
37710         * modules/exclude (EXTRA_DIST): Add exclude.h.
37711         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
37712         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
37713         * modules/file-type (EXTRA_DIST): Add file-type.h.
37714         * modules/filemode (EXTRA_DIST): Add filemode.h.
37715         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
37716         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37717         * modules/fpending (EXTRA_DIST): Add __fpending.h.
37718         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
37719         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
37720         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
37721         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
37722         * modules/getdate (EXTRA_DIST): Add getdate.c.
37723         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
37724         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
37725         * modules/getpass (EXTRA_DIST): Add getpass.h.
37726         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
37727         * modules/group-member (EXTRA_DIST): Add group-member.h.
37728         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
37729         * modules/hash (EXTRA_DIST): Add hash.h.
37730         * modules/human (EXTRA_DIST): Add human.h.
37731         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
37732         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
37733         * modules/lchown (EXTRA_DIST): Add lchown.h.
37734         * modules/long-options (EXTRA_DIST): Add long-options.h.
37735         * modules/lstat (EXTRA_DIST): Add lstat.h.
37736         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
37737         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
37738         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
37739         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
37740         * modules/memxor (EXTRA_DIST): Add memxor.h.
37741         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
37742         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
37743         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
37744         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
37745         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
37746         * modules/physmem (EXTRA_DIST): Add physmem.h.
37747         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
37748         * modules/posixver (EXTRA_DIST): Add posixver.h.
37749         * modules/quote (EXTRA_DIST): Add quote.h.
37750         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
37751         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
37752         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
37753         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
37754         regex_internal.h regexec.c.
37755         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
37756         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
37757         * modules/same (EXTRA_DIST): Add same.h.
37758         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
37759         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
37760         * modules/savedir (EXTRA_DIST): Add savedir.h.
37761         * modules/sha1 (EXTRA_DIST): Add sha1.h.
37762         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
37763         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
37764         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
37765         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
37766         * modules/strdup (EXTRA_DIST): Add strdup.h.
37767         * modules/strftime (EXTRA_DIST): Add strftime.h.
37768         * modules/strndup (EXTRA_DIST): Add strndup.h.
37769         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
37770         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
37771         * modules/time_r (EXTRA_DIST): Add time_r.h.
37772         * modules/timespec (EXTRA_DIST): Add timespec.h.
37773         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37774         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
37775         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
37776         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
37777         * modules/userspec (EXTRA_DIST): Add userspec.h.
37778         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
37779         * modules/utimens (EXTRA_DIST): Add utimens.h.
37780         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
37781         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
37782         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
37783         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
37784         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
37785         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
37786         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
37787         * modules/yesno (EXTRA_DIST): Add yesno.h.
37788
37789 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37790
37791         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
37792
37793         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
37794         * m4/dev-ino.m4, same-inode.m4: Remove.
37795
37796         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
37797         * m4/acl.m4 (AC_FUNC_ACL):
37798         * m4/backupfile.m4 (gl_BACKUPFILE):
37799         * m4/c-strtod.m4 (gl_C99_STRTOLD):
37800         * m4/canon-host.m4 (gl_CANON_HOST):
37801         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
37802         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
37803         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
37804         * m4/cloexec.m4 (gl_CLOEXEC):
37805         * m4/close-stream.m4 (gl_CLOSE_STREAM):
37806         * m4/closeout.m4 (gl_CLOSEOUT):
37807         * m4/dirfd.m4 (gl_FUNC_DIRFD):
37808         * m4/dirname.m4 (gl_DIRNAME):
37809         * m4/exclude.m4 (gl_EXCLUDE):
37810         * m4/exitfail.m4 (gl_EXITFAIL):
37811         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
37812         * m4/file-type.m4 (gl_FILE_TYPE):
37813         * m4/filemode.m4 (gl_FILEMODE):
37814         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
37815         * m4/fpending.m4 (gl_FUNC_FPENDING):
37816         * m4/fprintftime.m4 (gl_FPRINTFTIME):
37817         * m4/fts.m4 (gl_FUNC_FTS):
37818         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
37819         * m4/getdate.m4 (gl_GETDATE):
37820         * m4/gethrxtime.m4 (gl_GETHRXTIME):
37821         * m4/getpagesize.m4 (gl_GETPAGESIZE):
37822         * m4/getpass.m4 (gl_FUNC_GETPASS):
37823         * m4/gettime.m4 (gl_GETTIME):
37824         * m4/getugroups.m4 (gl_GETUGROUPS):
37825         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
37826         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
37827         * m4/hard-locale.m4 (gl_HARD_LOCALE):
37828         * m4/hash.m4 (gl_HASH):
37829         * m4/idcache.m4 (gl_IDCACHE):
37830         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
37831         * m4/lchown.m4 (gl_FUNC_LCHOWN):
37832         * m4/long-options.m4 (gl_LONG_OPTIONS):
37833         * m4/lstat.m4 (gl_FUNC_LSTAT):
37834         * m4/md5.m4 (gl_MD5):
37835         * m4/memcasecmp.m4 (gl_MEMCASECMP):
37836         * m4/memcoll.m4 (gl_MEMCOLL):
37837         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
37838         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
37839         * m4/memxor.m4 (gl_MEMXOR):
37840         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
37841         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
37842         * m4/modechange.m4 (gl_MODECHANGE):
37843         * m4/mountlist.m4 (gl_MOUNTLIST):
37844         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37845         * m4/openat.m4 (gl_FUNC_OPENAT):
37846         * m4/pathmax.m4 (gl_PATHMAX):
37847         * m4/physmem.m4 (gl_PHYSMEM):
37848         * m4/posixtm.m4 (gl_POSIXTM):
37849         * m4/posixver.m4 (gl_POSIXVER):
37850         * m4/quote.m4 (gl_QUOTE):
37851         * m4/quotearg.m4 (gl_QUOTEARG):
37852         * m4/readtokens.m4 (gl_READTOKENS):
37853         * m4/readutmp.m4 (gl_READUTMP):
37854         * m4/regex.m4 (gl_REGEX):
37855         * m4/safe-read.m4 (gl_SAFE_READ):
37856         * m4/safe-write.m4 (gl_SAFE_WRITE):
37857         * m4/same.m4 (gl_SAME):
37858         * m4/save-cwd.m4 (gl_SAVE_CWD):
37859         * m4/savedir.m4 (gl_SAVEDIR):
37860         * m4/settime.m4 (gl_SETTIME):
37861         * m4/sha1.m4 (gl_SHA1):
37862         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
37863         * m4/stat-macros.m4 (gl_STAT_MACROS):
37864         * m4/stat-time.m4 (gl_STAT_TIME):
37865         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
37866         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
37867         * m4/strdup.m4 (gl_FUNC_STRDUP):
37868         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
37869         * m4/strndup.m4 (gl_FUNC_STRNDUP):
37870         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
37871         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
37872         * m4/time_r.m4 (gl_TIME_R):
37873         * m4/timespec.m4 (gl_TIMESPEC):
37874         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
37875         * m4/unlinkdir.m4 (gl_UNLINKDIR):
37876         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
37877         * m4/userspec.m4 (gl_USERSPEC):
37878         * m4/utimecmp.m4 (gl_UTIMECMP):
37879         * m4/utimens.m4 (gl_UTIMENS):
37880         * m4/xalloc.m4 (gl_XALLOC):
37881         * m4/xgetcwd.m4 (gl_XGETCWD):
37882         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
37883         * m4/xreadlink.m4 (gl_XREADLINK):
37884         * m4/xstrtod.m4 (gl_XSTRTOD):
37885         * m4/yesno.m4 (gl_YESNO):
37886         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37887         to get the necessary .h files and whatnot.
37888
37889 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
37890             Bruno Haible  <bruno@clisp.org>
37891
37892         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
37893         /bin/sh understanding of '!' conditional negation.
37894
37895 2006-08-21  Jim Meyering  <jim@meyering.net>
37896
37897         * modules/openat (Depends-on): Really alphabetize.
37898
37899         * modules/acl (Depends-on): Add error and quote.
37900
37901         * check-module (find_included_lib_files): Add at-func.c to the
37902         ok-to-include-more-than-once white list.
37903
37904         * modules/openat (Depends-on): Add lstat.  Alphabetize.
37905
37906 2006-08-21  Bruno Haible  <bruno@clisp.org>
37907
37908         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37909         Emit a pkgdata_DATA variable only if some snippets add contents to it.
37910         Reported by Martin Lambers <marlam@marlam.de>.
37911
37912 2006-08-21  Bruno Haible  <bruno@clisp.org>
37913
37914         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
37915         specify an installation location, don't emit a noinst_LIBRARIES or
37916         noinst_LTLIBRARIES assignment.
37917
37918 2006-08-21  Bruno Haible  <bruno@clisp.org>
37919
37920         BeOS portability.
37921         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
37922         BeOS has mbrtowc() but no <wctype.h>.
37923
37924 2006-08-21  Bruno Haible  <bruno@clisp.org>
37925
37926         BeOS portability.
37927         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
37928         exist.
37929
37930 2006-08-21  Bruno Haible  <bruno@clisp.org>
37931
37932         BeOS portability.
37933         * lib/mbchar.h: Include <wctype.h> only if it exists.
37934
37935 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37936
37937         Remove files that are no longer needed by their respective modules.
37938         * m4/obstack.m4: Remove.
37939         * m4/strerror_r.m4: Remove.
37940         * m4/uint32_t.m4: Remove.
37941         * m4/uintptr_t.m4: Remove.
37942         * m4/ullong_max.m4: Remove.
37943         * m4/xstrtoimax.m4: Remove.
37944         * m4/xstrtoumax.m4: Remove.
37945
37946         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
37947         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
37948         dependencies now capture this.
37949
37950         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
37951         Do not use AC_LIBSOURCES, since gnulib modules now do this.
37952         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
37953         * m4/human.m4 (gl_HUMAN): Likewise.
37954         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
37955         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
37956
37957         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
37958
37959         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
37960         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
37961         stdint.
37962         * m4/human.m4 (gl_HUMAN): Likewise.
37963         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
37964         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
37965         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37966         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37967         * m4/xstrtol (gl_XSTRTOL): Likewise.
37968
37969         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
37970         AC_TYPE_LONG_LONG_INT.
37971         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37972         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
37973         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
37974         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37975
37976         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
37977         on stdbool.
37978
37979         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
37980         (gl_PREREQ_XSTRTOUL): Remove.
37981
37982         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
37983
37984         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
37985         mode.
37986
37987 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37988
37989         Add and change modules to make it easier for coreutils to use
37990         gnulib-tool.
37991         * modules/backupfile (Files): Remove m4/d-ino.m4.
37992         (Depends-on): Add d-ino.
37993         * modules/cycle-check (Depends-on): Add stdint.
37994         (lib_SOURCES): Add cycle-check.h.
37995         * modules/d-ino: New module.
37996         * modules/d-type: New module.
37997         * modules/error (Files): Remove m4/strerror_r.m4.
37998         * modules/filemode (Files): Add m4/st_dm_mode.m4.
37999         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
38000         m4/inttypes_h.m4, m4/uintmax_t.m4.
38001         (Depends-on): Add stdint.
38002         (lib_SOURCES): Add fsusage.h.
38003         * modules/getcwd (Files): Remove d-ino.m4.
38004         (Depends-on): Add d-ino.
38005         * modules/getndelim2 (Depends-on): Add stdint.
38006         * modules/glob (Files): Remove m4/d-type.m4.
38007         (Depends-on): Add d-type.
38008         * modules/host-os: New module.
38009         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
38010         m4/inttypes_h.m4, m4/uintmax_t.m4.
38011         * Depends-on: Add stdint.
38012         (lib_SOURCES): Add human.h.
38013         * modules/inttostr (Files): Remove m4/intmax_t.m4,
38014         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
38015         m4/uintmax_t.m4, m4/ulonglong.m4.
38016         (Depends-on): Add stdint.
38017         (EXTRA_DIST): Add inttostr.h.
38018         * modules/lchmod: New module.
38019         * modules/link-follow: New module.
38020         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
38021         (Depends-on): Add lchmod.
38022         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
38023         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
38024         (Depends-on): Add stdint.
38025         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
38026         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
38027         (Depends-on): Add stdint.
38028         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
38029         * modules/perl: New module.
38030         * modules/regex (Depends-on): Add stdint.
38031         * modules/rmdir-errno: New module.
38032         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
38033         m4/intmax_t.m4.
38034         (Depends-on): Add stdint.
38035         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
38036         m4/uintmax_t.m4.
38037         (Depends-on): Add stdint.
38038         * modules/unlink-busy: New module.
38039         * modules/utimecmp (Depends-on): Add stdint.
38040         * modules/uptime: New module.
38041         * modules/winsz-ioctl: New module.
38042         * modules/winsz-termios: New module.
38043         * modules/xnanosleep (Depends-on): Add nanosleep.
38044         * modules/ullong_max: Remove.
38045         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
38046         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
38047         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
38048         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
38049         (Depends-on): Add inttypes.
38050         (lib_SOURCES): Add xstrtol.h.
38051         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
38052         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
38053         * MODULES.html.sh: Move 'assert' into the assert section.
38054         Move 'dummy' into the linking section.
38055         Remove ullong_max.
38056         Add section for compatibility checks for POSIX:2001 functions,
38057         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
38058         winsz-ioctl, and winsz-termios into it.
38059         Add lchmod.
38060         Add top-level Misc section and put host-os, perl, and uptime
38061         into it.
38062
38063 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38064
38065         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
38066         now assume the stdint module.  Do not include inttypes.h.
38067         * lib/fsusage.h: Likewise.
38068         * lib/getndelim2.c: Likewise.
38069         * lib/human.h: Likewise.
38070         * lib/inttostr.h: Likewise.
38071         * lib/obstack.c: Likewise.
38072         * lib/regex_internal.h: Likewise.
38073         * lib/tempname.c: Likewise.
38074         * lib/utimecmp.c: Likewise.
38075         * lib/xstrtol.h: Likewise.
38076
38077         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
38078
38079         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
38080         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
38081         * lib/xtime.h: Likewise.
38082
38083 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38084
38085         * modules/openat (Files): Add lib/fchmodat.c.
38086         Fixes problem reported by Jay Youngman.
38087
38088 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38089
38090         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
38091         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
38092
38093 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
38094             Bruno Haible  <bruno@clisp.org>
38095
38096         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
38097         and is a script that invokes bison. Tighten the code. Add comments.
38098
38099 2006-08-18  Jim Meyering  <jim@meyering.net>
38100
38101         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
38102         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
38103         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
38104         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
38105
38106 2006-08-18  Bruno Haible  <bruno@clisp.org>
38107
38108         * modules/bison-i18n: New file.
38109         * MODULES.html.sh (Internationalization functions): Add it.
38110
38111 2006-08-18  Bruno Haible  <bruno@clisp.org>
38112
38113         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
38114         sys/statvfs.h. When getmntinfo was found, check its declaration and
38115         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
38116
38117 2006-08-18  Bruno Haible  <bruno@clisp.org>
38118
38119         * m4/bison-i18n.m4: New file, from bison.
38120
38121 2006-08-18  Bruno Haible  <bruno@clisp.org>
38122
38123         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
38124         (ME_DUMMY): Treat "kernfs" as a dummy.
38125         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
38126
38127 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38128
38129         Update from coreutils.
38130
38131         2006-08-15  Jim Meyering  <jim@meyering.net>
38132
38133         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
38134
38135         2006-01-17  Jim Meyering  <jim@meyering.net>
38136
38137         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
38138
38139         2006-01-11  Jim Meyering  <jim@meyering.net>
38140
38141         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
38142         Check for the lchmod function.
38143
38144 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38145
38146         Update from coreutils.
38147
38148         * lib/__fpending.h: Add copyright notice.
38149         * lib/fprintftime.h: Likewise.
38150         * lib/savedir.c: Use (C) in copyright notice.
38151         * lib/savedir.h: Likewise.
38152
38153         2006-08-15  Jim Meyering  <jim@meyering.net>
38154
38155         * lib/at-func.c: New file, with the logic of all emulated at-functions.
38156         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
38157         in support of the EXPECTED_ERRNO macro.
38158         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
38159         definitions.  Instead, define the appropriate symbols and include
38160         "at-func.c".
38161         * lib/mkdirat.c (mkdirat): Likewise.
38162         * lib/fchmodat.c (fchmodat): Likewise.
38163         (ENOSYS): Remove definition.
38164         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
38165         it.  Don't include "unistd--.h" -- it wasn't ever used.
38166
38167         2006-01-17  Jim Meyering  <jim@meyering.net>
38168
38169         Rewrite fts.c not to change the current working directory,
38170         by using openat, fstatat, fdopendir, etc..
38171
38172         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
38173         (HAVE_OPENAT_SUPPORT): Define.
38174         [_LIBC] (fchdir): Don't undef or define; no longer used.
38175         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
38176         Now, this `function' always succeeds, and consumes its file descriptor
38177         parameter -- so callers must not close such FDs.  Update callers.
38178         (diropen_fd, opendirat, cwd_advance_fd): New functions.
38179         (diropen): Add parameter, SP.  Adjust all callers.
38180         Implement using diropen_fd, rather than open.
38181         (fts_open): Initialize new member, fts_cwd_fd.
38182         Remove fts_rft-setting code.
38183         (fts_close): Close fts_cwd_fd, if necessary.
38184         (__opendir2): Define in terms of opendir or opendirat,
38185         depending on whether the FST_NOCHDIR flag is set.
38186         (fts_build): Since fts_safe_changedir consumes its FD, and since
38187         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
38188         and close the dup'd file descriptor upon failure.
38189         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
38190         (fts_safe_changedir): Tweak semantics to reflect that this function
38191         now calls cwd_advance_fd and hence consumes its FD argument.
38192         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
38193         [struct FTS] (fts_rft): Remove now-unused member.
38194         [struct FTS] (fts_cycle.state): Improve comment.
38195
38196         * lib/openat.c (openat_needs_fchdir): New function.
38197         * lib/openat.h (openat_needs_fchdir): Declare it.
38198
38199 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
38200
38201         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
38202         Problem and fix reported by Pádraig Brady in
38203         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
38204
38205 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38206
38207         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
38208
38209 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38210
38211         * lib/memcoll.c (memcoll): Optimize for the common case where the
38212         arguments are bytewise equal.
38213
38214 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38215
38216         * doc/regexprops-generic.texi: Add a copyright notice.
38217
38218 2006-08-15  Bruno Haible  <bruno@clisp.org>
38219
38220         * modules/tmpdir (License): Change to LGPL.
38221
38222 2006-08-15  Bruno Haible  <bruno@clisp.org>
38223
38224         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
38225         module.
38226
38227 2006-08-14  Simon Josefsson  <jas@extundo.com>
38228
38229         * config/srclist.txt: Add gnupload.
38230
38231 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38232
38233         Change copyright notice from LGPL 2 to GPL 2, since that's the
38234         standard form used in the gnulib repository.
38235         * tests/test-lock.c: Likewise.
38236         * tests/test-stdint.c: Likewise.
38237         * tests/test-tls.c: Likewise.
38238
38239         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
38240         prelude-manager.  User shorter URLs for GNU projects, without '?'.
38241         Add copyright notice.
38242
38243         * check-module: Add copyright notice.  Output a copyright
38244         notice if "--version" is specified.
38245         * modules/COPYING: New file.
38246         * tests/test-getaddrinfo.c: Add copyright notice.
38247         * tests/test-verify.c: Likewise.
38248
38249 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38250
38251         Change copyright notice from LGPL 2 to GPL 2, since that's the
38252         standard form used in the gnulib repository.
38253         * lib/lock.c: LGPL -> GPL.
38254         * lib/lock.h: Likewise.
38255         * lib/strnlen1.c: Likewise.
38256         * lib/strnlen1.h: Likewise.
38257         * lib/tls.c: Likewise.
38258         * lib/tls.h: Likewise.
38259         * lib/tmpdir.c: Likewise.
38260
38261         * lib/TODO: Remove; this belongs only in coreutils.
38262
38263 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38264
38265         Add copyright notices to long-enough files that lack them, since
38266         otherwise the files aren't clearly free.  Use the same notice that
38267         getdate.texi already uses.
38268         * doc/alloca-opt.texi: Add copyright notice.
38269         * doc/alloca.texi: Likewise.
38270         * doc/ctime.texi: Likewise.
38271         * doc/functions.texi: Likewise.
38272         * doc/gcd.texi: Likewise.
38273         * doc/gnulib-tool.texi: Likewise.
38274         * doc/inet_ntoa.texi: Likewise.
38275         * doc/visibility.texi: Likewise.
38276
38277         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
38278         * doc/quote.texi: Add copyright notice.
38279
38280         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
38281         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
38282         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
38283         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
38284         is now obsolete, and give a pointer to the Sun list.
38285         Add copyright notice.
38286
38287 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38288
38289         * config/srclistvars.sh: Add copyright notice.
38290
38291 2006-08-14  Eric Blake  <ebb9@byu.net>
38292
38293         Import the following change from libc:
38294
38295         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
38296
38297         Upstream bug 2997.
38298         * lib/misc/error.c: Add space between program name and message if file
38299         name is missing.
38300
38301 2006-08-12  Karl Berry  <karl@gnu.org>
38302
38303         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
38304         remove, these originate in gnulib now.
38305
38306 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38307
38308         * doc/Makefile (standards.info standards.html standards.dvi):
38309         Also depend on make-stds.texi.
38310
38311 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
38312
38313         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
38314         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
38315
38316         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
38317         in wchar_t.  Problem reported by Eric Blake.
38318
38319         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
38320         LEN is smaller than SIZE.  Suggested by Bruno Haible.
38321         Also, help the compiler to keep LEN in a register.
38322
38323 2006-08-11  Eric Blake  <ebb9@byu.net>
38324
38325         * users.txt: Sort.  Add tar.
38326
38327 2006-08-11  Bruno Haible  <bruno@clisp.org>
38328
38329         * users.txt: New file.
38330
38331 2006-08-11  Bruno Haible  <bruno@clisp.org>
38332
38333         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
38334         before <wchar.h>. Needed for OSF/1 and BSD/OS.
38335
38336 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38337
38338         * modules/snprintf (Depends-on): Remove minmax.
38339         (Maintainer): Add self and Bruno.
38340
38341 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38342
38343         * lib/.cppi-disable: Add snprintf.h, socket_.h.
38344         * lib/snprintf.c: Include <errno.h> and <limits.h>.
38345         (EOVERFLOW): Define if the system does not.
38346         Do not include "minmax.h"; it wasn't used.
38347         (snprintf): Don't assume size_t promotes to an unsigned type.
38348         Fix bug when generated string was too long for the buffer: the
38349         buffer's contents are supposed to be the initial prefix of the
38350         output.  Don't assume vasnprintf returns EOVERFLOW if the size
38351         exceeds INT_MAX; do the check ourselves.
38352
38353         Import the following changes from libc:
38354
38355         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
38356
38357         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
38358         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
38359         set wc to the byte which couldn't be converted.
38360         (re_string_reconstruct): Don't clear valid_raw_len before calling
38361         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
38362         tip_context using re_string_context_at.
38363
38364         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
38365
38366         * lib/posix/regex.h: g++ still cannot handled [restrict].
38367
38368         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
38369
38370         * lib/posix/regex.h: Remove special handling for VMS.
38371
38372 2006-08-10  Jim Meyering  <jim@meyering.net>
38373
38374         * modules/same-inode: New module.
38375         * modules/dev-ino: New module.
38376         * modules/cycle-check: Depend on these modules, rather than simply
38377         including their .h files.
38378         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
38379         required via m4/cycle-check.m4.
38380         * modules/same: Depend on new same-inode module, rather than
38381         including same-inode.h.
38382         * modules/chdir-safer: New file.
38383
38384         * modules/chown (Depends-on): Add stat-macros.
38385
38386 2006-08-10  Jim Meyering  <jim@meyering.net>
38387
38388         * m4/cycle-check.m4: New file.
38389         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
38390         * m4/dev-ino.m4, m4/same-inode.m4: New files.
38391
38392 2006-08-10  Eric Blake  <ebb9@byu.net>
38393
38394         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
38395         in from original proposal.
38396
38397 2006-08-10  Eric Blake  <ebb9@byu.net>
38398         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
38399
38400         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
38401         namespace.
38402
38403 2006-08-10  Bruno Haible  <bruno@clisp.org>
38404
38405         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
38406         as well.
38407
38408 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38409
38410         Sync from coreutils.
38411
38412         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
38413
38414         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
38415         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
38416
38417 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38418
38419         * modules/restrict: Remove; no longer needed now that we assume
38420         Autoconf 2.59 or later.
38421         * MODULES.html.sh: Remove 'restrict'.
38422         * modules/argp (Depends-on): Remove 'restrict'.
38423         * modules/base64 (Depends-on): Likewise.
38424         * modules/gc (Depends-on): Likewise.
38425         * modules/getaddrinfo (Depends-on): Likewise.
38426         * modules/glob (Depends-on): Likewise.
38427         * modules/inet_ntop (Depends-on): Likewise.
38428         * modules/inet_pton (Depends-on): Likewise.
38429         * modules/memxor (Depends-on): Likewise.
38430         * modules/regex (Depends-on): Likewise.
38431         * modules/strtok_r (Depends-on): Likewise.
38432         * modules/time_r (Depends-on): Likewise.
38433
38434 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38435
38436         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
38437         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
38438         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
38439         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
38440         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
38441         * m4/memxor.m4 (gl_MEMXOR): Likewise.
38442         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
38443         gl_C_RESTRICT replaced by AC_C_RESTRICT.
38444
38445         Merge from coreutils.
38446         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
38447         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
38448         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38449         * m4/time_r.m4 (gl_TIME_R): Likewise.
38450
38451 2006-08-09  Karl Berry  <karl@gnu.org>
38452
38453         * config/srclist.txt: no more gettext-tools, per Bruno.
38454
38455 2006-08-08  Eric Blake  <ebb9@byu.net>
38456
38457         * modules/verror: New module.
38458         * MODULES.html.sh: Document it.
38459
38460 2006-08-08  Eric Blake  <ebb9@byu.net>
38461
38462         * lib/verror.h, lib/verror.c: New files.
38463
38464 2006-08-08  Eric Blake  <ebb9@byu.net>
38465
38466         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
38467         verror_at_line output complies with GNU Coding Standards even when
38468         file is NULL.
38469
38470 2006-08-07  Bruno Haible  <bruno@clisp.org>
38471
38472         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
38473         versions of AIX.
38474         Reported by Ralf Wildenhues.
38475
38476 2006-08-07  Bruno Haible  <bruno@clisp.org>
38477
38478         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
38479         in an AC_DEFUN. Needed so that the autoconf snippets can use
38480         AC_REQUIRE.
38481
38482 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38483
38484         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38485         Initialize pkgdata_DATA.
38486         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
38487         overriding it.
38488
38489 2006-08-06  Eric Blake  <ebb9@byu.net>
38490
38491         * lib/error.h: Fold in some upstream changes from glibc.
38492         * lib/error.c: Likewise.
38493
38494 2006-08-04  Bruno Haible  <bruno@clisp.org>
38495
38496         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38497         Make the mostlyclean-local rule depend on mostlyclean-generic.
38498         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
38499
38500 2006-07-31  Bruno Haible  <bruno@clisp.org>
38501
38502         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
38503         <stdlib.h>, <string.h>.
38504
38505 2006-07-30  Bruno Haible  <bruno@clisp.org>
38506
38507         * modules/readlink (License): Change to LGPL.
38508
38509 2006-07-30  Bruno Haible  <bruno@clisp.org>
38510
38511         * modules/javaversion (Makefile.am): Distribute javaversion.java and
38512         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
38513         set PKGDATADIR to point to it.
38514
38515 2006-07-30  Bruno Haible  <bruno@clisp.org>
38516
38517         * modules/csharpexec (configure.ac): Comment out macro invocation.
38518         * modules/javaexec (configure.ac): Likewise.
38519         * modules/javacomp-script (configure.ac): Likewise.
38520
38521         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
38522
38523 2006-07-30  Bruno Haible  <bruno@clisp.org>
38524
38525         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
38526         linked-list.
38527
38528 2006-07-30  Bruno Haible  <bruno@clisp.org>
38529
38530         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
38531
38532 2006-07-30  Bruno Haible  <bruno@clisp.org>
38533
38534         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38535         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
38536         get removed.
38537
38538 2006-07-29  Bruno Haible  <bruno@clisp.org>
38539
38540         Make it possible for gnulib-tool to work with locally modified or
38541         augmented gnulib repositories.
38542         * gnulib-tool (func_usage): Document --local-dir option.
38543         (local_gnulib_dir): New variable.
38544         Handle --local-dir option.
38545         (func_lookup_file): New function.
38546         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
38547         (func_get_description, func_get_filelist, func_get_description,
38548         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
38549         func_get_automake_snippet, func_get_include_directive,
38550         func_get_license, func_get_maintainer): Use func_lookup_file.
38551         (func_import, func_create_testdir): Use func_lookup_file.
38552
38553 2006-07-29  Bruno Haible  <bruno@clisp.org>
38554
38555         * modules/setenv (Depends-on): Add unistd.
38556
38557 2006-07-29  Bruno Haible  <bruno@clisp.org>
38558
38559         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
38560
38561 2006-07-29  Bruno Haible  <bruno@clisp.org>
38562
38563         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
38564
38565 2006-07-29  Bruno Haible  <bruno@clisp.org>
38566
38567         * gnulib-tool (import, update): If there is no Makefile.am, look at
38568         aclocal.m4, instead of bailing out.
38569
38570 2006-07-29  Bruno Haible  <bruno@clisp.org>
38571
38572         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
38573         Categorize the options by when they are useful.
38574
38575 2006-07-29  Bruno Haible  <bruno@clisp.org>
38576
38577         * gnulib-tool (func_usage): Document option --no-libtool.
38578         Handle option --no-libtool.
38579         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
38580         for changed semantics of $libtool variable.
38581         (func_import): Likewise. If libtool is not used, show this through
38582         an option --no-libtool.
38583         (func_create_testdir): Update.
38584
38585 2006-07-29  Bruno Haible  <bruno@clisp.org>
38586
38587         * gnulib-tool (func_import): Extend error message about missing
38588         --doc-base.
38589
38590 2006-07-29  Bruno Haible  <bruno@clisp.org>
38591
38592         * gnulib-tool (func_import): Don't create the $docbase directory if
38593         there is no file to store there.
38594
38595 2006-07-29  Bruno Haible  <bruno@clisp.org>
38596
38597         * gnulib-tool (autoconf_minversion): If a --dir option is given and
38598         relevant, look for configure.ac there, not in the current directory.
38599         Also use a simple search for AC_PREREQ, not "autoconf --trace".
38600
38601 2006-07-29  Bruno Haible  <bruno@clisp.org>
38602
38603         * gnulib-tool (SORT): New variable.
38604         (func_usage): Undocument --assume-autoconf option.
38605         Remove --assume-autoconf option handling.
38606         (autoconf_minversion): Determine from the contents of configure.ac.
38607         (func_import): Remove autoconf_minversion handling.
38608         Suggested by Eric Blake.
38609
38610 2006-07-29  Bruno Haible  <bruno@clisp.org>
38611
38612         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
38613
38614 2006-07-29  Bruno Haible  <bruno@clisp.org>
38615
38616         * config/srclist.txt (*setenv.[ch]): Remove rules.
38617
38618 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38619
38620         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
38621
38622 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38623
38624         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
38625         arpa/inet.h.
38626
38627 2006-07-28  Simon Josefsson  <jas@extundo.com>
38628
38629         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
38630         * modules/inet_pton (Depends-on): Likewise.
38631
38632 2006-07-28  Simon Josefsson  <jas@extundo.com>
38633
38634         * m4/netinet_in_h.m4: New file.
38635
38636 2006-07-28  Simon Josefsson  <jas@extundo.com>
38637
38638         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
38639         #include's.
38640
38641 2006-07-28  Simon Josefsson  <jas@extundo.com>
38642
38643         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
38644         #include's.
38645
38646 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
38647
38648         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
38649         setgid on directories only if they set these bits.
38650         * lib/modechange.h: Remove obsolete comment about masks.
38651
38652 2006-07-28  Eric Blake  <ebb9@byu.net>
38653
38654         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
38655         macro expansion.
38656
38657 2006-07-28  Bruno Haible  <bruno@clisp.org>
38658
38659         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
38660
38661 2006-07-28  Bruno Haible  <bruno@clisp.org>
38662
38663         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
38664
38665 2006-07-28  Bruno Haible  <bruno@clisp.org>
38666
38667         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
38668         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
38669         Define fallbacks.
38670         Avoids link error on FreeBSD 4.x.
38671         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
38672
38673         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
38674         encoding.
38675         * lib/mbswidth.c (iswcntrl): Likewise.
38676
38677 2006-07-27  Bruno Haible  <bruno@clisp.org>
38678
38679         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
38680         test.
38681
38682 2006-07-27  Bruno Haible  <bruno@clisp.org>
38683
38684         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
38685         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
38686         defined.
38687
38688 2006-07-26  Eric Blake  <ebb9@byu.net>
38689
38690         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
38691
38692 2006-07-26  Eric Blake  <ebb9@byu.net>
38693
38694         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
38695         like mingw that lack mkstemp.
38696         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
38697         avoid compilation warning on mingw.
38698
38699 2006-07-26  Bruno Haible  <bruno@clisp.org>
38700
38701         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
38702         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
38703         INT_FAST*_MIN, INTPTR_MIN.
38704
38705 2006-07-25  Bruno Haible  <bruno@clisp.org>
38706
38707         * modules/version-etc (Depends-on): Add stdarg.
38708
38709 2006-07-25  Bruno Haible  <bruno@clisp.org>
38710
38711         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
38712         complex commands.
38713
38714 2006-07-25  Bruno Haible  <bruno@clisp.org>
38715
38716         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
38717         defined in <stdarg.h> or config.h.
38718
38719 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38720
38721         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
38722         (gl_STDIO_SAFER): Remove.
38723
38724 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38725
38726         * MODULES.html.sh (File stream based Input/Output):
38727         Add fopen-safer, tmpfile-safer; remove stdio-safer.
38728         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
38729         * modules/fopen-safer, modules/tmpfile-safer: New files.
38730         * modules/stdio-safer: Remove.
38731
38732 2006-07-24  Bruno Haible  <bruno@clisp.org>
38733
38734         * modules/tmpdir: New file.
38735         * MODULES.html.sh (File system functions): Add it.
38736
38737 2006-07-24  Bruno Haible  <bruno@clisp.org>
38738
38739         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
38740         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
38741
38742 2006-07-24  Bruno Haible  <bruno@clisp.org>
38743
38744         * modules/clean-temp: New file.
38745
38746 2006-07-24  Bruno Haible  <bruno@clisp.org>
38747
38748         * m4/tmpdir.m4: New file, from GNU gettext.
38749
38750 2006-07-24  Bruno Haible  <bruno@clisp.org>
38751
38752         * lib/tmpdir.h: New file, from GNU gettext.
38753         * lib/tmpdir.c: New file, from GNU gettext.
38754
38755 2006-07-24  Bruno Haible  <bruno@clisp.org>
38756
38757         * lib/clean-temp.h: New file, from GNU gettext.
38758         * lib/clean-temp.c: New file, from GNU gettext.
38759
38760 2006-07-23  Eric Blake  <ebb9@byu.net>
38761
38762         * modules/stdio-safer (Files): Add tmpfile-safer.c.
38763         (Depends-on): Add binary-io.
38764
38765 2006-07-23  Eric Blake  <ebb9@byu.net>
38766
38767         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
38768
38769 2006-07-23  Eric Blake  <ebb9@byu.net>
38770
38771         * lib/tmpfile-safer.c: New file.
38772         * lib/stdio-safer.h (fopen_safer): Add prototype.
38773         * lib/stdio--.h (tmpfile): Make safer.
38774
38775 2006-07-23  Bruno Haible  <bruno@clisp.org>
38776
38777         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
38778         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
38779         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
38780         gl_linked_remove_at): Use it.
38781
38782 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38783         and Simon Josefsson <jas@extundo.com>
38784
38785         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
38786
38787         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
38788
38789 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38790
38791         * modules/close-stream: New file.
38792         * modules/closeout (Description): Make it clear that it exits
38793         with a diagnostic on error.
38794         (Depends-on): Add close-stream.  Remove fpending, stdbool.
38795         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
38796
38797 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38798
38799         * m4/close-stream.m4: New file.
38800
38801 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38802
38803         * lib/close-stream.c, lib/close-stream.h: New files.
38804
38805 2006-07-22  Bruno Haible  <bruno@clisp.org>
38806
38807         Merge from GNU gettext 0.15.
38808
38809         2006-05-01  Bruno Haible  <bruno@clisp.org>
38810
38811                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
38812
38813         2006-07-22  Bruno Haible  <bruno@clisp.org>
38814
38815                 * modules/javaversion: New file.
38816                 * MODULES.html.sh (Java): Add javaversion.
38817
38818         2006-03-12  Bruno Haible  <bruno@clisp.org>
38819
38820                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
38821
38822         2005-12-04  Bruno Haible  <bruno@clisp.org>
38823
38824                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
38825                 (untested).
38826
38827         2006-06-21  Bruno Haible  <bruno@clisp.org>
38828
38829                 Avoid warnings from recent versions of mcs.
38830                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
38831                 -o, -L, -r any more. Use options documented since mcs-1.0
38832                 instead. Similarly for -g.
38833
38834         2005-12-04  Bruno Haible  <bruno@clisp.org>
38835
38836                 * build-aux/csharpcomp.sh.in: Suffix for resources is
38837                 .resources, not .resource.
38838
38839         2005-07-09  Bruno Haible  <bruno@clisp.org>
38840
38841                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
38842                 add a .dll suffix.
38843                 Reported by Mark Junker <mjscod@gmx.de>.
38844
38845         2006-07-22  Bruno Haible  <bruno@clisp.org>
38846
38847                 * modules/gettext: Upgrade to gettext-0.15.
38848                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
38849                 m4/visibility.m4.
38850                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
38851
38852 2006-07-22  Bruno Haible  <bruno@clisp.org>
38853
38854         Merge from GNU gettext 0.15.
38855
38856         2006-03-25  Bruno Haible  <bruno@clisp.org>
38857
38858                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
38859
38860         2006-07-21  Bruno Haible  <bruno@clisp.org>
38861
38862                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
38863                 "1.1".
38864
38865         2006-05-09  Bruno Haible  <bruno@clisp.org>
38866
38867                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
38868                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
38869                 for the conftestver execution.
38870
38871         2006-05-01  Bruno Haible  <bruno@clisp.org>
38872
38873                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
38874                 optional target-version argument. Verify that the compiler
38875                 groks source of the specified source-version, or add -source
38876                 option as necessary. Verify that the compiler produces
38877                 bytecode in the specified target-version, or add -target and
38878                 -source options as necessary. Make the result of the test
38879                 available as variable CONF_JAVAC. Also log error output in
38880                 config.log.
38881
38882         2006-03-11  Bruno Haible  <bruno@clisp.org>
38883
38884                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
38885
38886         2006-05-09  Bruno Haible  <bruno@clisp.org>
38887
38888                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
38889                 CLASSPATH_SEPARATOR to a semicolon.
38890
38891         2006-03-12  Bruno Haible  <bruno@clisp.org>
38892
38893                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
38894                 available as variable CONF_JAVA, for subsequent autoconf
38895                 tests. Also log error output in config.log.
38896
38897         2006-07-19  Bruno Haible  <bruno@clisp.org>
38898
38899                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
38900                 that getline works on glibc2 systems. Needed to avoid trouble
38901                 in relocatable.c.
38902                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
38903
38904         2005-12-04  Bruno Haible  <bruno@clisp.org>
38905
38906                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
38907                 launcher (untested).
38908
38909         2005-12-04  Bruno Haible  <bruno@clisp.org>
38910
38911                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
38912
38913         2006-07-22  Bruno Haible  <bruno@clisp.org>
38914
38915                 * gettext.m4: Update from GNU gettext-0.15.
38916                 * nls.m4: Likewise.
38917                 * po.m4: Likewise.
38918                 * inttypes-pri.m4: Likewise.
38919                 * inttypes-h.m4: Renamed from inttypes.m4.
38920                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
38921
38922 2006-07-22  Bruno Haible  <bruno@clisp.org>
38923
38924         Merge from GNU gettext 0.15.
38925
38926         2005-07-05  Bruno Haible  <bruno@clisp.org>
38927
38928                 * printf-args.c (printf_fetchargs): Work around broken
38929                 definition of wint_t on mingw.
38930
38931         2005-02-12  Bruno Haible  <bruno@clisp.org>
38932
38933                 * xallocsa.h: Add extern "C" for C++.
38934
38935         2006-05-17  Bruno Haible  <bruno@clisp.org>
38936
38937                 Cygwin portability.
38938                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
38939
38940         2006-04-30  Bruno Haible  <bruno@clisp.org>
38941
38942                 * progreloc.c: Include <mach-o/dyld.h> if available.
38943                 (find_executable): Use _NSGetExecutablePath when possible.
38944
38945         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
38946
38947                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
38948                 function.
38949
38950         2005-12-29  Bruno Haible  <bruno@clisp.org>
38951
38952                 * progreloc.c (set_program_name_and_installdir): Fix
38953                 compilation error.
38954
38955         2005-12-04  Bruno Haible  <bruno@clisp.org>
38956
38957                 Cygwin portability.
38958                 * progreloc.c: Include <windows.h> also on Cygwin.
38959                 (find_executable): Add support for Cygwin.
38960                 (set_program_name_and_installdir): Handle also platforms with
38961                 nonempty EXEEXT.
38962
38963         2006-07-11  Bruno Haible  <bruno@clisp.org>
38964
38965                 * javacomp.c: Fix a comment.
38966                 Reported by Jim Meyering.
38967
38968         2006-04-30  Bruno Haible  <bruno@clisp.org>
38969
38970                 * javacomp.h (compile_java_class): Add source_version,
38971                 target_version arguments.
38972                 * javacomp.c: Rewritten to choose only a compiler that
38973                 respects the specified source_version and target_version.
38974
38975         2006-06-27  Bruno Haible  <bruno@clisp.org>
38976
38977                 Assume correct S_ISDIR macro.
38978                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
38979
38980         2006-07-22  Bruno Haible  <bruno@clisp.org>
38981
38982                 * javaversion.h: New file, from GNU gettext.
38983                 * javaversion.c: New file, from GNU gettext.
38984                 * javaversion.java: New file, from GNU gettext.
38985                 * javaversion.class: New file, from GNU gettext.
38986
38987         2006-05-17  Bruno Haible  <bruno@clisp.org>
38988
38989                 Cygwin portability.
38990                 * javaexec.c (execute_java_class): Test for jview program
38991                 also on Cygwin.
38992
38993         2006-04-09  Bruno Haible  <bruno@clisp.org>
38994
38995                 * fatal-signal.c: Don't include string.h.
38996                 (at_fatal_signal): Use a copying loop instead of memcpy.
38997
38998         2005-12-04  Bruno Haible  <bruno@clisp.org>
38999
39000                 * csharpexec.c: Add support for 'clix' launcher (untested).
39001                 (execute_csharp_using_sscli): New function.
39002                 (execute_csharp_program): Call it.
39003
39004         2006-06-21  Bruno Haible  <bruno@clisp.org>
39005
39006                 Avoid warnings from recent versions of mcs.
39007                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
39008                 -o, -L, -r any more. Use options documented since mcs-1.0
39009                 instead. Similarly for -g.
39010
39011         2005-07-09  Bruno Haible  <bruno@clisp.org>
39012
39013                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
39014                 add a .dll suffix.
39015                 Reported by Mark Junker <mjscod@gmx.de>.
39016
39017         2006-06-17  Bruno Haible  <bruno@clisp.org>
39018
39019                 * config.charset: Update for NetBSD 3.0.
39020
39021         2006-05-17  Bruno Haible  <bruno@clisp.org>
39022
39023                 Cygwin portability.
39024                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
39025
39026         2006-05-16  Bruno Haible  <bruno@clisp.org>
39027
39028                 * localcharset.c [CYGWIN]: Include <windows.h>.
39029                 (get_charset_aliases): For Cygwin, return the same CPxxx
39030                 aliases list as under WIN32.
39031                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
39032                 the environment variables. Fall back to GetACP().
39033
39034         2006-04-05  Bruno Haible  <bruno@clisp.org>
39035
39036                 * config.charset: Update Juan Manuel Guerrero's address.
39037
39038         2005-02-12  Bruno Haible  <bruno@clisp.org>
39039
39040                 * allocsa.h: Add extern "C" for C++.
39041
39042         2005-02-10  Bruno Haible  <bruno@clisp.org>
39043
39044                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
39045                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
39046
39047         2006-07-22  Bruno Haible  <bruno@clisp.org>
39048
39049                 * gettext.h: Update to GNU gettext-0.15.
39050
39051 2006-07-22  Bruno Haible  <bruno@clisp.org>
39052
39053         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
39054         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
39055         lib-prefix.m4, longdouble.m4, ssize_t.m4.
39056
39057 2006-07-21  Eric Blake  <ebb9@byu.net>
39058
39059         * modules/stdlib-safer: New file.
39060         * MODULES.html.sh (File stream based Input/Output): Add
39061         stdlib-safer.
39062
39063 2006-07-21  Eric Blake  <ebb9@byu.net>
39064
39065         * lib/stdlib-safer.h: New file from coreutils, required by
39066         stdlib--.h.
39067
39068 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
39069
39070         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
39071
39072 2006-07-20  Bruno Haible  <bruno@clisp.org>
39073
39074         * gnulib-tool: Recognize new option --assume-autoconf.
39075         (autoconf_minversion): New variable.
39076         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
39077
39078 2006-07-20  Bruno Haible  <bruno@clisp.org>
39079
39080         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
39081
39082 2006-07-19  Derek R. Price  <derek@ximbiot.com>
39083
39084         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
39085         Reindent and repaginate.
39086
39087 2006-07-19  Derek Price  <derek@ximbiot.com>
39088
39089         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
39090         Correct grammar.
39091
39092 2006-07-17  Bruno Haible  <bruno@clisp.org>
39093
39094         * modules/list: New file.
39095         * modules/array-list: New file.
39096         * modules/carray-list, modules/carray-list-tests: New files.
39097         * modules/linked-list, modules/linked-list-tests: New files.
39098         * modules/avltree-list, modules/avltree-list-tests: New files.
39099         * modules/rbtree-list, modules/rbtree-list-tests: New files.
39100         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
39101         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
39102         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
39103         * modules/oset: New file.
39104         * modules/array-oset: New file.
39105         * modules/avltree-oset, modules/avltree-oset-tests: New files.
39106         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
39107         * tests/test-carray_list.c: New file.
39108         * tests/test-linked_list.c: New file.
39109         * tests/test-avltree_list.c: New file.
39110         * tests/test-rbtree_list.c: New file.
39111         * tests/test-linkedhash_list.c: New file.
39112         * tests/test-avltreehash_list.c: New file.
39113         * tests/test-rbtreehash_list.c: New file.
39114         * tests/test-avltree_oset.c: New file.
39115         * tests/test-rbtree_oset.c: New file.
39116         * MODULES.html.sh (Container data structures): New section.
39117
39118 2006-07-17  Bruno Haible  <bruno@clisp.org>
39119
39120         * m4/gl_list.m4: New file.
39121
39122 2006-07-17  Bruno Haible  <bruno@clisp.org>
39123
39124         * lib/gl_list.h: New file.
39125         * lib/gl_list.c: New file.
39126         * lib/gl_array_list.h: New file.
39127         * lib/gl_array_list.c: New file.
39128         * lib/gl_carray_list.h: New file.
39129         * lib/gl_carray_list.c: New file.
39130         * lib/gl_linked_list.h: New file.
39131         * lib/gl_linked_list.c: New file.
39132         * lib/gl_anylinked_list1.h: New file.
39133         * lib/gl_anylinked_list2.h: New file.
39134         * lib/gl_avltree_list.h: New file.
39135         * lib/gl_avltree_list.c: New file.
39136         * lib/gl_anyavltree_list1.h: New file.
39137         * lib/gl_anyavltree_list2.h: New file.
39138         * lib/gl_rbtree_list.h: New file.
39139         * lib/gl_rbtree_list.c: New file.
39140         * lib/gl_anyrbtree_list1.h: New file.
39141         * lib/gl_anyrbtree_list2.h: New file.
39142         * lib/gl_anytree_list1.h: New file.
39143         * lib/gl_anytree_list2.h: New file.
39144         * lib/gl_linkedhash_list.h: New file.
39145         * lib/gl_linkedhash_list.c: New file.
39146         * lib/gl_anyhash_list1.h: New file.
39147         * lib/gl_anyhash_list2.h: New file.
39148         * lib/gl_avltreehash_list.h: New file.
39149         * lib/gl_avltreehash_list.c: New file.
39150         * lib/gl_rbtreehash_list.h: New file.
39151         * lib/gl_rbtreehash_list.c: New file.
39152         * lib/gl_anytreehash_list1.h: New file.
39153         * lib/gl_anytreehash_list2.h: New file.
39154
39155         * lib/gl_oset.h: New file.
39156         * lib/gl_oset.c: New file.
39157         * lib/gl_array_oset.h: New file.
39158         * lib/gl_array_oset.c: New file.
39159         * lib/gl_avltree_oset.h: New file.
39160         * lib/gl_avltree_oset.c: New file.
39161         * lib/gl_rbtree_oset.h: New file.
39162         * lib/gl_rbtree_oset.c: New file.
39163         * lib/gl_anytree_oset.h: New file.
39164
39165 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39166
39167         * m4/mkancesdirs.m4: New file.
39168         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
39169         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
39170         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
39171         it.
39172
39173 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39174
39175         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
39176         * lib/mkancesdirs.h: New files.
39177         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
39178         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
39179         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
39180         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
39181         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
39182         callers changed.  Revamp internals significantly, by not
39183         attempting to create directories that are temporarily more
39184         permissive than the final results.  Do not attempt to use
39185         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
39186         This removes some race conditions, fixes some bugs, and simplifies
39187         things.  Use new dirchownmod function to do owner and mode changes.
39188         * lib/mkdir-p.h: Likewise.
39189         * lib/modechange.c (octal_to_mode): New function.
39190         (struct mode_change): New member mentioned.
39191         (make_node_op_equals): New arg mentioned.  All callers changed.
39192         (mode_compile): Keep track of which mode bits the user has explicitly
39193         mentioned.
39194         (mode_adjust): New arg DIR, so that we implement the X op correctly.
39195         New arg PMODE_BITS, to keep track of which mode bits the user
39196         mentioned; it treats S_ISUID and S_ISGID speciall.
39197         All callers changed.
39198         * lib/modechange.h: Likewise.
39199
39200 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39201
39202         * MODULES.html.sh: Add mkancestors.
39203         * modules/mkancesdirs: New module.
39204         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
39205         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
39206         The chdir-safer and afs files are now orphans; I'll remove them
39207         unless someone speaks up.
39208         Add lib/dirchownmod.c, lib/dirchownmod.h.
39209         (Depends-on): Remove alloca, chown, save-cwd, dirname.
39210         Add lchown, mkancesdirs.
39211         (Maintainer): Add self.
39212
39213 2006-07-15  Karl Berry  <karl@gnu.org>
39214
39215         * gnulib-tool: help message wording/arrangement.
39216
39217 2006-07-14  Simon Josefsson  <jas@extundo.com>
39218
39219         * doc/gnulib.texi (Libtool and Windows): New section.
39220
39221 2006-07-12  Simon Josefsson  <jas@extundo.com>
39222
39223         * modules/gendocs (License): Fix license, approved by Karl.
39224
39225 2006-07-12  Eric Blake  <ebb9@byu.net>
39226
39227         * MODULES.html.sh: Add gendocs.
39228
39229 2006-07-11  Eric Blake  <ebb9@byu.net>
39230
39231         * modules/fdl: New module, to install doc/fdl.texi.
39232         * MODULES.html.sh: Add new section for documentation modules.
39233         * gnulib-tool: Avoid space-tab.
39234         (--doc-base): New option, to manage files from doc.
39235
39236 2006-07-11  Eric Blake  <ebb9@byu.net>
39237
39238         * m4/absolute-header.m4: Fix comments to match recent change.
39239
39240 2006-07-11  Eric Blake  <ebb9@byu.net>
39241
39242         * gnulib-tool: List --doc-base before --tests-base.
39243
39244 2006-07-11  Derek R. Price  <derek@ximbiot.com>
39245
39246         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
39247
39248 2006-07-11  Bruno Haible  <bruno@clisp.org>
39249
39250         * README: Mention where to put documentation.
39251
39252 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39253
39254         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
39255
39256 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39257
39258         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
39259         to stdint.m4.
39260
39261 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39262
39263         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
39264         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
39265         "no/such/file/stdint.h" when there is no such file, so that
39266         the resulting C code can be parsed by dodgy compilers.
39267         Problems reported by Bob Proulx.
39268
39269 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39270
39271         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
39272         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39273         macros into the GNU _D_EXACT_NAMLEN.
39274         * lib/savedir.c:  Likewise.
39275         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
39276
39277 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39278         and Paul Eggert  <eggert@cs.ucla.edu>
39279
39280         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
39281         * m4/savedir.m4:
39282         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39283         macros into the GNU _D_EXACT_NAMLEN.
39284
39285 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39286
39287         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
39288         around the absolute name, to work around a problem with the HP-UX
39289         11.23 native C compiler, reported by Bob Proulx.
39290
39291 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39292
39293         * doc/maintain.texi, make-stds.texi: Sync from
39294         <http://savannah.gnu.org/projects/gnustandards>.
39295
39296 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39297
39298         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
39299
39300 2006-07-09  Jim Meyering  <jim@meyering.net>
39301
39302         * m4/glob.m4: Remove a doubled word in a comment.
39303
39304 2006-07-09  Jim Meyering  <jim@meyering.net>
39305
39306         * lib/argp-pv.c: Remove a doubled word in a comment.
39307         * lib/check-version.c (check_version): Likewise.
39308         * lib/javacomp.c (compile_java_class): Likewise.
39309
39310 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
39311
39312         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
39313         for the benefit of people using Autoconf 2.60.  If you want to
39314         support older Autoconf versions you can copy m4/onceonly_2_57.m4
39315         (or m4/onceonly.m4, if pre-2.57) manually.
39316
39317 2006-07-08  Jim Meyering  <jim@meyering.net>
39318
39319         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
39320         comment.
39321         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
39322         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
39323         comment.
39324
39325 2006-07-08  Jim Meyering  <jim@meyering.net>
39326
39327         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
39328
39329 2006-07-07  Simon Josefsson  <jas@extundo.com>
39330
39331         * tests/test-crc.c: Change expected crc value, the test vector
39332         were probably computed using the old broken crc.c?
39333
39334 2006-07-06  Simon Josefsson  <jas@extundo.com>
39335
39336         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
39337         now the canonical place for the M4 file).
39338
39339         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
39340         from the sys_socket dependency now.
39341
39342         * modules/inet_pton (Files): Ditto.
39343
39344         * modules/inet_ntop (Files): Ditto.
39345
39346 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
39347
39348         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
39349         not gl_PREREQ_GETUSERSHELL.
39350
39351 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39352
39353         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
39354         with only one argument, for Autoconf 2.60.
39355         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
39356         expand to nothing, so add a shell command to avoid syntax error.
39357         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
39358
39359 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39360
39361         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
39362
39363 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39364
39365         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
39366         no longer needed.  Check for isblank decl.
39367         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
39368         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
39369         of existence.
39370
39371 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39372
39373         * lib/getloadavg.c: Use __VMS, not VMS.
39374         * lib/getopt.c: Likewise.
39375         * lib/getpagesize.h: Likewise.
39376         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
39377         and probably does not work.
39378
39379 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39380
39381         * lib/.cppi-disable: Add wcwidth.
39382         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
39383         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
39384         (ISGRAPH): Remove.  All uses changed to isgraph.
39385         (FOLD) [!defined _LIBC]: Remove special case.
39386         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
39387         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
39388         HAVE_ISBLANK.
39389         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
39390         case.
39391
39392 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39393
39394         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
39395         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
39396         brackets.  Other minor changes to suppress some compiler
39397         warnings.
39398
39399 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39400         and Paul Eggert  <eggert@cs.ucla.edu>
39401
39402         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
39403         of invoking obsolescent AC_HEADER_DIRENT macro.
39404         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
39405         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
39406         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
39407         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
39408         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
39409         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
39410         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
39411         * m4/readdir.m4: Remove; no longer needed.
39412
39413 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39414         and Paul Eggert  <eggert@cs.ucla.edu>
39415
39416         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
39417         Don't worry about this obsolete case any more.
39418         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
39419         directories.
39420         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
39421         worry about this obsolete case any more.
39422         * lib/fts.c: Likewise.
39423         * lib/getcwd.c: Likewise.
39424         * lib/glob.h: Likewise.
39425         * lib/savedir.c: Likewise.
39426
39427 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39428
39429         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
39430         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
39431         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
39432         needed.
39433         All uses removed.
39434         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39435         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39436         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
39437         needed.
39438         * m4/getdate.m4 (gl_GETDATE): Likewise.
39439         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39440         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39441         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39442         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39443         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39444         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39445         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
39446         needed.
39447
39448 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39449
39450         * lib/memcasecmp.c: Include <limits.h>.
39451         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
39452         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
39453         Don't assume isdigit succeeds only on '0' through '9'.
39454
39455 2006-07-05  Eric Blake  <ebb9@byu.net>
39456
39457         * modules/getaddrinfo (Depends-on): Add snprintf.
39458
39459 2006-07-05  Eric Blake  <ebb9@byu.net>
39460
39461         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
39462         to avoid 'header present but could not be compiled' on cygwin.
39463
39464 2006-07-05  Eric Blake  <ebb9@byu.net>
39465
39466         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
39467         missing from netdb.h.
39468         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
39469
39470 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39471
39472         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
39473         no longer needed.
39474         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
39475         * m4/getdate.m4 (gl_GETDATE): Likewise.
39476         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39477         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39478         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39479         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39480         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39481
39482 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39483
39484         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
39485         All uses of is_space replaced by isspace.
39486         * lib/exit.h: Don't talk about STDC_HEADERS.
39487         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
39488         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
39489         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
39490         replaced by isprint etc.
39491         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
39492         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39493         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
39494         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
39495         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
39496         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39497
39498 2006-07-05  Bruno Haible  <bruno@clisp.org>
39499
39500         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
39501         the function exists, before testing against AIX.
39502         Reported by Martin Lambers <marlam@marlam.de>.
39503
39504 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39505
39506         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
39507         From Mark D. Baushke.
39508
39509 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39510
39511         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
39512         to the absolute name, not just one, to bypass Sun C 5.8's
39513         "warning: #include of /usr/include/... may be non-portable".
39514
39515 2006-07-04  Eric Blake  <ebb9@byu.net>
39516
39517         * modules/dirname-tests: New test module.
39518         * tests/test-dirname.c: New file, replacing dirname.c
39519         TEST_DIRNAME section that was recently deleted.
39520
39521 2006-07-04  Bruno Haible  <bruno@clisp.org>
39522
39523         Assume ANSI C header files and <ctype.h> functions.
39524         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
39525         (mbsnwidth): Use isprint, iscntrl instead.
39526
39527 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39528
39529         Merge from coreutils.
39530         * MODULES.html.sh: Add xstrtold.
39531         * modules/xstrtold: New file.
39532         * modules/cycle-check (Files): Add lib/same-inode.h.
39533         * modules/dirname (Files): Add m4/double-slash-root.m4.
39534         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
39535         * modules/mkdir-p (Files): Add lib/same-inode.h.
39536         * modules/same (Files): Add lib/same-inode.h.
39537
39538 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39539
39540         * m4/absolute-header.m4: Renamed from full-header-path.m4.
39541         This is to keep the terminology clean; POSIX talks about
39542         "absolute pathnames", not "full pathnames", but the GNU
39543         Coding Standards say to use "path" for something else;
39544         so use "absolute" to keep both sides happy.
39545         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
39546         Set gl_absolute_header, not gl_full_header_path.
39547         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
39548         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
39549         All uses changed.
39550
39551         Merge from coreutils.
39552
39553         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39554
39555         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
39556         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
39557         want to require the building of c-strtod.o.
39558         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
39559         needs -lm directly.
39560         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
39561
39562         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
39563
39564         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
39565         --as-needed option if available.  Problem reported by Albert Chin in
39566         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
39567         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
39568         cc merely issues a bunch of annoying warnings for --as-needed
39569         (this problem was reported by Bob Proulx).  Also, try linking with
39570         -lm to detect a bug in binutils 2.16 (this problem was reported
39571         by Ralf Wildenhues).
39572
39573         2006-06-18  Jim Meyering  <jim@meyering.net>
39574
39575         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
39576         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
39577         macro.
39578         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
39579         also check for glibc-2.4's abort-inducing bug.
39580
39581         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
39582         Low-probability clean-up should be to use rmdir to get rid of
39583         the just-created directory, not unlink.
39584
39585         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
39586         configure fail, and request a bug report to inform us about it.
39587         Add a comment that, barring reports to the contrary, in 2007 we'll
39588         assume ftruncate is universally available.
39589
39590         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39591
39592         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
39593
39594         2006-03-12  Jim Meyering  <jim@meyering.net>
39595
39596         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
39597         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
39598         * m4/same.m4 (gl_SAME): Likewise.
39599         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
39600
39601         2006-03-11  Eric Blake  <ebb9@byu.net>
39602
39603         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
39604         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
39605         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
39606         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
39607
39608 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39609
39610         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
39611         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
39612         reported by Mark D. Baushke, one in
39613         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
39614
39615         Merge from coreutils.
39616
39617         * lib/.cppi-disable: Add stdint_.h.
39618         * lib/.cvsignore: Add stdint.h.
39619
39620         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39621
39622         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
39623         both double and long double versions.
39624         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
39625         * lib/xstrtold.c: New file.
39626         * lib/xstrtod.h (xstrtold): New decl.
39627
39628         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39629
39630         * lib/filemode.c (setst): Remove.
39631         (strmode): Rewrite to avoid setst.  This makes the code shorter,
39632         (arguably) clearer, and the generated code is a bit smaller on my
39633         Debian GNU/Linux stable x86 host.
39634
39635         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39636
39637         * lib/filemode.c: Include "filemode.h" first, to test the interface.
39638         Assume that filemode.h includes sys/types.h and sys/stat.h.
39639         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
39640         (ftypelet): Reorder to put common cases first, for efficiency.
39641         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
39642         to do 'M'.
39643         (strmode): Renamed from mode_string, and now stores 12 bytes instead
39644         of 10, for compatibility with FreeBSD.  All callers changed.
39645         (filemodestring): Now stores 12 bytes instead of 10, and sets file
39646         types that can't be deduced solely from st_mode.  First arg is now a
39647         const pointer.
39648         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
39649         (strmode): Renamed from mode_string.
39650         (filemodestring): New decl.
39651         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
39652         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
39653         needed.
39654         (S_ISPORT, S_ISWHT): New macros, if not already defined.
39655
39656         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
39657
39658         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
39659         fsusage.h now does that.  Include fsusage.h first, to test interface.
39660         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
39661         at most one method (the old code could have generated decls that
39662         didn't conform to C89, not that this was ever exercised).
39663         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
39664
39665         2006-03-19  Jim Meyering  <jim@meyering.net>
39666
39667         Work even in a chroot where d_ino values for entries in "/"
39668         don't match the stat.st_ino values for the same names.
39669         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
39670         number, iterate through all entries again, using lstat instead.
39671         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
39672         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
39673
39674         * lib/getcwd.c (__getcwd): Clarify a comment.
39675         Use memcpy in place of a call to strcpy.
39676
39677         2006-03-12  Jim Meyering  <jim@meyering.net>
39678
39679         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
39680         matches that of the current directory (which we're about to chdir ".."
39681         out of), then save the dev-ino of the parent, instead.
39682
39683         * lib/same-inode.h (SAME_INODE): New file/macro.
39684         * lib/chdir-safer.c (SAME_INODE): Remove definition.
39685         Include "same-inode.h", instead.
39686         * lib/same.c: Likewise.
39687         * lib/cycle-check.h: Include "same-inode.h".
39688         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
39689         * lib/cycle-check.c (SAME_INODE): Remove definition.
39690         * lib/root-dev-ino.h: Include "same-inode.h".
39691
39692         2006-03-11  Eric Blake  <ebb9@byu.net>
39693
39694         * lib/same.c (same_name): s/base_name/last_component/
39695         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
39696         * lib/filenamecat.c (file_name_concat): Likewise.
39697
39698         2006-03-11  Eric Blake  <ebb9@byu.net>,
39699                     Paul Eggert  <eggert@cs.ucla.edu>
39700
39701         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
39702         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
39703         drive prefix.
39704         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
39705         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
39706         (last_component): New method.
39707         * lib/dirname.c (dir_len): Determine when drive letters need a
39708         subsequent slash.  Preserve // when it is special.
39709         (dir_name): Don't append dot when drive letter is absolute.
39710         [TEST_DIRNAME]: Move into a full-blown gnulib test.
39711         * lib/basename.c (base_name): New semantics - malloc the result.
39712         Preserve // when it is special.  Preserve relative files that look
39713         like drive letters.
39714         (base_len): Preserve // when it is special.
39715         (last_component): New method, similar to old base_name semantics.
39716         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
39717         base_name.  Strip redundant slashes from ///.
39718
39719 2006-07-03  Jim Meyering  <jim@meyering.net>
39720
39721         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
39722         macro is used before the first cycle_check call.
39723
39724 2006-07-03  Eric Blake  <ebb9@byu.net>
39725
39726         * modules/dirname (Depends-on): Add xstrndup.
39727
39728 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39729
39730         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
39731         test cases, so that config.log is a bit easier to follow.
39732
39733 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39734
39735         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
39736         both are 64 bits, since this seems to be the tradition, and this
39737         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
39738         we ever run into a host that prefers long long to long in this
39739         case, we'll need another configure-time test.  Problem reported by
39740         Jim Meyering.
39741
39742 2006-07-02  Eric Blake  <ebb9@byu.net>
39743
39744         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
39745
39746 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39747
39748         * modules/inttypes (Depends-on): No longer depends on stdint.
39749         * modules/stdint (Description): Say more about assumptions.
39750         Say that the fast types might differ.  Say macros are used.
39751         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
39752         (Makefile.am): Revise list of substituted symbols to match
39753         new stdint.m4.
39754         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
39755         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
39756         * tests/test-stdint.c (verify_same_types)
39757         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
39758         the code conforms to C99/C89.
39759         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
39760         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
39761
39762 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39763
39764         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
39765         but fix a bug, by requiring at least 64 bits.
39766         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
39767         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
39768         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
39769         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
39770
39771         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
39772         changes.  Make 2.59 a prerequisite.  Check and substitute for
39773         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
39774         inttypes.h.  Do not use special include files; just use the
39775         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
39776         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
39777         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
39778         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
39779         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
39780         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
39781         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
39782         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
39783         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
39784         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
39785         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
39786         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
39787         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
39788         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
39789         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
39790         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
39791         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
39792         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
39793         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
39794         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
39795         WINT_MAX.  Check for C99 conformance more strictly, by detecting
39796         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
39797         not check for things that C99 does not require, e.g., int8_t.  If
39798         a test isn't needed unless <stdint.h> isn't working, and is
39799         unlikely to be needed for any other reason, then don't do it
39800         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
39801         size_t, since we assume C89 freestanding at least.  Do not check
39802         for sig_atomic_t, wchar_t, or wint_t, since the code now does
39803         the right thing even if the types are not defined.  Instead use:
39804         (gl_STDINT_TYPE_PROPERTIES): New macro.
39805         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
39806         testing whether <sys/types.h> clashes, as Autoconf does this for
39807         us now.  All uses removed.
39808         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
39809         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
39810         (gl_CHECK_TYPE_SAME):
39811         Remove; no longer needed.
39812         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
39813         exists, since we'll return 0 anyway in that case.
39814         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
39815
39816 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39817
39818         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
39819         possible collision with system files.
39820         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
39821         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
39822         WCHAR_MIN and WCHAR_MAX in this case.
39823         (<stddef.h>): Do not include; no longer needed.
39824         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
39825         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
39826         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
39827         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
39828         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
39829         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
39830         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
39831         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
39832         !defined(__c99))]: Include in this case too, since it's harmless
39833         now.
39834         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
39835         dangerous to do so.
39836         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
39837         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
39838         (_STDINT_MIN, _STDINT_MAX): New macros.
39839         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
39840         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
39841         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
39842         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
39843         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
39844         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
39845         macros, not typedefs; this simplifies things quite a bit.
39846         Use long int for all types narrower than int64_t.
39847         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
39848         Define in terms of long long int or int64_t or long int,
39849         not int64_t or int32_t.  This saves some compile-time testing.
39850         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
39851         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
39852         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
39853         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
39854         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
39855         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
39856         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
39857         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
39858         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
39859         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
39860         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39861         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39862         undef any previous version and define our own version, for
39863         simplicity and consistency with the new macros for types.
39864         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39865         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39866         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
39867         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
39868         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
39869         @WINT_T_SUFFIX@ to keep things simple here.
39870         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
39871         Simplify by assuming typical 8/16/32/64 host, since we're
39872         already doing that elsewhere anyway.
39873         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
39874         and assume long long int is 64 bits if available.  This
39875         speeds up 'configure'.
39876
39877 2006-07-01  Eric Blake  <ebb9@byu.net>
39878
39879         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
39880         Reported by Andreas Buening.
39881
39882 2006-07-01  Eric Blake  <ebb9@byu.net>
39883
39884         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
39885
39886 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39887
39888         * lib/getaddrinfo.c: fixed typo
39889
39890 2006-06-29  Jim Meyering  <jim@meyering.net>
39891
39892         * modules/strftime (Maintainer): Add my name, since with the
39893         FPRINTFTIME changes strftime.c has forked from glibc.
39894
39895 2006-06-29  Eric Blake  <ebb9@byu.net>
39896
39897         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
39898
39899 2006-06-29  Eric Blake  <ebb9@byu.net>
39900
39901         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
39902
39903 2006-06-29  Eric Blake  <ebb9@byu.net>
39904
39905         * lib/stat_.h: New file.
39906
39907 2006-06-29  Eric Blake  <ebb9@byu.net>
39908
39909         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
39910         unused static function.
39911
39912 2006-06-29  Eric Blake  <ebb9@byu.net>
39913
39914         * doc/functions.texi (Function Portability): Document missing lstat
39915         on mingw.
39916
39917 2006-06-29  Eric Blake  <ebb9@byu.net>
39918
39919         * MODULES.html.sh: Add sys_stat.
39920         * modules/sys_stat: New module.
39921         * modules/mkstemp (Depends-on): Add sys_stat.
39922
39923 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39924
39925         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
39926
39927 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39928
39929         * m4/c-bs-a.m4: Removed.
39930
39931 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39932
39933         * lib/strftime.c: Assume strftime() exists.
39934
39935 2006-06-29  Derek Price  <derek@ximbiot.com>
39936
39937         * modules/c-bs-a: Removed - \a is C89.
39938         * MODULES.html.sh: Remove c-bs-a.
39939
39940 2006-06-29  Bruno Haible  <bruno@clisp.org>
39941
39942         * modules/wcwidth (License): Change to LGPL.
39943
39944 2006-06-28  Simon Josefsson  <jas@extundo.com>
39945
39946         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
39947         on _WIN32.
39948
39949         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
39950         getnameinfo.
39951
39952 2006-06-28  Simon Josefsson  <jas@extundo.com>
39953
39954         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
39955
39956 2006-06-28  Simon Josefsson  <jas@extundo.com>
39957
39958         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
39959         functions there.  It will succeed on Windows XP, but on Windows
39960         2000 and (presumably) earlier, it will fail, and use the internal
39961         re-implementation.
39962         (use_win32_p): New function.
39963         (getaddrinfo): Use strtoul on servname, to support numeric ports.
39964         Support AI_NUMERICSERV to disable getservbyname.
39965         (getnameinfo): New function, only supports
39966         NI_NUMERICHOST|NI_NUMERICSERV for now.
39967
39968         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
39969         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
39970         getnameinfo.
39971
39972 2006-06-28  Eric Blake  <ebb9@byu.net>
39973
39974         * modules/wcwidth: New file.
39975         * modules/mbchar (Depends-on): Add wcwidth.
39976         * modules/mbswidth (Depends-on): Add wcwidth.
39977         * MODULES.html.sh: Add wcwidth.
39978
39979 2006-06-28  Eric Blake  <ebb9@byu.net>
39980
39981         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
39982         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
39983
39984 2006-06-28  Eric Blake  <ebb9@byu.net>
39985
39986         * lib/xvasprintf.h: Fix comments.
39987
39988 2006-06-28  Eric Blake  <ebb9@byu.net>
39989
39990         * lib/mbchar.h (wcwidth): Include wcwidth.h.
39991         * lib/mbswidth.c (wcwidth): Move from here...
39992         * lib/wcwidth.h: ...to this new file.
39993
39994 2006-06-28  Derek R. Price  <derek@ximbiot.com>
39995
39996         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
39997
39998         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
39999         it's obsolete.
40000         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
40001
40002 2006-06-28  Derek R. Price  <derek@ximbiot.com>
40003
40004         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
40005         Autoconf 2.60 says this stuff was obsolete.
40006
40007 2006-06-28  Bruno Haible  <bruno@clisp.org>
40008
40009         * modules/wcwidth (Files): Add m4/wchar_t.m4.
40010
40011 2006-06-28  Bruno Haible  <bruno@clisp.org>
40012
40013         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
40014         gt_TYPE_WCHAR_T.
40015
40016 2006-06-28  Bruno Haible  <bruno@clisp.org>
40017
40018         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
40019         declaration for wcwidth.
40020         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
40021
40022 2006-06-28  Bruno Haible  <bruno@clisp.org>
40023
40024         * lib/mkdtemp.c [MINGW]: Include <io.h>.
40025         (mkdir): Define using _mkdir.
40026
40027 2006-06-28  Bruno Haible  <bruno@clisp.org>
40028
40029         * lib/getaddrinfo.h: Fix POSIX URL.
40030         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
40031         _WIN32.
40032         (use_win32_p): Make static.
40033         (getaddrinfo): Reject service name if it is empty or does not consist
40034         solely of decimal digits, or if its value is > 65535.
40035         (getnameinfo): Remove useless casts.
40036
40037 2006-06-27  Simon Josefsson  <jas@extundo.com>
40038
40039         * modules/sys_select: New file, suggested by Bruno Haible, Paul
40040         Eggert and Martin Lambers.
40041
40042 2006-06-27  Simon Josefsson  <jas@extundo.com>
40043
40044         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
40045         Eggert and Martin Lambers.
40046
40047 2006-06-27  Bruno Haible  <bruno@clisp.org>
40048
40049         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
40050         result to 0, not to empty.
40051         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
40052
40053 2006-06-27  Bruno Haible  <bruno@clisp.org>
40054
40055         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
40056
40057 2006-06-26  Simon Josefsson  <jas@extundo.com>
40058
40059         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
40060         present.
40061
40062 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
40063
40064         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
40065         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
40066         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
40067
40068 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
40069
40070         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
40071
40072 2006-06-26  Bruno Haible  <bruno@clisp.org>
40073
40074         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
40075
40076 2006-06-26  Bruno Haible  <bruno@clisp.org>
40077
40078         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
40079
40080 2006-06-26  Bruno Haible  <bruno@clisp.org>
40081
40082         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
40083         SGI C compiler in pre-C99 mode.
40084         Suggested by Mark D. Baushke and Larry Jones.
40085
40086 2006-06-26  Bruno Haible  <bruno@clisp.org>
40087
40088         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
40089         WCHAR_MAX.
40090         Reported by Mark D. Baushke and Larry Jones.
40091
40092 2006-06-26  Bruno Haible  <bruno@clisp.org>
40093
40094         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
40095         in pre-C99 mode.
40096         Suggested by Mark D. Baushke and Larry Jones.
40097
40098 2006-06-23  Simon Josefsson  <jas@extundo.com>
40099             Bruno Haible  <bruno@clisp.org>
40100
40101         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
40102         Emit mostlyclean-local rule.
40103         (func_emit_tests_Makefile_am): Likewise.
40104         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
40105
40106 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
40107
40108         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
40109
40110 2006-06-23  Bruno Haible  <bruno@clisp.org>
40111
40112         * tests/test-stdint.c: Update to match ISO C 99 Technical
40113         Corrigendum 1.
40114
40115 2006-06-23  Bruno Haible  <bruno@clisp.org>
40116
40117         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
40118
40119 2006-06-23  Bruno Haible  <bruno@clisp.org>
40120
40121         * lib/stdint_.h: Treat IRIX like OpenBSD.
40122
40123 2006-06-23  Bruno Haible  <bruno@clisp.org>
40124
40125         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
40126         ISO C 99 Technical Corrigendum 1.
40127
40128 2006-06-22  Simon Josefsson  <jas@extundo.com>
40129
40130         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
40131         MinGW.
40132
40133 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
40134
40135         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
40136         needed.  Some compiler complained about some of them.  Problem reported
40137         by Larry Jones in
40138         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
40139
40140 2006-06-21  Simon Josefsson  <jas@extundo.com>
40141
40142         * tests/test-getaddrinfo.c: New file.
40143
40144         * modules/getaddrinfo-tests: New file.
40145
40146         * MODULES.html.sh: Add inet_pton.
40147
40148         * modules/inet_pton: New file.
40149
40150 2006-06-21  Simon Josefsson  <jas@extundo.com>
40151
40152         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
40153         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
40154         of using the (limited) gnulib implementation on Windows XP.
40155
40156         * m4/inet_pton.m4: New file.
40157
40158 2006-06-21  Simon Josefsson  <jas@extundo.com>
40159
40160         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
40161         variable.
40162
40163         * lib/socket_.h: Don't define WINVER.
40164
40165         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
40166         slightly modified to work in gnulib.
40167
40168 2006-06-21  Simon Josefsson  <jas@extundo.com>
40169
40170         * doc/gnulib.texi (Windows sockets): Add.
40171
40172 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
40173
40174         * lib/read-file.c (fread_file): Start with buffer allocation of
40175         0 bytes rather than 1 byte; this simplifies the code.
40176         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
40177         code to free buffer and save/restore errno.
40178         (internal_read_file): Remove unused local.
40179
40180 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
40181
40182         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
40183         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
40184         Problem reported by Denis Excoffier in
40185         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
40186
40187 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40188
40189         * modules/sys_socket, modules/socklen: Include sys/types since
40190         FreeBSD 4.x's sys/socket.h needs it.
40191
40192 2006-06-19  Simon Josefsson  <jas@extundo.com>
40193
40194         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
40195
40196 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
40197
40198         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
40199
40200 2006-06-19  Bruno Haible  <bruno@clisp.org>
40201
40202         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
40203         and FULL_PATH_INTTYPES_H in angle brackets.
40204         Reported by Mark D. Baushke <mdb@gnu.org>.
40205
40206 2006-06-17  Eric Blake  <ebb9@byu.net>
40207
40208         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
40209         errno.
40210
40211 2006-06-17  Bruno Haible  <bruno@clisp.org>
40212
40213         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
40214         <sys/inttypes.h>.
40215
40216 2006-06-17  Bruno Haible  <bruno@clisp.org>
40217
40218         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
40219         whether errno is declared. Assume <errno.h> declares errno.
40220
40221 2006-06-17  Bruno Haible  <bruno@clisp.org>
40222
40223         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
40224
40225 2006-06-17  Bruno Haible  <bruno@clisp.org>
40226
40227         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
40228         problem on Solaris 2.5.1.
40229
40230 2006-06-16  Eric Blake  <ebb9@byu.net>
40231
40232         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
40233         * lib/unicodeio.c [!defined errno]: Likewise.
40234         * lib/strtol.c [!defined errno]: Likewise.
40235         * lib/strtod.c [!defined errno]: Likewise.
40236
40237 2006-06-15  Eric Blake  <ebb9@byu.net>
40238
40239         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
40240
40241 2006-06-15  Eric Blake  <ebb9@byu.net>
40242
40243         * config/srclist.txt (ssize_t.m4): Lose sync.
40244
40245 2006-06-15  Bruno Haible  <bruno@clisp.org>
40246
40247         * modules/stdint (Files): Include m4/full-header-path.m4,
40248         m4/size_max.m4, m4/wchar_t.m4.
40249         (Makefile.am): Many more substitutions.
40250         * modules/stdint-tests: New file.
40251         * tests/test-stdint.c: New file.
40252
40253 2006-06-15  Bruno Haible  <bruno@clisp.org>
40254
40255         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
40256         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
40257         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
40258         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
40259         gl_CHECK_TYPE_SAME): New macros.
40260
40261 2006-06-15  Bruno Haible  <bruno@clisp.org>
40262
40263         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
40264
40265 2006-06-15  Bruno Haible  <bruno@clisp.org>
40266
40267         * lib/stdint_.h: Rewritten to be fully auto-configured.
40268         Fixes bug on HP-UX/IA64.
40269
40270 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
40271
40272         * lib/getdate.y (__attribute__): Don't define if already defined.
40273         Problem reported by Larry Jones.
40274         * lib/utimens.c (__attribute__): Likewise.
40275
40276 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
40277
40278         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
40279         reported by Andreas Schwab.
40280
40281 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40282             Bruno Haible  <bruno@clisp.org>
40283
40284         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
40285         check for the declaration of strnlen and a run test that exposes the
40286         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
40287         rpl_strndup.
40288
40289 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40290             Bruno Haible  <bruno@clisp.org>
40291
40292         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
40293
40294 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40295
40296         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
40297         compile test, for Tru64 4.0D.
40298
40299 2006-05-28  Karl Berry  <karl@gnu.org>
40300
40301         * config/srclist.txt (printf-args.c): lose sync.
40302
40303 2006-05-26  Martin Lambers  <marlam@marlam.de>
40304
40305         * lib/getpass.c: Updates the test for the native W32 API, and adds
40306         missing includes, thus fixing compilation warnings.
40307
40308 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
40309
40310         * lib/exclude.c (exclude_fnmatch): New function.
40311         (excluded_file_name): Call exclude_fnmatch.
40312         * lib/exclude.h (excluded_file_name): New prototype
40313
40314 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
40315
40316         * lib/tempname.c (small_open, large_open): New macros.
40317         (__open, __open64) [!_LIBC]: Remove.
40318         (__gen_tempname): Use small_open and large_open instead of __open
40319         and __open64.  This fixes a portability bug on HP-UX 11.11i
40320         reported by Simon Wing-Tang in
40321         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
40322
40323 2006-05-24  Bruno Haible  <bruno@clisp.org>
40324
40325         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
40326         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
40327         Reported by Thorsten Maerz <torte@netztorte.de> via
40328         Aaron Stone <aaron@serendipity.cx>.
40329
40330 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40331
40332         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
40333         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
40334         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
40335         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
40336         not really conditional on the cache.
40337         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
40338
40339 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40340
40341         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
40342         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
40343         (my_usleep): Don't mishandle maximum value.
40344
40345 2006-05-19  Jim Meyering  <jim@meyering.net>
40346
40347         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
40348
40349 2006-05-17  Bruno Haible  <bruno@clisp.org>
40350
40351         Cygwin portability.
40352         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
40353
40354 2006-05-17  Bruno Haible  <bruno@clisp.org>
40355
40356         * lib/stdint_.h: Fix recognition of Cygwin.
40357
40358 2006-05-15  Bruno Haible  <bruno@clisp.org>
40359
40360         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
40361         on libtool patch by Ralf Wildenhues.
40362
40363 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
40364
40365         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
40366         test for C99 conformance; (bool) 0.5 is an integer constant
40367         expression, but (bool) -0.5 is not.  Problem reported by Fedor
40368         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
40369
40370 2006-05-11  Simon Josefsson  <jas@extundo.com>
40371
40372         * m4/xvasprintf.m4: Fix obvious typo.
40373
40374 2006-05-11  Jim Meyering  <jim@meyering.net>
40375
40376         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
40377         James Lemley.
40378
40379 2006-05-10  Simon Josefsson  <jas@extundo.com>
40380
40381         * lib/md4.c: Typo fix, update copyright years.
40382         (K1, K2): Don't use L because it turn computations into 64-bit on
40383         64-bit platforms.
40384
40385 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
40386
40387         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
40388         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
40389         unwanted sign propagation, e.g., on hosts with 64-bit int.
40390         There still are some problems with reeelly weird theoretical hosts
40391         (e.g., 33-bit int) but it's not worth worrying about now.
40392         * lib/sha1.c (rol): Likewise.
40393         (K1, K2, K3, K4): Remove unnecessary L suffix.
40394
40395 2006-05-10  Bruno Haible  <bruno@clisp.org>
40396
40397         * lib/des.c: Cast to avoid warnings.
40398
40399 2006-05-09  Bruno Haible  <bruno@clisp.org>
40400
40401         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
40402         (Depends-on): Depend also on xsize, stdarg.
40403         (configure.ac): Add gl_XVASPRINTF.
40404
40405 2006-05-09  Bruno Haible  <bruno@clisp.org>
40406
40407         * m4/xvasprintf.m4: New file.
40408
40409 2006-05-09  Bruno Haible  <bruno@clisp.org>
40410
40411         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
40412         (EOVERFLOW): Define fallback value.
40413         (xstrcat): New function.
40414         (xvasprintf): Recognize the special case of a string concatenation.
40415
40416 2006-05-08  Eric Blake  <ebb9@byu.net>
40417
40418         * gnulib-tool (func_version): Base copyright year on CVS date.
40419         (func_emit_copyright_notice): New function.
40420         (func_emit_lib_Makefile_am): Use it.
40421         (func_emit_tests_Makefile_am): Likewise.
40422         (func_import): Likewise.
40423
40424 2006-05-08  Bruno Haible  <bruno@clisp.org>
40425
40426         * modules/stdarg: New file.
40427         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
40428
40429 2006-05-08  Bruno Haible  <bruno@clisp.org>
40430
40431         * m4/stdarg.m4: New file, from GNU gettext.
40432
40433 2006-05-08  Bruno Haible  <bruno@clisp.org>
40434
40435         * config/srclist.txt (build-aux/config.rpath): different from latest
40436         release.
40437
40438 2006-05-08  Bruno Haible  <bruno@clisp.org>
40439
40440         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
40441
40442 2006-05-05  Jim Meyering  <jim@meyering.net>
40443
40444         * m4/warning.m4: New file, derived from bison's file by the same name.
40445
40446 2006-05-03  Bruno Haible  <bruno@clisp.org>
40447
40448         * lib/stdint_.h: Shorter URL.
40449         * lib/inttypes.h: Likewise.
40450
40451 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40452
40453         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
40454
40455 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40456
40457         * lib/verify.h: Document the internals better.  Most of this change
40458         was written by Bruno Haible.
40459
40460 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40461
40462         * doc/verify.texi: New file, partly based on a proposal by
40463         Bruno Haible.
40464
40465 2006-05-02  Bruno Haible  <bruno@clisp.org>
40466
40467         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
40468         test from here...
40469         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
40470
40471 2006-04-29  Bruno Haible  <bruno@clisp.org>
40472
40473         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
40474         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
40475
40476 2006-04-29  Bruno Haible  <bruno@clisp.org>
40477
40478         * gnulib-tool: Make --update option actually work.
40479
40480 2006-04-29  Bruno Haible  <bruno@clisp.org>
40481
40482         * doc/gcd.texi: New file.
40483         * doc/gnulib.texi: Include it.
40484
40485 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
40486
40487         * lib/getdate.y (get_date): When adding relative date, start with the
40488         initial time, not with the result of the first mktime call.
40489
40490 2006-04-25  Bruno Haible  <bruno@clisp.org>
40491
40492         * gnulib-tool (func_import): Output the include directives in three
40493         blocks, sorted separately.
40494         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40495
40496 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40497
40498         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
40499         to define main with arguments, for C++.  Reported by Eric Blake.
40500         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
40501         Prefer 'int main ()' to 'int main (void)', for C++.
40502         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
40503         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
40504         for 'main', for C99 and C++.
40505
40506 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40507
40508         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
40509         Don't assume that exit status -1 is valid.
40510         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40511         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
40512         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
40513         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
40514         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
40515         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
40516         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
40517         functions can be used without declaring them, or that you can
40518         exit with status -1.
40519         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
40520
40521 2006-04-24  Karl Berry  <karl@gnu.org>
40522
40523         * config/srclist.txt (longdouble.m4): sync lost.
40524
40525 2006-04-24  Eric Blake  <ebb9@byu.net>
40526
40527         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
40528
40529 2006-04-24  Bruno Haible  <bruno@clisp.org>
40530
40531         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
40532         poll() implementation in AIX.
40533         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40534
40535 2006-04-24  Bruno Haible  <bruno@clisp.org>
40536
40537         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
40538         assigned exactly once.
40539
40540 2006-04-23  Claudio Fontana  <claudio@gnu.org>
40541             Bruno Haible  <bruno@clisp.org>
40542
40543         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
40544         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
40545         for AM_CPPFLAGS.
40546
40547 2006-04-23  Bruno Haible  <bruno@clisp.org>
40548
40549         * modules/copy-file: Depend on unistd.
40550         * modules/execute: Likewise.
40551         * modules/fatal-signal: Likewise.
40552         * modules/findprog: Likewise.
40553         * modules/mkdtemp : Likewise.
40554         * modules/pipe: Likewise.
40555         * modules/wait-process: Likewise.
40556
40557 2006-04-23  Bruno Haible  <bruno@clisp.org>
40558
40559         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
40560         condition was already detected.
40561         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40562
40563 2006-04-23  Bruno Haible  <bruno@clisp.org>
40564
40565         * lib/copy-file.c: Include <unistd.h> unconditionally.
40566         * lib/execute.c: Likewise.
40567         * lib/fatal-signal.c: Likewise.
40568         * lib/findprog.c: Likewise.
40569         * lib/mkdtemp.c: Likewise.
40570         * lib/pipe.h: Likewise.
40571         * lib/pipe.c: Likewise.
40572         * lib/wait-process.h: Likewise.
40573
40574 2006-04-23  Bruno Haible  <bruno@clisp.org>
40575
40576         * gnulib-tool (func_usage): Fix --import description. Document
40577         --update.
40578         (func_import): Create temporary file in a temporary directory, if
40579         --dry-run is specified. Silence errors from 'grep' when there are no
40580         m4 files in $m4dir.
40581         (func_create_testdir): Silence errors from 'grep' when there are no
40582         m4 files in $m4dir.
40583         Reported by Karl Berry <karl@freefriends.org>.
40584
40585 2006-04-20  Bruno Haible  <bruno@clisp.org>
40586
40587         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
40588         one argument, so that the code will be portable to Autoconf 2.60.
40589         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
40590         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
40591         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
40592
40593 2006-04-19  Derek Price  <derek@ximbiot.com>
40594             Eric Blake  <ebb9@byu.net>
40595
40596         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
40597         rather than "/full/path.h".  Update comment to match.  Shorten &
40598         generalize m4_translit call via AS_TR_CPP.
40599
40600 2006-04-19  Derek Price  <derek@ximbiot.com>
40601             Eric Blake  <ebb9@byu.net>
40602
40603         * lib/inttypes.h: Correct grammar in comment.
40604
40605 2006-04-18  Derek Price  <derek@ximbiot.com>
40606             Paul Eggert  <eggert@cs.ucla.edu>
40607
40608         * modules/inttypes: New file.
40609         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
40610
40611 2006-04-18  Derek Price  <derek@ximbiot.com>
40612             Paul Eggert  <eggert@cs.ucla.edu>
40613
40614         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
40615         New files.
40616
40617 2006-04-18  Derek Price  <derek@ximbiot.com>
40618             Paul Eggert  <eggert@cs.ucla.edu>
40619
40620         * lib/inttypes.h: New file.
40621         * lib/strtoimax.c: Assume <inttypes.h>.
40622
40623 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
40624
40625         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
40626         isn't mounted.  Problem reported by Kir Kolyshkin.
40627
40628 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
40629
40630         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
40631         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
40632         Derek R. Price.
40633         * lib/regex.h (RE_DUP_MAX): Update comment to match current
40634         implementation.
40635
40636 2006-04-12  Eric Blake  <ebb9@byu.net>
40637
40638         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
40639         is now done automatically by the corresponding Autoconf macro.
40640
40641 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
40642
40643         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
40644         time_r.h.
40645
40646 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40647
40648         Merge regex changes from libc, removing some of our
40649         POSIX-conformance changes that were rejected and redoing them in a
40650         less-intrusive way.
40651
40652         * lib/regcomp.c (re_compile_internal, init_dfa):
40653         Length arg is now size_t, not Idx.  All uses changed.
40654         (peek_token): Forward decl now says internal_function.
40655         (__re_error_msgid, __re_error_msgid_idx):
40656         Now static rather than extern with attribute_hidden.
40657         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
40658         For some reason libc prefers K&R style defns for external functions.
40659         (regerror) [!defined _LIBC]: Likewise.
40660         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
40661         (seek_collating_symbol_entry, lookup_collation_sequence_value):
40662         (build_range_exp, build_collating_symbol):
40663         Use K&R-style defn.
40664         (re_compile_fastmap): Use '\0' to memset, not 0.
40665         (utf8_sb_map): Make the calculations more obvious.
40666         (init_dfa, parse_bracket_exp, build_charclass_op):
40667         Call calloc and cast result, as glibc does.
40668         (init_word_char, fetch_token, peek_token, peek_token_bracket):
40669         (build_range_exp, build_collating_symbol):
40670         Now internal functions.
40671
40672         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
40673
40674         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
40675         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
40676         Don't depend on VMS; depend on __VMS instead, for POSIX
40677         namespace cleanness.
40678         (regoff_t): Define to ssize_t, not long int.
40679
40680         Remove the REG_ macros named below.  Instead, make the old names
40681         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
40682         __USE_GNU_REGEX.
40683         (REG_BACKSLASH_ESCAPE_IN_LISTS):
40684         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
40685         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
40686         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
40687         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
40688         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
40689         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
40690         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
40691         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
40692         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
40693         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
40694         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
40695         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
40696         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
40697         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
40698         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
40699         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
40700         (REG_NREGS):
40701         Remove.  All uses replaced by the old RE_* names.
40702         (RE_BACKSLASH_ESCAPE_IN_LISTS):
40703         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
40704         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
40705         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
40706         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
40707         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
40708         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
40709         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
40710         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
40711         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
40712         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
40713         Don't bother having these macros be independent of each others'
40714         values, since they no longer exist in the POSIX name space.
40715
40716         Rename the following member names back to their old names,
40717         unless !__USE_GNU_REGEX.  All uses changed back.
40718         (buffer): Renamed from re_buffer.
40719         (allocated): Renamed from re_allocated.
40720         (used): Renamed from re_used.
40721         (syntax): Renamed from re_syntax.
40722         (fastmap): Renamed from re_fastmap.
40723         (translate): Renamed from re_translate.
40724         (can_be_null): Renamed from re_can_be_null.
40725         (regs_allocated): Renamed from re_regs_allocated.
40726         (fastmap_accurate): Renamed from re_fastmap_accurate.
40727         (no_sub): Renamed from re_no_sub.
40728         (not_bol): Renamed from re_not_bol.
40729         (not_eol): Renamed from re_not_eol.
40730         (newline_anchor): Renamed from re_newline_anchor.
40731         (num_regs): Renamed from rm_num_regs.
40732         (start): Renamed from rm_start.
40733         (end): Renamed from rm_end.
40734
40735         (free_state): Move up a bit.
40736
40737         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
40738         #define to be empty.
40739         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
40740         when that is what is intended.
40741         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
40742         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
40743         (MAX): New macro.
40744         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
40745         All uses changed back to re_malloc, etc.  It's now the caller's
40746         responsibility to check for overflow; all callers changed.
40747         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
40748         (re_x2nrealloc): Remove.
40749         (free_state): Remove decl.
40750
40751         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
40752         (re_set_registers, re_exec):
40753         Use K&R-style defn.
40754
40755         2006-01-31  Roland McGrath  <roland@redhat.com>
40756
40757         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
40758         Reported by Mike Frysinger <vapier@gentoo.org>.
40759
40760         2006-01-15  Andreas Jaeger  <aj@suse.de>
40761
40762         [BZ #1950]
40763         * lib/regex_internal.c (re_string_reconstruct): Adjust for
40764         build_wcs_upper_buffer change.
40765         (build_wcs_upper_buffer): Change return type.
40766
40767         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
40768
40769         * lib/regex_internal.h: Include <stdint.h> if available.
40770
40771         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
40772
40773         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
40774
40775         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
40776
40777         * lib/regcomp.c: Adjust for changed secondary hash function.
40778
40779         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
40780
40781         * lib/regex.h: Pretty printing.
40782         Clean up namespace a bit.
40783
40784         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
40785
40786         * lib/regexec.c (update_cur_sifted_state, check_arrival,
40787         check_arrival_add_next_nodes): Avoid using uninitialized variable.
40788
40789         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
40790                     Ulrich Drepper  <drepper@redhat.com>
40791
40792         [BZ #1302]
40793         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
40794         changed.
40795         (bitset_word_t): Renamed from bitset_word.  All uses changed.
40796
40797         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
40798
40799         [BZ #281]
40800         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
40801         * lib/regcomp.c: Remove unnecessary uses of
40802         unsigned RE_TRANSLATE_TYPE.
40803         * lib/regex_internal.h: Likewise.
40804         * lib/regex_internal.c: Likewise.
40805         * lib/regexec.c: Likewise.
40806         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
40807
40808         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
40809
40810         * lib/regexec.c (find_recover_state): Remove unnecessary
40811         initialization.
40812         (transit_state_bkref): Make DFA a const pointer.
40813         (get_subexp): Likewise.
40814         (check_arrival): Likewise.
40815         (update_cur_sifted_state): Likewise.
40816         (re_search_internal): Likewise.
40817         (prune_impossible_nodes): Likewise.
40818         (acquire_init_state_context): Likewise.
40819         (proceed_next_node): Likewise.
40820         (set_regs): Likewise.
40821         (free_fail_stack_return): Likewise.
40822         (check_arrival_expand_ecl): Mark DFA parameter as const.
40823         (check_arrival_expand_ecl_sub): Likewise.
40824         (check_subexp_limits): Likewise.
40825         (sub_epsilon_src_nodes):  Likewise.
40826         (add_epsilon_src_nodes):  Likewise.
40827         (merge_state_array): Likewise.
40828         (update_regs): Likewise.
40829         (build_trtable): Likewise.
40830         (sift_states_backward): Mark MCTX parameter as const.
40831         (build_sifted_states): Likewise.
40832         (update_cur_sifted_state): Likewise.
40833         (sift_states_mkref): Likewise.
40834         (check_arrival_expand_ecl): Mark eclosure as const.
40835         (check_dst_limits_calc_pos_1): Likewise.
40836         * lib/regex_internal.h (re_match_context_t): Make dfa a const
40837         pointer.
40838
40839         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
40840
40841         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
40842         (transit_state_sb): Likewise.
40843         (transit_state_mb): Likewise.
40844         (sift_states_iter_mb): Likewise.
40845         (check_arrival_add_next_nodes): Likewise.
40846         (check_node_accept_bytes): Change first parameter to pointer-to-const.
40847         [_LIBC] (re_search_2_stub): Use mempcpy.
40848
40849         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
40850         mbrtowc for very simple UTF-8 case.
40851
40852         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
40853         a pointer-to-const.
40854         (re_acquire_state_context): Likewise.
40855         * lib/regex_internal.h: Adjust prototypes.
40856
40857         * lib/regex.c: Prevent using C++ compilers.
40858
40859         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
40860         (re_acquire_state_context): Likewise.
40861
40862 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40863
40864         * modules/regex (Depends-on): Add ssize_t.
40865
40866 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40867
40868         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
40869         translation table.
40870
40871 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40872
40873         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
40874
40875 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
40876             Bruno Haible  <bruno@clisp.org>
40877
40878         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
40879         <sys/types.h> and <inttypes.h>.
40880
40881 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40882
40883         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
40884         `__error_t_defined', so argp.h will not typedef the former.
40885
40886 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
40887
40888         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
40889         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
40890         glibc names.  Even if glibc is changed to conform to POSIX, the
40891         traditional names will be available anyway, since regex depends on
40892         the extensions module.  Also, fix a longstanding typo in the
40893         implementation of Spencer ERE test #75 from grep 2.3.  Problems
40894         reported by Emanuele Giaquinta.  Also, change sense of cached
40895         variable, so that the message makes sense.
40896
40897 2006-03-24  Simon Josefsson  <jas@extundo.com>
40898
40899         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
40900         including some doc fixes.
40901         (base64_encode_alloc): Fix +1 bug on allocation failures.
40902
40903 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40904
40905         * lib/base64.c (base64_encode): Do not read past end of array with
40906         unsanitized input on systems with CHAR_BIT > 8.
40907
40908 2006-03-24  Eric Blake  <ebb9@byu.net>
40909
40910         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
40911
40912 2006-03-22  Karl Berry  <karl@gnu.org>
40913
40914         * config/srclist.txt (*setenv.[ch]): get from coreutils.
40915         * config/srclistvars.sh (COREUTILS): new var.
40916
40917 2006-03-17  Jim Meyering  <jim@meyering.net>
40918
40919         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
40920         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
40921
40922 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40923
40924         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
40925         no longer needs it.  Instead, check that regoff_t is as least
40926         as wide as ptrdiff_t.
40927
40928         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
40929         so that our regex.h stays compatible with the installed regex.
40930         This is helpful for installers who configure --without-included-regex.
40931         Problem reported by Emanuele Giaquinta.
40932
40933 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40934
40935         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
40936         Typedef to long int, not to off_, as POSIX will likely change
40937         in that direction.
40938
40939 2006-03-15  Eric Blake  <ebb9@byu.net>
40940
40941         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
40942
40943 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
40944
40945         * lib/argp-help.c (validate_uparams): Fix typo
40946         * lib/argp-parse.c (argp_default_options): Consistently begin help
40947         messages with a lowercase letter.
40948
40949 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
40950
40951         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
40952         overrun buffers and shouldn't be used (much as gets shouldn't be
40953         used).
40954         * lib/time_r.c (asctime_r, ctime_r): Likewise.
40955
40956 2006-03-08  Simon Josefsson  <jas@extundo.com>
40957
40958         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
40959         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40960
40961 2006-03-08  Simon Josefsson  <jas@extundo.com>
40962
40963         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
40964         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40965
40966 2006-03-08  Simon Josefsson  <jas@extundo.com>
40967
40968         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
40969         signal that configure disabled the device.
40970
40971 2006-03-08  Simon Josefsson  <jas@extundo.com>
40972
40973         * build-aux/maint.mk: Fix refresh-po, to handle no translated
40974         languages.
40975
40976 2006-03-07  Simon Josefsson  <jas@extundo.com>
40977
40978         * modules/getopt (Depends-on): Add unistd.
40979
40980         * modules/unistd: New file.
40981
40982 2006-03-07  Simon Josefsson  <jas@extundo.com>
40983
40984         * modules/gc-random: New file.
40985
40986 2006-03-07  Simon Josefsson  <jas@extundo.com>
40987
40988         * m4/unistd_h.m4: New file.
40989
40990 2006-03-07  Simon Josefsson  <jas@extundo.com>
40991
40992         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
40993         test to be side-effect free by storing the result in the cache
40994         variable gl_cv_lib_readline, and moving the assignment of
40995         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
40996         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40997
40998 2006-03-07  Simon Josefsson  <jas@extundo.com>
40999
41000         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
41001         error on missing devices (the functions will return an error).
41002
41003         * m4/gc.m4: Move random stuff to gc-random.m4
41004
41005 2006-03-07  Simon Josefsson  <jas@extundo.com>
41006
41007         * lib/unistd_.h: New file.
41008
41009 2006-03-07  Simon Josefsson  <jas@extundo.com>
41010
41011         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
41012
41013 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41014
41015         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
41016         Problem reported by Juan Manuel Guerrero.
41017
41018 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41019
41020         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
41021         the unistd module.
41022         * lib/getlogin_r.c: Likewise.
41023         * lib/getlogin_r.h: Likewise.
41024         * lib/glob.c: Likewise.
41025         * lib/pagealign_alloc.c: Likewise.
41026         * lib/unistd_.h: Remove; no longer needed.
41027
41028 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41029
41030         * MODULES.html.sh (Support for systems lacking POSIX:2001):
41031         Add unistd.
41032         * modules/c-stack (Depends-on): Add unistd.
41033         * modules/getlogin_r: Likewise.
41034         * modules/glob: Likewise.
41035         * modules/pagealign_alloc: Likewise.
41036         * modules/unistd (Files): Remove lib/unistd_.h.
41037         (EXTRA_DIST): Remove.
41038         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
41039         need unistd_.h.
41040         (MOSTLYCLEANFILES): Remove unistd.h-t.
41041
41042 2006-03-03  Simon Josefsson  <jas@extundo.com>
41043
41044         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
41045
41046 2006-03-03  Simon Josefsson  <jas@extundo.com>
41047
41048         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
41049         libidn and bison.
41050
41051 2006-03-03  Simon Josefsson  <jas@extundo.com>
41052
41053         * build-aux/maint.mk: Add indent target.
41054
41055 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
41056
41057         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
41058         our replacement poll.h in any case, to avoid a differing
41059         declaration from a system header.  Seen on AIX.
41060
41061 2006-03-01  Simon Josefsson  <jas@extundo.com>
41062
41063         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
41064         <kasal@ucw.cz>.
41065
41066 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
41067
41068         * modules/gettime (Depends-on): Add extensions module.
41069         * modules/nanosleep (Depends-on): Likewise.
41070         * modules/settime (Depends-on): Likewise.
41071
41072 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
41073
41074         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
41075         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
41076         pedantically.
41077         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
41078         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
41079
41080         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
41081         not "==".  Reported by Ralf Wildenhues.
41082
41083 2006-03-01  Karl Berry  <karl@gnu.org>
41084
41085         * doc/Copyright/request-*: new files, synced from gnuorg.
41086
41087 2006-03-01  Karl Berry  <karl@gnu.org>
41088
41089         * config/srclist.txt (Copyright/*): new entries.
41090
41091 2006-02-28  Simon Josefsson  <jas@extundo.com>
41092
41093         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
41094
41095 2006-02-27  Simon Josefsson  <jas@extundo.com>
41096
41097         * lib/base64.h: Indent #define's.  From Jim Meyering
41098         <jim@meyering.net>.
41099
41100 2006-02-27  Jim Meyering  <jim@meyering.net>
41101
41102         Revert the change of 2006-02-24, so these files can continue
41103         to be sync'd from gettext.
41104         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
41105         of `config.h'.
41106
41107 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
41108
41109         * modules/intprops: New file.
41110         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
41111         Add intprops.
41112         * modules/getloadavg (Files): Remove lib/intprops.h.
41113         (Depends-on): Add intprops.
41114         * modules/human: Likewise.
41115         * modules/inttostr: Likewise.
41116         * modules/openat: Likewise.
41117         * modules/sig2str: Likewise.
41118         * modules/userspec: Likewise.
41119         * modules/utimecmp: Likewise.
41120         * modules/xnanosleep: Likewise.
41121         * modules/xstrtol: Likewise.
41122
41123 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
41124
41125         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
41126         * modules/lock-tests (TESTS): Use $(EXEEXT).
41127         * modules/tls-tests: Likewise.
41128         * modules/argp-tests: Likewise.
41129         (check_PROGRAMS): New var, replacing...
41130         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
41131
41132 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41133
41134         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
41135         `config.h'.
41136
41137 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
41138
41139         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
41140
41141 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41142
41143         Sync from coreutils.
41144         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
41145         gl_CHDIR_SAFER.
41146
41147 2006-02-22  Jim Meyering  <jim@meyering.net>
41148
41149         Sync from coreutils.
41150         * m4/chdir-safer.m4: New file.
41151
41152 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
41153
41154         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
41155         AT_FDCWD exceeds INT_MAX.
41156         * lib/openat.h (AT_FDCWD): Likewise.
41157
41158 2006-02-17  Eric Blake  <address@hidden>
41159
41160         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
41161
41162 2006-02-16  Simon Josefsson  <jas@extundo.com>
41163
41164         * modules/getaddrinfo (Depends-on): Add sys_socket.
41165
41166 2006-02-15  Simon Josefsson  <jas@extundo.com>
41167
41168         * build-aux/maint.mk: Add dsyntax-check rule.
41169
41170 2006-02-15  Eric Blake  <ebb9@byu.net>
41171
41172         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
41173         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
41174         'present but cannot compile' warnings on cygwin.
41175         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
41176         use ws2tcpip.h if sys/socket.h works.
41177         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
41178         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
41179
41180 2006-02-14  Simon Josefsson  <jas@extundo.com>
41181
41182         * modules/maintainer-makefile (Files): Rename.
41183
41184         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
41185         and (the local) Makefile.cfg to maint-cfg.mk.
41186
41187         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
41188         to the latter.
41189
41190         * modules/maintainer-makefile: New module.
41191
41192         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
41193         severaly stripped to make it possible to build it up from scratch
41194         with reliable tests.
41195
41196         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
41197         fixes to permit overriding the default actions when configure and
41198         makefile are not available.
41199
41200 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
41201
41202         Sync from coreutils.
41203         * modules/lstat (Depends-on): Don't depend on xalloc.
41204         (License): Change from GPL to LGPL, since this is now simply a
41205         replacement for a libc function.
41206
41207 2006-02-14  Jim Meyering  <jim@meyering.net>
41208
41209         Sync from coreutils.
41210
41211         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
41212         failure on deficient systems, and simplify gnulib lgpl dependencies.
41213         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
41214         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
41215
41216         * lib/xalloc-die.c: Remove unused definition of N_.
41217
41218 2006-02-14  Jim Meyering  <jim@meyering.net>
41219
41220         Sync from coreutils.
41221         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
41222         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
41223         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
41224         double-quote uses of that variable, to accommodate the rare case in
41225         which getmntent is available in none of the libraries checked.  This
41226         happens at least on FreeBSD 5.0.
41227
41228 2006-02-13  Simon Josefsson  <jas@extundo.com>
41229
41230         * gnulib-tool (Usage): Fix --import, from
41231         karl@freefriends.org (Karl Berry).
41232
41233 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
41234
41235         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
41236
41237 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
41238
41239         * lib/argp-namefrob.h: Restore changes accidentally lost during the
41240         "autoupdate" on 2005-12-12.
41241
41242 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41243
41244         * modules/closeout (Depends-on): Remove atexit.
41245
41246 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41247
41248         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
41249         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
41250
41251 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
41252
41253         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
41254         __EXTENSIONS__ if this causes compilation to fail.  Problem
41255         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
41256         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
41257
41258 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
41259
41260         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
41261         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
41262         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
41263         All uses changed.
41264
41265 2006-01-26  Simon Josefsson  <jas@extundo.com>
41266
41267         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
41268         prototype is visible on mingw32.
41269
41270         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
41271         for mingw32.
41272
41273         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
41274         mingw32).
41275
41276 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
41277
41278         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
41279         attempt to open for write; this always fails, at least on POSIX
41280         hosts.  This reinstates the 2006-01-09 change, which was
41281         inadvertently removed.
41282
41283 2006-01-26  Bruno Haible  <bruno@clisp.org>
41284
41285         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
41286         Reported by Paul Eggert.
41287
41288 2006-01-26  Bruno Haible  <bruno@clisp.org>
41289             Paul Eggert  <eggert@cs.ucla.edu>
41290
41291         * lib/stdbool_.h (_Bool)
41292         [(! (defined __cplusplus || defined __BEOS__)
41293           && !defined __GNUC__
41294           && !(defined __HP_cc || defined __xlc__
41295                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
41296                || defined __sgi))]:
41297         #define to signed char in these cases too; this simplifies
41298         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
41299         etc., separately) and makes it more conservative.
41300
41301 2006-01-25  Simon Josefsson  <jas@extundo.com>
41302
41303         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
41304         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
41305         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
41306
41307 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
41308
41309         * lib/argp-namefrob.h: Bugfix. Remove stray #
41310
41311 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
41312
41313         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
41314         so that we test the test.
41315         Check for yet another HP-UX cc bug involving *bool |= bool.
41316
41317 2006-01-25  Karl Berry  <karl@gnu.org>
41318
41319         * config/srclist.txt (vasnprintf.c): sync lost.
41320
41321 2006-01-25  Jim Meyering  <jim@meyering.net>
41322
41323         Sync from the stable (b5) branch of coreutils:
41324
41325         * lib/fts.c (fts_children): Don't let close() clobber errno from
41326         failed fchdir().
41327
41328         * lib/fts.c (fts_stat): When following a symlink-to-directory,
41329         don't necessarily interpret stat-fails+lstat-succeeds as indicating
41330         a dangling symlink.  That can also happen at least for ELOOP.
41331         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
41332         FYI, this bug predates the inclusion of fts.c in coreutils.
41333
41334         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
41335         in their own block, so pre-c99 compilers don't object.
41336
41337         Avoid the double-free (first in fts_read, second in fts_close) that
41338         would occur when an `active' directory is made inaccessible (e.g.,
41339         via chmod a-x) during a traversal.
41340         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41341         before returning.  Reproduce this failure by
41342         mkdir -p a/b; cd a; chmod a-x . b
41343         Reported by Stavros Passas.
41344
41345 2006-01-25  Jim Meyering  <jim@meyering.net>
41346
41347         * lib/fileblocks.c: Remove more useless parentheses.
41348         * lib/readutmp.h: Likewise.
41349
41350 2006-01-25  Bruno Haible  <bruno@clisp.org>
41351
41352         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
41353         warnings.
41354         Reported by Paul Eggert.
41355
41356 2006-01-25  Bruno Haible  <bruno@clisp.org>
41357
41358         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
41359         rid of a trap command. For Solaris sh.
41360         Reported by Mark D. Baushke <mdb@gnu.org>.
41361
41362 2006-01-24  Simon Josefsson  <jas@extundo.com>
41363
41364         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
41365         Bruno.
41366
41367 2006-01-24  Karl Berry  <karl@gnu.org>
41368
41369         * config/srclist.txt (argp-namefrob.h): sync lost.
41370
41371 2006-01-24  Jim Meyering  <jim@meyering.net>
41372
41373         * modules/openat (Files): Add lib/intprops.h.
41374         From Mark D. Baushke.
41375
41376 2006-01-24  Jim Meyering  <jim@meyering.net>
41377
41378         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
41379         Reported by Mark D. Baushke.
41380
41381 2006-01-24  Jim Meyering  <jim@meyering.net>
41382
41383         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
41384
41385 2006-01-24  Bruno Haible  <bruno@clisp.org>
41386
41387         * modules/strnlen (Maintainer): Change from glibc to all.
41388
41389 2006-01-24  Bruno Haible  <bruno@clisp.org>
41390
41391         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
41392         Patch by Paul Eggert.
41393
41394 2006-01-24  Bruno Haible  <bruno@clisp.org>
41395
41396         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
41397         already has it.
41398         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
41399         2005-11-26.
41400
41401         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
41402         'signed char' to avoid problems with the built-in _Bool type.
41403         Reported by Paul Eggert on 2005-11-26.
41404
41405 2006-01-24  Bruno Haible  <bruno@clisp.org>
41406
41407         * gnulib-tool (func_import): Avoid constructing complicated sed
41408         expressions inside backquote.
41409         Report and solution by Mark D. Baushke <mdb@gnu.org>.
41410
41411 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
41412
41413         These changes imported from libc.
41414         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
41415         test and two separate function calls.
41416         * lib/strndup.c (__strndup): Add libc_hidden_def.
41417
41418 2006-01-23  Simon Josefsson  <jas@extundo.com>
41419
41420         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
41421         Remove the test_*_SOURCES variable: automake infers it by default.
41422         * modules/tls-tests: Likewise.
41423
41424 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41425
41426         Work around porting bugs reported by Dieter in
41427         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
41428         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
41429         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
41430         Include "getopt.h" first, to check interface.
41431         (getenv): Declare only if defined HAVE_DECL_GETENV &&
41432         !HAVE_DECL_GETENV.
41433         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
41434         (__strndup): Revert to K&R-style function dfns, the glibc style.
41435         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
41436         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
41437         Include strnlen.h first, to get prototype properly.
41438         (strnlen): Renamed from __strnlen.
41439         Remove weak alias.
41440
41441 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41442
41443         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
41444
41445 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41446
41447         * config/srclist.txt: Adjust to reflect glibc reorganization.
41448         This affects only comments.
41449
41450 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
41451
41452          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
41453          Reported by Bruce Korb <bkorb@gnu.org>.
41454
41455 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
41456
41457         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
41458         to pacify gcc -Wswitch-default.
41459
41460 2006-01-22  Bruno Haible  <bruno@clisp.org>
41461
41462         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
41463         temporary buffer for sprintf, take into account the precision also
41464         for 'd', 'i', 'u', 'o', 'x', 'X'.
41465
41466 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41467
41468         * modules/argp-tests: New module
41469         * tests/test-argp.c: New file
41470         * tests/test-argp-2.sh: New file
41471
41472 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41473
41474         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
41475         (__argp_base_name): Removed
41476         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
41477         typo.
41478         (__argp_base_name): Provide macro definition or extern declaration
41479         depending on the configuration
41480
41481 2006-01-20  Simon Josefsson  <jas@extundo.com>
41482
41483         * modules/inet_ntop (Depends-on): Depend on sys_socket.
41484
41485 2006-01-20  Simon Josefsson  <jas@extundo.com>
41486
41487         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
41488
41489 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
41490
41491         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
41492         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
41493         Suggested by Bruno Haible.
41494
41495 2006-01-20  Karl Berry  <karl@gnu.org>
41496
41497         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
41498         until changes propagate, I guess.
41499
41500 2006-01-19  Simon Josefsson  <jas@extundo.com>
41501
41502         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
41503
41504 2006-01-19  Simon Josefsson  <jas@extundo.com>
41505
41506         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
41507
41508 2006-01-19  Simon Josefsson  <jas@extundo.com>
41509
41510         * gnulib-tool: Set check_PROGRAMS.
41511
41512         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41513         modules/des-tests, modules/gc-arcfour-tests,
41514         modules/gc-arctwo-tests, modules/gc-des-tests,
41515         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41516         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41517         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41518         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41519         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41520         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
41521         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
41522         test_*_SOURCES.
41523
41524 2006-01-18  Simon Josefsson  <jas@extundo.com>
41525
41526         * modules/socklen (Depends-on): Depend on sys_socket.
41527
41528 2006-01-18  Simon Josefsson  <jas@extundo.com>
41529
41530         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41531         modules/des-tests, modules/gc-arcfour-tests,
41532         modules/gc-arctwo-tests, modules/gc-des-tests,
41533         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41534         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41535         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41536         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41537         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41538         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
41539         $(EXEEXT) to automake TESTS variable, for mingw32.
41540
41541 2006-01-17  Simon Josefsson  <jas@extundo.com>
41542
41543         * modules/socklen (Include): Need sys/socket.h.
41544
41545 2006-01-17  Bruno Haible  <bruno@clisp.org>
41546
41547         * modules/ssize_t (Include): Add <sys/types.h>.
41548
41549 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
41550
41551         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
41552         it's not portable and it doesn't work with cross-compiles.
41553         Problem reported by Bruno Haible.  Fix missing-$ typo in
41554         'test "gl_cv_ignore_unused_libraries" ...' that prevented
41555         -zignore from being used with Sun's C compiler.
41556
41557 2006-01-12  Simon Josefsson  <jas@extundo.com>
41558
41559         * lib/base64.c: Fix warning, reported by Bruno Haible
41560         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
41561
41562 2006-01-12  Bruno Haible  <bruno@clisp.org>
41563
41564         * modules/ldd: New file.
41565         * build-aux/ldd.sh.in: New file.
41566         * MODULES.html.sh (Support for building libraries and executables): Add
41567         ldd.
41568
41569 2006-01-12  Bruno Haible  <bruno@clisp.org>
41570
41571         * m4/ldd.m4: New file.
41572
41573 2006-01-12  Bruno Haible  <bruno@clisp.org>
41574
41575         * gnulib-tool (func_import, func_create_testdir): Don't go into an
41576         endless loop while replacing $auxdir with build-aux.
41577
41578 2006-01-11  Simon Josefsson  <jas@extundo.com>
41579
41580         * lib/stdint_.h (SIZE_MAX): Add missing (.
41581
41582 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
41583
41584         Sync from coreutils.
41585         * lib/md5.c: Fix commentary typos.
41586         (alignof, UNALIGNED_P): No need for a GCC-specific version.
41587         * lib/md5.h (__attribute__): Remove; unused.
41588         * lib/sha1.c: Fix commentary to match md5 better.
41589         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
41590         so that we don't need to worry about alignment.  All uses changed.
41591         This merges the 2005-10-28 md5 change into sha1.
41592
41593 2006-01-11  Jim Meyering  <jim@meyering.net>
41594
41595         Sync from coreutils.
41596         * lib/md5.c (OP): Fix spacing.
41597
41598 2006-01-11  Bruno Haible  <bruno@clisp.org>
41599
41600         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41601         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
41602         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
41603
41604 2006-01-11  Bruno Haible  <bruno@clisp.org>
41605
41606         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41607         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
41608         the "early" section as well.
41609
41610 2006-01-11  Bruno Haible  <bruno@clisp.org>
41611
41612         Avoid "ar: no archive members specified" error on MacOS X.
41613         * gnulib-tool (func_modules_add_dummy): New function.
41614         (func_import, func_create_testdir): Invoke it.
41615
41616 2006-01-11  Bruno Haible  <bruno@clisp.org>
41617
41618         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
41619         with $auxdir in AC_CONFIG_FILES statements.
41620
41621 2006-01-11  Bruno Haible  <bruno@clisp.org>
41622
41623         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41624         Initialize also noinst_HEADERS to empty.
41625
41626 2006-01-11  Bruno Haible  <bruno@clisp.org>
41627
41628         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
41629         variables.
41630         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
41631         autoreconf.
41632
41633 2006-01-11  Bruno Haible  <bruno@clisp.org>
41634
41635         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
41636         overridable by the user.
41637         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41638
41639 2006-01-10  Simon Josefsson  <jas@extundo.com>
41640
41641         * modules/sys_socket: New file.
41642
41643 2006-01-10  Simon Josefsson  <jas@extundo.com>
41644
41645         * m4/sys_socket_h.m4: New file.
41646
41647 2006-01-10  Simon Josefsson  <jas@extundo.com>
41648
41649         * lib/socket_.h: New file.
41650
41651 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41652
41653         * modules/readutmp (Maintainer): Add myself.
41654
41655 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41656
41657         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
41658         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
41659         People who are still concerned with buggy memcmp implementations
41660         can invoke gl_FUNC_MEMCMP themselves.
41661
41662 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41663
41664         * lib/regex_internal.h (BITSET_WORD_BITS):
41665         Work around a bug in 64-bit PGC (before version 6.1-2), where the
41666         preprocessor mishandles large unsigned values as if they were signed.
41667         Problem reported by Claudio Fontana in
41668         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
41669
41670 2006-01-10  Jim Meyering  <jim@meyering.net>
41671
41672         Avoid the double-free (first in fts_read, second in fts_close) that
41673         would occur when an `active' directory is made inaccessible (e.g.,
41674         via chmod a-x) during a traversal.
41675         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41676         before returning.  Reproduce this failure by
41677         mkdir -p a/b; cd a; chmod a-x . b
41678         Reported by Stavros Passas.
41679
41680         Sync from coreutils.
41681         * lib/sha1.c: Tweak grammar in a comment.
41682
41683 2006-01-10  Jim Meyering  <jim@meyering.net>
41684
41685         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
41686         Patch by Joerg Sonnenberger.
41687
41688 2006-01-10  Bruno Haible  <bruno@clisp.org>
41689
41690         * modules/readutmp: Depend on module free.
41691         * modules/strtok_r: Depend on module restrict.
41692
41693 2006-01-10  Bruno Haible  <bruno@clisp.org>
41694
41695         * modules/gettext (configure.ac): Add an invocation of
41696         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
41697
41698 2006-01-10  Bruno Haible  <bruno@clisp.org>
41699
41700         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
41701         Reported by Werner Lemberg <wl@gnu.org>.
41702
41703 2006-01-10  Bruno Haible  <bruno@clisp.org>
41704
41705         * lib/localcharset.c: Update from GNU gettext.
41706
41707 2006-01-10  Bruno Haible  <bruno@clisp.org>
41708
41709         * lib/argp.h (__const): Remove macro. Use const instead.
41710         * lib/argp-fmtstream.h (__const): Likewise.
41711         * lib/glob_.h (__const): Remove macro.
41712         * lib/glob-libc.h: Use const instead of __const.
41713
41714 2006-01-10  Bruno Haible  <bruno@clisp.org>
41715
41716         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
41717         variable.
41718         Needed to avoid an automake error regarding the 'gettext' module.
41719
41720 2006-01-09  Simon Josefsson  <jas@extundo.com>
41721
41722         * modules/inet_ntop (Depends-on): Add restrict.
41723
41724 2006-01-09  Simon Josefsson  <jas@extundo.com>
41725
41726         * modules/gc-rijndael-tests (License): Put under LGPL.
41727
41728         * modules/gc-des-tests (License): Likewise.
41729
41730         * modules/gc-arcfour-tests (License): Likewise.
41731
41732         * modules/gc-arctwo-tests (License): Likewise.
41733
41734         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
41735
41736         * modules/gc-hmac-sha1-tests (Files): Likewise.
41737
41738         * modules/gc-hmac-md5-tests (License): Likewise.
41739
41740         * modules/gc-sha1-tests (License): Likewise.
41741
41742         * modules/gc-md5-tests (License): Likewise.
41743
41744         * modules/gc-md4-tests (License): Likewise.
41745
41746         * modules/gc-md2-tests (License): Likewise.
41747
41748         * modules/gc-tests (License): Likewise.
41749
41750         * modules/des-tests (License): Likewise.
41751
41752         * modules/md4-tests (License): Likewise.
41753
41754         * modules/md2-tests (License): Likewise.
41755
41756 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41757
41758         Sync from coreutils:
41759
41760         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
41761         * modules/lib-ignore: New file.
41762         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
41763         chdir-safer.m4, lchmod.m4.
41764         * modules/openat: Add mkdirat.c, openat-priv.h.
41765
41766 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41767
41768         Sync from coreutils.
41769         * m4/lib-ignore.m4: New file.
41770         * m4/lchmod.m4: New file.
41771
41772 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41773
41774         Sync from coreutils.
41775         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
41776         for write access: POSIX says that must fail.
41777         * lib/fts.c (diropen): Likewise.
41778         * lib/save-cwd.c (save_cwd): Likewise.
41779         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
41780         well, for minor improvements on hosts that lack O_DIRECTORY.
41781         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
41782         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
41783         Fall back on chown if open failed with EACCES.
41784
41785         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
41786         Report an error at compile-time if only a 1-second nominal clock
41787         resolution is found.
41788
41789         * lib/lchmod.h: New file.
41790         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
41791         (make_dir_parents): Use lchown rather than chown, and
41792         lchmod rather than chmod.
41793
41794         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
41795         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
41796         "proc" reported by n0dalus.
41797
41798         * lib/mountlist.c: Include <limits.h>.
41799         (dev_from_mount_options)
41800         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
41801         New function.  It no longer assumes "dev=" has the System V meaning
41802         on Linux (since it doesn't).  It also parses "dev=" more carefully.
41803         (read_file_system_list)
41804         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
41805         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
41806         dev= in that case.
41807
41808         * lib/posixtm.h (PDS_PRE_2000): New macro.
41809         * lib/posixtm.c (year): Arg is now syntax_bits rather than
41810         allow_century.  All usages changed.  Reject dates outside the range
41811         1969-1999 if PDS_PRE_2000 is used.
41812
41813 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41814
41815         Sync from coreutils.
41816         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
41817         (Time of day items): Mention the possibility of leap seconds.
41818         Problem reported by Dr. David Alan Gilbert.
41819
41820 2006-01-09  Jim Meyering  <jim@meyering.net>
41821
41822         Sync from coreutils.
41823
41824         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
41825
41826         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
41827
41828         * lib/modechange.c (mode_compile): Reject an invalid mode string
41829         that starts with an octal digit.  From Andreas Gruenbacher.
41830
41831         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
41832         and dup to open_safer and dup_safer, respectively.
41833         (openat_permissive): Fix typo in comment.
41834
41835         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
41836         "gettext.h"; either no longer needed or are guaranteed by openat.h.
41837         (_): Remove; no longer needed.
41838         (openat): Renamed from rpl_openat; no need for rpl_openat
41839         since openat.h renames openat for us.
41840         Replace most of the body with a call to openat_permissive,
41841         to avoid duplicate code.
41842         Port to (probably hypothetical) environments were mode_t is
41843         wider than int.
41844         (openat_permissive): Require mode arg, so that we can check
41845         types better.  Put it just after flags.  Change cwd failure
41846         indicator from pointer-to-bool to pointer-to-errno-value.
41847         All callers changed.
41848         Invoke openat_save_fail and/or openat_restore_fail if
41849         cwd_errno is null, so that openat can call us.
41850         (openat_permissive, fdopendir, fstatat, unlinkat):
41851         Simplify errno handling to avoid some duplicate code,
41852         as it's OK to set errno on success.
41853         * lib/openat.h: Revamp code so that function macros depend on
41854         __OPENAT_PREFIX only, not also on AT_FDCWD.
41855         (openat_ro): Remove.  Caller changed to use openat_permissive.
41856         (openat_permissive): Now a macro, if not a function.
41857         (openat_restore_fail, openat_save_fail): Now always functions,
41858         since mkdirat needs them even if __OPENAT_PREFIX is defined.
41859
41860         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
41861         and openat.c.
41862         * lib/mkdirat.c: Include openat-priv.h.
41863         Remove definitions of macros defined therein.
41864         * lib/openat.c: Likewise.
41865
41866         * lib/mkdirat.c (mkdirat): New file and function.
41867         * lib/openat.h (mkdirat): Declare.
41868
41869         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
41870
41871         * lib/openat.h (openat_permissive): Declare.
41872         (openat_ro): Define.
41873
41874         * lib/openat.c (EXPECTED_ERRNO): New macro.
41875         (openat_permissive): New function -- used in remove.c rewrite.
41876         (all functions): Set errno just before returning, only if there
41877         was an actual failure.
41878         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
41879
41880         Emulate openat-family functions using Linux's procfs, if possible.
41881         Idea and some code based on Ulrich Drepper's glibc changes.
41882
41883         * lib/openat.c: (BUILD_PROC_NAME): New macro.
41884         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
41885         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
41886         before falling back on save_cwd and restore_cwd.
41887         (fdopendir, fstatat, unlinkat): Likewise.
41888
41889         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
41890         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
41891
41892         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
41893         as second argument to va_arg.  Otherwise, some versions of gcc
41894         warn that `if this code is reached, the program will abort'.
41895
41896 2006-01-09  Jim Meyering  <jim@meyering.net>
41897
41898         Sync from coreutils.
41899         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
41900         Require openat-priv.h.
41901
41902 2006-01-09  Bruno Haible  <bruno@clisp.org>
41903
41904         * modules/strnlen (Include): Use strnlen.h.
41905
41906 2006-01-09  Bruno Haible  <bruno@clisp.org>
41907
41908         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
41909
41910 2006-01-09  Bruno Haible  <bruno@clisp.org>
41911
41912         * lib/sysexit_.h (EX_OK): New macro.
41913         Suggested by Martin Lambers <marlam@marlam.de>.
41914
41915 2006-01-09  Bruno Haible  <bruno@clisp.org>
41916
41917         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
41918         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
41919
41920 2006-01-09  Bruno Haible  <bruno@clisp.org>
41921
41922         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
41923         numbers.
41924
41925 2006-01-09  Bruno Haible  <bruno@clisp.org>
41926
41927         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
41928         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
41929         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
41930         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
41931
41932 2006-01-09  Bruno Haible  <bruno@clisp.org>
41933
41934         * build-aux/javacomp.sh.in: New file, moved from lib/.
41935         * modules/javacomp-script (Files): Update.
41936         (configure.ac): Add AC_CONFIG_FILES invocation.
41937         (EXTRA_DIST): Remove variable.
41938
41939         * build-aux/javaexec.sh.in: New file, moved from lib/.
41940         * modules/javaexec (Files): Update.
41941         (configure.ac): Add AC_CONFIG_FILES invocation.
41942         (EXTRA_DIST): Remove javaexec.sh.in.
41943
41944         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
41945         * modules/csharpcomp-script (Files): Update.
41946         (configure.ac): Add AC_CONFIG_FILES invocation.
41947         (EXTRA_DIST): Remove variable.
41948
41949         * build-aux/csharpexec.sh.in: New file, moved from lib/.
41950         * modules/csharpexec (Files): Update.
41951         (configure.ac): Add AC_CONFIG_FILES invocation.
41952         (EXTRA_DIST): Remove csharpexec.sh.in.
41953
41954 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41955
41956         Sync from coreutils.
41957
41958         Add POSIX ACL support
41959         * lib/acl.h (copy_acl, set_acl): Add declarations.
41960         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
41961         systems other than Linux.
41962         (chmod_or_fchmod): New function: use fchmod when possible,
41963         and chmod otherwise.
41964         (file_has_acl): Add a POSIX ACL implementation, with a
41965         Linux-specific subcase.
41966         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
41967         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
41968         acls are unsupported.
41969         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
41970         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
41971         are unsupported.
41972
41973 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41974
41975         Sync from coreutils.
41976         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
41977
41978 2006-01-07  Bruno Haible  <bruno@clisp.org>
41979
41980         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
41981         gl_EARLY.
41982
41983 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41984
41985         * lib/strftime.c (tzname): Don't declare if it is already #defined.
41986         Problem reported for Mingw by Mark Junker.
41987
41988 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41989
41990         * README: Gnulib normally doesn't generate a tarball.
41991
41992 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
41993
41994         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
41995         long int, not int, for nanosecond counts, so that people who are
41996         used to POSIX struct timespec won't be surprised.  Reported by Jim
41997         Meyering.
41998
41999 2005-12-28  Bruno Haible  <bruno@clisp.org>
42000
42001         * build-aux/config.rpath: Update from GNU gettext.
42002
42003 2005-12-16  Jim Meyering  <jim@meyering.net>
42004
42005         * modules/fprintftime: New module.
42006         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
42007
42008 2005-12-16  Jim Meyering  <jim@meyering.net>
42009
42010         * m4/fprintftime.m4: New file.
42011
42012 2005-12-16  Jim Meyering  <jim@meyering.net>
42013
42014         * lib/fprintftime.c, lib/fprintftime.h: New files.
42015
42016 2005-12-15  Simon Josefsson  <jas@extundo.com>
42017
42018         * modules/socklen (configure.ac): Fix M4 macro name, to align with
42019         new m4/socklen.m4.
42020
42021 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
42022
42023         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
42024         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
42025
42026 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
42027
42028         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
42029         * lib/argp-help.c (fill_in_uparams): Check if the constructed
42030         struct uparams is valid. Fall back to the default values if it is
42031         not.
42032
42033 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42034
42035         * modules/argp (Files): Add argp-pin.c
42036         (Depends-on): dirname
42037         (lib_SOURCES): Add argp-pin.c
42038
42039 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42040
42041         * m4/argp.m4:  Check if program_invocation_name and
42042         program_invocation_short_name are declared and define appropriate
42043         macros if they are not.
42044
42045 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42046
42047         * lib/argp-help.c (__argp_base_name): New function
42048         (__argp_short_program_name): Rewrite using __argp_base_name
42049         * lib/argp-namefrob.h: Define program_invocation_name and
42050         program_invocation_short_name if requested
42051         (__argp_base_name): Add prototype
42052         * lib/argp-parse.c (argp_def): Use gettext wrappers
42053         (argp_default_parser): Use __argp_base_name
42054         * lib/argp-pin.c: New file. Defines program_invocation_name and
42055         program_invocation_short_name on systems that lack them.
42056
42057 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
42058
42059         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
42060         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
42061         porting problem reported by Georg Schwarz in
42062         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
42063
42064 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
42065
42066         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
42067         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
42068         porting problem reported by Georg Schwarz in
42069         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
42070
42071 2005-12-05  Bruno Haible  <bruno@clisp.org>
42072
42073         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
42074         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
42075         Reported by Mark Junker <mjscod@gmx.de>.
42076
42077 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
42078
42079         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
42080         Use implementation from Albert Chin, with some
42081         comments/corrections by Stepan Kasal and myself.
42082
42083 2005-12-02  Bruno Haible  <bruno@clisp.org>
42084
42085         * gnulib-tool (func_import): Accept GPLed build tool modules when
42086         --lgpl is given.
42087         * modules/csharpcomp-script: New file.
42088         * modules/csharpcomp: Depend on it.
42089         * modules/javacomp-script: New file.
42090         * modules/javacomp: Depend on it.
42091         Suggested by Simon Josefsson.
42092
42093 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
42094
42095         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
42096         statement, to work around an HP-UX 10.20 compiler bug reported by
42097         Peter O'Gorman.
42098
42099 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42100
42101         * modules/savedir (Depends-on): Add openat.
42102
42103 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42104
42105         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
42106         (uintmax_t) [defined uintmax_t]: Do not declare.
42107         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
42108         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
42109         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
42110         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
42111         sake of portability to weird hosts that C allows (though we don't
42112         know of any practical examples).
42113
42114         * lib/savedir.h (fdsavedir): New decl.
42115         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
42116         contains most of the former guts of savedir.
42117         (savedir): Use savedirstream.
42118         Include "openat.h".
42119
42120 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
42121
42122         * modules/obstack (Files): Add m4/ulonglong.m4.
42123         Problem reported by Davide Angelocola.
42124
42125 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
42126
42127         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
42128         coreutils no longer futzes with rounding modes.
42129
42130 2005-11-14  Jim Meyering  <jim@meyering.net>
42131
42132         * lib/mkstemp-safer.c: Include <config.h>, required for possible
42133         replacement of mkstemp.
42134
42135 2005-11-10  Simon Josefsson  <jas@extundo.com>
42136
42137         * lib/readline.c: Remove EOL.
42138
42139 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42140
42141         * modules/gethrxtime (Depends-on): Add gettime.
42142
42143 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42144
42145         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
42146         or gettimeofday; no longer needed.
42147
42148 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42149
42150         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
42151         time business.
42152         (gethrxtime) [! (HAVE_NANOUPTIME
42153         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
42154         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
42155         our own approximation.
42156
42157 2005-11-08  Eric Blake  <ebb9@byu.net>
42158
42159         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42160
42161 2005-11-08  Eric Blake  <ebb9@byu.net>
42162
42163         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42164
42165 2005-11-04  Bruno Haible  <bruno@clisp.org>
42166
42167         * gnulib-tool: Implement --update mode.
42168
42169 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42170
42171         Fix porting problem reported by Theodoros V. Kalamatianos.
42172         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
42173         Don't assume that futimes failing means we must fail.
42174
42175 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42176
42177         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
42178         variables to suggest the intended function of the PATH_MAX check.
42179
42180 2005-10-30  Kean Johnston  <jkj@sco.com>
42181
42182         Trivial changes to support SCO systems.
42183         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
42184         as PATH_MAX.
42185         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
42186         where __ptr is null when no I/O is pending.
42187
42188 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
42189
42190         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
42191         leave errno alone.  Problem reported by Dmitry V. Levin.
42192
42193 2005-10-28  Simon Josefsson  <jas@extundo.com>
42194
42195         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
42196         Test more.
42197
42198         * tests/test-gc-md2.c, tests/test-md2.c: New files.
42199
42200         * modules/md2, modules/md2-tests: New files.
42201
42202 2005-10-28  Simon Josefsson  <jas@extundo.com>
42203
42204         * m4/inet_ntop.m4: More tests.
42205
42206         * m4/gc-md2.m4, md2.m4: New file.
42207
42208 2005-10-28  Simon Josefsson  <jas@extundo.com>
42209
42210         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
42211         "restrict" keywords, as per POSIX.  Protect the function
42212         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
42213         Don't use K&R prototypes.  Check the sprintf return values.
42214         Re-define EAFNOSUPPORT if not present.  Indent.
42215
42216         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
42217         suggested by Bruno Haible <bruno@clisp.org>.
42218
42219         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
42220
42221         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
42222
42223         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
42224         libgcrypt).
42225
42226         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
42227
42228         * lib/md2.h, lib/md2.c: New files.
42229
42230 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
42231
42232         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
42233         errno alone.  Problem reported by Frederic Jolliton.
42234
42235 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42236
42237         * modules/verify (License): Change from GPL to LGPL.  This is a
42238         tiny module and there are apparently near-equivalents that are
42239         under the BSD license.
42240
42241 2005-10-24  Simon Josefsson  <jas@extundo.com>
42242
42243         * modules/sha1: Relicense to LGPL.
42244
42245 2005-10-24  Simon Josefsson  <jas@extundo.com>
42246
42247         * lib/md4.h: Shrink buffer size, now that we changed the type.
42248
42249 2005-10-23  Simon Josefsson  <jas@extundo.com>
42250
42251         * gnulib-tool (func_import): Fix --tests-base.
42252
42253 2005-10-22  Simon Josefsson  <jas@extundo.com>
42254
42255         * modules/arcfour (Depends-on): Need stdint.
42256
42257 2005-10-22  Simon Josefsson  <jas@extundo.com>
42258
42259         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
42260         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
42261
42262 2005-10-22  Simon Josefsson  <jas@extundo.com>
42263
42264         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
42265         suggested by Bruno Haible <bruno@clisp.org>.
42266
42267 2005-10-22  Simon Josefsson  <jas@extundo.com>
42268
42269         * lib/crc.h: Include stddef.h, for size_t.
42270
42271 2005-10-22  Simon Josefsson  <jas@extundo.com>
42272
42273         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
42274         arcfour_context struct (simplify test vector testing in GNU
42275         Shishi).
42276
42277 2005-10-21  Simon Josefsson  <jas@extundo.com>
42278
42279         * modules/des, modules/des-tests: New files.
42280
42281         * modules/gc-des, modules/gc-des-tests: New files.
42282
42283         * tests/test-des.c, tests/test-gc-des.c: New file.
42284
42285 2005-10-21  Simon Josefsson  <jas@extundo.com>
42286
42287         * modules/arctwo, modules/arctwo-tests: New files.
42288
42289         * tests/test-arctwo.c: New file.
42290
42291         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
42292
42293         * tests/test-gc-arctwo.c: New file.
42294
42295 2005-10-21  Simon Josefsson  <jas@extundo.com>
42296
42297         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
42298         Bruno Haible <bruno@clisp.org>.
42299
42300         * m4/gc-des.m4: New file.
42301
42302 2005-10-21  Simon Josefsson  <jas@extundo.com>
42303
42304         * m4/arctwo.m4: New file.
42305
42306         * m4/gc-arctwo.m4: New file.
42307
42308 2005-10-21  Simon Josefsson  <jas@extundo.com>
42309
42310         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
42311         block.
42312
42313 2005-10-21  Simon Josefsson  <jas@extundo.com>
42314
42315         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
42316         <bruno@clisp.org>.
42317
42318         * lib/hmac-sha1.c (hmac_sha1): Likewise.
42319
42320         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
42321         Bruno Haible <bruno@clisp.org>.
42322
42323         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
42324         <bruno@clisp.org>.
42325
42326 2005-10-21  Simon Josefsson  <jas@extundo.com>
42327
42328         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
42329
42330 2005-10-21  Simon Josefsson  <jas@extundo.com>
42331
42332         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
42333
42334 2005-10-21  Simon Josefsson  <jas@extundo.com>
42335
42336         * lib/des.h, lib/des.c: New files.
42337
42338         * lib/gc-gnulib.c: Support DES.c
42339
42340 2005-10-21  Simon Josefsson  <jas@extundo.com>
42341
42342         * lib/arctwo.h, lib/arctwo.c: New files.
42343
42344         * lib/gc-gnulib.c: Support ARCTWO.
42345
42346 2005-10-21  Simon Josefsson  <jas@extundo.com>
42347
42348         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
42349         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
42350
42351 2005-10-21  Simon Josefsson  <jas@extundo.com>
42352
42353         * gnulib-tool (func_import, func_create_testdir): Define automake
42354         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
42355         Makefile.am snippet),
42356         suggested by Bruno Haible <bruno@clisp.org>.
42357
42358         * modules/gc (Makefile.am): Use it.
42359
42360 2005-10-21  Bruno Haible  <bruno@clisp.org>
42361
42362         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
42363         patch.
42364
42365 2005-10-19  Simon Josefsson  <jas@extundo.com>
42366
42367         * tests/test-gc-rijndael.c: New file.
42368
42369         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
42370
42371 2005-10-19  Simon Josefsson  <jas@extundo.com>
42372
42373         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
42374         interface too.
42375
42376 2005-10-19  Simon Josefsson  <jas@extundo.com>
42377
42378         * tests/test-gc-arcfour.c: New file.
42379
42380         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
42381
42382 2005-10-19  Simon Josefsson  <jas@extundo.com>
42383
42384         * modules/gc-md4, modules/gc-md4-tests: New file.
42385
42386         * tests/test-gc-md4.c: New file.
42387
42388 2005-10-19  Simon Josefsson  <jas@extundo.com>
42389
42390         * m4/gc-md4.m4: New file.
42391
42392 2005-10-19  Simon Josefsson  <jas@extundo.com>
42393
42394         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
42395         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
42396         <kasal@ucw.cz>.
42397
42398 2005-10-19  Simon Josefsson  <jas@extundo.com>
42399
42400         * m4/gc-arcfour.m4: New file.
42401
42402         * m4/gc-rijndael.m4: New file.
42403
42404 2005-10-19  Simon Josefsson  <jas@extundo.com>
42405
42406         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
42407
42408 2005-10-19  Simon Josefsson  <jas@extundo.com>
42409
42410         * lib/gc-gnulib.c: Support ARCFOUR.
42411
42412 2005-10-19  Simon Josefsson  <jas@extundo.com>
42413
42414         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
42415         support.
42416
42417         * lib/gc.h: Add ECB enum type.
42418
42419         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
42420
42421 2005-10-18  Simon Josefsson  <jas@extundo.com>
42422
42423         * tests/test-md5.c: New file.
42424
42425         * modules/md5-tests: New file.
42426
42427 2005-10-18  Simon Josefsson  <jas@extundo.com>
42428
42429         * tests/test-md4.c: New file.
42430
42431         * modules/md4, modules/md4-tests: New files.
42432
42433 2005-10-18  Simon Josefsson  <jas@extundo.com>
42434
42435         * m4/md4.m4: New file.
42436
42437 2005-10-18  Simon Josefsson  <jas@extundo.com>
42438
42439         * lib/md4.h, lib/md4.c: New files, based on md5.?.
42440
42441 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
42442
42443         * gnulib-tool (func_create_testdir): Omit the second check whether
42444         BUILT_SOURCES in nonempty.
42445
42446 2005-10-17  Simon Josefsson  <jas@extundo.com>
42447
42448         * tests/test-rijndael.c: New file.
42449
42450 2005-10-17  Simon Josefsson  <jas@extundo.com>
42451
42452         * modules/sha1: Depend on stdint instead of md5.
42453
42454         * modules/md5: Depend on stdint, remove uint32_t.
42455
42456 2005-10-17  Simon Josefsson  <jas@extundo.com>
42457
42458         * modules/gc-sha1-tests: New file.
42459
42460         * tests/test-gc-sha1.c: New file.
42461
42462 2005-10-17  Simon Josefsson  <jas@extundo.com>
42463
42464         * m4/md5.m4: Remove call to uint32_t.m4.
42465
42466 2005-10-17  Simon Josefsson  <jas@extundo.com>
42467
42468         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
42469
42470         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
42471         md5.h.
42472
42473         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
42474
42475         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
42476
42477 2005-10-17  Simon Josefsson  <jas@extundo.com>
42478
42479         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
42480
42481 2005-10-17  Simon Josefsson  <jas@extundo.com>
42482
42483         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
42484
42485 2005-10-17  Simon Josefsson  <jas@extundo.com>
42486
42487         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
42488
42489         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
42490
42491 2005-10-17  Bruno Haible  <bruno@clisp.org>
42492
42493         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
42494         that it can also be used in a test.
42495
42496 2005-10-16  Bruno Haible  <bruno@clisp.org>
42497
42498         * gnulib-tool (func_emit_tests_Makefile_am): Also define
42499         TESTS_ENVIRONMENT, so that individual tests can augment it.
42500
42501         * gnulib-tool (func_create_testdir): Use an intermediate target for
42502         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
42503         macros, like $(ALLOCA_H), which cannot be passed through the command
42504         line.
42505
42506 2005-10-15  Simon Josefsson  <jas@extundo.com>
42507
42508         * modules/rijndael-tests: New file.
42509
42510         * modules/rijndael: New file.
42511
42512 2005-10-15  Simon Josefsson  <jas@extundo.com>
42513
42514         * m4/rijndael.m4: New file.
42515
42516 2005-10-15  Simon Josefsson  <jas@extundo.com>
42517
42518         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
42519
42520         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
42521
42522 2005-10-14  Simon Josefsson  <jas@extundo.com>
42523
42524         * tests/test-arcfour.c: New file.
42525
42526         * modules/arcfour, modules/arcfour-tests: New files.
42527
42528 2005-10-14  Simon Josefsson  <jas@extundo.com>
42529
42530         * m4/arcfour.m4: New file.
42531
42532 2005-10-14  Simon Josefsson  <jas@extundo.com>
42533
42534         * lib/arcfour.h, lib/arcfour.c: New files.
42535
42536 2005-10-14  Roland McGrath  <roland@redhat.com>
42537
42538         Import from libc.  [BZ #1331]
42539         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
42540         macro argument.
42541         Reported by Matej Vela <vela@debian.org>.
42542
42543 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42544
42545         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
42546         include <wchar.h>; no longer needed.
42547
42548 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42549
42550         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
42551
42552 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
42553         and  Ulrich Drepper  <drepper@redhat.com>
42554
42555         Import from libc.
42556         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
42557         instead of inline stream orientation test and two separate
42558         function calls.  Pay no attention to USE_IN_LIBIO.
42559
42560 2005-10-13  Simon Josefsson  <jas@extundo.com>
42561
42562         * modules/gc-hmac-md5-tests: New file.
42563
42564         * tests/test-gc-hmac-sha1.c: New file.
42565
42566         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
42567
42568         * modules/gc-hmac-md5-tests: New file.
42569
42570         * tests/test-gc-md5.c: New file.
42571
42572         * modules/gc-md5-tests: New file.
42573
42574 2005-10-13  Simon Josefsson  <jas@extundo.com>
42575
42576         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
42577         Move memory allocation outside of loop.
42578
42579 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
42580
42581         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
42582         intermediate directory is in a read-only file system.  Problem
42583         reported by Eric Blake.
42584
42585 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
42586
42587         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
42588
42589 2005-10-12  Simon Josefsson  <jas@extundo.com>
42590
42591         * tests/test-hmac-sha1.c: New file.
42592
42593         * modules/hmac-sha1-tests: New file.
42594
42595         * modules/hmac-sha1: New file.
42596
42597 2005-10-12  Simon Josefsson  <jas@extundo.com>
42598
42599         * modules/gc-sha1: New file.
42600
42601 2005-10-12  Simon Josefsson  <jas@extundo.com>
42602
42603         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
42604
42605         * tests/test-gc-pbkdf2-sha1.c: New file.
42606
42607 2005-10-12  Simon Josefsson  <jas@extundo.com>
42608
42609         * modules/gc-md5, modules/gc-hmac-md5: New files.
42610
42611         * modules/gc (Files): Remove md5, memxor and hmac files.
42612
42613 2005-10-12  Simon Josefsson  <jas@extundo.com>
42614
42615         * m4/gc-pbkdf2-sha1.m4: New file.
42616
42617         * m4/gc-hmac-sha1.m4: New file.
42618
42619         * m4/gc-sha1: New file.
42620
42621         * m4/hmac-sha1.m4: New file.
42622
42623 2005-10-12  Simon Josefsson  <jas@extundo.com>
42624
42625         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
42626
42627         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
42628
42629 2005-10-12  Simon Josefsson  <jas@extundo.com>
42630
42631         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
42632         suggested by Bruno Haible <bruno@clisp.org>.
42633
42634 2005-10-12  Simon Josefsson  <jas@extundo.com>
42635
42636         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
42637
42638 2005-10-12  Simon Josefsson  <jas@extundo.com>
42639
42640         * lib/gc-pbkdf2-sha1.c: New file.
42641
42642         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
42643
42644 2005-10-12  Simon Josefsson  <jas@extundo.com>
42645
42646         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
42647
42648         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
42649
42650 2005-10-12  Simon Josefsson  <jas@extundo.com>
42651
42652         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
42653         GC_USE_HMAC_MD5, respectively.
42654
42655         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
42656         (gc_md5): Fix typo.
42657
42658         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
42659
42660         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
42661
42662         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
42663
42664 2005-10-12  Bruno Haible  <bruno@clisp.org>
42665
42666         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
42667         Reported by Stepan Kasal <kasal@ucw.cz>.
42668
42669 2005-10-11  Simon Josefsson  <jas@extundo.com>
42670
42671         * tests/test-crc.c: New file.
42672
42673         * modules/crc, modules/crc-tests: New files.
42674
42675 2005-10-11  Simon Josefsson  <jas@extundo.com>
42676
42677         * m4/crc.m4: New file.
42678
42679 2005-10-11  Simon Josefsson  <jas@extundo.com>
42680
42681         * lib/gc.h: Add gc_hash and gc_hash_buffer.
42682
42683         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
42684
42685         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
42686
42687 2005-10-11  Simon Josefsson  <jas@extundo.com>
42688
42689         * lib/crc.h, lib/crc.c: New files.
42690
42691         * lib/gc.h (gc_hash_buffer): Add doc.
42692
42693 2005-10-11  Bruno Haible  <bruno@clisp.org>
42694
42695         * modules/c-strcasestr: New file.
42696         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
42697
42698 2005-10-11  Bruno Haible  <bruno@clisp.org>
42699
42700         * modules/c-strcase: New file.
42701         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
42702
42703 2005-10-11  Bruno Haible  <bruno@clisp.org>
42704
42705         * lib/strcasecmp.c: Include limits.h.
42706         (strcasecmp): Avoid integer overflow on exotic platforms.
42707         * lib/strncasecmp.c: Include limits.h.
42708         (strncasecmp): Avoid integer overflow on exotic platforms.
42709         Reported by Paul Eggert.
42710
42711 2005-10-11  Bruno Haible  <bruno@clisp.org>
42712
42713         * lib/c-strcasestr.h: New file, from GNU gettext.
42714         * lib/c-strcasestr.c: New file, from GNU gettext.
42715
42716 2005-10-11  Bruno Haible  <bruno@clisp.org>
42717
42718         * lib/c-strcase.h: New file, from GNU gettext.
42719         * lib/c-strcasecmp.c: New file, from GNU gettext.
42720         * lib/c-strncasecmp.c: New file, from GNU gettext.
42721
42722 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42723
42724         * modules/mempcpy (License): GPL -> LGPL.
42725         * modules/strchrnul (License): Likewise.
42726         * modules/sysexits (License): Likewise.
42727
42728 2005-10-08  Simon Josefsson  <jas@extundo.com>
42729
42730         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
42731
42732 2005-10-07  Simon Josefsson  <jas@extundo.com>
42733
42734         * m4/memxor.m4: Remove gl_C_RESTRICT call.
42735
42736 2005-10-06  Simon Josefsson  <jas@extundo.com>
42737
42738         * tests/test-hmac-md5.c: New file.
42739
42740         * modules/hmac-md5-tests: New file.
42741
42742         * modules/hmac-md5: New file.
42743
42744 2005-10-06  Simon Josefsson  <jas@extundo.com>
42745
42746         * m4/hmac-md5.m4: New file.
42747
42748         * m4/memxor.m4: Require gl_C_RESTRICT.
42749
42750 2005-10-06  Simon Josefsson  <jas@extundo.com>
42751
42752         * lib/memxor.c (memxor): Avoid casts and warnings.
42753
42754 2005-10-06  Simon Josefsson  <jas@extundo.com>
42755
42756         * lib/hmac-md5.c: New file.
42757
42758         * lib/hmac.h: New file.
42759
42760 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
42761
42762         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
42763         promotes to int, not unsigned int, to catch the AIX 5.3
42764         compiler bug.
42765
42766 2005-10-05  Simon Josefsson  <jas@extundo.com>
42767
42768         * modules/memxor: New file.
42769
42770         * modules/iconv (Files): Move config.rpath to havelib, it is used
42771         there.
42772
42773         * modules/havelib (Files): Add config.rpath.
42774
42775 2005-10-05  Simon Josefsson  <jas@extundo.com>
42776
42777         * m4/memxor.m4: New file.
42778
42779 2005-10-05  Simon Josefsson  <jas@extundo.com>
42780
42781         * lib/memxor.c (memxor): Fix compiler error.
42782
42783         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
42784         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
42785
42786         * lib/memxor.h, lib/memxor.c: New files.
42787
42788         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
42789         we assume all systems have it, suggested by Jim Meyering
42790         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
42791         any systems lack sys/socket.h; mingw32 is known to lack it, but we
42792         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
42793         same reasons.
42794
42795 2005-10-05  Simon Josefsson  <jas@extundo.com>
42796
42797         * config/srclist.txt: Add glibc bug 1423 for md5.h.
42798
42799 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42800
42801         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
42802         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
42803         needed, since the source code now assumes these .h files.
42804
42805 2005-10-05  Derek Price  <derek@ximbiot.com>
42806
42807         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
42808
42809 2005-10-05  Bruno Haible  <bruno@clisp.org>
42810
42811         * modules/stdint (License): Change to LGPL.
42812
42813 2005-10-04  Simon Josefsson  <jas@extundo.com>
42814
42815         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
42816         D. Baushke" <mdb@gnu.org>.
42817
42818 2005-10-04  Bruno Haible  <bruno@clisp.org>
42819
42820         * lib/verify.h (verify_true): Provide alternative definition for C++.
42821
42822 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
42823
42824         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
42825         (SSIZE_MAX): New macro, if not already defined.
42826         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
42827         than 2 GiB.
42828
42829 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42830
42831         Sync from coreutils.
42832         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
42833         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
42834         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
42835         ULLONG_MAX doesn't work with 2.7.2.1.
42836
42837 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42838
42839         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
42840         From Ben Pfaff.
42841
42842         * modules/exclude (Depends-on): Depend on verify.
42843         * modules/strtoimax (Depends-on): Likewise.
42844         * modules/utimecmp (Depends-on): Likewise.
42845
42846 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42847
42848         * lib/exclude.c: Include verify.h.
42849         (verify): Remove.  All callers changed to use verify.h's version.
42850         * lib/strtoimax.c: Likewise.
42851         * lib/utimecmp.c: Likewis.e
42852
42853         Sync from coreutils.
42854         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
42855         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
42856         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
42857         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
42858         bother returning ENOSYS if settimeofday or stime fails; just let
42859         them return whatever errno they want to return.
42860         * lib/utimens.c: Include unistd.h, for dup2.
42861         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
42862         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
42863
42864 2005-10-02  Jim Meyering  <jim@meyering.net>
42865
42866         Sync from coreutils.
42867         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
42868         from glibc-2.2.5 that fails for read-only files.
42869
42870 2005-10-02  Jim Meyering  <jim@meyering.net>
42871
42872         Sync from coreutils.
42873         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
42874         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
42875         `#if HAVE_CONFIG_H'.
42876         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
42877         Remove AT_FDCWD test.
42878         Do not consume the fd unless successful.
42879         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
42880         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
42881         block, so that we don't even try to compile it if settimeofday is
42882         available.  This works around a compilation failure on OSF1 V5.1,
42883         due to stime requiring a `long int*' while tv_sec is `int'.
42884
42885 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
42886
42887         Sync from coreutils.
42888         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
42889         against `yes', rather than just testing for nonempty.
42890
42891 2005-10-01  Simon Josefsson  <jas@extundo.com>
42892
42893         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
42894         and Darwin.
42895
42896         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
42897         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
42898         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
42899         freeaddrinfo and gai_strerror are declared by the POSIX headers.
42900         Check if struct addrinfo is declared.
42901
42902 2005-10-01  Simon Josefsson  <jas@extundo.com>
42903
42904         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
42905         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
42906         AI_* and EAI_* definitions.  Protect function declarations.
42907
42908 2005-10-01  Jim Meyering  <jim@meyering.net>
42909
42910         Sync from coreutils.
42911
42912         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
42913         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
42914         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
42915         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42916         in the inet and nsl libraries.  Required on Solaris 5.7.
42917
42918 2005-10-01  Jim Meyering  <jim@meyering.net>
42919
42920         Sync from coreutils.
42921         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42922         in the inet and nsl libraries.  Required on Solaris 5.7.
42923
42924 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
42925
42926         * lib/getdelim.c (getdelim): Remove unused variables.
42927
42928 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
42929
42930         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
42931         so that the code works even with ancient cpp.  Portability problem
42932         with GCC 2.7.2.1 reported by Thomas M.Ott.
42933
42934 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
42935
42936         * modules/regex (Depends-on): Add strcase.
42937
42938         * modules/gethostname (Licence): Change from GPL to LGPL, since
42939         gethostname.c is a trivial implementation of a standard library
42940         function.
42941         * modules/poll (License): Change from GPL to LGPL, since it's
42942         derived from LGPL code.
42943
42944 2005-09-27  Jim Meyering  <jim@meyering.net>
42945
42946         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
42947         HAVE_CONFIG_H.
42948
42949         * lib/intprops.h (signed_type_or_expr__): Define.
42950         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
42951         for unsigned types.
42952
42953 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
42954
42955         * lib/verify.h (verify_expr): Remove, replacing with:
42956         (verify_true): New macro that returns true instead of void.
42957         (verify_type__): Remove.
42958         (verify): Use verify_true rather than verify_type__.
42959
42960 2005-09-26  Bruno Haible  <bruno@clisp.org>
42961
42962         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
42963         is necessary.
42964         (lib_SOURCES): Remove mbchar.c.
42965         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
42966         (Files): Add m4/mbrtowc.m4.
42967         * modules/mbiter: Likewise.
42968         * modules/mbuiter: Likewise.
42969
42970 2005-09-26  Bruno Haible  <bruno@clisp.org>
42971
42972         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
42973         compile mbchar.c if they are not both present.
42974         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
42975         * m4/mbiter.m4 (gl_MBITER): Likewise.
42976         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
42977         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
42978         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
42979
42980 2005-09-25  Jim Meyering  <jim@meyering.net>
42981
42982         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
42983         also uses socklen_t.
42984
42985 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
42986
42987         * lib/utimens.c (ENOSYS): Define if not already defined.
42988         (futimens): Support having a null PATH if the file descriptor
42989         is nonnegative.
42990
42991         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
42992         Remove.
42993         (__attribute): Define to empty unless GCC 3.1 or later.
42994         This works around a core dump on OpenBSD 3.4, which has GCC
42995         2.95.3, which dumps core when given __attribute__(()).  It also
42996         simplifies other tests, since we really don't want to bother with
42997         worrying about which ancient version of GCC supported what.
42998         Original problem reported by Yoann Vandoorselaere, with part of
42999         the fix suggested by Derek Price.
43000
43001 2005-09-24  Jim Meyering  <jim@meyering.net>
43002
43003         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
43004         so we can once again use a positive bitfield width of 1 -- now we
43005         don't have to explain why we were using a bitfield width of 2.
43006
43007 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
43008
43009         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
43010         and similarly for the other external symbols.  Problem reported
43011         by James Gallager.
43012
43013         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
43014         bug reported by Jim Meyering.
43015
43016         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
43017         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
43018         not needed, since socklen is a prerequisite module.
43019
43020 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
43021
43022         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
43023         Problem reported by Eric Blake.
43024         (getaddrinfo): Initialize se so that it's not garbage.
43025         Redo internal storage allocation so that it doesn't make unportable
43026         assumptions about alignment.
43027         Fix a memory leak.
43028
43029         * lib/utimens.c (futimens): Use futimesat if available.
43030         Prefer it to futimes since it doesn't have the futimes bug.
43031
43032         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
43033         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
43034         Instead, declare a function that returns a pointer to an array,
43035         and use verify_type__ to declare the size of the array.
43036         Problem and germ of a solution reported by Bruno Haible.
43037         (verify_type__): Use 2, not 1, for bitfield size, to avoid
43038         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
43039
43040 2005-09-23  Jim Meyering  <jim@meyering.net>
43041
43042         Sync from coreutils.
43043         Correct build failure (socklen_t not defined) on at least
43044         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
43045         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
43046
43047 2005-09-23  Jim Meyering  <jim@meyering.net>
43048
43049         * modules/getaddrinfo (Depends-on): Add socklen.
43050
43051 2005-09-23  Bruno Haible  <bruno@clisp.org>
43052
43053         * tests/test-verify.c: New file.
43054
43055 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43056
43057         Sync from coreutils.
43058
43059         * modules/argmatch (Depends-on): Add verify.
43060         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
43061         unistd-safer.
43062         * modules/save-cwd (Depends-on): Likewise.
43063
43064         * modules/openat (Files): Add lib/openat-die.c.
43065         (Depends-on): Remove error, exitfail.
43066         Add dirname.
43067
43068         * modules/verify: New file.
43069         * MODULES.html.sh (Diagnostics <assert.h>): New section,
43070         with "verify" module.
43071
43072 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43073
43074         Sync from coreutils.
43075
43076         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
43077         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
43078         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
43079         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
43080         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
43081         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
43082         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
43083         Don't bother checking for string.h, stdlib.h, unistd.h.
43084         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
43085         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
43086         module's job.
43087         * m4/jm-macros.m4 (gl_MACROS): Likewise.
43088         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
43089
43090         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
43091         (gl_GETDATE): Use it.
43092
43093         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
43094
43095 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43096
43097         Sync from coreutils.
43098
43099         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
43100         stat-time.h.
43101         * lib/argmatch.h: Include verify.h
43102         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
43103         (ARGMATCH_ASSERT): Remove; unused.
43104         * lib/canonicalize.c: Assume STDC_HEADERS.
43105         * lib/exclude.c: Include "strcase.h".
43106         * lib/regex_internal.h [!defined _LIBC]: Likewise.
43107         * lib/getusershell.c: Include stdio--.h rather than stdio.h
43108         and stdio-safer.h.
43109         (getusershell): Call fopen, not fopen_safer.
43110         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
43111         Do not include unistd-safer.h.
43112         (save_cwd): Don't call fd_safer; no longer needed
43113         now that we include fcntl--.h.
43114
43115         * lib/getdate.y (relative_time): New type.
43116         (RELATIVE_TIME_0): New constant.
43117         (parser_control): Use relative_time instead of doing it ourselves.
43118         (%union): Add new relative_time rel member.
43119         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
43120         Now typeless.
43121         (relunit, relunit_snumber): Now of type rel.
43122         (zone, rel, relunit, get_date): Adjust to above changes.
43123
43124         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
43125         Do not include unistd-safer.h.
43126         (getloadavg): Don't call fd_safer; no longer needed
43127         now that we include fcntl--.h.
43128
43129         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
43130         (make_dir_parents): Treat ENOSYS like EEXIST.
43131
43132         Improve quality of diagnostics on restore_cwd failure.
43133         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
43134         (make_dir_parents): Last arg is now int * (for errno), not bool *.
43135         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
43136         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
43137         each time through the loop.  Do not diagnose restore_cwd failure;
43138         that is the caller's job (and perhaps the caller does not care).
43139
43140         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
43141         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
43142         If the file already exists but is not a directory, don't bother
43143         to try to make its parents.
43144         Close potential file descriptor leak if we can't chdir("/") (!).
43145         Don't always return true if chdir($PWD) fails; return true only
43146         if the requested action was done successfully (except for the
43147         chdir($PWD)).
43148         Don't log final directory unless we actually made it.
43149         Refactor to avoid duplicate code to fix up permissions.
43150         Don't attempt to fix up parent permissions if chdir($PWD) fails.
43151
43152         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
43153         to make it a bit faster and (I hope) clearer.
43154         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
43155         Fix bug in formats like %2N.
43156
43157         * lib/verify.h: New file.
43158
43159 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43160
43161         Sync from coreutils.
43162         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
43163
43164 2005-09-22  Jim Meyering  <jim@meyering.net>
43165
43166         Sync from coreutils.
43167
43168         * m4/lstat.m4 (gl_FUNC_LSTAT):
43169         Use AC_LIBSOURCES to require lstat.c and lstat.h.
43170         Remove obsolete comment.
43171         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
43172         * m4/xstrtod.m4: Likewise.
43173
43174         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
43175
43176 2005-09-22  Jim Meyering  <jim@meyering.net>
43177
43178         Sync from coreutils.
43179
43180         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
43181
43182         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
43183         the .tm_year member, since otherwise gcc-4.0 would now warn about
43184         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
43185
43186         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
43187         order to avoid an unsuppressible warning from gcc on 64-bit systems.
43188
43189         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
43190         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
43191         when run in a time zone for which daylight savings time is in effect
43192         for the starting date.
43193
43194         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
43195         stop us from restricting permissions of just-created absolute-named
43196         directories.
43197         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
43198         to restore initial working directory.
43199         * lib/mkdir-p.c (make_dir_parents): New parameter:
43200         different_working_dir, to tell caller if/when we change the working
43201         directory and are unable to return to the initial one.
43202         * lib/mkdir-p.h (make_dir_parents): Update prototype.
43203         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
43204         `return false'.  This fixes a bug introduced on 2004-07-30.
43205
43206         * lib/openat.c (fdopendir): Be sure to close the supplied
43207         file descriptor before returning.  This makes our replacement
43208         implementation a little closer to Solaris's, where fdopendir
43209         ties the file descriptor to the returned DIR* pointer.
43210         * lib/openat.c (unlinkat): New function.
43211         * lib/openat.h (unlinkat): Add prototype.
43212         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
43213         (openat_restore_fail): Rename from openat_restore_die.
43214         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
43215
43216         Provide an alternative to exiting immediately upon save_cwd or
43217         restore_cwd failure.  Now, an application can arrange e.g.,
43218         to perform a longjump in that case.
43219         * lib/openat.c: Include dirname.h.
43220         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
43221         (rpl_openat, fdopendir, fstatat): Call openat_save_die
43222         and openat_restore_die rather than calling error directly.
43223         Don't include "error.h" or "exitfail.h"; they're no longer needed.
43224
43225         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
43226         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
43227         define.
43228
43229         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
43230         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
43231                             int utc, int nanoseconds);
43232         Background:
43233         date should not have to allocate a megabyte of virtual memory to
43234         handle a format argument like +%1048575T.  When implemented with
43235         strftime, it must allocate such a buffer, use strftime to fill it
43236         in, print it, then free it.
43237         With fprintftime, it simply prints everything and exits.
43238         With no need for memory allocation, that's one fewer way to fail.
43239         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
43240         optional field width, not before, so we accept %9:z, not %:9z.
43241         (my_strftime): Be sure to use L_('x') for literals.
43242
43243         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
43244         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
43245         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
43246         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
43247         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
43248         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
43249         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
43250         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
43251         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
43252         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
43253         * lib/xgethostname.c, lib/xreadlink.c:
43254         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
43255
43256         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
43257         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
43258         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
43259         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
43260         and don't include <sys/file.h>).
43261
43262 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
43263
43264         Sync from coreutils.
43265
43266         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
43267         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
43268         [!LDAV_DONE]: Avoid unused variable warning.
43269
43270 2005-09-21  Bruno Haible  <bruno@clisp.org>
43271
43272         * lib/unicodeio.h (unicode_to_mb): New declaration.
43273
43274 2005-09-20  Derek Price  <derek@ximbiot.com>
43275
43276         * lib/getaddrinfo.c: Don't include <netdb.h> included from
43277         getaddrinfo.h.
43278
43279 2005-09-20  Bruno Haible  <bruno@clisp.org>
43280
43281         * gnulib-tool: Remove trailing slashes from the values specified for
43282         --source-base, --m4-base, --tests-base, --aux-dir.
43283         Suggested by Simon Josefsson <jas@extundo.com>.
43284
43285 2005-09-20  Bruno Haible  <bruno@clisp.org>
43286
43287         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
43288         func_modules_to_filelist, func_import, func_create_testdir): Make all
43289         sorting results locale-independent, so that gnulib-cache.m4 doesn't
43290         change when gnulib-tool is invoked in a different locale.
43291
43292 2005-09-19  Simon Josefsson  <jas@extundo.com>
43293
43294         * m4/socklen.m4: Fix typo.
43295
43296 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43297
43298         Use a consistent style for including <config.h>.
43299         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
43300         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
43301         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
43302         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
43303         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
43304         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
43305         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
43306         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
43307         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
43308         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
43309         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
43310         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
43311         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
43312         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
43313         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
43314         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
43315         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
43316         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
43317         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
43318         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
43319         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
43320         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
43321         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
43322         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
43323         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
43324         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
43325         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
43326         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
43327         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
43328         lib/xstrtoumax.c, lib/yesno.c:
43329         Standardize inclusion of config.h.
43330         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
43331         lib/inttostr.h:  Removed inclusion of config.h from header files.
43332         * lib/inttostr.c:  Adjusted in-tree users.
43333         * lib/timespec.h: Remove superfluous warning to include config.h.
43334         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
43335         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
43336         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
43337         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
43338         config.h with HAVE_CONFIG_H.
43339
43340 2005-09-19  Jim Meyering  <jim@meyering.net>
43341
43342         * modules/pathmax (License): Change to LGPL.
43343
43344 2005-09-19  Derek Price  <derek@ximbiot.com>
43345
43346         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
43347
43348 2005-09-19  Bruno Haible  <bruno@clisp.org>
43349
43350         * gnulib-tool (import): Provide default for --tests-base.
43351
43352 2005-09-19  Bruno Haible  <bruno@clisp.org>
43353
43354         * doc/quote.texi: New file, extracted from gnulib.texi.
43355         * doc/ctime.texi: New file, extracted from gnulib.texi.
43356         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
43357         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
43358         * doc/gnulib.texi: Include them.
43359
43360 2005-09-18  Bruno Haible  <bruno@clisp.org>
43361
43362         Portability fix.
43363         * gnulib-tool (func_readlink): New function.
43364         (func_ln_if_changed): Use it.
43365
43366 2005-09-18  Bruno Haible  <bruno@clisp.org>
43367
43368         * gnulib-tool: Support --with-tests also with --import.
43369         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
43370         (func_import): Use variables $testsbase and $inctests. Emit a
43371         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
43372         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
43373         SUBDIRS += $testsdir.
43374         (func_create_testdir): Update.
43375
43376 2005-09-18  Bruno Haible  <bruno@clisp.org>
43377
43378         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
43379         instead of $dry_run.
43380         (func_cp_if_changed, func_mv_if_changed): Remove functions.
43381         (func_ln_if_changed): Don't handle dry-run here.
43382         (func_import): In dry-run mode, detect more precisely which actions
43383         would be performed, and don't use "...ing" verbs.
43384
43385 2005-09-18  Bruno Haible  <bruno@clisp.org>
43386
43387         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
43388         (func_import): Use join on two temporary files instead of three nested
43389         loops, in order to determine which files are new or old.
43390
43391 2005-09-18  Bruno Haible  <bruno@clisp.org>
43392
43393         * gnulib-tool (func_import): Comment out code that spits out the
43394         new files with --dry-run.
43395
43396 2005-09-18  Bruno Haible  <bruno@clisp.org>
43397
43398         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
43399
43400 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43401
43402         * lib/stat-time.h: New file.
43403         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
43404         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
43405         in a different way.
43406         (timespec_cmp): New function.
43407         * lib/utimecmp.c: Include stat-time.h.
43408         (SYSCALL_RESOLUTION): Depend on whether various struct stat
43409         members exist, not on the obsolescent ST_MTIM_NSEC.
43410         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
43411
43412 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43413
43414         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
43415
43416 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43417
43418         * MODULES.html.sh (File system functions): Add stat-time.
43419         * modules/stat-time: New file.
43420         * modules/timespec (Files): Remove m4/st_mtim.m4; this
43421         is now done in a different way, by the stat-time module.
43422         * modules/utimecmp (Depends-on): Add stat-time.
43423
43424 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43425
43426         * m4/st_mtim.m4: Remove.  Superseded by...
43427         * m4/stat-time.m4: New file.
43428         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
43429         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
43430
43431 2005-09-15  Derek Price  <derek@ximbiot.com>
43432
43433         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
43434
43435 2005-09-15  Derek Price  <derek@ximbiot.com>
43436
43437         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
43438         * lib/regex_internal.c: Ditto, using this...
43439         (__GNUC_PREREQ): ...new macro.
43440         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
43441         using...
43442         (__GNUC_PREREQ): ...this new macro.
43443
43444         * lib/strstr.h: Include string.h. Define strstr as a macro here.
43445
43446 2005-09-15  Derek Price  <derek@ximbiot.com>
43447             Paul Eggert  <eggert@cs.ucla.edu>
43448
43449         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
43450         changes, consolidating in...
43451         * lib/regex_internal.h: ...this file.
43452
43453 2005-09-13  Jim Meyering  <jim@meyering.net>
43454
43455         * lib/canon-host.c: Filter through gnu indent and reword comments
43456         slightly.
43457         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
43458
43459 2005-09-13  Derek Price  <derek@ximbiot.com>
43460
43461         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
43462         failure.
43463         Reported by Jim Meyering  <jim@meyering.net>.
43464
43465 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
43466
43467         * lib/base64.c: Typo.
43468         (base64_encode): Put b64str in initialized data section.
43469
43470 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
43471
43472         Merge glibc and coreutils changes into gnulib, plus a few
43473         extra fixes.
43474         * lib/md5.c: Use #error rather than a string.
43475         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
43476         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
43477         (__attribute__): Define to empty for non recent-GCC.
43478         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
43479         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
43480         Renamed from their non-__ counterparts, with new macros replacing
43481         them if not _LIBC.  Add __THROW attribute.
43482         (rol): Remove.
43483         (struct md5_ctx): Align buffer if using GCC.
43484         * lib/sha1.h (struct sha1_ctx): Likewise.
43485         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
43486         The old name was backwards.
43487         (NOTSWAP): Remove; not used.
43488         (rol): New macro, moved here from md5.h.
43489         (sha1_process_block): Remove a FIXME that doesn't make sense.
43490
43491 2005-09-12  Derek Price  <derek@ximbiot.com>
43492
43493         Return usable errors from canon-host.
43494         * lib/canon-host.h: New file.
43495         * lib/canon-host.c (canon_host): Wrap...
43496         (canon_host_r): ...this new function, which now relies exclusively on
43497         getaddrinfo.
43498         (ch_strerror): New function.
43499         (last_cherror): New global.
43500         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
43501         interface.
43502         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
43503         void *.
43504         (freeaddrinfo): Free ai->ai_canonname when set.
43505
43506 2005-09-12  Derek Price  <derek@ximbiot.com>
43507
43508         Make canon-host require getaddrinfo.
43509         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
43510         AC_LIBSOURCE canon-host.h.  Call...
43511         (gl_PREREQ_CANON_HOST): ...this new function, which requires
43512         gl_GETADDRINFO.
43513         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
43514
43515 2005-09-12  Derek Price  <derek@ximbiot.com>
43516
43517         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
43518         LGPL.
43519         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
43520
43521 2005-09-12  Derek Price  <derek@ximbiot.com>
43522
43523         * lib/gai_strerror.c: Include config.h when available.  Include
43524         getaddrinfo.h before other headers to test interface.
43525         Reported by Larry Jones <lawrence.jones@ugs.com>.
43526
43527 2005-09-12  Derek Price  <derek@ximbiot.com>
43528             Paul Eggert  <eggert@cs.ucla.edu>
43529
43530         * modules/glob (Files): Add glob-libc.h.
43531
43532 2005-09-12  Derek Price  <derek@ximbiot.com>
43533             Paul Eggert  <eggert@cs.ucla.edu>
43534
43535         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
43536         glob_.h, glob-libc.h.
43537         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
43538
43539 2005-09-12  Derek Price  <derek@ximbiot.com>
43540             Paul Eggert  <eggert@cs.ucla.edu>
43541
43542         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
43543         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
43544         protecting things that should be done only in gnulib contexts.
43545         * lib/glob_.h: New file, containing only the glob things needed for
43546         gnulib.
43547         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
43548         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
43549         (glob, globfree, glob_pattern_p): Now defined simply in terms of
43550         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
43551         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
43552         and to respect the namespace rules better.
43553
43554 2005-09-08  Simon Josefsson  <jas@extundo.com>
43555
43556         * modules/socklen: New file.
43557
43558 2005-09-08  Simon Josefsson  <jas@extundo.com>
43559
43560         * m4/socklen.m4: New file.
43561
43562 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43563
43564         * modules/utimens (Files): Add m4/utimbuf.m4, since
43565         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
43566         Reported by Sergey Poznyakoff.
43567
43568 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43569
43570         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
43571         definitions, since that's the preferred style in glibc.
43572         Fix a minor spacing issue, and update copyright notice to match
43573         glibc's.
43574
43575 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43576
43577         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
43578
43579 2005-09-06  Simon Josefsson  <jas@extundo.com>
43580
43581         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
43582         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
43583
43584 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43585
43586         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
43587         warning.
43588
43589 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43590
43591         * config/srclist.txt: Add glibc bug 1302.
43592
43593 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
43594
43595         Change bitset word type from unsigned int to unsigned long int,
43596         as this has better performance on typical 64-bit hosts.
43597         Port bitset code to hosts with unusual word sizes.
43598         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
43599         (build_collating_symbol):
43600         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
43601         argument is a bitset.  This is merely a style issue, but it makes
43602         it clearer that an entire array is expected.
43603         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
43604         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
43605         Port to the case where bitset_word is not the same as unsigned int.
43606         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43607         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
43608         Likewise.
43609         * lib/regexec.c (check_dst_limits_calc_pos_1,
43610         check_subexp_matching_top):
43611         (build_trtable, group_nodes_into_DFAstates):
43612         Likewise.
43613         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
43614         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
43615         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
43616         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
43617         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
43618         * lib/regcomp.c (optimize_subexps, lower_subexp):
43619         Work even if bitset_word has holes in its bitwise representation.
43620         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
43621         * lib/regexec.c (check_dst_limits_calc_pos_1,
43622         check_subexp_matching_top):
43623         Likewise.
43624         * lib/regex_internal.c (re_string_reconstruct):
43625         Don't assume UCHAR_MAX == 255.
43626         * lib/regex_internal.h (bitset_set_all): Likewise.
43627         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
43628         All uses changed.
43629         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
43630         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
43631         All uses changed.
43632         (BITSET_WORD_MAX): New macro.
43633         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
43634         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
43635         (bitset_empty, bitset_copy):
43636         Prefer sizeof (bitset) to multiplying it out ourselves.
43637         (bitset_not_merge): Remove; unused.
43638         (bitset_contain): Return bool, not unsigned int with one bit on.
43639         All callers changed.
43640         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
43641         alignment than re_node_set; do this by defining a new internal
43642         type struct dests_alloc and using it to allocate memory.
43643
43644 2005-09-05  Bruno Haible  <bruno@clisp.org>
43645
43646         * gnulib-tool (func_import): Fix comparison in handling of symbolic
43647         links.
43648
43649 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
43650
43651         * modules/size_max (Makefile.am): Add size_max.h
43652
43653 2005-09-04  Derek Price  <derek@ximbiot.com>
43654
43655         * gnulib-tool (func_import): Fix reversed $symbolic logic.
43656
43657 2005-09-03  Simon Josefsson  <jas@extundo.com>
43658
43659         * gnulib-tool: Fix typo.
43660
43661 2005-09-03  Simon Josefsson  <jas@extundo.com>
43662
43663         * config/srclist.txt: Add glibc bug 1293.
43664
43665 2005-09-03  Derek Price  <derek@ximbiot.com>
43666
43667         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
43668         From Larry Jones <lawrence.jones@ugs.com>.
43669
43670 2005-09-02  Simon Josefsson  <jas@extundo.com>
43671
43672         * modules/socklen: New file.
43673
43674 2005-09-02  Simon Josefsson  <jas@extundo.com>
43675
43676         * modules/havelib: New module.
43677
43678         * modules/gettext, modules/iconv, modules/lock, modules/readline:
43679         Use havelib.
43680
43681 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43682
43683         Check for arithmetic overflow when calculating sizes, to prevent
43684         some buffer-overflow issues.  These patches are conservative, in the
43685         sense that when I couldn't determine whether an overflow was possible,
43686         I inserted a run-time check.
43687         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
43688         macros.
43689         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
43690         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
43691         (re_xnrealloc, re_x2nrealloc): New inline functions.
43692         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
43693         parse_bracket_exp):
43694         (build_equiv_class, build_charclass): Check for arithmetic overflow
43695         in size expression calculations.
43696         * lib/regex_internal.c (re_string_realloc_buffers):
43697         (build_wcs_upper_buffer, re_node_set_add_intersect):
43698         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
43699         (re_dfa_add_node, register_state): Likewise.
43700         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
43701         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
43702         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
43703         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
43704
43705 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43706
43707         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
43708         m4/ulonglong.m4.  Problem reported by Martin Lambers.
43709
43710 2005-09-02  Bruno Haible  <bruno@clisp.org>
43711
43712         Support for lib vs. lib64 distinction on biarch platforms.
43713         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
43714         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
43715         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
43716
43717 2005-09-02  Bruno Haible  <bruno@clisp.org>
43718
43719         * gnulib-tool (import): In the other first-use case, provide defaults
43720         as well.
43721
43722 2005-09-02  Bruno Haible  <bruno@clisp.org>
43723
43724         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
43725         patches not yet found in the latest gettext release.
43726
43727 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43728
43729         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
43730         to avoid a collision with bits/local_lim.h in glibc.
43731         All uses changed.  Problem reported by Dmitry V. Levin in
43732         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
43733
43734         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
43735         bugs in int versus size_t comparisons.
43736         (re_string_context_at): Fix bug where the code assumed that
43737         Idx is signed.
43738
43739         Use bool where appropriate.
43740         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
43741         All callers changed.
43742         (calc_eclosure_iter): Likewise, for ROOT arg.
43743         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
43744         (build_charclass_op): Likewise, for NON_MATCH arg.
43745         * lib/regex_internal.c (re_string_allocate, re_string_construct):
43746         (re_string_construct_common): Likewise, for ICASE arg.
43747         * lib/regexec.c (re_search_2_stub, re_search_stub):
43748         Likewise, for RET_LEN arg.
43749         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
43750         (set_regs): Likewise, for FL_BACKTRACK arg.
43751         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
43752         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
43753         (calc_eclosure_iter, parse_bracket_exp):
43754         Use bool for internal variables that are booleans.
43755         * lib/regexec.c (re_search_internal, check_matching,
43756         proceed_next_node):
43757         (set_regs, build_sifted_states, sift_states_bkref):
43758         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
43759         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
43760         (find_collation_sequence_value):
43761         Likewise.
43762         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
43763         (re_node_set_compare):
43764         Return bool, not int. All callers changed.
43765         * lib/regexec.c (check_halt_node_context, check_dst_limits):
43766         (build_trtable, check_node_accept): Likewise.
43767         * lib/regex_internal.h: Include stdbool.h.
43768
43769         Fix bugs uncovered when converting to bool.
43770         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
43771         failure instead of charging ahead blindly.
43772         * lib/regex_internal.c (register_state): Likewise.
43773         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
43774         for freeing internal storage.
43775         (group_nodes_into_DFA_states): Use unsigned int, not int, for
43776         bitset pieces used as boolean, to avoid undefined behavior
43777         on hosts that do int overflow checking.
43778
43779 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43780
43781         * config/srclist.txt: Add glibc bugs 1285-1287.
43782
43783 2005-09-01  Jim Meyering  <jim@meyering.net>
43784
43785         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
43786         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
43787         Require gl_STAT_MACROS, too.
43788
43789 2005-09-01  Bruno Haible  <bruno@clisp.org>
43790
43791         * gnulib-tool (import): In the first-use case, provide defaults.
43792
43793 2005-09-01  Bruno Haible  <bruno@clisp.org>
43794
43795         * gnulib-tool (func_import): Remove the .tmp files.
43796
43797 2005-09-01  Bruno Haible  <bruno@clisp.org>
43798
43799         * gnulib-tool (func_import): Fix handling of symbolic links.
43800
43801 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43802
43803         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
43804         old glibc regex code mishandles strings longer than 2**31 bytes.
43805         This patch fixes this when the regex code is used in gnulib
43806         (i.e., outside glibc).
43807
43808         This patch should not affect the use of the regex code inside
43809         glibc.  No doubt this problem also needs to be handled for glibc
43810         as well, but the result will be an incompatible change to the
43811         glibc ABI, and the old ABI will have to be supported too.  That
43812         can be the the subject for another patch.
43813
43814         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
43815         governing whether the rest of this patch is active.  By default,
43816         the macro is disabled and the patch has no effect.
43817         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
43818         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
43819         (struct re_pattern_buffer, re_search, re_search_2, re_match):
43820         (re_match_2, re_set_registers): Use the new types.
43821         * lib/regex_internal.h (Idx, re_hashval_t): New types.
43822         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
43823         New macros.
43824         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
43825         (re_string_context_at, bin_tree_t, re_dfastate_t):
43826         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
43827         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
43828         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
43829         (re_string_char_size_at, re_string_wchar_at):
43830         (re_string_elem_size_at):
43831         Use the new types and macros to port to 64-bit hosts.
43832         Use unsigned types for internal values, so that the code
43833         mostly works even for arrays larger than SSIZE_MAX.
43834         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
43835         (search_duplicated_node, calc_eclosure_iter, fetch_number):
43836         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
43837         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
43838         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
43839         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
43840         (calc_inveclosure, parse_dup_op, build_range_exp):
43841         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
43842         (fetch_number, create_token_tree, mark_opt_subexp):
43843         Likewise.
43844         * lib/regex_internal.c (re_string_construct_common,
43845         create_ci_newstate):
43846         (create_cd_newstate, re_string_allocate, re_string_construct):
43847         (re_string_realloc_buffers, build_wcs_upper_buffer):
43848         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
43849         (re_string_reconstruct, re_string_peek_byte_case):
43850         (re_string_fetch_byte_case, re_string_context_at):
43851         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
43852         (re_node_set_init_copy, re_node_set_add_intersect):
43853         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
43854         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
43855         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
43856         (re_acquire_state, re_acquire_state_context, register_state):
43857         Likewise.
43858         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
43859         search_cur_bkref_entry):
43860         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
43861         (re_search_internal, re_search_2_stub, re_search_stub)
43862         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
43863         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
43864         (update_cur_sifted_state, check_dst_limits):
43865         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43866         (check_subexp_limits, sift_states_bkref, merge_state_array):
43867         (check_subexp_matching_top, get_subexp, get_subexp_sub):
43868         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
43869         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
43870         (expand_bkref_cache, check_node_accept_bytes):
43871         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
43872         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
43873         (acquire_init_state_context, check_halt_node_context):
43874         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
43875         (sift_states_backward, clean_state_log_if_needed):
43876         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
43877         (find_recover_state, transit_state_sb, transit_state_mb):
43878         (transit_state_bkref, build_trtable, match_ctx_clean):
43879         Likewise.
43880         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
43881         to work around an assumption that REG_MISSING is negative.
43882
43883         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
43884         (seek_collating_symbol_entry) [defined _LIBC]:
43885         (lookup_collation_sequence_value) [defined _LIBC]:
43886         (build_range_exp, build_collating_symbol) [defined _LIBC]:
43887         Use prototypes rather than old-style function definitions.
43888         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
43889         (transit_state_sb) [0]:
43890         (find_collation_sequence_value) [defined _LIBC]: Likewise.
43891
43892         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
43893         rm_eo.
43894
43895         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
43896         (optimize_subexps, lower_subexp):
43897         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
43898         since the signed shift might overflow.  Use 1u<<31 instead.
43899         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43900         Likewise.
43901         * lib/regexec.c (check_dst_limits_calc_pos_1,
43902         check_subexp_matching_top): Likewise.
43903
43904         * lib/regcomp.c (optimize_subexps, lower_subexp):
43905         Use CHAR_BIT rather than 8, for clarity.
43906         * lib/regexec.c (check_dst_limits_calc_pos_1):
43907         (check_subexp_matching_top): Likewise.
43908         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
43909         have to worry about portability issues when shifting it left.
43910         Remove no-longer-needed test for table_size > 0.
43911         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
43912         in a word, as the resulting behavior is undefined.
43913         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
43914         in one case, a <= should have been an <, and in another case the
43915         whole test was missing.
43916         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
43917         the standard name CHAR_BIT.
43918         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
43919         this is not true on one's complement and signed-magnitude hosts.
43920
43921         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
43922         next_last_offset.
43923         (struct re_dfa_t): Remove unused member states_alloc.
43924         * lib/regcomp.c (init_dfa): Don't initialize unused members.
43925
43926 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43927
43928         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
43929         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
43930         and large-file glibc and in 32-bit large-file Solaris.
43931
43932 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43933
43934         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
43935         lengths fit in regoff_t; this isn't true if regoff_t is the same
43936         width as size_t.
43937         * lib/regex.c (re_search_internal): 5th arg is LAST_START
43938         (= START + RANGE) instead of RANGE.  This avoids overflow
43939         problems when regoff_t is the same width as size_t.
43940         All callers changed.
43941         (re_search_2_stub): Check for overflow when adding the
43942         sizes of the two strings.
43943         (re_search_stub): Check for overflow when adding START
43944         to RANGE; if it occurs, substitute the extreme value.
43945
43946 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43947
43948         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
43949
43950 2005-08-31  Jim Meyering  <jim@meyering.net>
43951
43952         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
43953         a pointer-to-const.
43954         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
43955         (register_state): Likewise.
43956         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
43957         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43958         (group_nodes_into_DFAstates): Likewise.
43959
43960 2005-08-31  Jim Meyering  <jim@meyering.net>
43961
43962         * check-module: Add a FIXME comment.
43963
43964 2005-08-31  Eric Blake  <ebb9@byu.net>
43965
43966         * modules/unistd-safer (Files): Add unistd--.h.
43967         * modules/stdio-safer (Files): Add stdio--.h.
43968
43969 2005-08-31  Derek Price  <derek@ximbiot.com>
43970
43971         * lib/getdelim.c (getdelim): Return EOF on EOF.
43972         Reported by Larry Jones <lawrence.jones@ugs.com>.
43973
43974 2005-08-31  Bruno Haible  <bruno@clisp.org>
43975
43976         Avoid unnecessary diffs in the generated lib/Makefile.am.
43977         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
43978         the generated files.
43979         (func_import): Don't set cmd.
43980
43981 2005-08-31  Bruno Haible  <bruno@clisp.org>
43982
43983         * lib/strstr.c: Include <stddef.h>, for NULL.
43984         * lib/strcasestr.c: Likewise.
43985         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
43986
43987 2005-08-31  Bruno Haible  <bruno@clisp.org>
43988
43989         * gnulib-tool: New option --macro-prefix.
43990         (func_import): Use macro_prefix.
43991         (import): Handle option --macro-prefix.
43992
43993 2005-08-31  Bruno Haible  <bruno@clisp.org>
43994
43995         * gnulib-tool (import): Rename most ac_* variables to cached_*.
43996         Also use new variables cached_lgpl, cached_libtool.
43997
43998 2005-08-31  Bruno Haible  <bruno@clisp.org>
43999
44000         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
44001         always instantiating them.
44002
44003 2005-08-31  Bruno Haible  <bruno@clisp.org>
44004
44005         * gnulib-tool (func_import): Read the previous cached settings
44006         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
44007         earlier added by gnulib but are now dropped. Warn when a gnulib file
44008         overwrites a non-gnulib file.
44009
44010 2005-08-31  Bruno Haible  <bruno@clisp.org>
44011
44012         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
44013         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
44014         projects that don't keep autogenerated files in CVS. Put into
44015         actioncmd only the specified modules, not the transitive closure.
44016
44017 2005-08-31  Bruno Haible  <bruno@clisp.org>
44018
44019         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
44020         Create directories that shall be filled.
44021         (import): Don't look for gl_* macros in configure.ac. Recurse across
44022         all directories containing a gnulib-cache.m4 files, if meaningful.
44023
44024 2005-08-31  Bruno Haible  <bruno@clisp.org>
44025
44026         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
44027         (import): Set seen_libtool when we see gl_LIBTOOL.
44028
44029 2005-08-31  Bruno Haible  <bruno@clisp.org>
44030
44031         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
44032         declaration macro definitions from generated gnulib.m4.
44033
44034 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
44035
44036         * lib/iconvme.h: Add prototype for iconv_alloc.
44037
44038 2005-08-29  Simon Josefsson  <jas@extundo.com>
44039
44040         * lib/iconvme.c: Fix errno.
44041
44042 2005-08-29  Bruno Haible  <bruno@clisp.org>
44043
44044         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
44045         that it works when the directory contains spaces.
44046
44047 2005-08-29  Bruno Haible  <bruno@clisp.org>
44048
44049         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
44050
44051 2005-08-29  Bruno Haible  <bruno@clisp.org>
44052
44053         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
44054         Emit more advice.
44055
44056 2005-08-29  Bruno Haible  <bruno@clisp.org>
44057         and Stepan Kasal  <kasal@ucw.cz>
44058
44059         * check-module: If more parameters are given, check each of them
44060         separately; add more exceptions, as noted by Jim Meyering.
44061         (check_module): New procedure.
44062         (%exempt_header): Now contains all exceptions.
44063
44064 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
44065
44066         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
44067
44068 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
44069
44070         * lib/iconvme.c: Split iconv_string into iconv_alloc.
44071
44072 2005-08-28  Bruno Haible  <bruno@clisp.org>
44073
44074         * m4/gnulib-tool.m4: New file.
44075
44076 2005-08-27  Jim Meyering  <jim@meyering.net>
44077
44078         * modules/unistd-safer (Files): Add pipe-safer.c.
44079         * modules/fcntl-safer (Files): Add creat-safer.c.
44080
44081 2005-08-27  Jim Meyering  <jim@meyering.net>
44082
44083         * m4/stdlib-safer.m4: New file.  From coreutils.
44084         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
44085         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
44086         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
44087         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
44088         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
44089
44090 2005-08-27  Jim Meyering  <jim@meyering.net>
44091
44092         * lib/fopen-safer.c: Merge minor changes from coreutils.
44093         * lib/dup-safer.c: Likewise.
44094         * lib/fd-safer.c: Likewise.
44095
44096         Merge from coreutils.
44097         * lib/stdio--.h: New file.
44098         * lib/stdlib--.h: New file.
44099         * lib/mkstemp-safer.c: New file.
44100
44101         GNU tar needs these.
44102         * lib/pipe-safer.c: New file.
44103         * lib/creat-safer.c: New file.
44104         * lib/fcntl--.h (creat): Define to creat_safer.
44105         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
44106         * lib/unistd--.h (pipe): Define to pipe_safer.
44107         * lib/unistd-safer.h: Declare pipe_safer.
44108
44109 2005-08-26  Simon Josefsson  <jas@extundo.com>
44110
44111         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
44112         Haible <bruno@clisp.org>.
44113
44114 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
44115
44116         * lib/regex_internal.h: Remove all references to
44117         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
44118         or better.
44119         (bitset_not, bitset_merge, bitset_not_merge):
44120         (bitset_mask, re_string_allocate, re_string_construct):
44121         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
44122         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
44123         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
44124         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
44125         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44126         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44127         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
44128         (re_acquire_state_context):
44129         Remove unnecessary forward decls.
44130         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
44131         Put __attribute at function definition,
44132         now that the function decl has been removed.
44133         * lib/regex_internal.c (re_string_peek_byte_case):
44134         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
44135         Likewise.
44136
44137 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
44138
44139         * m4/regex.m4: Add AC_PREREQ(2.50).
44140         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
44141
44142 2005-08-25  Simon Josefsson  <jas@extundo.com>
44143
44144         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
44145         __fsetlocking.
44146
44147 2005-08-25  Simon Josefsson  <jas@extundo.com>
44148
44149         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
44150         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
44151         GLIBC specific code.
44152
44153 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44154
44155         Make regex safe for g++.  This fixes one real bug (an "err"
44156         that should have been "*err").  g++ problem reported by
44157         Sam Steingold.
44158         * lib/regex_internal.h (re_calloc): New macro, consistent with
44159         re_malloc etc.  All callers of calloc changed to use re_calloc.
44160         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
44161         not int.  All callers changed.
44162         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
44163         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
44164         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
44165         (find_recover_state): Change "err" to "*err"; this fixes what
44166         appears to be a real bug.
44167         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
44168         versus int.
44169
44170 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44171
44172         * modules/regex (Depends-on): Add malloc, since the code
44173         assumes that !malloc(0) means failure.
44174
44175 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44176
44177         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
44178
44179         alloca modernization/simplification for regex.
44180         * lib/regex.c: Remove portability cruft for alloca.  This no longer
44181         needs to be at the start of the file, and can be moved into
44182         regex_internal.h and simplified.
44183         * lib/regex_internal.h: Include <alloca.h>.
44184         (__libc_use_alloca) [!defined _LIBC]: New macro.
44185         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
44186         now works outside glibc.
44187
44188 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44189
44190         * config/srclist.txt: Add glibc bugs 1241, 1245.
44191
44192 2005-08-25  Jim Meyering  <jim@meyering.net>
44193
44194         * lib/open-safer.c: Include <config.h>.
44195         Otherwise, we'd lose LARGEFILE support in any file using
44196         e.g. "fcntl--.h"
44197
44198 2005-08-25  Bruno Haible  <bruno@clisp.org>
44199
44200         * m4/minmax.m4: Require autoconf 2.52.
44201         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
44202         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
44203         alternatives of translit over the alphabet.
44204         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
44205
44206 2005-08-24  Simon Josefsson  <jas@extundo.com>
44207
44208         * tests/test-getpass.c: New file.
44209
44210 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44211
44212         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
44213         for GNU regex features.
44214
44215 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44216
44217         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
44218         * lib/regex.h (regerror): Likewise.
44219
44220         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
44221         requires this.  (The code never needed it.)
44222
44223         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
44224         All uses of recently-renamed identifiers changed to use the new,
44225         POSIX-compliant names.  The code will build and run just fine
44226         without these changes, but it's better to eat our own dog food
44227         and use the standard-conforming names.
44228
44229         * lib/regex.h: Fix a multitude of POSIX name space violations.
44230         These changes have an effect only for programs that define
44231         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
44232         do not change anything for programs compiled in the normal way.
44233         Also, there is no effect on the ABI.
44234
44235         (_REGEX_SOURCE): New macro.
44236         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
44237         defined and _GNU_SOURCE is not; this fixes a name space violation.
44238
44239         Rename the following macros to obey POSIX requirements.
44240         The old names are still visible as macros if _REGEX_SOURCE is defined.
44241         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
44242         RE_BACKSLASH_ESCAPE_IN_LISTS.
44243         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
44244         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
44245         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
44246         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
44247         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
44248         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
44249         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
44250         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
44251         (REG_INTERVALS): renamed from RE_INTERVALS.
44252         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
44253         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
44254         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
44255         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
44256         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
44257         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
44258         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
44259         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
44260         RE_UNMATCHED_RIGHT_PAREN_ORD.
44261         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
44262         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
44263         (REG_DEBUG): renamed from RE_DEBUG.
44264         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
44265         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
44266         unusual, since we can't clash with the POSIX REG_ICASE.
44267         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
44268         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
44269         (REG_NO_SUB): renamed from RE_NO_SUB.
44270         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
44271         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
44272         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
44273         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
44274         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
44275         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
44276         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
44277         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
44278         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
44279         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
44280         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
44281         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
44282         RE_SYNTAX_POSIX_MINIMAL_BASIC.
44283         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
44284         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
44285         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
44286         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
44287         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
44288         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
44289         (REG_FIXED): Renamed from REGS_FIXED.
44290         (REG_NREGS): Renamed from RE_NREGS.
44291
44292         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
44293         of other REG_* macros, since POSIX says the user is allowed to
44294         #undef these macros selectively.
44295
44296         (reg_errcode_t): Update comment stating what other tables need
44297         to be consistent.
44298
44299         Rename the following enum values to obey POSIX requirements.
44300         The old names are still visible as macros.
44301         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
44302         is not defined, since GNU is supposed to be a superset of POSIX as
44303         much as possible, and since we want reg_errcode_t to be a signed
44304         type for implementation consistency.
44305         (_REG_NOERROR): Renamed from REG_NOERROR.
44306         (_REG_NOMATCH): Renamed from REG_NOMATCH.
44307         (_REG_BADPAT): Renamed from REG_BADPAT.
44308         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
44309         (_REG_ECTYPE): Renamed from REG_ECTYPE.
44310         (_REG_EESCAPE): Renamed from REG_EESCAPE.
44311         (_REG_ESUBREG): Renamed from REG_ESUBREG.
44312         (_REG_EBRACK): Renamed from REG_EBRACK.
44313         (_REG_EPAREN): Renamed from REG_EPAREN.
44314         (_REG_EBRACE): Renamed from REG_EBRACE.
44315         (_REG_BADBR): Renamed from REG_BADBR.
44316         (_REG_ERANGE): Renamed from REG_ERANGE.
44317         (_REG_ESPACE): Renamed from REG_ESPACE.
44318         (_REG_BADRPT): Renamed from REG_BADRPT.
44319         (_REG_EEND): Renamed from REG_EEND.
44320         (_REG_ESIZE): Renamed from REG_ESIZE.
44321         (_REG_ERPAREN): Renamed from REG_ERPAREN.
44322         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
44323         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
44324         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
44325         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
44326
44327         (_REG_RE_NAME, _REG_RM_NAME): New macros.
44328         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
44329         changed.  But support the old name if the new one is not defined
44330         and if _REGEX_SOURCE.
44331
44332         Change the following member names in struct re_pattern_buffer.
44333         The old names are still supported if !_REGEX_SOURCE.
44334         The new names are always supported, regardless of _REGEX_SOURCE.
44335         (re_buffer): Renamed from buffer.
44336         (re_allocated): Renamed from allocated.
44337         (re_used): Renamed from used.
44338         (re_syntax): Renamed from syntax.
44339         (re_fastmap): Renamed from fastmap.
44340         (re_translate): Renamed from translate.
44341         (re_can_be_null): Renamed from can_be_null.
44342         (re_regs_allocated): Renamed from regs_allocated.
44343         (re_fastmap_accurate): Renamed from fastmap_accurate.
44344         (re_no_sub): Renamed from no_sub.
44345         (re_not_bol): Renamed from not_bol.
44346         (re_not_eol): Renamed from not_eol.
44347         (re_newline_anchor): Renamed from newline_anchor.
44348
44349         Change the following member names in struct re_registers.
44350         The old names are still supported if !_REGEX_SOURCE.
44351         The new names are always supported, regardless of _REGEX_SOURCE.
44352         (rm_num_regs): Renamed from num_regs.
44353         (rm_start): Renamed from start.
44354         (rm_end): Renamed from end.
44355
44356         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
44357         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
44358         Prepend __ to parameter names.
44359
44360         Undo yesterday's changes.
44361
44362 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44363
44364         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
44365         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
44366         lib/regex.c.
44367
44368 2005-08-24  Jim Meyering  <jim@meyering.net>
44369
44370         Sync from coreutils.
44371         * m4/fcntl-safer.m4: New file.
44372
44373         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
44374         and object files for this module.
44375
44376 2005-08-24  Jim Meyering  <jim@meyering.net>
44377
44378         Sync from coreutils.
44379         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
44380
44381 2005-08-24  Jim Meyering  <jim@meyering.net>
44382
44383         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
44384         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
44385
44386 2005-08-24  Jim Meyering  <jim@meyering.net>
44387
44388         * modules/fcntl-safer: New module.
44389         * modules/fts (Depends-on): Add fcntl-safer.
44390         * MODULES.html.sh (File descriptor based Input/Output):
44391         Add fcntl-safer.
44392
44393 2005-08-24  Bruno Haible  <bruno@clisp.org>
44394
44395         Support for unit test modules.
44396         * modules/README: Mention tests modules.
44397         * modules/TEMPLATE-TESTS: New file.
44398         * gnulib-tool: New options --extract-tests-module, --with-tests and
44399         --tests-base (unused for the moment).
44400         (testsbase, inctests): New variables.
44401         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
44402         (func_verify_module): Exclude TEMPLATE-TESTS.
44403         (func_verify_nontests_module, func_verify_tests_module): New functions.
44404         (func_get_dependencies): Add implicit dependency for tests modules.
44405         (func_get_tests_module): New function.
44406         (func_modules_transitive_closure): When --with-tests was specified,
44407         include the unit tests as well, unless explicitly avoided.
44408         (func_emit_lib_Makefile_am): Ignore the tests modules here.
44409         (func_emit_tests_Makefile_am): New function.
44410         (func_create_testdir): When --with-tests was specified, emit a
44411         tests/ directory.
44412         * MODULES.html.sh (Future developments): Update.
44413
44414 2005-08-24  Bruno Haible  <bruno@clisp.org>
44415
44416         * modules/tls-tests: New file.
44417         * tests/test-tls.c: New file, from GNU gettext.
44418
44419 2005-08-24  Bruno Haible  <bruno@clisp.org>
44420
44421         * modules/lock-tests: New file.
44422         * tests/test-lock.c: New file, from GNU gettext.
44423
44424 2005-08-24  Bruno Haible  <bruno@clisp.org>
44425
44426         * lib/lock.h: Add multiple inclusion guard.
44427         * lib/tls.h: Add multiple inclusion guard.
44428
44429 2005-08-24  Bruno Haible  <bruno@clisp.org>
44430
44431         * gnulib-tool: Add support for the --aux-dir option to
44432         --create-testdir, --create-megatestdir, --test, --megatest.
44433         (func_create_testdir, func_create_megatestdir): Optionally emit a
44434         AC_CONFIG_AUX_DIR directive.
44435         (create-testdir, create-megatestdir, test, megatest): Provide a
44436         default value for $auxdir.
44437
44438 2005-08-24  Bruno Haible  <bruno@clisp.org>
44439
44440         * gnulib-tool (import): Use compound statement instead of subshell
44441         where possible.
44442
44443 2005-08-24  Bruno Haible  <bruno@clisp.org>
44444
44445         * gnulib-tool (import): Change --aux-dir default to "build-aux".
44446
44447 2005-08-24  Bruno Haible  <bruno@clisp.org>
44448
44449         * gnulib-tool (func_version): Update.
44450
44451 2005-08-24  Bruno Haible  <bruno@clisp.org>
44452
44453         * gnulib-tool (func_import, func_create_testdir,
44454         func_create_megatestdir): Quote all autoconf macro arguments.
44455
44456 2005-08-24  Bruno Haible  <bruno@clisp.org>
44457
44458         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
44459         option --force, because --force causes the aclocal.m4 of each
44460         subdirectory to be newer than the corresponding config.h.in.
44461
44462 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44463
44464         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
44465         All contents moved to gl_REGEX.
44466         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
44467         assume that it does.
44468
44469 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44470
44471         * lib/regex.h (REG_NOSYS)
44472         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
44473         Define, since POSIX requires it as of 2001.
44474         (_REG_ENOSYS)
44475         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
44476         New private symbol, used to keep the enum signed in all cases.
44477         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
44478         Youngman in
44479         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
44480
44481         * lib/regex_internal.c (re_string_skip_chars, register_state):
44482         (calc_state_hash):
44483         Remove forward decls; no longer needed now that we use prototypes.
44484         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
44485         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
44486         (clean_state_log_if_needed): Likewise.
44487
44488 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44489
44490         * config/srclist.txt: Add glibc bugs 1231-1233.
44491
44492 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44493
44494         Fix problems reported by Sam Steingold in
44495         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
44496         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
44497         assumed that reg_errcode_t is a signed type, which is not
44498         necessarily true if _XOPEN_SOURCE is not defined.
44499         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
44500         since some compilers warn about it otherwise.
44501
44502 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44503
44504         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
44505         (init_word_char, create_initial_state, duplicate_node_closure):
44506         (fetch_token, peek_token_bracket, build_range_exp):
44507         (build_collating_symbol): Remove forward decls; no longer needed
44508         now that we use prototypes.
44509
44510         * lib/regcomp.c:
44511         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
44512         (re_compile_fastmap_iter, regcomp, regerror, regfree):
44513         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
44514         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
44515         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
44516         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
44517         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
44518         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
44519         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
44520         (build_range_exp, build_collating_symbol, parse_bracket_exp):
44521         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
44522         (build_charclass, build_charclass_op, fetch_number, create_tree):
44523         (create_token_tree, mark_opt_subexp, duplicate_tree):
44524         Use prototypes rather than old-style definitions.
44525
44526         * lib/regex_internal.c:
44527         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
44528         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
44529         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
44530         (re_string_reconstruct, re_string_peek_byte_case):
44531         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
44532         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
44533         (re_node_set_init_copy, re_node_set_add_intersect):
44534         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44535         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44536         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
44537         (re_acquire_state, re_acquire_state_context, register_state):
44538         (create_ci_newstate, create_cd_newstate, free_state):
44539         Likewise.
44540         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
44541         re_search_2):
44542         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
44543         (re_search_internal, prune_impossible_nodes):
44544         (acquire_init_state_context, check_matching, static):
44545         (check_halt_node_context, check_halt_state_context, proceed_next_node):
44546         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
44547         (update_regs, sift_states_backward, build_sifted_states):
44548         (clean_state_log_if_needed, merge_state_array):
44549         (update_cur_sifted_state, add_epsilon_src_nodes):
44550         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
44551         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
44552         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
44553         (find_recover_state, check_subexp_matching_top, transit_state_mb):
44554         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
44555         (check_arrival, check_arrival_add_next_nodes):
44556         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
44557         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
44558         (check_node_accept_bytes, check_node_accept, extend_buffers):
44559         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
44560         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
44561         (sift_ctx_init):
44562         Likewise.
44563
44564         * lib/regex_internal.h:
44565         (re_string_allocate, re_string_construct, re_string_reconstruct):
44566         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
44567         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
44568         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
44569         (re_string_context_at, re_string_peek_byte_case):
44570         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
44571         is defined, since we now use prototypes always.
44572
44573         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
44574         C89 or better.  All uses removed.
44575
44576 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44577
44578         * config/srclist.txt: Add glibc bugs 1220-1227.
44579
44580 2005-08-20  Jim Meyering  <jim@meyering.net>
44581
44582         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
44583         of unused local, dfa.
44584
44585 2005-08-20  Bruno Haible  <bruno@clisp.org>
44586
44587         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
44588
44589 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44590
44591         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
44592         (re_node_set_insert_last, re_dfa_add_node):
44593         Rename local variables to avoid GCC shadowing warnings.
44594
44595 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44596
44597         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
44598         [defined lint]: Suppress bogus uninitialized-variable warnings.
44599
44600         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
44601         and let the caller return REG_ESPACE if out of space.  This
44602         removes an uninitialied-variable warning with GCC 4.0.1, and also
44603         avoids taking the address of a local variable.  All callers
44604         changed.
44605
44606 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44607
44608         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
44609         $LIBCSRC/posix/regexec.c.
44610         Add glibc bug 1217 for regcomp.c.
44611
44612 2005-08-19  Jim Meyering  <jim@meyering.net>
44613
44614         * lib/regexec.c (proceed_next_node): Redo local variables to
44615         avoid GCC shadowing warnings.
44616
44617 2005-08-18  Bruno Haible  <bruno@clisp.org>
44618
44619         * lib/strstr.c (strstr): Fix return value in multibyte case.
44620         * lib/strcasestr.c (strcasestr): Likewise.
44621
44622 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44623
44624         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
44625
44626 2005-08-17  Jim Meyering  <jim@meyering.net>
44627
44628         Make the %s format (seconds since the epoch) work for a negative
44629         number and when used with a zero-padded field width, e.g. %015s.
44630
44631         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
44632         label so that it precedes the code to set `digits'.  Otherwise,
44633         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
44634         print `00-22'.  Now, it prints `-0022', as it should.
44635
44636 2005-08-17  Bruno Haible  <bruno@clisp.org>
44637
44638         * modules/strstr (Files): Add m4/mbrtowc.m4.
44639         (Depends-on): Add mbuiter.
44640
44641 2005-08-17  Bruno Haible  <bruno@clisp.org>
44642
44643         * modules/strcasestr: New file.
44644         * MODULES.html.sh (String handling, based on ANSI C 89): Add
44645         strcasestr.
44646
44647 2005-08-17  Bruno Haible  <bruno@clisp.org>
44648
44649         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
44650
44651 2005-08-17  Bruno Haible  <bruno@clisp.org>
44652
44653         * modules/mbuiter: New file.
44654         * MODULES.html.sh (Extended multibyte and wide character utilities):
44655         Add mbuiter.
44656
44657 2005-08-17  Bruno Haible  <bruno@clisp.org>
44658
44659         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
44660         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
44661
44662 2005-08-17  Bruno Haible  <bruno@clisp.org>
44663
44664         * m4/strcasestr.m4: New file.
44665
44666 2005-08-17  Bruno Haible  <bruno@clisp.org>
44667
44668         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
44669         * lib/strstr.c: Completely rewritten, with multibyte locale support.
44670
44671 2005-08-17  Bruno Haible  <bruno@clisp.org>
44672
44673         * lib/strcasestr.h: New file.
44674         * lib/strcasestr.c: New file.
44675
44676 2005-08-17  Bruno Haible  <bruno@clisp.org>
44677
44678         * lib/strcasecmp.c: Use mbuiter.h.
44679
44680 2005-08-17  Bruno Haible  <bruno@clisp.org>
44681
44682         * lib/mbuiter.h: New file.
44683
44684 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44685
44686         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
44687         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
44688         and gl_GETOPT are both invoked via different paths (as happens
44689         with GNU tar CVS because it uses both argp and getopt), the former
44690         wins.
44691
44692 2005-08-16  Bruno Haible  <bruno@clisp.org>
44693
44694         * modules/tls: New file.
44695         * MODULES.html.sh (Multithreading): Add tls.
44696
44697 2005-08-16  Bruno Haible  <bruno@clisp.org>
44698
44699         * modules/strnlen1: New file.
44700         * MODULES.html.sh (String handling): Add strnlen1.
44701
44702 2005-08-16  Bruno Haible  <bruno@clisp.org>
44703
44704         * modules/strcase (Files): Add m4/mbrtowc.m4.
44705         (Depends-on): Add strnlen1, mbchar.
44706
44707 2005-08-16  Bruno Haible  <bruno@clisp.org>
44708
44709         * modules/mbiter: New file.
44710         * MODULES.html.sh (Extended multibyte and wide character utilities):
44711         Add mbiter.
44712
44713 2005-08-16  Bruno Haible  <bruno@clisp.org>
44714
44715         * modules/mbfile: New file.
44716         * MODULES.html.sh (Extended multibyte and wide character utilities):
44717         Add mbfile.
44718
44719 2005-08-16  Bruno Haible  <bruno@clisp.org>
44720
44721         * modules/mbchar: New file.
44722         * MODULES.html.sh (Extended multibyte and wide character utilities):
44723         New section.
44724
44725 2005-08-16  Bruno Haible  <bruno@clisp.org>
44726
44727         * m4/tls.m4: New file, from GNU gettext.
44728
44729 2005-08-16  Bruno Haible  <bruno@clisp.org>
44730
44731         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
44732         always.
44733         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
44734
44735 2005-08-16  Bruno Haible  <bruno@clisp.org>
44736
44737         * m4/mbiter.m4: New file.
44738
44739 2005-08-16  Bruno Haible  <bruno@clisp.org>
44740
44741         * m4/mbfile.m4: New file.
44742
44743 2005-08-16  Bruno Haible  <bruno@clisp.org>
44744
44745         * m4/mbchar.m4: New file.
44746
44747 2005-08-16  Bruno Haible  <bruno@clisp.org>
44748
44749         * lib/tls.h: New file, from GNU gettext.
44750         * lib/tls.c: New file, from GNU gettext.
44751
44752 2005-08-16  Bruno Haible  <bruno@clisp.org>
44753
44754         * lib/strnlen1.h: New file.
44755         * lib/strnlen1.c: New file.
44756
44757 2005-08-16  Bruno Haible  <bruno@clisp.org>
44758
44759         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
44760         (mbi_init): Update.
44761         (mbi_avail, mbi_advance): Let the iteration end before the terminating
44762         NUL byte, not after it.
44763
44764 2005-08-16  Bruno Haible  <bruno@clisp.org>
44765
44766         * lib/strcase.h (strcasecmp): Add note in comments.
44767         * lib/strncasecmp.c: Use code from strcasecmp.c.
44768         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
44769         (strcasecmp): Work correctly in multibyte locales.
44770
44771 2005-08-16  Bruno Haible  <bruno@clisp.org>
44772
44773         * lib/mbiter.h: New file.
44774
44775 2005-08-16  Bruno Haible  <bruno@clisp.org>
44776
44777         * lib/mbfile.h: New file.
44778
44779 2005-08-16  Bruno Haible  <bruno@clisp.org>
44780
44781         * lib/mbchar.h: New file.
44782         * lib/mbchar.c: New file.
44783
44784 2005-08-16  Bruno Haible  <bruno@clisp.org>
44785
44786         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
44787         the valid ones. Makes the comparison operations transitive:
44788         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
44789         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
44790
44791 2005-08-15  Simon Josefsson  <jas@extundo.com>
44792
44793         * modules/ssize_t (License): Change to 'unlimited'.
44794
44795         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
44796
44797 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44798
44799         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
44800         Add comments for each pending glibc patch.
44801
44802 2005-08-15  Bruno Haible  <bruno@clisp.org>
44803
44804         * lib/regex.h (__restrict_arr): Don't define to __restrict if
44805         __cplusplus is defined.
44806
44807 2005-08-14  Jim Meyering  <jim@meyering.net>
44808
44809         Sync from coreutils.
44810
44811         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
44812         Use the hash-table-based cycle-detection code not just when
44813         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
44814         Reported by James Youngman in
44815         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
44816         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
44817         FTS_TIGHT_CYCLE_CHECK.
44818         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
44819         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
44820         once again.
44821         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
44822         * lib/fts.c (fd_safer): Remove decl.
44823         Include fcntl--.h rather than unistd-safer.h
44824         (fts_safe_changedir): Don't call fd_safer; no longer needed
44825         now that we include fcntl--.h.
44826
44827 2005-08-12  Simon Josefsson  <jas@extundo.com>
44828
44829         * modules/getndelim2: Use ssize_t module.
44830         * modules/getnline: Likewise.
44831         * modules/safe-read: Likewise.
44832         * modules/xreadlink: Likewise.
44833
44834         * modules/ssize_t: New file.
44835
44836 2005-08-12  Simon Josefsson  <jas@extundo.com>
44837
44838         * m4/readline.m4: Look for termcap, curses or ncurses if required.
44839
44840 2005-08-12  Simon Josefsson  <jas@extundo.com>
44841
44842         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
44843         ssize_t.
44844
44845 2005-08-12  Simon Josefsson  <jas@extundo.com>
44846
44847         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
44848         readline, getdelim and check_version.
44849         (Support for systems lacking ISO C 99: Sizes of integer types):
44850         Add size_max.
44851
44852 2005-08-12  Bruno Haible  <bruno@clisp.org>
44853
44854         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
44855
44856 2005-08-11  Simon Josefsson  <jas@extundo.com>
44857
44858         * modules/readline: New file.
44859
44860         * modules/strnlen (Files): Add strnlen.h.
44861
44862 2005-08-11  Simon Josefsson  <jas@extundo.com>
44863
44864         * m4/readline.m4: New file.
44865
44866 2005-08-11  Simon Josefsson  <jas@extundo.com>
44867
44868         * lib/readline.h, readline.c: New file.
44869
44870 2005-08-11  Simon Josefsson  <jas@extundo.com>
44871
44872         * doc/gnulib.texi (Initial import, Finishing touches): Mention
44873         gl_AVOID.
44874
44875 2005-08-11  Bruno Haible  <bruno@clisp.org>
44876
44877         * lib/strnlen.h (strnlen): Change parameter name to match comment.
44878
44879 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
44880
44881         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
44882
44883 2005-08-10  Simon Josefsson  <jas@extundo.com>
44884
44885         * tests/test-iconvme.c: New file.
44886
44887 2005-08-10  Simon Josefsson  <jas@extundo.com>
44888
44889         * m4/strnlen.m4: New file.
44890
44891         * m4/strndup.m4: Don't check for strnlen declaration, done in
44892         strnlen.m4.
44893
44894 2005-08-10  Simon Josefsson  <jas@extundo.com>
44895
44896         * lib/strndup.c: Use strnlen.h.
44897
44898         * lib/strnlen.h: New file.
44899
44900 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
44901
44902         * README: Typos.
44903
44904 2005-08-02  Simon Josefsson  <jas@extundo.com>
44905
44906         * modules/readline: New file.
44907
44908 2005-08-02  Simon Josefsson  <jas@extundo.com>
44909
44910         * modules/getdelim: New file.
44911
44912         * modules/getline: Rewrite, don't use getndelim2.
44913
44914 2005-08-02  Simon Josefsson  <jas@extundo.com>
44915
44916         * m4/getline.m4: Separate out getdelim stuff into separate module.
44917
44918         * m4/getdelim.m4: New file.
44919
44920 2005-08-02  Simon Josefsson  <jas@extundo.com>
44921
44922         * lib/getline.h, getline.c: Rewrite.
44923
44924         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
44925
44926 2005-07-31  Bruno Haible  <bruno@clisp.org>
44927
44928         * lib/lock.h (gl_lock_initializer): New macro.
44929         (gl_lock_define_initialized): Use it.
44930         (gl_rwlock_initializer): New macro.
44931         (gl_rwlock_define_initialized): Use it.
44932         (gl_recursive_lock_initializer): New macro.
44933         (gl_recursive_lock_define_initialized): Use it.
44934
44935 2005-07-30  Karl Berry  <karl@gnu.org>
44936
44937         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
44938         Report from Ben Pfaff, regarding getopt.
44939
44940 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
44941
44942         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
44943         normal way.
44944         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
44945         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
44946         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
44947         (gl_GETOPT): Use the new macros.  Most of the implementation
44948         is moved to the new macros.  This is for programs like Emacs
44949         that don't want all the functionality of gl_GETOPT.
44950
44951 2005-07-26  Bruno Haible  <bruno@clisp.org>
44952
44953         * m4/lock.m4: Update from GNU gettext.
44954
44955 2005-07-26  Bruno Haible  <bruno@clisp.org>
44956
44957         * lib/lock.h: Update from GNU gettext.
44958         * lib/lock.c: Update from GNU gettext.
44959
44960 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
44961
44962         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
44963         obsolescent AC_TRY_RUN.  Include the default includes files, for
44964         'exit'.
44965
44966 2005-07-24  Bruno Haible  <bruno@clisp.org>
44967
44968         * modules/visibility: New file.
44969         * MODULES.html.sh (Misc): Add visibility.
44970
44971 2005-07-24  Bruno Haible  <bruno@clisp.org>
44972
44973         * m4/visibility.m4: New file.
44974
44975 2005-07-24  Bruno Haible  <bruno@clisp.org>
44976
44977         * doc/visibility.texi: New file.
44978
44979 2005-07-22  Bruno Haible  <bruno@clisp.org>
44980
44981         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
44982         $(ALLOCA_H), redundant through BUILT_SOURCES.
44983         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
44984         redundant through BUILT_SOURCES.
44985         * modules/byteswap (Makefile.am): Remove explicit dependency on
44986         $(BYTESWAP_H), redundant through BUILT_SOURCES.
44987         * modules/fnmatch (Makefile.am): Remove explicit dependency on
44988         $(FNMATCH_H), redundant through BUILT_SOURCES.
44989         * modules/getopt (Makefile.am): Remove explicit dependency on
44990         $(GETOPT_H), redundant through BUILT_SOURCES.
44991         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
44992         redundant through BUILT_SOURCES.
44993         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
44994         redundant through BUILT_SOURCES.
44995         * modules/stdbool (Makefile.am): Remove explicit dependency on
44996         $(STDBOOL_H), redundant through BUILT_SOURCES.
44997         * modules/stdint (Makefile.am): Remove explicit dependency on
44998         $(STDINT_H), redundant through BUILT_SOURCES.
44999         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
45000         Remove explicit dependency on $(SYSEXITS_H).
45001         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
45002
45003 2005-07-18  Simon Josefsson  <jas@extundo.com>
45004
45005         * lib/check-version.c (check_version): Accept identical versions too.
45006
45007 2005-07-18  Bruno Haible  <bruno@clisp.org>
45008
45009         * modules/lock: New file.
45010         * MODULES.html.sh (Multithreading): New section.
45011
45012 2005-07-18  Bruno Haible  <bruno@clisp.org>
45013
45014         * m4/lock.m4: New file, from GNU gettext.
45015
45016 2005-07-18  Bruno Haible  <bruno@clisp.org>
45017
45018         * lib/lock.h: New file, from GNU gettext.
45019         * lib/lock.c: New file, from GNU gettext.
45020
45021 2005-07-18  Bruno Haible  <bruno@clisp.org>
45022
45023         * lib/lock.h (gl_once_t): New type.
45024         (gl_once_define, gl_once): New macros.
45025         * lib/lock.c (fresh_once): New variable.
45026         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
45027         functions.
45028
45029 2005-07-16  Simon Josefsson  <jas@extundo.com>
45030
45031         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
45032         workaround, suggested by Bruno.
45033
45034 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
45035
45036         * modules/xalloc (Depends-on): Add xalloc-die.
45037         * modules/xvasprintf (Depends-on): Add xalloc-die.
45038
45039 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
45040
45041         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
45042         with a minor change.
45043
45044 2005-07-15  Bruno Haible  <bruno@clisp.org>
45045
45046         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
45047         When using lib/poll.c, define poll as rpl_poll.
45048
45049 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
45050
45051         * modules/argp (Depends-on): Remove unlocked-io.
45052
45053 2005-07-14  Derek Price  <derek@ximbiot.com>
45054
45055         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
45056         for glob symlink bug.
45057
45058 2005-07-14  Bruno Haible  <bruno@clisp.org>
45059
45060         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
45061         Instead, test for *_unlocked function declarations directly.
45062
45063 2005-07-11  Simon Josefsson  <jas@extundo.com>
45064
45065         * modules/size_max: New file.
45066
45067         * modules/xsize: Depend on size_max module for size_max.m4.
45068
45069 2005-07-11  Simon Josefsson  <jas@extundo.com>
45070
45071         * lib/size_max.h: New file.
45072
45073 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
45074
45075         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
45076         copyright symbol and the year.
45077         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
45078         (version_etc_va): Use parameterized copyright notice.
45079         Reword to conform to the current GNU coding standards.
45080
45081 2005-07-11  Karl Berry  <karl@gnu.org>
45082
45083         * doc/gnulib.texi (Quoting): new node.
45084         (Initial import): more info, from Patrice.
45085
45086 2005-07-11  Bruno Haible  <bruno@clisp.org>
45087
45088         * gnulib-tool (func_usage): Document option --avoid.
45089         (Command line options): Handle --avoid.
45090         (func_acceptable): New function.
45091         (func_modules_transitive_closure): Use it.
45092
45093 2005-07-11  Bruno Haible  <bruno@clisp.org>
45094
45095         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
45096         Reported by Jim Meyering.
45097
45098 2005-07-10  Bruno Haible  <bruno@clisp.org>
45099
45100         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
45101         Needed when size_t is smaller than 'unsigned int'.
45102         Reported by Paul Eggert.
45103
45104 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45105
45106         * modules/argp (Depends-on): Add unlocked-io
45107
45108 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45109
45110         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
45111         block of defines.
45112
45113 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
45114
45115         * config/srclist.txt: Comment out regcomp.c, since we have a porting
45116         fix now.
45117
45118 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
45119         and Paul Eggert  <eggert@cs.ucla.edu>
45120
45121         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
45122         in wint_t, not wchar_t.  Remove now-unnecessary cast.
45123
45124 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45125
45126         * modules/regex (Files): Add lib/regex_internal.c,
45127         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
45128         (Depends-on): Add extensions.
45129         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
45130
45131 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45132
45133         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
45134         pathconf.
45135         * m4/same.m4 (gl_SAME): Likewise.
45136         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
45137
45138         * m4/regex.m4: Adjust to new libc regex implementation.
45139         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
45140         all the .c and .h parts of (the new) regex.
45141         Quote the m4 stuff better.
45142         Check for RE_ICASE bug of old gnulib.
45143         Check for REG_STARTEND of recent libc.
45144         Rename local variables from jm_* to gl_*.
45145         Quote operand of "test -f".
45146         Say "recent enough" version of libc, not "version 2".
45147         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
45148         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
45149         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
45150         Remove check for btowc, isascii.
45151         Require AM_LANGINFO_CODESET.
45152
45153 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45154
45155         * lib/regex.c, regex.h: Sync from libc.
45156         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
45157         * lib/regexec.c:
45158         New files, synced from libc, except that regex_internal.h
45159         currently has a small porting fix.
45160
45161 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45162
45163         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
45164         regex_internal.c, regexec.c.
45165         Add regex_internal.h too, but as a comment, since the libc version
45166         is currently broken in gnulib mode.
45167
45168 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45169
45170         Support programs like Emacs that use gnulib but not gettext.
45171         * MODULES.html.sh (Internationalization functions): Add gettext-h.
45172         * modules/gettext-h: New file.
45173         * modules/gettext (Files): Remove lib/gettext.h.
45174         (Depends-on): Add gettext-h.
45175         (Makefile.am): Remove lib_SOURCES.
45176         * modules/argmatch, modules/c-stack, modules/closeout:
45177         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
45178         * modules/execute, modules/file-type, modules/getaddrinfo:
45179         * modules/getopt, modules/human, modules/javacomp:
45180         * modules/javaexec, modules/mkdir-p, modules/obstack:
45181         * modules/openat, modules/pagealign_alloc, modules/pipe:
45182         * modules/quotearg, modules/regex, modules/rpmatch:
45183         * modules/unicodeio, modules/userspec, modules/version-etc:
45184         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
45185         * modules/xsetenv:
45186         Depend on gettext-h, not gettext.
45187
45188 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45189
45190         * gnulib-tool (func_import): Add support for 'public domain' license.
45191         * modules/alloca, modules/atexit, modules/memmove:
45192         Now public domain, not GPL.
45193         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
45194         * modules/realloc, modules/strerror, modules/strtod:
45195         Now LGPL, not GPL.
45196
45197 2005-07-05  Bruno Haible  <bruno@clisp.org>
45198
45199         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
45200         autoconf CVS. Needed for mingw.
45201
45202 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45203
45204         Remove the dependency of the strftime module on the tzset module.
45205         * modules/strftime (Depends-on): Remove dependency on tzset.
45206
45207 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45208
45209         Remove the dependency of the strftime module on the tzset module.
45210         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
45211         gl_FUNC_TZSET_CLOBBER.
45212
45213 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45214
45215         Remove the dependency of the strftime module on the tzset module.
45216         * lib/strftime.c (my_strftime)
45217         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
45218         Copy the input structure, to work around some of the bug with
45219         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
45220         Solaris releases, you should also use the tzset module, but we won't
45221         require it as a dependency any more since we don't want LGPLed code
45222         to depend on GPLed code.
45223
45224 2005-07-02  Jim Meyering  <jim@meyering.net>
45225
45226         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
45227         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
45228         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
45229         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
45230
45231 2005-07-02  Jim Meyering  <jim@meyering.net>
45232
45233         * lib/backupfile.c (backup_args): Change a `0' to NULL.
45234
45235 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
45236
45237         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
45238         declares only 'struct timespec;' (!).
45239
45240 2005-07-01  Jim Meyering  <jim@meyering.net>
45241
45242         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
45243         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
45244         * lib/save-cwd.c, tempname.c:
45245         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
45246         and don't include <sys/file.h>).
45247
45248 2005-06-29  Jim Meyering  <jim@meyering.net>
45249
45250         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
45251         type name.  Use the variable name instead.
45252         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
45253         Likewise.
45254
45255 2005-06-28  Simon Josefsson  <jas@extundo.com>
45256
45257         * modules/check-version (Files): Add check-version.m4.
45258
45259 2005-06-28  Simon Josefsson  <jas@extundo.com>
45260
45261         * m4/check-version.m4: New file, suggested by Jim Meyering
45262         <jim@meyering.net>.
45263
45264 2005-06-28  Simon Josefsson  <jas@extundo.com>
45265
45266         * lib/check-version.h, lib/check-version.c: New files.
45267
45268 2005-06-28  Simon Josefsson  <jas@extundo.com>
45269
45270         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
45271         collision with global variable.  Better indentation.  Don't
45272         increment buffer pointer beyond buffer end.  Based on comments
45273         from Paul Eggert <eggert@cs.ucla.edu>.
45274
45275         * lib/base64.h: Indent.
45276
45277 2005-06-28  Simon Josefsson  <jas@extundo.com>
45278
45279         * doc/gnulib.texi (Library version handling): New section.
45280
45281 2005-06-28  Jim Meyering  <jim@meyering.net>
45282
45283         * check-module (find_included_lib_files): Hard-code another
45284         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
45285         but modules/fts-lgpl (correctly) does not list those files.
45286
45287         * modules/canonicalize (Files): Add lib/pathmax.h.
45288
45289 2005-06-25  Simon Josefsson  <jas@extundo.com>
45290
45291         * modules/check-version: New file.
45292
45293 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
45294
45295         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
45296         initializer of struct addrinfo, as an indication that we don't
45297         care how many members the structure has.
45298
45299 2005-06-24  Derek Price  <derek@ximbiot.com>
45300         and Bruno Haible  <bruno@clisp.org>
45301
45302         Remove stat module & update lstat.
45303         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
45304         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
45305         * m4/stat.m4: Remove this file.
45306
45307 2005-06-24  Derek Price  <derek@ximbiot.com>
45308         and Bruno Haible  <bruno@clisp.org>
45309
45310         Remove stat module & update lstat.
45311         * lib/stat.c: Remove this file...
45312         (slash_aware_lstat): ...moving this content and its support...
45313         * lib/lstat.c (rpl_lstat): ...into here.
45314         * lib/lstat.h: New file.
45315
45316 2005-06-24  Derek Price  <derek@ximbiot.com>
45317         and Bruno Haible  <bruno@clisp.org>
45318
45319         Remove stat module & update lstat.
45320         * config/srclist.txt (libc sources): Remove stat.
45321
45322 2005-06-24  Derek Price  <derek@ximbiot.com>
45323         and Bruno Haible  <bruno@clisp.org>
45324
45325         Remove stat module & update lstat.
45326         * MODULES.html.sh (stat): Remove.
45327         * MODULES.html: Regenerated.
45328         * modules/lstat (Description): Correct function name.
45329         (Files): Add "lstat.h".
45330         (Depends-on): Remove stat, add xalloc, stat-macros.
45331         * modules/stat: Remove this file.
45332         (Include): Add "lstat.h", remove <sys/stat.h>.
45333
45334 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
45335
45336         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
45337         (ranged_convert): Don't save conversion in a temporary struct.
45338         This causes a warning with GCC 4.0.0, and anyway in the typical
45339         case it's not worth the extra 100 bytes or so of code.
45340         (ranged_convert, __mktime_internal): When calling a function via a
45341         pointer P, use P () rather than (*P) (), as we now assume C89 or
45342         better.
45343
45344 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
45345
45346         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
45347         "who -r" failed to give output.  Problem reported by Tim Waugh.
45348
45349         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
45350         (xcalloc): Use it to avoid needless tests.
45351         Problem reported by Jim Meyering.
45352
45353 2005-06-20  Derek Price  <derek@ximbiot.com>
45354
45355         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
45356         unnecessary for Autoconfs > 2.59c.
45357
45358 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45359
45360         * lib/argp.h (__option_is_short): Check upper limit of
45361         __key. Isprint() requires its argument to have the value
45362         of an unsigned char or EOF.
45363
45364 2005-06-16  Jim Meyering  <jim@meyering.net>
45365
45366         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
45367         when either N or S is zero.
45368
45369 2005-06-16  Derek Price  <derek@ximbiot.com>
45370
45371         * m4/bison.m4: Declare YACC & YFLAGS precious.
45372
45373 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
45374
45375         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
45376         multibyte string or pattern, fall back on unibyte matching.
45377         Problem reported by James Youngman.
45378
45379 2005-06-08  Bruno Haible  <bruno@clisp.org>
45380
45381         * modules/csharpcomp: New file.
45382         * MODULES.html.sh (C#): Add csharpcomp.
45383
45384 2005-06-08  Bruno Haible  <bruno@clisp.org>
45385
45386         * m4/csharpcomp.m4: New file, from GNU gettext.
45387
45388 2005-06-08  Bruno Haible  <bruno@clisp.org>
45389
45390         * lib/csharpcomp.h: New file, from GNU gettext.
45391         * lib/csharpcomp.c: New file, from GNU gettext.
45392         * lib/csharpcomp.sh.in: New file, from GNU gettext.
45393
45394 2005-06-08  Bruno Haible  <bruno@clisp.org>
45395
45396         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
45397         warning on mingw.
45398
45399 2005-06-07  Derek Price  <derek@ximbiot.com>
45400
45401         Sync from CVS.
45402         * lib/glob_.h: Indent nested #ifdef.
45403
45404 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45405
45406         Sync from coreutils.
45407         Use "file name" when talking about file names, instead of "filename"
45408         or "path", as per the GNU coding standards.
45409         * lib/mkdir-p.c: Renamed from makepath.c.
45410         (make_dir_parents): Renamed from make_path.  All callers changed.
45411         * lib/mkdir-p.h: Likewise.  All includers changed.
45412         * lib/filenamecat.c: Renamed from path-concat.c.
45413         (file_name_concat): Renamed from path_concat.  All callers changed.
45414         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
45415         * lib/filenamecat.h: Likewise.  All includers changed.
45416         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
45417         in comments or local variable names.
45418         * lib/basename.c: Likewise.
45419         * lib/canonicalize.c, canonicalize.h: Likewise.
45420         * lib/dirname.c, dirname.h: Likewise.
45421         * lib/euidaccess.c: Likewise.
45422         * lib/exclude.c: Likewise
45423         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
45424         * lib/fsusage.c, fsuage.h: Likewise.
45425         * lib/fts.c, fts_.h: Likewise.
45426         * lib/getcwd.c: Likewise.
45427         * lib/getloadavg.c: Likewise.
45428         * lib/mkstemp.c: Likewise.
45429         * lib/mountlist.c, mountlist.h: Likewise.
45430         * lib/openat.c, openat.h: Likewise.
45431         * lib/readlink-stub.c: Likewise.
45432         * lib/readutmp.c, readutmp.h: Likewise.
45433         * lib/rename.c: Likewise.
45434         * lib/rmdir.c: Likewise.
45435         * lib/same.c: Likewise.
45436         * lib/savedir.c: Likewise.
45437         * lib/stripslash.c: Likewise.
45438         * lib/tempname.c: Likewise.
45439         * lib/xreadlink.c: Likewise.
45440         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
45441         All uses changed.
45442         * lib/exclude.h: Likewise.
45443
45444         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
45445         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45446         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
45447         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45448         * lib/pathmax.h: Include <limits.h> unconditionally, since other
45449         files have been getting away with it for years (MORE/BSD 4.3
45450         is extinct now).
45451         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
45452         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45453
45454         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
45455         Define to 256, not 255, as per modern POSIX.
45456
45457 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45458
45459         Sync from coreutils.
45460         Use "file name" when talking about file names, instead of "filename"
45461         or "path", as per the GNU coding standards.
45462         * MODULES.html.sh: mkdir-p renamed from makepath.
45463         filenamecat renamed from path-concat.
45464         * modules/filenamecat: Renamed from modules/path-concat.
45465         (Files): filenamecat.h and filenamecat.c renamed from
45466         path-concat.h and path-concat.c.
45467         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
45468         (Include): filenamecat.h, not path-concat.h.
45469         * modules/mkdir-p: Renamed from modules/makepath.
45470         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
45471         makepath.c.
45472         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
45473         (Include): mkdir-p.h, not makepath.h.
45474
45475 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45476
45477         Sync from coreutils.
45478         * m4/mkdir-p.m4: Renamed from makepath.m4.
45479         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
45480         Rename files from makepath.c to mkdir-p.c, and from
45481         makepath.h to mkdir-p.h.
45482         * m4/filenamecat.m4: Renamed from path-concat.m4.
45483         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
45484         Rename files from path-concat.c to filenamecat.c,
45485         and from path-concat.h to filenamecat.h.
45486         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
45487         "file name" in local variables or comments.
45488         * m4/rename.m4: Likewise.
45489
45490 2005-06-01  Bruno Haible  <bruno@clisp.org>
45491
45492         * modules/csharpexec: New file.
45493         * MODULES.html.sh (C#): New section.
45494
45495 2005-06-01  Bruno Haible  <bruno@clisp.org>
45496
45497         * m4/csharp.m4: New file, from GNU gettext.
45498         * m4/csharpexec.m4: New file, from GNU gettext.
45499
45500 2005-06-01  Bruno Haible  <bruno@clisp.org>
45501
45502         * lib/csharpexec.h: New file, from GNU gettext.
45503         * lib/csharpexec.c: New file, from GNU gettext.
45504         * lib/csharpexec.sh.in: New file, from GNU gettext.
45505
45506 2005-05-31  Derek Price  <derek@ximbiot.com>
45507             Paul Eggert  <eggert@cs.ucla.edu>
45508
45509         Sync from cvs.
45510         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45511
45512 2005-05-31  Derek Price  <derek@ximbiot.com>
45513             Paul Eggert  <eggert@cs.ucla.edu>
45514
45515         Sync from cvs.
45516         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45517
45518 2005-05-29  Derek Price  <derek@ximbiot.com>
45519
45520         * config/srclist.txt (glob_.h, glob.c): Add these files.
45521
45522 2005-05-29  Derek Price  <derek@ximbiot.com>
45523
45524         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
45525         * modules/glob: New file.
45526         * modules/getlogin_r: Add link to POSIX spec in description.
45527
45528 2005-05-29  Derek Price  <derek@ximbiot.com>
45529             Paul Eggert  <eggert@cs.ucla.edu>
45530
45531         * m4/glob.m4: New file.
45532
45533 2005-05-29  Derek Price  <derek@ximbiot.com>
45534             Paul Eggert  <eggert@cs.ucla.edu>
45535
45536         * lib/glob_.h, lib/glob.c: New files.
45537
45538 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45539
45540         * modules/fts (Files): Remove m4/inttypes-pri.m4.
45541         * modules/fts-lgpl (Depends-on): Remove gettext.
45542
45543 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45544
45545         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
45546         and don't require gt_INTTYPES_PRI.
45547
45548 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45549
45550         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
45551
45552         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
45553         the configuration hassle isn't worth it.
45554         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
45555         (LONGEST_MODIFIER, PRIuMAX): Remove.
45556
45557 2005-05-27  Bruno Haible  <bruno@clisp.org>
45558
45559         * lib/getlogin_r.h: Remove second include of <stddef.h>.
45560
45561 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
45562
45563         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
45564         _POSIX_PTHREAD_SEMANTICS for Solaris.
45565
45566 2005-05-25  Derek Price  <derek@ximbiot.com>
45567
45568         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
45569
45570 2005-05-25  Derek Price  <derek@ximbiot.com>
45571             Paul Eggert  <eggert@cs.ucla.edu>
45572
45573         * modules/getlogin_r, m4/getlogin_r.m4: New files.
45574         * lib/getlogin_r.c, getlogin_r.h: New files.
45575
45576 2005-05-25  Bruno Haible  <bruno@clisp.org>
45577             Derek Price  <derek@ximbiot.com>
45578
45579         * lib/getlogin_r.h: Simplify API documentation.
45580
45581 2005-05-23  Derek Price  <derek@ximbiot.com>
45582
45583         * modules/minmax (Files): Add m4/minmax.m4.
45584         (configure.ac): Add gl_MINMAX.
45585
45586 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45587
45588         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
45589         so that unistd-safer.h (GPL'ed code) need not be included.
45590
45591 2005-05-22  Bruno Haible  <bruno@clisp.org>
45592
45593         * m4/minmax.m4: New file.
45594         Based on a patch by Derek Price <derek@ximbiot.com>.
45595
45596 2005-05-22  Bruno Haible  <bruno@clisp.org>
45597
45598         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
45599         (INT64_MIN): Fix definition.
45600         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
45601
45602         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
45603         NEED_SIGNED_INT_TYPES.
45604
45605         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
45606         HAVE_SYSTEM_INTTYPES.
45607
45608 2005-05-22  Bruno Haible  <bruno@clisp.org>
45609
45610         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
45611         Also include <sys/param.h> if it defines MIN, MAX.
45612         Based on a patch by Derek Price <derek@ximbiot.com>.
45613
45614 2005-05-21  Jim Meyering  <jim@meyering.net>
45615
45616         * modules/fts (Files): Add m4/inttypes-pri.m4.
45617         (Depends-on): Add lstat and remove gettext.  Alphabetize.
45618
45619 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45620
45621         New fts module.
45622         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
45623         (setup_dir, free_dir): New functions.
45624         (enter_dir, leave_dir): Define trivial
45625         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
45626         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
45627         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
45628         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
45629         Move to fts-cycle.c.
45630         (fts_open): Use setup_dir.
45631         (fts_close): Use free_dir.
45632         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
45633         This adds a label and some gotos, but the alternatives were messier.
45634         Check for memory allocation failure when entering a dir.
45635         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
45636         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
45637         (FTS): New member fts_cycle, that is a union that contains the
45638         old active_dir_ht and cycle_state.  All uses changed to mention
45639         fts_cycle.ht and fts_cycle.state.
45640         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
45641         fts.c, with the following changes:
45642         (setup_dir, free_dir): New functions.
45643         (enter_dir): Now returns bool.  Return true if successful, false
45644         if memory exhausted.  All callers changed.
45645         Do not bother partly cleaning up on
45646         memory allocation failure; that is free_dir's job.
45647         However, free ad if hash_insert fails, to avoid memory leak.
45648         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
45649         fts->fts_options to see which union member to use.
45650
45651 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45652
45653         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
45654         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
45655
45656 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45657
45658         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
45659
45660 2005-05-20  Jim Meyering  <jim@meyering.net>
45661
45662         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
45663         Now a macro, to pacify GCC.
45664
45665 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45666
45667         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
45668         of -1.
45669
45670 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45671
45672         * lib/chown.c (rpl_chown): Return -1 on failure.
45673
45674 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45675
45676         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
45677         Don't check for stddef.h.
45678         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
45679         don't use its results.
45680         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
45681         since we include them unconditionally.  Don't require
45682         AM_STDBOOL_H, since stdbool is a prerequisite.
45683         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
45684         since we assume C89 or better.
45685         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
45686         as we don't use their results.
45687         Don't check for fchdir, memmove, memset, strrchr, as we use
45688         them unconditionally.
45689         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
45690         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
45691
45692 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45693
45694         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
45695         Include <stddef.h> unconditionally, since we assume C89 now.
45696         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
45697         * lib/fts.c: Include fts_.h first, to check interface.
45698         Do not include intprops.h; no longer needed.
45699         Include cycle-check.h and hash.h, since fts_.h no longer does.
45700         Remove unnecessary casts of closedir to void.
45701         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
45702         decide whether to decrement nlinks.
45703         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
45704         (FTS): Use struct hash_table * instead of Hash_table, so that
45705         we no longer need to include hash.h here.
45706
45707 2005-05-18  Jim Meyering  <jim@meyering.net>
45708
45709         * modules/dirfd (License): Change to LGPL.  Most of the code
45710         is already in the public domain.
45711
45712 2005-05-18  Jim Meyering  <jim@meyering.net>
45713
45714         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
45715         Reported by Yoann Vandoorselaere.
45716
45717 2005-05-17  Jim Meyering  <jim@meyering.net>
45718
45719         * m4/fts.m4: New file, from coreutils.
45720
45721 2005-05-17  Jim Meyering  <jim@meyering.net>
45722
45723         * lib/fts.c, lib/fts_.h: New files, from coreutils.
45724
45725 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45726
45727         Sync from coreutils.
45728         * m4/unlinkdir.m4: New file.
45729
45730 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45731
45732         Sync from coreutils.
45733         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
45734         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
45735         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
45736         White space changes only.
45737         * lib/makepath.c (make_path): Port to hosts where leading "//" is
45738         special.
45739         * lib/yesno.c: Include getline.h, not ctype.h.
45740         (yesno): Don't remove leading white space; POSIX doesn't allow it.
45741         Use getline to remove arbitrary restriction on response length.
45742
45743 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45744
45745         * config/srclist-update: Spell out "Street" in FSF postal
45746         mail address; this is the style the FSF seems to prefer.
45747
45748         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
45749         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
45750         this updates FSF postal mail address.
45751
45752         Sync from coreutils.
45753         * modules/unlinkdir: New file.
45754         * modules/yesno (Depends-on): Add getline.
45755         * MODULES.html.sh (File system functions): Add unlinkdir.
45756
45757 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45758
45759         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
45760         lib/strsep.h:
45761         Change the initial comment to refer to GPL, not LGPL.
45762         gnulib-tool will change it to LGPL as needed.
45763
45764         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
45765         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
45766         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
45767         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
45768         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
45769         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
45770         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
45771         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
45772         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
45773         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
45774         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
45775         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
45776         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
45777         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
45778         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
45779         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
45780         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
45781         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
45782         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
45783         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
45784         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
45785         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
45786         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
45787         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
45788         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
45789         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
45790         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
45791         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
45792         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
45793         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
45794         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
45795         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
45796         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
45797         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
45798         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
45799         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
45800         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
45801         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
45802         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
45803         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
45804         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
45805         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
45806         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
45807         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
45808         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
45809         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
45810         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
45811         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
45812         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
45813         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
45814         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
45815         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
45816         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
45817         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
45818         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
45819         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
45820         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
45821         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
45822         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
45823         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
45824         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
45825         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
45826         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
45827         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
45828         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
45829         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
45830         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
45831         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
45832         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
45833         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
45834         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
45835         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
45836         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
45837         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
45838         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
45839         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
45840         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
45841         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
45842         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
45843         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
45844         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
45845         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
45846         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
45847         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
45848         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
45849         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
45850         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
45851         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
45852         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
45853         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
45854         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
45855         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
45856         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
45857         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
45858         lib/yesno.c, lib/yesno.h:
45859         Update FSF postal mail address.
45860
45861 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45862
45863         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
45864         tests/test-memmem.c, tests/test-stpncpy.c:
45865         Update FSF postal mail address.
45866
45867 2005-05-13  Bruno Haible  <bruno@clisp.org>
45868
45869         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
45870         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
45871         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
45872         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
45873         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
45874         Add support for 64-bit integers in the MSVC compiler.
45875
45876 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45877
45878         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
45879
45880 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
45881
45882         * gnulib-tool (func_import): Sort and uniquify recommended includes.
45883
45884 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
45885
45886         * doc/getdate.texi (General date syntax): Don't say that date
45887         date --iso-8601=ns generates acceptable dates; it doesn't yet.
45888         Problem reported by Nic Ferrier.
45889
45890 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45891
45892         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
45893         specified in ai_socktype. Fix invalid ai_protocol
45894         check. ai_protocol is usually set to 0 or depending on
45895         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
45896         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
45897         ai_socktype / ai_protocol in the returned addrinfo structure.
45898
45899 2005-05-10  Simon Josefsson  <jas@extundo.com>
45900
45901         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
45902         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
45903
45904 2005-05-10  Karl Berry  <karl@gnu.org>
45905
45906         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
45907         (from http://www.gnu.org/licenses).
45908         * doc/COPYING.LIB: also rename to COPYING.LESSER.
45909         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
45910         fdl.texi suffices.
45911
45912 2005-05-10  Karl Berry  <karl@gnu.org>
45913
45914         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
45915         (COPYING.DOC): remove.
45916
45917         * config/srclist-update: new FSF address.
45918
45919 2005-05-10  Derek Price  <derek@ximbiot.com>
45920
45921         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
45922         possible.
45923
45924 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45925             Bruno Haible  <bruno@clisp.org>
45926
45927         * modules/inet_ntop: New file.
45928         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45929         inet_ntop.
45930
45931 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45932             Bruno Haible  <bruno@clisp.org>
45933
45934         * m4/inet_ntop.m4: New file.
45935
45936 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45937             Bruno Haible  <bruno@clisp.org>
45938
45939         * lib/inet_ntop.h: New file.
45940         * lib/inet_ntop.c: New file, from glibc with modifications.
45941
45942 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
45943
45944         * modules/time_r (License): Change to LGPL.
45945         * modules/extensions (License): Change to LGPL.  Actually,
45946         the license is more permissive than that, but currently gnulib-tool
45947         doesn't know how to handle more-permissive licenses.
45948
45949         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
45950         Problem reported by Dave Love.
45951
45952 2005-05-08  Jim Meyering  <jim@meyering.net>
45953
45954         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
45955         blank.
45956
45957 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
45958
45959         * modules/argmatch (Depends-on): Add stdbool.
45960         * modules/backupfile (Depends-on): Likewise.
45961         * modules/chdir-long (Depends-on): Likewise.
45962         * modules/closeout (Depends-on): Likewise.
45963         * modules/cycle-check (Depends-on): Likewise.
45964         * modules/dirname (Depends-on): Likewise.
45965         * modules/fnmatch (Depends-on): Likewise.
45966         * modules/fsusage (Depends-on): Likewise.
45967         * modules/fwriteerror (Depends-on): Likewise.
45968         * modules/getcwd (Depends-on): Likewise.
45969         * modules/getloadavg (Depends-on): Likewise.
45970         * modules/hard-locale (Depends-on): Likewise.
45971         * modules/makepath (Depends-on): Likewise.
45972         * modules/mountlist (Depends-on): Likewise.
45973         * modules/nanosleep (Depends-on): Likewise.
45974         * modules/posixtm (Depends-on): Likewise.
45975         * modules/quotearg (Depends-on): Likewise.
45976         * modules/readtokens (Depends-on): Likewise.
45977         * modules/readtokens0 (Depends-on): Likewise.
45978         * modules/readutmp (Depends-on): Likewise.
45979         * modules/save-cwd (Depends-on): Likewise.
45980         * modules/strftime (Depends-on): Likewise.
45981         * modules/userspec (Depends-on): Likewise.
45982         * modules/utimecmp (Depends-on): Likewise.
45983         * modules/xgetcwd (Depends-on): Likewise.
45984         * modules/xnanosleep (Depends-on): Likewise.
45985         * modules/xstrtod (Depends-on): Likewise.
45986         * modules/yesno (Depends-on): Likewise.
45987
45988 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
45989
45990         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
45991         needless checks.
45992
45993 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45994
45995         Merge from coreutils.  Among other things,
45996         add bulletproofing for cases where stdin, stdout, or stderr are closed.
45997         * lib/fd-safer.c: New file.
45998         * lib/fcntl-safer.h, open-safer.c: Remove.
45999         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
46000         * lib/dup-safer.c: Include unistd-safer.h first.
46001         Don't include errno.h.
46002         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
46003         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
46004         * lib/file-type.c: Rely on file-type.h change.
46005         * lib/getloadavg.c: Include unistd-safer.h.
46006         (getloadavg): Use safer open.
46007         * lib/getusershell.c: Include "stdio-safer.h".
46008         (getusershell): Use safer fopen.
46009         * lib/long-options.c (long_options): Use NULL rather than 0.
46010         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
46011         'free'.
46012         * lib/modechange.c: Likewise.
46013         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
46014         (MODE_DONE): New constant.
46015         (struct mode_change): Remove 'next' member.
46016         (make_node_op_equals): New function; like the old one of the
46017         same name, except it allocates an array.
46018         (mode_compile, mode_create_from_ref): Use it.
46019         (mode_compile): Allocate result as an array, not a linked list.
46020         Parse octal string ourself, so that we catch mistakes like "+0".
46021         (mode_adjust): Arg is an array, not a linked list.
46022         * lib/modechange.c: Include stat-macros.h, xalloc.h.
46023         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
46024         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
46025         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
46026         Remove.  This is now stat-macros.h's job.
46027         (talloc): Remove.  All callers replaced by xalloc, so that
46028         our invokers don't have to worry about reporting memory failures.
46029         (make_node_op_equals): Remove.
46030         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
46031         New constants.
46032         (struct mode_change): Moved here from modechange.h.
46033         (mode_append_entry): Remove.
46034         (mode_compile): Remove MASKED_OPS arg, since it encouraged
46035         apps to have incorrect behavior.  Use simpler algorithm for head
46036         and tail.  Don't futz with umask; that's now the job of mode_adjust.
46037         Detect more invalid usages rather than having somewhat-random behavior.
46038         Don't insert an "a=" action, as that leads to incorrect behavior.
46039         (mode_compile, mode_create_from_ref): Return NULL on error instead
46040         of an enum, since now there's only one way to have an error.  All
46041         callers changed.
46042         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
46043         at the correct time.  Simplify calculation of "+u" and its ilk.
46044         Don't mishandle "+X".
46045         (mode_free): Remove "register" and localize decls.
46046         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
46047         (struct mode_change): Move to modechange.c; callers don't
46048         need to see this stuff.
46049         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
46050         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
46051         (mode_change, mode_adjust): Reflect the new signatures noted above.
46052         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
46053         that might redefine system include files.
46054         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
46055         (my_usleep): Use NULL rather than (void *) 0.
46056         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
46057         Use siginterrupt to specify that system calls should be interrupted.
46058         (rpl_nanosleep): Move initialization of suspended closer to call of
46059         my_usleep.
46060         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
46061         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
46062         (desirable_utmp_entry): New function.
46063         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
46064         using x2nrealloc, to simplify logic.
46065         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
46066         size calculation.  Do not assume utmp file is a regular file.
46067         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
46068         (READ_UTMP_CHECK_PIDS): New constant.
46069         * lib/save-cwd.c: Include unistd-safer.h.
46070         (save_cwd): Use fd_safer.
46071         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
46072         [!_LIBC] Include "stat-macros.h" instead.
46073         * lib/unistd-safer.h (fd_safer): New decl.
46074
46075 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46076
46077         * modules/getloadavg (Depends-on): Add unistd-safer.
46078         * modules/getusershell (Depends-on): Add stdio-safer.
46079         * modules/lstat (Depends-on): Remove xalloc.
46080         * modules/mkstemp (Depends-on): Add stat-macros.
46081         * modules/modechange (Depends-on): Remove xstrtol.
46082         Add stat-macros, xalloc.
46083         * modules/save-cwd (Depends-on): Add unistd-safer.
46084         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
46085         * modules/unistd-safer (Files): Add lib/fd-safer.c
46086         (Makefile.am): Remove lib_SOURCES.
46087
46088         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
46089         Remove fcntl-safer; unistd-safer supersedes it.
46090
46091 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46092
46093         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
46094         AC_HEADER_STAT.
46095         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
46096         (gl_PREREQ_CHOWN): Remove.
46097         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
46098         it.  Don't require AC_HEADER_STAT.
46099         (gl_PREREQ_LSTAT): Remove.
46100         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
46101         Don't require AC_HEADER_STAT.
46102         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
46103         (gl_PREREQ_RMDIR): Remove.
46104         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
46105         mention stat-macros.h or AC_HEADER_STAT, since we'll make
46106         the stat-macros module a prerequisite.
46107         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
46108         * m4/filemode.m4 (gl_FILEMODE): Likewise.
46109         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
46110         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
46111         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
46112         variable names.
46113         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
46114         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
46115         variable prefixes.
46116         * m4/fcntl-safer.m4: Remove.
46117         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
46118         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
46119         Invoke gl_PREREQ_FD_SAFER.
46120         (gl_PREREQ_FD_SAFER): New macro.
46121         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
46122         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
46123         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
46124         Remove duplicate call to AC_LIBOBJ(readutmp).
46125         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
46126
46127         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
46128         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
46129
46130 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46131
46132         * MODULES.html.sh (Misc): Add byteswap.
46133
46134 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46135
46136         * modules/getcwd (Depends-on): Add extensions.
46137         * modules/openat (Depends-on): Likewise.
46138
46139 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46140
46141         * modules/byteswap: New file.
46142
46143 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46144
46145         * m4/byteswap.m4: New file.
46146
46147 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46148
46149         * lib/byteswap_.h: New file.
46150
46151 2005-04-25  Karl Berry  <karl@gnu.org>
46152
46153         * m4/gettext.m4: Update from GNU gettext 0.14.4.
46154
46155 2005-04-25  Albert Chin  <china@thewrittenword.com>
46156
46157         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
46158         Toolkit C bug.
46159
46160 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
46161
46162         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
46163         (func_ln_if_changed) Remove forcibly for no error message
46164         in case file does not exist.
46165
46166 2005-04-19  Simon Josefsson  <jas@extundo.com>
46167
46168         * gnulib-tool (Options): Make --symlink mean --symbolic.
46169
46170 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
46171
46172         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
46173
46174 2005-04-16  Simon Josefsson  <jas@extundo.com>
46175
46176         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
46177
46178 2005-04-15  Simon Josefsson  <jas@extundo.com>
46179
46180         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
46181
46182 2005-04-15  Simon Josefsson  <jas@extundo.com>
46183
46184         * gnulib-tool: Rename --symlink to --symbolic.
46185
46186 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
46187
46188         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
46189         symbolic links to files instead of copying/moving.  Add --aux-dir,
46190         specifying directory relative --dir where auxiliary build tools
46191         are placed.
46192
46193 2005-04-14  Bruno Haible  <bruno@clisp.org>
46194
46195         * modules/allocsa (License): Change to LGPL.
46196         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
46197
46198 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46199
46200         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
46201         that "UTC +1 second" continues to work.  Problem reported
46202         by Dmitry V. Levin.
46203         (relunit_snumber): New rule.
46204         (relunit): Use it.
46205
46206 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
46207
46208         * lib/getdate.y (universal_time_zone_table): New constant.
46209         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
46210         universal_time_zone_table.
46211         (lookup_zone): Prefer universal_time_zone_table to
46212         local_time_zone_table, so that "GMT" time stamps are allowed in
46213         London during the summer.  Problem reported by Ian Abbott.
46214
46215 2005-04-12  Jim Meyering  <jim@meyering.net>
46216
46217         * lib/human.c (humblock): Set *options even when returning due to
46218         xstrtoumax conversion failure.  Thanks to a used-uninitialized
46219         warning from gcc-4.
46220
46221 2005-04-09  Jim Meyering  <jim@meyering.net>
46222
46223         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
46224         -Wuninitialized: initialize tm0.tm_year.
46225
46226 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
46227
46228         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
46229         count, since there's no maximum.  All uses changed.
46230         Add member dsts_seen.
46231         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
46232         not being INT_MAX.
46233         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
46234         Use pc_rels_seen to decide whther a date is absolute.
46235
46236         * lib/getdate.y (number): Don't overwrite year.
46237         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
46238         check.
46239
46240 2005-04-02  Simon Josefsson  <jas@extundo.com>
46241
46242         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
46243         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
46244
46245 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
46246
46247         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
46248         where no absolute path name can be longer than PATH_MAX.
46249
46250 2005-03-27  Jim Meyering  <jim@meyering.net>
46251
46252         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
46253
46254 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
46255
46256         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
46257         "one's complement" -> "ones' complement" in comment, as per Knuth.
46258         "value of type" -> "type or expression" in comment.
46259         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
46260
46261 2005-03-26  Jim Meyering  <jim@meyering.net>
46262
46263         Comment nits.
46264         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
46265         Correct typos: s/or/of/.
46266
46267 2005-03-26  Jim Meyering  <jim@meyering.net>
46268
46269         * modules/check-include-files: Move to ../ and rename to...
46270         * check-module: ...this.
46271
46272 2005-03-25  Jim Meyering  <jim@meyering.net>
46273
46274         * modules/xvasprintf (Files): Add xalloc.h.
46275
46276 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
46277
46278         * modules/gettext (Files): config/config.rpath ->
46279         build-aux/config.rpath
46280         * modules/iconv (Files): Likewise.
46281         Problem reported by Oskar Liljeblad.
46282
46283 2005-03-23  Jim Meyering  <jim@meyering.net>
46284
46285         * modules/check-include-files: New script to check for
46286         missing dependencies, multiple includes, etc.
46287
46288         * modules/c-strtold (Depends-on): Add xalloc.
46289         * modules/c-strtod (Depends-on): Add xalloc.
46290         * modules/hash (Depends-on): Add xalloc.
46291         (Files): Remove lib/xalloc.h.
46292
46293         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
46294         * modules/userspec (Files): Add lib/inttostr.h.
46295
46296 2005-03-23  Jim Meyering  <jim@meyering.net>
46297
46298         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
46299
46300 2005-03-22  Jim Meyering  <jim@meyering.net>
46301
46302         * modules/stat-macros: New module.
46303         * modules/canonicalize, modules/euidaccess, modules/file-type,
46304         * modules/filemode, modules/lchown, modules/makepath,
46305         * modules/rmdir, modules/stat: Depend on new stat-macros module
46306         rather than listing lib/stat-macros.h manually.
46307         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
46308
46309 2005-03-22  Jim Meyering  <jim@meyering.net>
46310
46311         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
46312
46313 2005-03-22  Bruno Haible  <bruno@clisp.org>
46314
46315         * config/srclist.txt: Replace target directory 'config' with
46316         'build-aux'.
46317         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
46318         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
46319         ../build-aux/.
46320
46321 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
46322
46323         * modules/chdir-long (Depends-on): Add mempcpy.
46324
46325         * modules/acl, modules/backupfile, modules/c-strtod,
46326         modules/c-strtold, modules/canon-host, modules/canonicalize,
46327         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
46328         modules/exclude, modules/exitfail, modules/file-type,
46329         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
46330         modules/getdate, modules/getline, modules/getpagesize,
46331         modules/getpass, modules/getugroups, modules/group-member,
46332         modules/hard-locale, modules/hash, modules/human, modules/idcache,
46333         modules/inttostr, modules/long-options, modules/makepath,
46334         modules/md5, modules/memcasecmp, modules/memcoll,
46335         modules/modechange, modules/mountlist, modules/path-concat,
46336         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
46337         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
46338         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
46339         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
46340         modules/strftime, modules/strndup, modules/strverscmp,
46341         modules/timespec, modules/unlocked-io, modules/userspec,
46342         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
46343         modules/yesno:
46344         Remove lib_SOURCES line from Makefile.am section, as this is now
46345         done automatically by the corresponding Autoconf macro.
46346
46347 2005-03-21  Jim Meyering  <jim@meyering.net>
46348
46349         Changes imported from coreutils.
46350
46351         * lib/cycle-check.c: Don't include xalloc.h.
46352
46353         * lib/path-concat.c: Don't include assert.h.
46354         (path_concat): Remove assertion that would have triggered
46355         for ABASE starting with more than one slash.
46356         Reported by Andreas Schwab.
46357
46358         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
46359         properly when ABASE is an absolute file name.
46360         Correct the description of this function.
46361         Include <assert.h>.
46362         Add an assertion and a test driver.
46363         This fixes a bug introduced on 2004-07-02.
46364         Andreas Schwab reported the resulting failure of cp --parents:
46365         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
46366
46367 2005-03-21  Jim Meyering  <jim@meyering.net>
46368
46369         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
46370         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
46371
46372 2005-03-21  Jim Meyering  <jim@meyering.net>
46373         and  Paul Eggert  <eggert@cs.ucla.edu>
46374
46375         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
46376         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
46377         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
46378         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
46379         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
46380         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
46381         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
46382         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
46383         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
46384         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
46385         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
46386         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
46387         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
46388         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
46389         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
46390         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
46391         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
46392         for these modules.
46393
46394 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
46395
46396         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
46397         (which shouldn't happen), generate nothing instead of returning 0
46398         immediately, so that nstrftime (NULL, ...) doesn't return 0.
46399
46400 2005-03-16  Bruno Haible  <bruno@clisp.org>
46401
46402         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
46403         HAVE_LONGLONG_64BIT.
46404
46405 2005-03-16  Bruno Haible  <bruno@clisp.org>
46406
46407         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
46408         HAVE_LONGLONG_64BIT.
46409
46410 2005-03-16  Bruno Haible  <bruno@clisp.org>
46411
46412         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
46413         HAVE_LONGLONG_64BIT.
46414
46415 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46416
46417         * lib/strftime.c (my_strftime): Prepend space to format so that we can
46418         reliably distinguish strftime failure from empty output on POSIX
46419         hosts.
46420
46421 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46422
46423         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
46424         (iconv_string): Don't guess a size-zero buffer, as that might cause
46425         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
46426         result would be 'too large', where 'too large' is (heuristically)
46427         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
46428         overflow concerns.  This will prevent some unwanted malloc failures
46429         when the inputs are very large.
46430
46431 2005-03-15  Karl Berry  <karl@gnu.org>
46432
46433         * config/srclist.txt (config.rpath): from gettext.
46434         * config/config.rpath: update.
46435
46436 2005-03-15  Bruno Haible  <bruno@clisp.org>
46437
46438         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
46439         to 'negate'.
46440
46441         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
46442         variable.
46443
46444         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
46445         results.
46446
46447 2005-03-14  Simon Josefsson  <jas@extundo.com>
46448
46449         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
46450         <fx@gnu.org>.
46451
46452 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
46453
46454         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
46455         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
46456         intprops.h.
46457         * lib/strtol.c: Likewise.
46458
46459 2005-03-14  Jim Meyering  <jim@meyering.net>
46460
46461         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
46462         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
46463         to be nonzero so that we (and caller) can detect the difference
46464         between a valid zero-length expansion and an error return, even
46465         when the underlying strftime fails before writing anything into
46466         that location.
46467
46468 2005-03-14  Bruno Haible  <bruno@clisp.org>
46469
46470         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
46471         Update from GNU gettext 0.14.3.
46472
46473 2005-03-10  Jim Meyering  <jim@meyering.net>
46474
46475         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
46476
46477 2005-03-10  Jim Meyering  <jim@meyering.net>
46478
46479         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
46480         so that this module works on systems without fchdir.
46481
46482 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
46483
46484         Factor int-properties macros into a single file, except for
46485         glibc-related files.
46486         * lib/intprops.h: New file.
46487         * lib/getloadavg.c: Include it instead of limits.h.
46488         (INT_STRLEN_BOUND): Remove.
46489         * lib/human.c: Include intprops.h.
46490         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
46491         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
46492         302/1000.
46493         * lib/inttostr.h: Include intprops.h instead of limits.h.
46494         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
46495         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
46496         for consistency with intprops.h.
46497         (time_t_is_integer, twos_complement_arithmetic): Use them.
46498         * lib/sig2str.h: Include <signal.h>, intprops.h.
46499         (INT_STRLEN_BOUND): Remove.
46500         * lib/strftime.c (TYPE_SIGNED): Remove.
46501         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
46502         * lib/strtol.c: Adjust comments to match intprops.h.
46503         * lib/userspec.c: Include intprops.h.
46504         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
46505         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
46506         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
46507         instead of rolling our own expressions.
46508         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
46509
46510         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
46511         instead of int.
46512         (my_strftime): Do not mishandle years close to INT_MAX, by doing
46513         the right thing even if adding 1900 would overflow.  Similarly
46514         for tm_mon + 1 and tm_yday + 1.
46515         Make %Y always equivalent to %C%y, and similarly for %G and %g.
46516         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
46517         (DO_SIGNED_NUMBER): New macro.
46518         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
46519
46520 2005-03-07  Bruno Haible  <bruno@clisp.org>
46521
46522         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
46523
46524 2005-03-07  Bruno Haible  <bruno@clisp.org>
46525
46526         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
46527
46528 2005-03-04  Derek R. Price  <derek@ximbiot.com>
46529
46530         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
46531         (func_import): Only replace files via --import when they have actually
46532         changed.
46533
46534 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46535
46536         * m4/mmap-anon.m4: New file.
46537         * m4/pagealign_alloc.m4: New file.
46538
46539 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46540             Bruno Haible  <bruno@clisp.org>
46541
46542         * modules/pagealign_alloc: New file.
46543         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
46544
46545 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46546             Bruno Haible  <bruno@clisp.org>
46547
46548         * lib/pagealign_alloc.h: New file.
46549         * lib/pagealign_alloc.c: New file.
46550
46551 2005-03-03  Bruno Haible  <bruno@clisp.org>
46552
46553         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
46554         Use an all-permissive copyright notice, recommended by RMS.
46555
46556 2005-03-02  Bruno Haible  <bruno@clisp.org>
46557
46558         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
46559         of AIX, the replacement has to be done only after <string.h> is
46560         included, therefore not in config.h. stpncpy.h does the replacement,
46561         and stpncpy.c uses it.
46562
46563 2005-03-02  Bruno Haible  <bruno@clisp.org>
46564
46565         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
46566         stpncpy.c uses it.
46567
46568 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46569
46570         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
46571         The workaround isn't strictly needed for POSIX conformance, and
46572         it's too much of a pain to configure and maintain.  We'll ask
46573         people to fix their kernels instead.
46574         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
46575         (NANOSLEEP_BUG_WORKAROUND): Remove.
46576         (xnanosleep): Remove the workaround.
46577
46578 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46579
46580         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
46581         Reported by Derek Price.
46582         (Include): Add "timespec.h".
46583
46584         * modules/xnanosleep (Depends-on): Remove gethrxtime.
46585
46586 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46587
46588         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
46589         to detect nanosleep bug.
46590
46591 2005-03-01  Bruno Haible  <bruno@clisp.org>
46592
46593         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
46594
46595 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
46596
46597         * modules/gethrxtime: New file.
46598         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
46599         (Depends-on): Add gethrxtime.
46600         (configure.ac): Add gl_XNANOSLEEP.
46601         (Makefile.am): Remove lib_SOURCES line.
46602
46603 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46604
46605         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
46606         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
46607
46608 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46609
46610         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
46611         * lib/timespec.h (gettime): Return void, since it always
46612         succeeds now.  All uses changed.
46613         * lib/gettime.c (gettime) Likewise.
46614         [HAVE_NANOTIME]: Prefer nanotime.
46615         Assume gettimeofday succeeds, as POSIX requires.
46616         Assime time () succeeds, since other code already does.
46617         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
46618         (timespec_subtract): Remove.
46619         (NANOSLEEP_BUG_WORKAROUND): New constant.
46620         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
46621         things considerably.  Use it only on GNU/Linux hosts, since the
46622         workaround shouldn't be needed elsewhere.
46623
46624 2005-02-24  Bruno Haible  <bruno@clisp.org>
46625
46626         * modules/gettext (Files): Add m4/glibc2.m4.
46627
46628 2005-02-24  Bruno Haible  <bruno@clisp.org>
46629
46630         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
46631         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
46632         * m4/progtest.m4:
46633         Update from GNU gettext 0.14.2.
46634         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
46635
46636 2005-02-24  Bruno Haible  <bruno@clisp.org>
46637
46638         * lib/localcharset.c: Update from GNU gettext 0.14.2.
46639         * lib/config.charset: Update from GNU gettext 0.14.2.
46640
46641 2005-02-24  Bruno Haible  <bruno@clisp.org>
46642
46643         * lib/gettext.h: Update from GNU gettext 0.14.2.
46644
46645 2005-02-23  Simon Josefsson  <jas@extundo.com>
46646
46647         * m4/iconvme.m4: New file.
46648
46649 2005-02-23  Jim Meyering  <jim@meyering.net>
46650
46651         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
46652         change.
46653         Thanks to Bruno Haible for catching it.
46654
46655 2005-02-22  Simon Josefsson  <jas@extundo.com>
46656
46657         * modules/iconvme: New file.
46658
46659         * MODULES.html.sh: Add iconvme.
46660
46661 2005-02-22  Simon Josefsson  <jas@extundo.com>
46662
46663         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
46664
46665 2005-02-22  Simon Josefsson  <jas@extundo.com>
46666
46667         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
46668
46669 2005-02-22  Jim Meyering  <jim@meyering.net>
46670
46671         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
46672         s/ifndef/ifdef/.
46673
46674 2005-02-20  Neil Conway  <neilc@samurai.com>
46675
46676         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
46677         returned by OSX/Darwin if the specified buffer is not large
46678         enough for the hostname.
46679
46680 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46681
46682         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
46683         pass it to _help, otherwise the latter coredumps trying to
46684         dereference state.root_argp.
46685
46686 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46687
46688         * modules/chdir-long (Depends-on): Add memrchr.
46689         * modules/memrchr (Files): Add lib/memrchr.h.
46690         (Include): "memrchr.h".
46691
46692 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46693
46694         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
46695
46696 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46697
46698         * lib/memrchr.h: New file.
46699         * lib/chdir-long.c: Include it.
46700         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
46701         Don't bother including stddef.h.
46702
46703 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
46704
46705         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
46706         inclusion.
46707         Include <sys/types.h>, for dev_t.
46708         (ME_DUMMY, ME_REMOTE): Move from here....
46709         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
46710         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
46711         Dmitry V. Levin.
46712         Include mountlist.h first, to test the interface.
46713
46714 2005-01-29  Bruno Haible  <bruno@clisp.org>
46715
46716         * lib/progname.c (program_name): Initialize.
46717         Needed when linking statically on MacOS X.
46718
46719 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46720
46721         Sync from coreutils.
46722         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
46723         (Depends-on): Add c-strtod.
46724         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
46725
46726 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46727
46728         Sync from coreutils.
46729         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
46730
46731         Remove files that are specific to coreutils.
46732         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
46733
46734 2005-01-28  Bruno Haible  <bruno@clisp.org>
46735
46736         * modules/javacomp: New file.
46737         * MODULES.html.sh (Java): Add javacomp.
46738
46739 2005-01-28  Bruno Haible  <bruno@clisp.org>
46740
46741         * m4/javacomp.m4: New file, from GNU gettext.
46742
46743 2005-01-28  Bruno Haible  <bruno@clisp.org>
46744
46745         * lib/javacomp.sh.in: New file, from GNU gettext.
46746         * lib/javacomp.h: New file, from GNU gettext.
46747         * lib/javacomp.c: New file, from GNU gettext.
46748
46749 2005-01-26  Simon Josefsson  <jas@extundo.com>
46750
46751         * lib/gai_strerror.c: Use GPL in header.
46752
46753 2005-01-26  Bruno Haible  <bruno@clisp.org>
46754
46755         * modules/javaexec: New file.
46756         * MODULES.html.sh (Java): Add javaexec.
46757
46758 2005-01-26  Bruno Haible  <bruno@clisp.org>
46759
46760         * m4/javaexec.m4: New file, from GNU gettext.
46761
46762 2005-01-26  Bruno Haible  <bruno@clisp.org>
46763
46764         * lib/javaexec.sh.in: New file, from GNU gettext.
46765         * lib/javaexec.h: New file, from GNU gettext.
46766         * lib/javaexec.c: New file, from GNU gettext.
46767
46768 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46769
46770         * modules/lchown (Depends-on): Remove lchown.h
46771
46772 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46773
46774         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
46775         must be defined if the header file was not found, in order
46776         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
46777
46778 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46779
46780         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
46781         initializers for struct pentry_state.
46782         (__argp_error): Check return value of __asprintf
46783         (__argp_failure): Translate error message
46784
46785         * lib/argp-parse.c: Removed braces around the expansion of N_()
46786
46787 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
46788
46789         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
46790         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
46791         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
46792         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
46793         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
46794         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
46795         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
46796         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
46797         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
46798         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
46799         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
46800         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
46801         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
46802         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
46803         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
46804         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
46805         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
46806         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
46807         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
46808         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
46809         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
46810         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
46811         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
46812         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
46813         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
46814         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
46815         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
46816         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
46817         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
46818         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
46819         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
46820         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
46821         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
46822         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
46823         xstrtol.m4, xstrtoumax.m4, yesno.m4:
46824         Use an all-permissive copyright notice, recommended by RMS.
46825
46826 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
46827
46828         * modules/chdir-long (Depends-on): Remove mempcpy.
46829
46830 2005-01-21  Jim Meyering  <jim@meyering.net>
46831
46832         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
46833         same value as for Solaris 9.
46834
46835         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
46836         component length.  This included changing the parameter to be
46837         of type `char *' rather than `char const *'.
46838         * lib/chdir-long.h (chdir_long): Update prototype.
46839
46840         * lib/openat.c (fdopendir, fstatat): New functions.
46841         * lib/openat.h: Include headers required for use of DIR and struct
46842         stat.
46843         [AT_SYMLINK_NOFOLLOW]: Define.
46844         (fdopendir, fstatat): Add prototypes.
46845
46846 2005-01-21  Bruno Haible  <bruno@clisp.org>
46847
46848         * modules/classpath: New file.
46849         * MODULES.html.sh (Java): Add classpath.
46850
46851 2005-01-21  Bruno Haible  <bruno@clisp.org>
46852
46853         * lib/classpath.h: New file, from GNU gettext.
46854         * lib/classpath.c: New file, from GNU gettext.
46855
46856 2005-01-20  Simon Josefsson  <jas@extundo.com>
46857
46858         * modules/version-etc-fsf: New file.
46859
46860 2005-01-20  Simon Josefsson  <jas@extundo.com>
46861
46862         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
46863         * lib/version-etc.c: Remove version_etc_copyright.
46864         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
46865         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
46866
46867 2005-01-20  Simon Josefsson  <jas@extundo.com>
46868
46869         * lib/base64.h (isbase64): Add.
46870
46871         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
46872         using a unsigned prototype, don't inline.
46873         (base64_decode): Use it.
46874
46875 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46876
46877         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
46878         it.
46879
46880 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46881
46882         * lib/save-cwd.c (save_cwd): Remove code to support the case
46883         where fchdir is missing or flaky.
46884
46885 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46886
46887         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
46888
46889 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
46890
46891         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
46892         AC_LIBSOURCES now does this.
46893         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
46894         with new ullong_max module.
46895
46896 2005-01-19  Bruno Haible  <bruno@clisp.org>
46897
46898         * modules/sh-quote: New file.
46899         * MODULES.html.sh (Executing programs): Add sh-quote.
46900
46901 2005-01-19  Bruno Haible  <bruno@clisp.org>
46902
46903         * lib/sh-quote.h: New file, from GNU gettext.
46904         * lib/sh-quote.c: New file, from GNU gettext.
46905
46906 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46907
46908         Merge from coreutils.
46909         * m4/ullong_max.m4: New file.
46910         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
46911         (gl_MACROS): Assume localeconv exists.
46912
46913 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46914
46915         Merge changes from coreutils, as described below in several
46916         changelogs dated today.
46917
46918         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
46919         (O_DIRECTORY): Remove; not needed here, since "." must be
46920         a directory.  All uses removed.
46921         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
46922         universal on Suns, and we also need to test for IRIX.
46923         Revamp code to use 'if' rather than '#if'.
46924         Avoid unnecessary comparison of cwd->desc to 0.
46925
46926         * lib/utimens.c (futimens): Robustify the previous patch, by checking
46927         for known valid error numbers rather than observed invalid ones.
46928
46929 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46930
46931         * modules/ullong_max: New file.
46932
46933         * modules/chdir-long, modules/openat: New files.
46934         * modules/save-cwd (Depends-on): Depend on chdir-long.
46935         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
46936
46937 2005-01-18  Jim Meyering  <jim@meyering.net>
46938
46939         Merge from coreutils.
46940         * m4/chdir-long.m4, m4/openat.m4: New files.
46941         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
46942         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
46943         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
46944         is sane and DOES follow symlinks.  Besides, testing 20 different
46945         systems found no broken chown implementations.
46946         Prompted by a change in rsync's copy of this macro.
46947         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
46948
46949         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
46950
46951         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
46952         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
46953         NULL-means-set-to-current-time semantics.
46954         Remove temporary file immediately, rather than waiting
46955         for configure's at-exit trap code to do it.
46956
46957 2005-01-18  Jim Meyering  <jim@meyering.net>
46958
46959         * lib/version-etc.c (version_etc_copyright): Update copyright date.
46960
46961         * lib/utimens.c (futimens): Account for the fact that futimes
46962         can also fail with errno == ENOSYS or errno == ENOENT.
46963         Patch from Dmitry V. Levin.
46964
46965         Change the name of the robust chdir function from chdir to chdir_long.
46966         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
46967         (restore_cwd): Use chdir_long, not chdir.
46968         * lib/chdir-long.c: Renamed from chdir.c.
46969         * lib/chdir-long.h: Renamed from chdir.h.
46970         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
46971         Hurd.
46972
46973 2005-01-18  Bruno Haible  <bruno@clisp.org>
46974
46975         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
46976         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
46977         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
46978         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
46979         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
46980         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
46981         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
46982         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
46983         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
46984         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
46985         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
46986         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
46987         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
46988         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
46989         Use an all-permissive copyright notice, recommended by RMS.
46990
46991 2005-01-18  Bob Proulx  <bob@proulx.com>
46992
46993         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
46994         simplify offsetof() macro construct to avoid compile failure with
46995         native HP-UX 11.0 ANSI C compiler.
46996
46997 2005-01-17  Bruno Haible  <bruno@clisp.org>
46998
46999         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
47000         redundant because stpncpy.m4 takes care of it.
47001
47002 2005-01-17  Bruno Haible  <bruno@clisp.org>
47003
47004         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
47005
47006 2005-01-17  Bruno Haible  <bruno@clisp.org>
47007
47008         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
47009         used.
47010
47011 2005-01-17  Bruno Haible  <bruno@clisp.org>
47012
47013         * lib/fwriteerror.h (fwriteerror): Change specification to include
47014         fclose.
47015         * lib/fwriteerror.c: Include <stdbool.h>.
47016         (fwriteerror): At the end, close the file stream. Record whether
47017         stdout was already closed.
47018
47019 2005-01-17  Bruno Haible  <bruno@clisp.org>
47020
47021         * lib/execute.c (environ): Declare if needed.
47022         * lib/pipe.c (environ): Likewise.
47023         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
47024
47025 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47026
47027         * modules/argp: Depend on vsnprintf
47028
47029 2005-01-10  Jim Meyering  <jim@meyering.net>
47030
47031         * modules/closeout (Depends-on): Add atexit.
47032
47033 2005-01-06  Bruno Haible  <bruno@clisp.org>
47034
47035         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
47036
47037 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
47038
47039         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
47040         definitions to be after all include files, to avoid collisions.
47041         Problem reported by Bob Proulx.
47042
47043 2005-01-04  Jim Meyering  <jim@meyering.net>
47044
47045         Changes imported from coreutils.
47046         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
47047         as the mkstemp template, use a temporary directory and an
47048         8.3-friendly template to avoid trouble on systems like DJGPP.
47049         Reported by Juan M. Guerrero via Stepan Kasal.
47050         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
47051         close. Remove the temporary directory right away, rather than waiting
47052         for configure's at-exit trap code to do it.
47053         Suggestion from Stepan Kasal.
47054
47055 2005-01-01  Simon Josefsson  <jas@extundo.com>
47056
47057         * gnulib-tool: Print #include directives when --import'ing.
47058
47059 2004-12-28  Simon Josefsson  <jas@extundo.com>
47060
47061         * tests/test-base64.c: Include required header files.  Remove
47062         unused variables.
47063
47064 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
47065
47066         * modules/error (Depends-on): Remove gettext.
47067
47068 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
47069
47070         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
47071         not needed.  This removes a dependency on the gettext module.
47072         [defined _LIBC]: Do not include <libintl.h>; not needed.
47073
47074 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
47075
47076         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
47077         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
47078
47079 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
47080
47081         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
47082         HAVE_DECL_STRTOLD.
47083
47084 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47085
47086         * modules/getdate (Depends-on): Remove alloca-opt.
47087
47088 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47089
47090         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
47091
47092 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47093
47094         * lib/argp-parse.c: Include <stddef.h>.
47095         (alignof, alignto): New macros.
47096         (parser_init): Don't assume that void * is aligned sufficiently
47097         for struct option.
47098
47099         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
47100         need to extend the stack.
47101         (YYINITDEPTH): New macro, so that the initial stack isn't overly
47102         large.
47103
47104 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47105
47106         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
47107
47108 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47109
47110         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
47111         (2004-10-24) change.  Apparently this was a false alarm.
47112
47113         * modules/getdate: Depend on alloca-opt, not alloca.
47114
47115 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47116
47117         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
47118         Remove now-obsolete comment about AIX.
47119         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
47120         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
47121         (YYMAXDEPTH): New macro.
47122
47123 2004-12-18  Simon Josefsson  <jas@extundo.com>
47124
47125         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
47126
47127 2004-12-18  Bruno Haible  <bruno@clisp.org>
47128
47129         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
47130
47131 2004-12-18  Bruno Haible  <bruno@clisp.org>
47132
47133         * lib/fatal-signal.c (fatal_signals): Make non-const.
47134         (init_fatal_signals): New function.
47135         (uninstall_handlers, install_handlers): Ignore signals that were set to
47136         SIG_IGN.
47137         (at_fatal_signal): Call init_fatal_signals.
47138         (init_fatal_signal_set): Likewise. Ignore signals that were set to
47139         SIG_IGN.
47140         Reported by Paul Eggert.
47141
47142 2004-12-18  Bruno Haible  <bruno@clisp.org>
47143
47144         * doc/alloca.texi: New file.
47145         * doc/alloca-opt.texi: New file.
47146
47147 2004-12-17  Jim Meyering  <jim@meyering.net>
47148
47149         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
47150         Otherwise, install-sh could exit with improper exit status when
47151         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
47152
47153 2004-12-16  Simon Josefsson  <jas@extundo.com>
47154
47155         * tests/test-base64.c: Add license.
47156
47157 2004-12-15  Stepan Kasal  <address@hidden>
47158
47159         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
47160
47161 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
47162
47163         * modules/getcwd (Files): Add m4/d-ino.m4.
47164         Suggested by Mark D. Baushke.
47165
47166 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47167
47168         * lib/getdate.y (textint): New member "negative".
47169         (time_zone_hhmm): New function.
47170         Expect 14 shift-reduce conflicts, not 13.
47171         (o_colon_minutes): New rule.
47172         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
47173         (yylex): Set the "negative" member of signed numbers.
47174
47175 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47176
47177         * doc/getdate.texi (Time of day items, Time zone items):
47178         Describe new formats +00:00, UTC+00:00.
47179
47180 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
47181
47182         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
47183         spurious "-l"s.  Problem reported by Stepan Kasal.
47184
47185 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
47186
47187         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
47188         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
47189
47190 2004-12-04  Simon Josefsson  <jas@extundo.com>
47191
47192         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
47193         Vandoorselaere <yoann@prelude-ids.org>.
47194
47195 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47196
47197         Changes imported from coreutils.
47198         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
47199         exist.
47200         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
47201
47202 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47203
47204         Changes imported from coreutils.
47205         * lib/hard-locale.c: Assume <locale.h> exists.
47206         Include "strdup.h".
47207         (GLIBC_VERSION): New macro.
47208         (hard_locale): Assume setlocale exists.
47209         Rewrite to avoid #ifdef.
47210         Use strdup rather than malloc + strcpy.
47211         * lib/human.c: Assume <locale.h> exists.
47212         (human_readable): Assume localeconv exists.
47213
47214 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47215
47216         * modules/hard-locale (Depends-on): Add strdup.
47217
47218 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
47219
47220         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
47221         convert T2, not T.  (Imported from libc.)
47222
47223 2004-11-30  Simon Josefsson  <jas@extundo.com>
47224
47225         * modules/restrict (License): Change to LGPL.
47226
47227 2004-11-30  Simon Josefsson  <jas@extundo.com>
47228
47229         * m4/restrict.m4: Add copyright and copying conditions.
47230
47231 2004-11-30  Simon Josefsson  <jas@extundo.com>
47232
47233         * m4/base64.m4: New file.
47234
47235 2004-11-30  Simon Josefsson  <jas@extundo.com>
47236
47237         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
47238         base64.
47239
47240         * tests/test-base64.c: New file.
47241
47242         * modules/base64: New file.
47243
47244 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47245
47246         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
47247         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
47248
47249         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
47250
47251 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47252
47253         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
47254         (__getcwd.c): Don't restore errno; glibc doesn't.
47255         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
47256         first, falling back to our code only if its results look suspicious.
47257         Ensure that the resulting buffer is only as large as necessary.
47258
47259         * lib/readutmp.c: Include readutmp.h first.
47260         Include <errno.h>, since readutmp.h no longer does that.
47261         * lib/readutmp.h: Don't include <errno.h>,
47262         <sys/param.h>, <time.h>; not needed to establish interface.
47263         (errno): Remove decl.
47264         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
47265         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
47266         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
47267
47268 2004-11-28  Simon Josefsson  <jas@extundo.com>
47269
47270         * lib/base64.h, base64.c: New file.
47271
47272 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
47273
47274         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
47275
47276 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
47277
47278         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
47279         (Depends-on): Remove pathmax, same.  Add mempcpy.
47280         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
47281         (Makefile.am): Append getcwd.h to lib_SOURCES.
47282         (Include): Add getcwd.h.
47283         (Maintainer): Change from Jim Meyering to "all, glibc",
47284         since getdate now uses intended-for-glibc code.
47285         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
47286         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
47287
47288 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47289
47290         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
47291         HP's ANSI C compiler.
47292         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
47293         Declaring int functions causes warnings on some modern systems and
47294         shouldn't be needed to compile on ancient ones.
47295         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
47296         defined.
47297
47298         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
47299         with the following changes.
47300         (__set_errno): Parenthesize properly.
47301         Include <stdbool.h>.
47302         (MIN, MAX, MATCHING_INO): New macros.
47303         (__getcwd): Define with prototype, not K&R form.
47304         Use heuristics to allocate default buffer on stack if possible.
47305         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
47306         behavior, and to avoid the PATH_MAX limit when computing
47307         ../../../../...
47308         Use MATCHING_INO to compare inode number to file.
47309         Check for arithmetic overflow in size calculations.
47310         Fix bug in reallocation of dot array that caused getcwd to fail
47311         on directories nested deeper than 75.
47312         Be more careful about saving errno on error.
47313         Do not use realloc; use only free+malloc, as this is a bit
47314         more flexible and avoids a needless copy operation.
47315         Do not inspect st_dev and st_ino for symbolic links; POSIX
47316         doesn't specify the latter.
47317         Check for closedir errors.
47318         Avoid needless casts.
47319         Use "#ifdef weak_alias" around weak_alias, to be like other
47320         glibc code.
47321         The following changes to getcwd.c have effect only when used in
47322         gnulib; they have no effect inside glibc proper.
47323         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
47324         as alloca isn't used.
47325         (alloca, __alloca): Likewise.
47326         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
47327         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
47328         unconditionally, as gnulib assumes C89 or better.
47329         Do not include <sys/param.h>.
47330         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
47331         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
47332         better.
47333         (NULL) [!defined NULL]: Remove; we assume C89 or better.
47334         Include <dirent.h> in a way that is compatible with modern Autoconf.
47335         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
47336         New macros, if not already defined.
47337         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
47338         Use "_LIBC", not "defined _LIBC", for consistency.
47339         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
47340         a mempcpy module.
47341         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
47342         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
47343         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
47344         credit only to Jim Meyering and adjust the copyright dates.
47345         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
47346         <stdlib.h>, <unistd.h>, "pathmax.h".
47347         Instead, include "xgetcwd.h" (first) and "getcwd.h".
47348         (INITIAL_BUFFER_SIZE): Remove.
47349         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
47350
47351 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47352
47353         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
47354         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
47355         Use the _ONCE methods, for efficiency.
47356         Check for fcntl.h.  In test program, include <errno.h>
47357         and <fcntl.h> if available.  Remove old K&R cruft from
47358         test program.  Check for common errors in GNU/Linux,
47359         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
47360         don't do AC_LIBOBJ, as that's getcwd.m4's job.
47361         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
47362         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
47363         name accordingly.
47364         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
47365         accommodate new getcwd.c.
47366         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
47367         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
47368         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
47369         that's all we need now.
47370
47371 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47372
47373         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
47374         argp-parse.c depends on getopt internals, that means we should
47375         always use our getopt, to be on the safe side.
47376         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
47377         order not to spoil the result of an eventual previous invocation
47378         of gl_GETOPT_SUBSTITUTE.
47379
47380 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47381
47382         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
47383         redefinition warnings. To avoid them, include the defines
47384         in `#if !defined __need_getopt ... #endif'. The only place
47385         where __getopt_argv_const is used is in definitions
47386         of getopt_long and getopt_long_only below, which are as well
47387         protected by `#ifndef __need_getopt'.
47388         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
47389         __need_getopt after including <stdio.h> and <unistd.h> These
47390         headers might have defined it.
47391
47392 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47393
47394         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
47395
47396 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47397
47398         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
47399         (futimens): New function, which uses futimes if available.
47400         (futimens, utimens): Support timespec==NULL, with same semantics
47401         as utime and utimens.
47402         * lib/utimens.h (futimens): New decl.
47403
47404 2004-11-23  Jim Meyering  <jim@meyering.net>
47405
47406         * lib/getopt_.h: Remove trailing blanks.
47407
47408 2004-11-23  Jim Meyering  <jim@meyering.net>
47409
47410         * lib/__fpending.c: Add comment.
47411
47412 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
47413
47414         * modules/canonicalize (Depends-on): Add xreadlink.
47415         Problem reported by James Youngman.
47416
47417 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
47418
47419         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
47420         New macros.
47421         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
47422         optopt): Use them instead of invoking ## directly; otherwise, the
47423         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
47424
47425 2004-11-19  Bruno Haible  <bruno@clisp.org>
47426
47427         * lib/strtok_r.c: Move comments from here...
47428         * lib/strtok_r.h: ... to here.
47429
47430 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47431
47432         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
47433         implementations that mishandle size_t overflow.
47434
47435 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47436
47437         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
47438         might fail.  Problem reported by Yoann Vandoorselaere.
47439         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
47440         implementations that mishandle size_t overflow.
47441
47442 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47443
47444         * modules/canon-host (Depends-on): Add strdup.
47445
47446 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47447
47448         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
47449
47450 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47451
47452         * lib/canon-host.c: Include "strdup.h".
47453         (canon_host): Use getaddrinfo if available, so that IPv6 works.
47454         Use strdup instead of malloc/strcpy to duplicate strings.
47455
47456         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
47457         (human_space_before_unit): New constant.
47458         * lib/human.c (human_readable): Support it.
47459
47460         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
47461         (xgetcwd): Set errno correctly when failing.
47462         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
47463         the failure is actually due to a PATH_MAX problem.
47464
47465         Further getopt changes to make it more likely that glibc will
47466         buy the changes back.
47467         * lib/getopt.c (POSIXLY_CORRECT): New constant.
47468         (getopt): Use it, so to preserve glibc semantic
47469         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
47470         when compiling for libc.
47471         * lib/getopt_.h (__getopt_argv_const): Bring it back.
47472         (getopt_long, getopt_long_only): Use it.
47473
47474         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47475         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
47476         (getopt): Argv is now char * const *, as per standard.
47477         (_getopt_internal_r, _getopt_internal): Argv is now char **,
47478         not char *__getopt_argv_const *.
47479         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47480         _getopt_long_only_r): Likewise.
47481         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
47482         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47483         _getopt_long_r, _getopt_long_only_r): Likewise.
47484         * lib/getopt_.h (__getopt_argv_const): Remove.
47485         (getopt): Argv is now char * const *, as per standard.
47486
47487         * lib/getdate.y (tORDINAL): New token.
47488         (day, relunit): Allow it for relative times.
47489         (relative_time_table): Use tORDINAL for ordinals.
47490
47491 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47492
47493         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
47494         Document that "second" isn't allowed as an ordinal number.
47495
47496 2004-11-16  Jim Meyering  <jim@meyering.net>
47497
47498         * modules/closeout (Depends-on): Add fpending.
47499
47500 2004-11-15  Jim Meyering  <jim@meyering.net>
47501
47502         * lib/closeout.c: Include "__fpending.h" once again.
47503         Include <stdbool.h>.
47504         (close_stdout): Don't fail just because stdout was closed initially,
47505         since some programs don't write to stdout in the normal course of
47506         operation (other than --version and --help), and we don't want this
47507         function to make e.g. `touch file >&-' fail.
47508         But do fail if it was closed and someone has tried to write to it.
47509         E.g., `printf foo >&-' must fail.
47510
47511 2004-11-13  Jim Meyering  <jim@meyering.net>
47512
47513         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
47514
47515 2004-11-12  Simon Josefsson  <jas@extundo.com>
47516
47517         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
47518         small doc fix is still pending.
47519
47520 2004-11-11  Simon Josefsson  <jas@extundo.com>
47521
47522         * modules/strtok_r: New file.
47523
47524         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47525         strtok_r.
47526
47527 2004-11-11  Simon Josefsson  <jas@extundo.com>
47528
47529         * m4/strtok_r.m4: New file.
47530
47531         * m4/getopt.m4: Replace opterr.
47532
47533 2004-11-11  Simon Josefsson  <jas@extundo.com>
47534
47535         * lib/strtok_r.h, strtok_r.c: New file.
47536
47537 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47538
47539         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
47540         of replacing opterr, getopt, etc.  This should handle the
47541         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
47542
47543 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47544
47545         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
47546         we can stop lying to compilers about the constness of argv when we
47547         are compiled outside glibc.
47548         (getopt, getopt_long, getopt_long_only): Use it.
47549         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47550         _getopt_internal, getopt): Likewise.
47551         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47552         _getopt_long_only_r): Likewise.
47553         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47554         _getopt_long_r, _getopt_long_only_r): Likewise.
47555
47556         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
47557         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
47558         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
47559         the other external symbols.
47560         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
47561         declaration, since the above renaming now works around collisions.
47562
47563 2004-11-11  Jim Meyering  <jim@meyering.net>
47564
47565         * lib/linebreak.c: Remove trailing blanks.
47566         * lib/alloca_.h: Likewise.
47567         * lib/acosl.c: Likewise.
47568         * lib/euidaccess.c: Likewise.
47569         * lib/allocsa.h: Likewise.
47570
47571 2004-11-10  Simon Josefsson  <jas@extundo.com>
47572
47573         * m4/getaddrinfo.m4: New file.
47574
47575 2004-11-10  Simon Josefsson  <jas@extundo.com>
47576
47577         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
47578
47579 2004-11-10  Simon Josefsson  <jas@extundo.com>
47580
47581         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47582         getaddrinfo.
47583
47584         * modules/getaddrinfo: New file.
47585
47586 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47587
47588         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
47589
47590 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47591
47592         * lib/mktime.c (SHR): New macro, which is a portable
47593         substitute for >> that should work even on Crays.
47594         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
47595         Problem reported by Mark D. Baushke in
47596         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
47597         * lib/getdate.y (SHR): Likewise.
47598         (tm_diff): Use it.
47599         * lib/strftime.c (SHR): Likewise.
47600         (tm_diff): Use it.
47601         * lib/quotearg.c (struct quoting_options): Use unsigned int for
47602         quote_these_too, so that right shifts are well defined.  All uses
47603         changed.
47604
47605 2004-11-10  Jim Meyering  <jim@meyering.net>
47606
47607         Ensure that no close failure goes unreported.
47608         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
47609         return early when it seems there's nothing to flush.
47610         Don't include __fpending.h.
47611
47612 2004-11-10  Jim Meyering  <jim@meyering.net>
47613
47614         * modules/closeout (Depends-on): Remove fpending.
47615
47616 2004-11-10  Jim Meyering  <jim@meyering.net>
47617
47618         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
47619
47620 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47621
47622         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
47623         gl_FUNC_STRFTIME.
47624         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
47625         and AC_REQUIRE when possible, to avoid duplicate checks.
47626         Check for <wchar.h>.
47627
47628 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47629
47630         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
47631
47632 2004-11-09  Bruno Haible  <bruno@clisp.org>
47633
47634         * m4/sockpfaf.m4: New file.
47635
47636 2004-11-05  Bruno Haible  <bruno@clisp.org>
47637
47638         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
47639         Reported by Mark D. Baushke <mdb@cvshome.org>.
47640
47641 2004-11-04  Bruno Haible  <bruno@clisp.org>
47642
47643         2004-09-11  Bruno Haible  <bruno@clisp.org>
47644                 * allocsa.valgrind: New file.
47645         2004-02-06  Bruno Haible  <bruno@clisp.org>
47646                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
47647                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
47648                 Reported by Christopher Seip <chris.seip@hp.com>.
47649
47650 2004-11-04  Bruno Haible  <bruno@clisp.org>
47651
47652         * modules/allocsa (Files): Add lib/allocsa.valgrind.
47653         (Makefile.am): Distribute it.
47654
47655 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
47656
47657         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
47658         with errno == ERANGE if the buffer is too small.
47659         Problem reported by Mark D. Baushke.
47660
47661 2004-11-03  Albert Chin  <china@thewrittenword.com>
47662             Paul Eggert  <eggert@cs.ucla.edu>
47663
47664         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
47665         equivalent, substitute $ac_type for equivalent type rather than
47666         blindly using uint32_t *always* which won't work if uint32_t is not
47667         available.  Define _UINT32_T to work around typedef of uint32_t if
47668         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
47669         2.5.1.
47670
47671 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47672
47673         * m4/jm-macros.m4: Sync from coreutils.
47674         (gl_MACROS): Check for mbrlen, for pathchk.
47675         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
47676
47677 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47678
47679         * lib/xreadlink.c (MAXSIZE): New macro.
47680         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
47681         size does not exceed MAXSIZE.  Avoid cast.
47682         As suggested by Mark D. Baushke in
47683         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
47684         if readlink fails with buffer size just under MAXSIZE, try again
47685         with MAXSIZE.
47686
47687 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47688
47689         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
47690
47691 2004-11-02  Derek R. Price  <derek@ximbiot.com>
47692         and  Paul Eggert  <eggert@cs.ucla.edu>
47693
47694         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
47695         (get_date): Overparenthesize to avoid GCC warning.
47696
47697 2004-11-02  Bruno Haible  <bruno@clisp.org>
47698
47699         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
47700         returns void.
47701
47702 2004-11-02  Bruno Haible  <bruno@clisp.org>
47703
47704         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
47705         function returns void.
47706
47707 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47708
47709         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
47710         fflush_unlocked, flockfile, funlockfile, funlockfile,
47711         fputs_unlocked, putc_unlocked.
47712
47713 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47714
47715         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47716         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
47717         already declared.
47718
47719 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47720
47721         * modules/getdate (Files): Add doc/getdate.texi.
47722         (Depends-on): Add setenv, xalloc.
47723
47724 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47725
47726         * lib/getdate.y: Add support for TZ="foo" within a date string.
47727         Fix some bugs near time_t boundaries.  Reject dates with
47728         out-of-range components, e.g., "Sept 31".
47729         Include <stdlib.h>, "setenv.h", "xalloc.h".
47730         (ISDIGIT_LOCALE): Remove; unused.
47731         Note that the TZ and time functions used here are not reentrant.
47732         (mktime_ok, get_tz): New functions.
47733         (TZBUFSIZE): New constant.
47734         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
47735         This requires that we sometimes generate our own TZ="XXX..." setting.
47736
47737 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47738
47739         * doc/getdate.texi: New file, from coreutils with modifications for
47740         the new TZ parsing.
47741
47742 2004-10-27  Derek R. Price  <derek@ximbiot.com>
47743
47744         * lib/mktime.c (not_equal_tm): Remove redundant check.
47745
47746 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47747
47748         * modules/regex (lib_SOURCES): Add regex.c.
47749         Reported by James Youngman in
47750         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
47751
47752 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47753
47754         * lib/getdate.y: Use Bison 1.875 features, and some minor
47755         code cleanups.  This change does not affect semantics.
47756         Don't include <stdlib.h>; no longer needed.
47757         Don't include unlocked-io.h; only the "#if TEST" code uses
47758         stdio, and performance isn't crucial there.
47759         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
47760         Bison 1.875 features as described below.
47761         All uses of "PC." replaced by "pc->".
47762         (YYSTYPE): Add a forward declaration.
47763         (yylex, yyerror): Use full prototypes in forward decls.
47764         Use "%pure-parser" rather than obsolescent "%pure_parser".
47765         Use %parse-param and %lex-param instead of obsolescent
47766         YYPARSE_PARAM and YYLEX_PARAM.
47767         (meridian_table, month_and_day_table, time_units_table,
47768         relative_time_table, time_zone_table, military_table,
47769         lookup_zone, lookup_word, get_date):
47770         Use NULL instead of 0 where appropriate.
47771         (to_hour): Avoid abort (), to avoid a dependency on
47772         stdlib.h.
47773         (yyerror, yylex): Now accepts parser_control * arg.
47774         (main) [TEST]: Use '\0' rather than 0 for char.
47775
47776 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
47777
47778         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
47779
47780 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
47781
47782         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
47783         It's now the caller's responsibility to handle the case where
47784         !HAVE_GETPAGESIZE && !defined getpagesize.
47785
47786         * lib/mktime.c (leapyear): Arg is long int, not int.
47787
47788 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
47789
47790         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
47791
47792 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
47793
47794         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
47795         missing.  Problem reported by James Youngman.
47796
47797 2004-10-16  Simon Josefsson  <jas@extundo.com>
47798
47799         * gnulib-tool: Fix comments.  Fix parse problem.
47800         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
47801
47802 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
47803
47804         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
47805         implementation of getopt_long.  Problem reported by Alexander Taler in:
47806         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
47807
47808 2004-10-15  Bruno Haible  <bruno@clisp.org>
47809
47810         * gnulib-tool: Untabify. Initialize supplied_libname.
47811         (func_usage): More homogenous output.
47812         (func_modules_transitive_closure, func_modules_to_filelist,
47813         func_emit_lib_Makefile_am): New functions.
47814         (func_import): New function, extracted from big case statement. Use
47815         func_get_license, func_modules_transitive_closure,
47816         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
47817         opt_lgpl. Don't use test -a, as it's not portable.
47818         (func_create_testdir): Use func_modules_transitive_closure,
47819         func_modules_to_filelist, func_emit_lib_Makefile_am.
47820
47821 2004-10-15  Bruno Haible  <bruno@clisp.org>
47822
47823         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
47824
47825 2004-10-15  Bruno Haible  <bruno@clisp.org>
47826
47827         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
47828         the portions belonging to each module.
47829         Suggested by Derek Robert Price <derek@ximbiot.com>.
47830
47831 2004-10-12  Simon Josefsson  <jas@extundo.com>
47832
47833         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47834         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
47835         to real functions.
47836
47837 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47838
47839         * modules/vsnprintf: New file.
47840
47841 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47842
47843         * m4/vsnprintf.m4: New file.
47844
47845 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47846
47847         * lib/vsnprintf.h: New file.
47848         * lib/vsnprintf.c: New file.
47849
47850 2004-10-11  Bruno Haible  <bruno@clisp.org>
47851
47852         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
47853         vsnprintf.
47854
47855 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
47856
47857         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
47858
47859 2004-10-07  Bruno Haible  <bruno@clisp.org>
47860
47861         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
47862         fits into the provided buffer.
47863
47864 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
47865
47866         * lib/diacrit.c, diacrit.h: Add GPL notice.
47867
47868         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
47869         notice.
47870         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
47871         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
47872         This avoids a potential constant-folding bug.
47873
47874 2004-10-05  Bruno Haible  <bruno@clisp.org>
47875
47876         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
47877         for the declaration of strsep.
47878
47879 2004-10-05  Bruno Haible  <bruno@clisp.org>
47880
47881         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
47882
47883 2004-10-04  Simon Josefsson  <jas@extundo.com>
47884
47885         * modules/memmem: New file.
47886         * tests/test-memmem.c: New file.
47887         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
47888
47889 2004-10-04  Simon Josefsson  <jas@extundo.com>
47890
47891         * m4/memmem.m4: New file.
47892
47893 2004-10-04  Simon Josefsson  <jas@extundo.com>
47894
47895         * lib/memmem.h: New file.
47896         * lib/memmem.c: New file, taken from glibc.
47897
47898 2004-10-04  Simon Josefsson  <jas@extundo.com>
47899
47900         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
47901         '#ifdef USE_UNLOCKED_IO'.
47902
47903 2004-10-04  Simon Josefsson  <jas@extundo.com>
47904
47905         * config/srclist.txt: Add memmem from glibc.
47906
47907 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47908
47909         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
47910
47911         * modules/argmatch, modules/argp, modules/closeout, modules/error,
47912         modules/exclude, modules/getdate, modules/getline,
47913         modules/getndelim2, modules/getpass, modules/getpass-gnu,
47914         modules/getusershell, modules/linebuffer, modules/md5,
47915         modules/mountlist, modules/posixtm, modules/readtokens,
47916         modules/readutmp, modules/regex, modules/sha1,
47917         modules/version-etc, modules/yesno:
47918         Remove dependency on unlocked-io.
47919
47920 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47921
47922         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
47923
47924         * m4/unlocked-io.m4: Add copyright notice.
47925         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
47926
47927 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47928
47929         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
47930         * lib/xmalloc.c (xmemdup): Likewise.
47931         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
47932         XFREE): Remove these long-obsolescent macros.
47933         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
47934         * lib/xstrdup.c: Remove.
47935
47936         * lib/regex.c (re_comp): Cast gettext return value to char *,
47937         Problem reported by Martin Neitzel via Mark D. Baushke.
47938
47939 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47940
47941         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
47942         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
47943         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
47944         regex.c, sha1.c, version-etc.c, yesno.c:
47945         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
47946         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
47947         the includer's responsibility.
47948
47949         Sync from coreutils.
47950
47951         * lib/modechange.c (mode_compile): Don't decrement a pointer that
47952         points to the start of a string, as the C Standard says the
47953         resulting behavior is undefined.
47954
47955         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
47956         simple -> simple_backups, numbered_existing ->
47957         numbered_existing_backups, numbered -> numbered_backups
47958         to avoid shadowing problems.  All uses changed.
47959         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
47960         * lib/backupfile.c (check_extension, numbered_backup):
47961         Rename locals to avoid shadowing 'basename'.
47962         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
47963         once.
47964
47965         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
47966         * lib/.cvsignore: Add getopt.h.
47967
47968 2004-10-04  Bruno Haible  <bruno@clisp.org>
47969
47970         * modules/README: New file.
47971         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
47972         not a module.
47973
47974 2004-10-02  Jim Meyering  <jim@meyering.net>
47975
47976         * lib/dirfd.h, getpagesize.h: Add copyright notice.
47977
47978 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47979
47980         * modules/strsep: New file.
47981
47982 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47983
47984         * m4/strsep.m4: New file.
47985
47986 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47987
47988         * lib/strsep.h: New file.
47989         * lib/strsep.c: New file.
47990
47991 2004-10-01  Simon Josefsson  <jas@extundo.com>
47992
47993         * lib/snprintf.c (snprintf): Handle size==0.
47994
47995 2004-10-01  Simon Josefsson  <jas@extundo.com>
47996             Bruno Haible  <bruno@clisp.org>
47997
47998         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
47999         (snprintf): Declare 'args'.
48000
48001 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
48002
48003         * lib/snprintf.c: Remove comments as to why each header is needed.
48004
48005 2004-10-01  Bruno Haible  <bruno@clisp.org>
48006
48007         * MODULES.html.sh: Add strsep.
48008
48009 2004-09-30  Simon Josefsson  <jas@extundo.com>
48010
48011         * modules/snprintf: New file.
48012
48013 2004-09-30  Simon Josefsson  <jas@extundo.com>
48014
48015         * m4/snprintf.m4: New file.
48016
48017 2004-09-30  Simon Josefsson  <jas@extundo.com>
48018
48019         * lib/snprintf.h, lib/snprintf.c: New files.
48020
48021 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
48022
48023         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
48024         (hol_entry_help): Never translate an empty string.
48025         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
48026         * lib/argp.h (OPTION_NO_TRANS): New option.
48027
48028 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48029
48030         * modules/argp (Maintainer): Replace Simon Josefsson
48031         by Sergey Poznyakoff.
48032
48033 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48034
48035         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
48036         changes merged back into glibc.
48037
48038 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48039
48040         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
48041
48042 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
48043
48044         * lib/xvasprintf.c: Include xalloc.h.
48045         (xvasprintf): Use xalloc_die, not xmalloc_die.
48046
48047 2004-09-29  Bruno Haible  <bruno@clisp.org>
48048
48049         * modules/alloca-opt: New file, derived from modules/alloca.
48050         * modules/allocsa: Depend on alloca-opt instead of alloca.
48051         * modules/setenv: Likewise.
48052         * modules/vasnprintf: Likewise.
48053         * MODULES.html.sh: Add alloca-opt.
48054
48055 2004-09-28  Simon Josefsson  <jas@extundo.com>
48056
48057         * gnulib-tool: New parameter --lgpl, to asseert that modules are
48058         LGPL, and to replace license template from GPL to LGPL.
48059
48060 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
48061
48062         * modules/dummy: Change license to LGPL.
48063
48064 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
48065
48066         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
48067
48068 2004-09-24  Simon Josefsson  <jas@extundo.com>
48069
48070         * modules/minmax (License): Change from GPL to LGPL.
48071
48072 2004-09-23  Simon Josefsson  <jas@extundo.com>
48073
48074         * gnulib-tool (--import): Typo.
48075
48076 2004-09-23  Simon Josefsson  <jas@extundo.com>
48077
48078         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
48079
48080 2004-09-22  Bruno Haible  <bruno@clisp.org>
48081
48082         * modules/*: Add 'License' field.
48083         * gnulib-tool: Accept --extract-license option.
48084         (func_get_license): New function.
48085
48086 2004-09-21  Bruno Haible  <bruno@clisp.org>
48087
48088         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
48089         Reported by Simon Josefsson.
48090
48091 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48092
48093         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
48094         gl_AC_TYPE_LONG_LONG.
48095
48096 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48097
48098         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
48099
48100 2004-09-18  Simon Josefsson  <jas@extundo.com>
48101         and  Paul Eggert  <eggert@cs.ucla.edu>
48102
48103         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
48104         calls with autoreconf.  Define GL_LIB.
48105
48106 2004-09-14  Karl Berry  <karl@gnu.org>
48107
48108         * config/srclist.txt: unsync setenv.c, sigh.
48109
48110 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48111
48112         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
48113         Problem reported by Bruno Haible in:
48114         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
48115
48116 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48117
48118         * config/srclist.txt: Comment out argp-pvh.c.
48119
48120 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
48121
48122         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
48123         in case some system header has #define'd it.  Problem reported by
48124         Soeren D. Schulze in
48125         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
48126
48127 2004-09-09  Karl Berry  <karl@gnu.org>
48128
48129         * regex.[ch]: delete from the root.  These were supposed to be
48130                 synced with emacs cvs, but this has not happened for about
48131                 a year, and anyway nothing else uses emacs regex.[ch].
48132                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
48133                 lib/regex[.ch] is untouched.
48134
48135 2004-09-09  Bruno Haible  <bruno@clisp.org>
48136
48137         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
48138
48139 2004-09-09  Bruno Haible  <bruno@clisp.org>
48140
48141         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
48142         modifications.
48143         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
48144
48145 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48146
48147         * modules/xvasprintf: New file.
48148         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
48149
48150 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48151
48152         * lib/xvasprintf.h: New file.
48153         * lib/xvasprintf.c: New file.
48154         * lib/xasprintf.c: New file.
48155
48156 2004-09-08  Bruno Haible  <bruno@clisp.org>
48157
48158         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
48159
48160 2004-09-08  Bruno Haible  <bruno@clisp.org>
48161
48162         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
48163         length is > INT_MAX.
48164         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
48165         more.
48166
48167 2004-09-08  Bruno Haible  <bruno@clisp.org>
48168
48169         * lib/stdint_.h: New file, taken from GNU clisp.
48170
48171 2004-09-08  Bruno Haible  <bruno@clisp.org>
48172             Oskar Liljeblad  <oskar@osk.mine.nu>
48173
48174         * modules/stdint: New file.
48175         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
48176
48177 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48178
48179         Import from coreutils.
48180         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
48181         strings on unbounded length.  alloca's performance benefits aren't
48182         that important here.
48183         (V_STRDUP): Remove.
48184         (parse_with_separator): New function, with most of the internals
48185         of the old parse_user_spec.  Allow user to omit both user and group,
48186         for compatibility with FreeBSD.
48187         Clone only the user name, not the entire spec.
48188         Do not set *uid, *gid unless entirely successful.
48189         Avoid memory leak in some failing cases.
48190         Fix regression for USER.GROUP reported by Dmitry V. Levin in
48191         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
48192         (parse_user_spec): Rewrite to use parse_with_separator.
48193
48194 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48195
48196         * modules/userspec: Don't depend on alloca.
48197
48198 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48199
48200         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
48201
48202 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
48203
48204         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
48205         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
48206         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
48207
48208 2004-08-16  Simon Josefsson  <jas@extundo.com>
48209
48210         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
48211         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
48212         Add --dry-run for --import.
48213         Let user provided command line parameters override configure.ac
48214         settings.
48215
48216 2004-08-12  Simon Josefsson  <jas@extundo.com>
48217
48218         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
48219         as discussed with Paul Eggert in threads rooted at
48220         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
48221         and
48222         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
48223         Before, the test was empty, and relied on ELIDE_CODE in source
48224         code.)
48225         (gl_PREREQ_GETOPT): New macro.
48226         (gl_GETOPT): Use them.
48227
48228 2004-08-12  Simon Josefsson  <jas@extundo.com>
48229
48230         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
48231         * lib/getopt_.h: Renamed from getopt.h.
48232
48233 2004-08-12  Simon Josefsson  <jas@extundo.com>
48234
48235         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
48236         Change default library name from libfoo to libgnu.
48237         Now, if you have a configure.ac that says:
48238                 gl_SOURCE_BASE(gl)
48239                 gl_M4_BASE(gl/m4)
48240                 gl_MODULES(error getopt etcetera)
48241                 gl_INIT
48242         you can import all you need by running:
48243                 ../gnulib/gnulib-tool --import
48244
48245         * modules/getopt (Files): Rename getopt.h to getopt_.h.
48246         (Makefile.am): Rewrite, use logic from argz.
48247         (Include): Use <getopt.h> instead of "getopt.h".
48248
48249 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48250
48251         * modules/argp (Files): Add m4/unlocked-io.m4.
48252         (Depends-on): Add extensions.
48253
48254 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48255
48256         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
48257         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
48258         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
48259         Check for program_invocation_name, program_invocation_short_name,
48260         flockfile, funlockfile, features.h, _getopt_long_only_r.
48261
48262 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48263
48264         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
48265         its complicated substitute.
48266         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
48267         and program_invocation_name.
48268         (__argp_basename) [!_LIBC]: Remove; the only use was
48269         replaced by its body.
48270         (__argp_short_program_name): Change condition from
48271         !defined __argp_short_program_name to
48272         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
48273         to match argp-namefrob.h.
48274         (__argp_failure): Don't assume strerror_r returns char *.
48275         * lib/argp-parse.c (N_): Define unconditionally.
48276         (argp_default_options): Fill out initializers with 0 to avoid
48277         gcc warnings.
48278
48279 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48280
48281         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
48282         getopt1.c.
48283
48284 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48285
48286         Merge from coreutils.
48287
48288         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
48289
48290         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
48291         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
48292
48293 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48294
48295         Merge from coreutils.
48296
48297         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
48298         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
48299         for Reliant Unix 5.43.
48300
48301         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
48302         (union fooround): Use uintmax_t, not long int.
48303         The rest is a merge from libc:
48304         [defined _LIBC]: Include <shlib-compat.h>.
48305         (_obstack) [defined _LIBC]: Remove after 2.3.4.
48306
48307         * lib/settime.c (settime): Recode to avoid warning with
48308         Sun Forte C 6U2.
48309
48310         * lib/strverscmp.c: Convert to UTF-8.
48311
48312 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48313
48314         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
48315         m4/uintmax_t.m4.
48316
48317 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48318
48319         * modules/xalloc-die: New file.
48320         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
48321
48322         * modules/md5 (Files): Add m4/uint32_t.m4.
48323         * modules/sha1: Renamed from modules/sha.
48324         (Files):
48325         Rename lib/sha.h to lib/sha1.h.
48326         Rename lib/sha.c to lib/sha1.c.
48327         Rename m4/sha.m4 to m4/sha1.m4.
48328         (lib_SOURCES): Likewise.
48329         (configure.ac): Rename gl_SHA to gl_SHA1.
48330         (Include): sha.h -> sha1.h.
48331
48332 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48333
48334         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
48335         * m4/sha1.m4: Renamed from sha.m4.
48336         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
48337
48338 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48339
48340         * lib/obstack.h (obstack_empty_p):
48341         Don't assume that chunk->contents is suitably aligned.
48342         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
48343         Likewise. Problem reported by Benno in
48344         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
48345
48346         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
48347         readable.  This could be improved further but it'd take some work.
48348
48349 2004-08-08  Simon Josefsson  <jas@extundo.com>
48350
48351         * modules/xgethostname (Depends-on): Remove exit and error (not
48352         used).
48353
48354         * modules/getpass-gnu: Add getpass.h.
48355         (Depends-on): Add stdbool.
48356         * modules/getpass: Add getpass.h.
48357
48358 2004-08-08  Simon Josefsson  <jas@extundo.com>
48359
48360         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
48361         Check getpass declaration.
48362
48363 2004-08-08  Simon Josefsson  <jas@extundo.com>
48364
48365         * lib/xgethostname.c: Don't include error.h (not used).
48366
48367         * lib/getpass.h: Add.
48368         * lib/getpass.c: Include getpass.h first.
48369
48370 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
48371
48372         * lib/xalloc-die.c: New file.
48373         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
48374         All uses removed.
48375         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
48376         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
48377         xalloc-die.c.
48378         (_, N_, xalloc_die): Move to xalloc-die.c.
48379         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
48380         so that we needn't mess with xalloc_msg_memory_exhausted.
48381
48382         * lib/sha1.h: Renamed from sha.h.
48383         (SHA1_H): Renamed from _SHA_H.
48384         (sha1_ctx): Renamed from sha_ctx.
48385         (sha1_init_ctx): Renamed from sha_init_ctx.
48386         (sha1_process_block): Renamed from sha_process_block.
48387         (sha1_process_bytes): Renamed from sha_process_bytes.
48388         (sha1_finish_ctx): Renamed from sha_finish_ctx.
48389         (sha1_read_ctx): Renamed from sha_read_ctx.
48390         (sha1_stream): Renamed from sha_stream.
48391         (sha1_buffer): Renamed from sha_buffer.
48392         * lib/sha1.c: Likewise; renamed from sha.c.
48393         Do not include <sys/types.h>.
48394         Include <stddef.h> rather than <stdlib.h>.
48395
48396 2004-08-08  Bruno Haible  <bruno@clisp.org>
48397
48398         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
48399         FILESYSTEM_PREFIX_LEN.
48400         * lib/progreloc.c: Likewise.
48401         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
48402
48403 2004-08-06  Simon Josefsson  <jas@extundo.com>
48404
48405         * modules/progname (Depends-on): Don't depend on stdbool.
48406
48407 2004-08-06  Simon Josefsson  <jas@extundo.com>
48408
48409         * modules/getsubopt: New file.
48410         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
48411         getsubopt.
48412
48413 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48414
48415         More merge from coreutils.
48416
48417         * m4/utimens.m4, m4/utimecmp.m4: New files.
48418         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
48419         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
48420         prereq.m4, sha.m4: Import changes from coreutils.
48421
48422 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48423
48424         More merge from coreutils.
48425         * modules/raise, modules/readtokens0, modules/utimens:
48426         * modules/utimecmp, module/xnanosleep: New files.
48427         * modules/strftime: Add lib/strftime.h.
48428         Change include from <time.h> to "strftime.h".
48429         * modules/yesno: Add lib/yesno.h.
48430         * modules/backupfile: Remove lib/addext.c.
48431         * modules/euidaccess: Add stat-macros.h.
48432         * modules/canonicalize, modules/euidaccess,
48433         modules/filemode, modules/lchown, modules/makepath,
48434         modules/rmdir, modules/stat: Likewise.
48435
48436 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48437
48438         Merge from tar.
48439         * lib/argp-help.c (make_hol, hol_append): Don't assume that
48440         SIZE_MAX is a valid preprocessor constant.
48441         (__argp_basename): Change from "#ifndef _LIBC"
48442         to "#ifndef __argp_short_program_name", so that
48443         we don't compile these functions for tar.
48444
48445         More merges from coreutils.
48446         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
48447         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
48448         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
48449         * lib/addext.c: Remove; no longer needed.
48450         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
48451         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
48452         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
48453         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
48454         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
48455         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
48456         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
48457         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
48458         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
48459         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
48460         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
48461         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
48462         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
48463         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
48464         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
48465         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
48466         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
48467         Import changes from coreutils.
48468
48469 2004-08-05  Simon Josefsson  <jas@extundo.com>
48470
48471         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
48472
48473 2004-08-05  Simon Josefsson  <jas@extundo.com>
48474
48475         * m4/getsubopt.m4: New file.
48476
48477 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48478
48479         Merge from coreutils.
48480
48481         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
48482         * m4/getcwd-path-max.m4: New files.
48483
48484         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
48485         FILESYSTEM_PREFIX_LEN ->
48486         FILE_SYSTEM_PREFIX_LEN.
48487         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
48488         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
48489         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
48490         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
48491
48492         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
48493         prerequisite modules now handle the DOS stuff.
48494         Don't check for unistd.h.
48495
48496 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48497
48498         Merge from coreutils.
48499
48500         * lib/.gdb-history: Remove; this doesn't belong here.
48501
48502         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
48503         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
48504         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
48505         * lib/getcwd.c: New files.
48506
48507         * lib/dirname.h: Include <stdbool.h>.
48508         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
48509         for consistency with POSIX terminology.  All uses changed.
48510         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
48511         (strip_trailing_slashes): Use bool for booleans.
48512         * lib/stripslash.c (strip_trailing_slashes): Likewise.
48513
48514         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
48515         sometimes returns a positive errno value even when it succeeds.
48516         (print_errno_message) [!LIBC]: Fall back on strerror if
48517         __strerror_r fails.
48518
48519         * lib/path-concat.c (mempcpy): Don't define if a system header defines
48520         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
48521         (longest_relative_suffix): New function.
48522         (path_concat): Use it.  Assume first argument is not NULL.
48523         Port to DOS.  Omit redundant separators.
48524         Report an error instead of returning NULL.
48525         Use mempcpy instead of memcpy.
48526         (xpath_concat): Remove: not declared or used.
48527
48528         * lib/same.h: Include <stdbool.h>
48529         (same_name): Return bool, not int.
48530         * lib/same.c (same_name): Likewise.
48531         (errno): Don't declare; we assume C89 or better now.
48532
48533         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
48534         if not already defined.
48535
48536         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
48537         * lib/dup-safer.c (errno): Likewise.
48538
48539 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48540
48541         Merge from coreutils.
48542         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
48543         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
48544         * modules/path-concat: Don't depend on strdup.
48545
48546 2004-08-03  Simon Josefsson  <jas@extundo.com>
48547
48548         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
48549         * lib/progname.h: Don't include stdbool.h.
48550
48551 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48552
48553         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
48554         * MODULES.html.sh (func_all_modules): Remove fatal.
48555
48556 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48557
48558         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
48559
48560 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48561
48562         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
48563         working.
48564
48565 2004-08-02  Simon Josefsson  <jas@extundo.com>
48566
48567         * lib/getsubopt.h: New file, with comments from Bruno Haible.
48568         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
48569         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
48570
48571 2004-08-01  Simon Josefsson  <jas@extundo.com>
48572
48573         * lib/xgetdomainname.c: Include stdlib.h, for free().
48574
48575 2004-07-19  Bruno Haible  <bruno@clisp.org>
48576
48577         * MODULES.html.sh (func_all_modules): Add dummy.
48578
48579 2004-07-16  Simon Josefsson  <jas@extundo.com>
48580
48581         * modules/dummy: New file.
48582
48583 2004-07-16  Simon Josefsson  <jas@extundo.com>
48584
48585         * lib/dummy.c: New file.
48586
48587 2004-07-16  Bruno Haible  <bruno@clisp.org>
48588
48589         * lib/backupfile.h: Add extern "C" for C++.
48590         * lib/closeout.h: Likewise.
48591         * lib/copy-file.h: Likewise.
48592         * lib/findprog.h: Likewise.
48593         * lib/full-write.h: Likewise.
48594         * lib/pathname.h: Likewise.
48595         * lib/progname.h: Likewise.
48596         * lib/stpcpy.h: Likewise.
48597         * lib/stpncpy.h: Likewise.
48598         * lib/strcase.h: Likewise.
48599         * lib/strstr.h: Likewise.
48600         * lib/xalloc.h: Likewise.
48601
48602         * lib/mbswidth.h: Add extern "C" for C++.
48603         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
48604
48605 2004-07-13  Robert Millan  <robertmh@gnu.org>
48606
48607         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
48608
48609 2004-07-09  Simon Josefsson  <jas@extundo.com>
48610
48611         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
48612         failed without this.)
48613
48614 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48615
48616         * modules/chown (Files): Add lib/fchown-stub.c, since
48617         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
48618
48619 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48620
48621         * lib/fchown-stub.c: New file.
48622
48623 2004-06-24  Jim Meyering  <jim@meyering.net>
48624
48625         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
48626
48627 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48628
48629         * modules/argz: Omit "#include".
48630
48631         * MODULES.html.sh (func_all_modules): Add calloc, to match
48632         2004-06-01 addition of calloc module.
48633
48634 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48635
48636         * m4/argz.m4: New file, which is autoupdated from libtool.
48637
48638 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48639
48640         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
48641         libtool.
48642
48643 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48644
48645         * config/srclist-update: Don't insist on "USA." before the
48646         close-comment, as libtool omits the period and puts the */ on a
48647         separate line.
48648         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
48649         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
48650
48651 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
48652
48653         * modules/argz: New file.
48654         * MODULES.html.sh (func_all_modules): Add argz.
48655
48656 2004-06-12  Jim Meyering  <jim@meyering.net>
48657         and  Paul Eggert  <eggert@cs.ucla.edu>
48658
48659         * modules/hash (Files): Add lib/xalloc.h.
48660         * modules/pipe (Depends-on): Add wait-process.
48661         * modules/stat (Depends-on): Add xalloc.
48662         * modules/userspec (Files): Add lib/userspec.h.
48663         * modules/xstrto
48664
48665         Upgrade from gettext-0.13.
48666         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
48667         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
48668         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
48669
48670 2004-06-10  Jim Meyering  <jim@meyering.net>
48671
48672         * lib/calloc.c: New file.
48673
48674 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
48675
48676         * lib/getdate.y (yylex): Allow space between sign and number.
48677         Problem reported by Dan Jacobson.
48678
48679 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48680
48681         Merge from coreutils CVS.
48682
48683         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
48684         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
48685         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
48686         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
48687         xstrtol.m4: Fix copyright date and/or serial number.
48688
48689         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
48690         See if we need an fchown replacement.
48691         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
48692         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
48693         and use the replacement function if we detect either defect.
48694
48695         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
48696         gl_UTIMECMP.
48697
48698 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48699         and  Jim Meyering  <jim@meyering.net>
48700
48701         Merge from coreutils CVS.
48702
48703         * lib/stat-macros.h: New file, with contents from file-type.h
48704         and coreutils' system.h.
48705         * lib/file-type.c: Include "stat-macros.h".
48706         * lib/file-type.h (file_type): Move all macro definitions to new file,
48707         stat-macros.h.
48708
48709         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
48710         Wrap old code with this conditional.
48711         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
48712         function that does not dereference symlinks.
48713         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
48714
48715         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
48716         dependency problems.
48717         (xreadlink): Accept new arg SIZE, for efficiency.
48718         All decls and uses changed.
48719         * lib/xreadlink.h: Include <stddef.h>, for size_t.
48720
48721         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
48722         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
48723
48724         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
48725         sysexits.h.
48726
48727 2004-06-01  Jim Meyering  <jim@meyering.net>
48728
48729         * m4/calloc.m4: New file.
48730
48731 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
48732
48733         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
48734         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
48735         Also, fix a typo in a diagnostic.
48736
48737 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
48738
48739         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
48740         or AC_FUNC_REALLOC.
48741
48742 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
48743
48744         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
48745         macros to be defined.
48746         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
48747         the allocator returns NULL because the requested size is zero.
48748
48749 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
48750
48751         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
48752         var.  Add comment explaining why libc still defines it.  This
48753         merges the following patch from glibc:
48754         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
48755
48756 2004-05-20  Andreas Schwab  <schwab@suse.de>
48757
48758         * m4/free.m4: Replace free if it not known to work, not the other
48759         way round.
48760
48761 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
48762
48763         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
48764         present in glibc since revision 1.1 of this file.
48765         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
48766         obstack_alignment_mask, obstack_alloc, obstack_base,
48767         obstack_blank, obstack_blank_fast, obstack_chunk_size,
48768         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
48769         obstack_grow0, obstack_init, obstack_int_grow,
48770         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
48771         obstack_next_free, obstack_object_size, obstack_ptr_grow,
48772         obstack_ptr_grow_fast, obstack_room): Remove declarations of
48773         nonexistent functions.
48774
48775 2004-05-18  Karl Berry  <karl@gnu.org>
48776
48777         * config/srclist.txt: break link for vasnprintf.c.
48778
48779 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48780
48781         Port obstack to the AS/400, where pointers are 16 bytes wide and
48782         you cannot cast an integer to a valid pointer.  This patch is
48783         currently waiting to be integrated into glibc; see
48784         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
48785
48786         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
48787         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
48788         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
48789         (struct obstack): temp member is now a union of a pointer and
48790         an integer, instead of an integer.  All integer uses changed.
48791         This does not affect the physical layout of struct obstack,
48792         except on hosts (like the AS/400) where the size or alignment of
48793         void * is greater than that of ptrdiff_t.
48794         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
48795         __STDC__)]: Store temporary in pointer member of union, not
48796         integer member.
48797         * lib/obstack.c: Include <stddef.h>, for offsetof.
48798         (struct fooalign): Remove; it doesn't need a name.
48799         (union fooround): Change double to long double, and add void *.
48800         (DEFAULT_ALIGNMENT): Use offsetof to compute.
48801         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
48802         not a macro.  Hence the values are always int; so remove all
48803         casts-to-int in uses.
48804
48805 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48806
48807         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
48808         we can get this patch merged into glibc.
48809
48810 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48811             Paul Eggert  <eggert@cs.ucla.edu>
48812
48813         * m4/argp: Depend on alloca.
48814
48815 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48816             Paul Eggert  <eggert@cs.ucla.edu>
48817
48818         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
48819         freecoding.
48820
48821 2004-05-17  Bruno Haible  <bruno@clisp.org>
48822
48823         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
48824         precision that consists of a '.' followed by an empty digit string.
48825         Patch by Tor Lillqvist <tml@iki.fi>.
48826
48827 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48828
48829         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
48830         for backward compatibility with older code.  We need our own
48831         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
48832         it under some other name, and our alloca.h will define it.
48833
48834 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48835             Derek Price  <derek@ximbiot.com>
48836
48837         * lib/alloca.c: Include <alloca.h>, to get our interface.
48838         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
48839         include <alloca.h> first.  Use C89 prototype for alloca; this
48840         requires including <stddef.h> for size_t.  Use extern "C" if C++.
48841         Use #elif for simplicity, since we can assume C89 now.
48842         Don't try to source the system alloca.h since it will not be found
48843         and to prevent recursively including its replacement.
48844         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
48845         * lib/regex.c: Likewise.
48846
48847 2004-05-16  Derek Price  <derek@ximbiot.com>
48848             Paul Eggert  <eggert@cs.ucla.edu>
48849
48850         getline cleanup.  This changes the getndelim2 API: both order of
48851         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
48852         no delimiter).
48853
48854         * lib/getline.c: Don't include stddef.h or stdio.h, since our
48855         interface does that.
48856         (getline): Always use getdelim, so that we don't have two
48857         copies of this code.
48858         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
48859         if available.
48860         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
48861         (GETNDELIM2_MAXIMUM): New macro.
48862         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
48863         instead of the old practice of delim2==0.  All callers changed.
48864         Return -1 on overflow, instead of returning junk.
48865         Do not set *linesize unless allocation succeeds.
48866         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
48867         that we include sys/types.h.
48868         * lib/getnline.h: Likewise.
48869         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
48870         (getndelim2): Reorder arguments.
48871         * lib/getnline.c (getnline, getndelim):
48872         Don't discard the NMAX argument.
48873         (getnline): Invoke getndelim, to avoid code duplication.
48874         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
48875         of (size_t) -1 by callers of the getnline family.
48876
48877 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48878
48879         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
48880         Check for gettimeofday.
48881         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
48882         Check for settimeofday, stime.
48883
48884 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48885
48886         * lib/nanosleep.c (suspended): Change its type from int to
48887         sig_atomic_t volatile.
48888         (first_call): Make it private to rpl_nanosleep, and have it
48889         be zero initially as that's a bit faster.
48890         (my_usleep): Round up fractional times instead of truncating them,
48891         as this is the usual meaning for 'sleep'.
48892
48893         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
48894         doesn't work.
48895         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
48896         (ENOSYS): Define if not defined.
48897         (settime): Fall back on stime if it exists and settimeofday fails.
48898         But don't bother with fallbacks if a method fails with errno == EPERM.
48899
48900 2004-05-11  Jim Meyering  <jim@meyering.net>
48901
48902         Prior to this change, the save_cwd caller required read access to the
48903         current directory on most systems (ones with the fchdir function).
48904
48905         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
48906         fails, try write-only, and finally, resort to using xgetcwd.
48907
48908 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
48909
48910         * lib/obstack.c, obstack.h: Import changes from libc.
48911
48912 2004-04-28  Bruno Haible  <bruno@clisp.org>
48913
48914         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
48915         also implicitly appends .exe to executables.
48916         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
48917         accepts Windows pathnames.
48918         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48919         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48920         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48921         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48922         Reported by Derek Robert Price <derek@ximbiot.com>.
48923
48924 2004-04-21  Karl Berry  <karl@gnu.org>
48925
48926         * config/srclist.txt (localcharset.c): break sync.
48927
48928 2004-04-20  Paul Eggert  <eggert@twinsun.com>
48929
48930         * m4/host-os.m4: Add a copyright notice.
48931
48932 2004-04-20  Jim Meyering  <jim@meyering.net>
48933
48934         Change UTILS_ to gl_ in AC_DEFINE'd names.
48935         Change utils_- and jm_-prefixed variables, too.
48936         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
48937         UTILS_FUNC_MKDIR_TRAILING_SLASH.
48938         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
48939
48940         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
48941         Don't emit trailing blanks.
48942         Also rename jm_-prefixed variables to have gl_ prefix.
48943
48944         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
48945         Also rename jm_-prefixed variables to have gl_ prefix.
48946
48947         * m4/jm-macros.m4: Reflect the renamings.
48948         * m4/prereq.m4: Likewise.
48949
48950 2004-04-20  Jim Meyering  <jim@meyering.net>
48951
48952         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
48953         memory.
48954
48955 2004-04-20  Jim Meyering  <jim@meyering.net>
48956             Bruno Haible  <bruno@clisp.org>
48957
48958         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
48959         memory when realloc fails.
48960
48961 2004-04-19  Jim Meyering  <jim@meyering.net>
48962
48963         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
48964         now that readutmp.c may call `free (0)'.
48965
48966 2004-04-19  Bruno Haible  <bruno@clisp.org>
48967
48968         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
48969         * m4/inttypes_h.m4: Likewise.
48970         * m4/stdint_h.m4: Likewise.
48971         * m4/intmax_t.m4: Likewise.
48972         * m4/uintmax_t.m4: Likewise.
48973
48974 2004-04-18  Jim Meyering  <jim@meyering.net>
48975
48976         * m4/prereq.m4: Don't forbid jm_ prefix.
48977
48978         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
48979         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
48980         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
48981         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
48982         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
48983         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
48984         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
48985         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
48986         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
48987         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
48988         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
48989         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
48990         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
48991         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
48992         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
48993         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
48994         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
48995         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
48996         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
48997
48998 2004-04-18  Jim Meyering  <jim@meyering.net>
48999
49000         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
49001         failure, don't leak memory and do call END_UTMP_ENT.
49002
49003 2004-04-16  Jim Meyering  <jim@meyering.net>
49004
49005         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
49006         coreutils' stat program.
49007         (gl_PREREQ): Don't require jm_PREREQ_STAT.
49008
49009 2004-04-11  Paul Eggert  <eggert@twinsun.com>
49010
49011         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
49012         C89.
49013         (CHAR_BIT): Remove, since we assume C89.
49014         Include <stdint.h> if available, as per current Autoconf CVS advice.
49015
49016 2004-03-31  Jim Meyering  <jim@meyering.net>
49017
49018         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
49019         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
49020         * m4/xalloc.m4: Likewise.
49021
49022 2004-03-30  Paul Eggert  <eggert@twinsun.com>
49023
49024         Merge from coreutils.
49025
49026         * m4/inttostr.m4: New file.
49027         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
49028         Require AM_STDBOOL_H and gl_TIMESPEC instead.
49029         Require gl_CLOCK_TIME.
49030         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
49031
49032 2004-03-30  Paul Eggert  <eggert@twinsun.com>
49033
49034         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
49035         not bool, to be more consistent with Unix conventions.
49036         Suggested by Bruno Haible.
49037
49038         Merge from coreutils.
49039
49040         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
49041         * lib/umaxtostr.c: New files.
49042
49043         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
49044         the usual <time.h> dance.
49045         (get_date): Change signature to support fractional time stamps.
49046         All callers changed.
49047         * lib/getdate.y: Include "getdate.h" first, as we can now
49048         assume C89 and don't need to worry about 'const'.
49049         Similarly, include "unlocked-io.h" near start, not in middle.
49050         Include <limits.h>.
49051         (textint.value): Use long int rather than int.
49052         (textint.digits): Use size_t rather than int.
49053         (BILLION, LOG10_BILLION): New constants.
49054         (parser_control): New member rel_ns.  Members day_ordinal,
49055         time_zone, month, day, hour, minutes, rel_year, rel_month,
49056         rel_day, rel_hour, rel_minutes, rel_seconds
49057         are now long int, not int.  Member seconds is now struct timespec,
49058         not int.  New member timespec_seen.  Members dates_seen, days_seen,
49059         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
49060         not int.
49061         (%union.intval): Now long int, not int.
49062         New member timespec.
49063         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
49064         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
49065         (spec): Now is a timespec or an item list.
49066         (timespec, items): New nonterminals.
49067         (time, rel, relunit, number, get_date):
49068         Add support for fractional seconds.
49069         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
49070         (gmtime, localtime, mktime): Remove decls; not needed with C89.
49071         (to_hour): First arg is now long int, not int.
49072         (to_year): Returns long int, not int.
49073         Don't treat year -70 like 70.
49074         (tm_diff): Returns long int, not int.
49075         (lookup_word): Use bool instead of int when appropriate.
49076         (yylex): Use size_t for count, not int.
49077         Detect overflow when parsing large integer constants.
49078         Add support for fractions.
49079         (get_date): Make pointers 'const' if possible.
49080         Use more-portable code to detect integer overflow.
49081         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
49082         Don't use ctime; it's not reliable if the year has >4 digits.
49083
49084         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
49085         This is for compatibility with BSD.
49086
49087         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
49088         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
49089         From coreutils' system.h.
49090
49091         * lib/userspec.c: Don't include "posixver.h".
49092         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
49093         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
49094         compatible extension.  Simplify code by removing a boolean int
49095         that was always nonzero if a string was nonnull.
49096
49097 2004-03-30  Jim Meyering  <jim@meyering.net>
49098
49099         Merge from coreutils.
49100
49101         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
49102         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
49103         on some systems one must include <grp.h> before it.
49104         Reported by Christian Krackowizer.
49105
49106 2004-03-30  Jim Meyering  <jim@meyering.net>
49107
49108         Merge from coreutils.
49109
49110         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
49111
49112         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
49113         an empty input stream.
49114
49115         * lib/readtokens.c: Include <stdbool.h>.
49116         (readtoken): Use `size_t' rather than int/long.
49117         All callers adjusted.
49118         Use `bool' rather than `int' where appropriate.
49119         Use memset rather than an explicit loop.
49120         Use x2nrealloc rather than xrealloc.
49121         Allow the use of `\0' as a delimiter.
49122         (readtokens): Likewise.
49123         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
49124
49125 2004-03-30  Jim Meyering  <jim@meyering.net>
49126
49127         * m4/realloc.m4: Remove file, since now it does no more than
49128         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
49129         the `configure.ac' section of module/realloc.
49130         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
49131
49132 2004-03-30  Bruno Haible  <bruno@clisp.org>
49133
49134         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
49135         nonnull.
49136
49137 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49138
49139         Merge changes to getloadavg.c from coreutils and Emacs.
49140
49141         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
49142         Define to an expression, not to the empty string.
49143         Include cloexec.h and xalloc.h.
49144         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
49145         Use set_cloexec_flag rather than rolling our own.
49146         * lib/cloexec.c, lib/cloexec.h: New files.
49147
49148 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49149
49150         * m4/cloexec.m4: New file.
49151
49152 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49153
49154         * lib/getopt.h: Sync with libc CVS.
49155
49156 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49157             Bruno Haible  <bruno@clisp.org>
49158
49159         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
49160         mbswidth.
49161
49162 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49163             Bruno Haible  <bruno@clisp.org>
49164
49165         * lib/mbswidth.h: Include <wchar.h> only if
49166         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
49167         <wchar.h>.
49168         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
49169
49170 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49171
49172         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
49173         Sync with libc CVS.
49174         * lib/getopt_int.h: New file, also synced from libc.
49175
49176 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49177
49178         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
49179         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
49180         Bring back getopt.c, getopt.h, getopt1.c.
49181
49182 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49183
49184         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
49185         All uses changed.  Check for sa_sigaction member; this fixes
49186         a bug first reported by Jason Andrade in
49187         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49188
49189 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49190
49191         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
49192         '#if' expressions.  Unlike the code it replaces, it does not
49193         depend on (defined _SC_PAGESIZE).  However, it does depend on
49194         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
49195         first reported by Jason Andrade in
49196         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49197
49198 2004-02-25  Simon Josefsson  <jas@extundo.com>
49199
49200         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
49201
49202 2004-02-25  Simon Josefsson  <jas@extundo.com>
49203
49204         * lib/strdup.h: New file.
49205         * lib/strdup.c: Include it.
49206         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
49207         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
49208
49209 2004-02-23  Karl Berry  <karl@gnu.org>
49210
49211         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
49212         (from fencepost.gnu.org:/gd/gnuorg).
49213
49214 2004-02-23  Karl Berry  <karl@gnu.org>
49215
49216         * config/srclistvars.sh (GNUORG) [karl]: redefine.
49217         * config/srclist.txt: add maintain/standards documents.
49218
49219 2004-02-18  Bruno Haible  <bruno@clisp.org>
49220
49221         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
49222         Reported by Derek Robert Price <derek@ximbiot.com>.
49223
49224 2004-02-16  Karl Berry  <karl@gnu.org>
49225
49226         * config/mkinstalldirs, install-sh: update from automake.
49227
49228 2004-02-06  Karl Berry  <karl@gnu.org>
49229
49230         * m4/po.m4: update from gettext 0.14.1.
49231
49232 2004-02-06  Karl Berry  <karl@gnu.org>
49233
49234         * lib/config.charset: update from gettext 0.14.1.
49235
49236 2004-02-05  Paul Eggert  <eggert@twinsun.com>
49237
49238         Add comments and code, prompted by suggestions from Bruno Haible
49239         for sh-quote.
49240         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
49241         describing the enum quoting_style values.
49242         * lib/quotearg.c (quotearg_alloc): New function.
49243         (quotearg_buffer_restyled): Treat lone { and } as special.
49244         Treat = as special.  Work around bug with older shells
49245         that "see" a '\' that is really the 2nd byte of a multibyte char.
49246         Quote empty string with shell_quoting_style.
49247
49248 2004-02-03  Bruno Haible  <bruno@clisp.org>
49249
49250         * m4/pipe.m4: New file, from GNU gettext.
49251
49252 2004-02-03  Bruno Haible  <bruno@clisp.org>
49253
49254         * lib/pipe.h: New file, from GNU gettext.
49255         * lib/pipe.c: New file, from GNU gettext.
49256
49257 2004-01-27  Bruno Haible  <bruno@clisp.org>
49258
49259         * m4/execute.m4: New file, from GNU gettext.
49260
49261 2004-01-27  Bruno Haible  <bruno@clisp.org>
49262
49263         * lib/execute.h: New file, from GNU gettext.
49264         * lib/execute.c: New file, from GNU gettext.
49265         * lib/w32spawn.h: New file, from GNU gettext.
49266
49267 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49268
49269         Merge from diffutils.
49270
49271         * lib/file-type.c (file_type): Add typed memory objects.
49272         * lib/file-type.h (S_TYPEISTMO): New macro.
49273
49274         * lib/c-stack.h (c_stack_action): Remove argv argument.
49275         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
49276         (die): Don't calculate message unless segv_action returns.
49277         (get_stack_location, min_address_from_argv, max_address_from_argv,
49278         volatile stack_base, volatile_stack_size): Remove.
49279         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
49280         that every segmentation violation is a stack overflow.  (Ouch!)
49281         See Debian bug 136249 (still outstanding) for more info about why
49282         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
49283
49284 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49285
49286         Exit-status fix from coreutils.
49287
49288         Use exit_failure consistently in place of EXIT_FAILURE,
49289         so that program exit statuses are consistent on failure.
49290
49291         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
49292         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
49293         * lib/argmatch.h: Comment fix to match the above.
49294         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
49295         Now a macro referring to exit_failure, instead of a separate
49296         variable.  Include "exitfail.h" to get it.
49297         * lib/xstrtol.h: Include "exitfail.h".
49298         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
49299
49300         * lib/long-options.c (parse_long_options): Use prototype
49301         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
49302         for clarity.
49303
49304 2004-01-21  Jim Meyering  <jim@meyering.net>
49305
49306         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
49307         so as not to conflict with a different-sized __mktime_internal
49308         function in GNU libc.
49309         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
49310         Problem building statically-linked `ls' reported by Michael Brunnbauer.
49311
49312 2004-01-20  Karl Berry  <karl@gnu.org>
49313
49314         * config/config.guess: update from config.
49315
49316         * config/srclistvars.sh: GNUWWWLICENSES for karl.
49317
49318 2004-01-20  Bruno Haible  <bruno@clisp.org>
49319
49320         Safer stack allocation.
49321         * lib/setenv.c: Include allocsa.h.
49322         (alloca): Remove fallback definition.
49323         (freea): Remove macro.
49324         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
49325         instead of freea.
49326
49327 2004-01-20  Bruno Haible  <bruno@clisp.org>
49328
49329         * m4/eealloc.m4: New file, from GNU gettext.
49330
49331 2004-01-20  Bruno Haible  <bruno@clisp.org>
49332
49333         * m4/allocsa.m4: New file, from GNU gettext.
49334
49335 2004-01-20  Bruno Haible  <bruno@clisp.org>
49336
49337         * lib/xallocsa.h: New file, from GNU gettext.
49338         * lib/xallocsa.c: New file, from GNU gettext.
49339
49340 2004-01-20  Bruno Haible  <bruno@clisp.org>
49341
49342         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
49343
49344 2004-01-20  Bruno Haible  <bruno@clisp.org>
49345
49346         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
49347         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
49348         specially.
49349
49350 2004-01-20  Bruno Haible  <bruno@clisp.org>
49351
49352         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
49353         patch.
49354
49355 2004-01-20  Bruno Haible  <bruno@clisp.org>
49356
49357         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
49358
49359 2004-01-20  Bruno Haible  <bruno@clisp.org>
49360
49361         * lib/eealloc.h: New file.
49362
49363 2004-01-20  Bruno Haible  <bruno@clisp.org>
49364
49365         * lib/binary-io.h: Avoid warnings on Cygwin.
49366
49367 2004-01-20  Bruno Haible  <bruno@clisp.org>
49368
49369         * lib/allocsa.h: New file, from GNU gettext.
49370         * lib/allocsa.c: New file, from GNU gettext.
49371
49372 2004-01-18  Karl Berry  <karl@gnu.org>
49373
49374         * doc/gpl.texi, doc/lgpl.texi: new files.
49375
49376 2004-01-18  Karl Berry  <karl@gnu.org>
49377
49378         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
49379         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
49380
49381 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49382
49383         Merge from coreutils.
49384
49385         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
49386         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
49387         (gl_DEFAULT_POSIX2_VERSION): Move
49388         the documentation from 'configure' into 'config.hin',
49389         so that 'configure --help' isn't burdened by it and
49390         we don't have to worry about its formatting there.
49391         Reword the documentation so that it's more succinct
49392         and can be run together into a single paragraph.
49393         * m4/same.m4 (gl_SAME): Check for pathconf.
49394
49395 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49396
49397         Merge from coreutils.
49398
49399         * lib/posixver.c: Include posixver.h.
49400
49401         * lib/same.c: Include <stdbool.h>, <limits.h>.
49402         (_POSIX_NAME_MAX): Define if not defined.
49403         (MIN): New macro.
49404         (same_name): If file names are silently truncated, report
49405         that the file names are the same if they are the same after
49406         the silent truncation.
49407
49408         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
49409         conversion function.
49410         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
49411         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
49412         longer needed.
49413
49414 2004-01-15  Jim Meyering  <jim@meyering.net>
49415
49416         Merge from coreutils.
49417
49418         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
49419         if no library is required.
49420         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
49421         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
49422         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
49423         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
49424         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
49425         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
49426         value, $ac_cv_search_crypt, if it's "none required".
49427         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
49428         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
49429         not gl_FUNC_GETLOADAVG.
49430         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
49431         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
49432
49433 2004-01-15  Jim Meyering  <jim@meyering.net>
49434
49435         Merge from coreutils.
49436
49437         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
49438         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
49439         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
49440
49441         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
49442         optional configure-time default.
49443
49444         * lib/version-etc.c (version_etc_copyright): Update copyright date.
49445
49446         * lib/xreadlink.c (xreadlink): Correct outdated comment.
49447
49448 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
49449
49450         Merge from coreutils.
49451
49452         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
49453         value, $ac_cv_search_nanosleep, if it's "none required".
49454
49455 2004-01-14  Paul Eggert  <eggert@twinsun.com>
49456
49457         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
49458         with like-named macro in fnmatch.c.
49459         (EXT): Use an internal constant instead.
49460
49461         Merge fnmatch patches from glibc.
49462         * lib/fnmatch.c (mbsinit): Remove define.
49463         Add libc_hidden_ver (__fnmatch, fnmatch).
49464         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
49465         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
49466
49467 2004-01-14  Karl Berry  <karl@gnu.org>
49468
49469         * config/install-sh: update from automake.
49470
49471 2004-01-13  Karl Berry  <karl@gnu.org>
49472
49473         * config/install-sh: update from automake.
49474
49475 2004-01-09  Karl Berry  <karl@gnu.org>
49476
49477         * config/install-sh: update from automake.
49478
49479 2004-01-05  Karl Berry  <karl@gnu.org>
49480
49481         * config/config.{sub,guess}: update from config.
49482
49483 2003-12-31  Karl Berry  <karl@gnu.org>
49484
49485         * config/depcomp: update from automake.
49486
49487 2003-12-14  Karl Berry  <karl@gnu.org>
49488
49489         * lib/config.charset: update from gettext-runtime.
49490
49491 2003-12-03  Paul Eggert  <eggert@twinsun.com>
49492
49493         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
49494         Bug reported by Alfred M. Szmidt.
49495
49496 2003-12-03  Bruno Haible  <bruno@clisp.org>
49497
49498         * m4/gettext.m4: Upgrade from gettext-0.13.
49499         * m4/po.m4: Upgrade from gettext-0.13.
49500         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
49501         * m4/intmax.m4: New file, from gettext-0.13.
49502         * m4/printf-posix.m4: New file, from gettext-0.13.
49503
49504 2003-11-29  Karl Berry  <karl@gnu.org>
49505
49506         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
49507
49508 2003-11-25  Paul Eggert  <eggert@twinsun.com>
49509             Bruno Haible  <bruno@clisp.org>
49510
49511         * lib/printf-parse.h: Don't include sys/types.h.
49512         (ARG_NONE): New macro.
49513         (char_directive): Change type of *arg_index fields to size_t.
49514         * lib/printf-parse.c: Don't include sys/types.h.
49515         (SSIZE_MAX): Remove macro.
49516         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
49517         Remove unnecessary overflow check.
49518         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
49519         fields.
49520
49521 2003-11-25  Bruno Haible  <bruno@clisp.org>
49522
49523         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
49524
49525 2003-11-25  Bruno Haible  <bruno@clisp.org>
49526
49527         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
49528         gt_TYPE_SSIZE_T.
49529
49530 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49531
49532         * modules/alloca: Remove dependency on xalloc.
49533
49534 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49535
49536         * lib/alloca.c: Remove dependency on xalloc module.
49537         (xalloc_die): Remove.
49538         (memory_full) [!defined emacs]: New macro.
49539         [!defined emacs]: Don't include xalloc.h.
49540         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
49541         address arithmetic overflows.  Change datatypes a bit to avoid
49542         unnecessary casts.
49543
49544 2003-11-22  Jim Meyering  <jim@meyering.net>
49545
49546         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
49547         s/size/size_t/.
49548
49549 2003-11-21  Karl Berry  <karl@gnu.org>
49550
49551         * config/config.{sub,guess}: update from config.
49552
49553 2003-11-18  Karl Berry  <karl@gnu.org>
49554
49555         * config/config.{sub,guess}: update from config.
49556
49557         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
49558
49559 2003-11-17  Paul Eggert  <eggert@twinsun.com>
49560
49561         * README: Mention that S+T cannot overflow if S is the size of
49562         an existing object and T is sufficiently small.
49563
49564 2003-11-17  Jim Meyering  <jim@meyering.net>
49565
49566         On systems without utime and without a utimes function capable of
49567         dealing with a NULL struct utimbuf* argument, this utime replacement
49568         could -- in unusual circumstances -- leak a file descriptor.
49569         * lib/utime.c: Include <unistd.h> and <errno.h>.
49570         (utime_null): Be sure to close `fd' and to preserve errno.
49571         Reported by Geoff Collyer via Arnold Robbins.
49572
49573 2003-11-17  Bruno Haible  <bruno@clisp.org>
49574
49575         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
49576         (Depends-on): Add xsize.
49577
49578 2003-11-17  Bruno Haible  <bruno@clisp.org>
49579
49580         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
49581
49582 2003-11-17  Bruno Haible  <bruno@clisp.org>
49583
49584         * lib/vasnprintf.c (alloca): Remove fallback definition.
49585         (freea): Remove definition.
49586         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
49587         Reported by Paul Eggert.
49588
49589 2003-11-16  Paul Eggert  <eggert@twinsun.com>
49590             Bruno Haible  <bruno@clisp.org>
49591
49592         Protect against address arithmetic overflow.
49593         * lib/printf-args.h: Include stddef.h.
49594         (arguments): Change type of field 'count' to size_t.
49595         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
49596         'unsigned int' where appropriate.
49597         * lib/printf-parse.h: Include sys/types.h.
49598         (char_directive): Change type of *arg_index fields to ssize_t.
49599         (char_directives): Change type of fields 'count', max_*_length to
49600         size_t.
49601         * lib/printf-parse.c: Include sys/types.h and xsize.h.
49602         (SSIZE_MAX): Define fallback value.
49603         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
49604         instead of 'int' where appropriate. Check a_allocated, d_allocated
49605         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
49606         * lib/vasnprintf.c: Include xsize.h.
49607         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
49608         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
49609         overflow. Avoid wraparound when converting a width or precision from
49610         decimal to binary.
49611
49612 2003-11-16  Bruno Haible  <bruno@clisp.org>
49613
49614         Update from GNU gettext.
49615         * lib/printf-parse.c: Generalize to it can be compiled for wide
49616         strings.
49617         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
49618         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
49619         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
49620         SNPRINTF): New macros.
49621         Don't include <alloca.h> if the file is used inside libintl.
49622         (local_wcslen): New function, for Solaris 2.5.1.
49623         (VASNPRINTF): Use it instead of wcslen.
49624
49625 2003-11-16  Bruno Haible  <bruno@clisp.org>
49626
49627         * lib/xsize.h (xmax): New function.
49628         (xsum, xsum3, xsum4): Declare as "pure" functions.
49629
49630 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49631
49632         * modules/xalloc (Files): Undo latest change, since xalloc.h
49633         no longer needs SIZE_MAX or PTRDIFF_MAX.
49634
49635 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49636
49637         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
49638         gl_PTRDIFF_MAX.
49639
49640 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49641
49642         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
49643         "return", to pacify some unknown compiler.  Problem reported
49644         by Joerg Schilling.
49645
49646 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49647
49648         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
49649         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
49650         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
49651         heuristic is just as accurate as far as we know, and it removes a
49652         dependency on size_max.m4 and ptrdiff_max.m4.
49653
49654 2003-11-11  Bruno Haible  <bruno@clisp.org>
49655
49656         * modules/xsize (Files): Add m4/size_max.m4.
49657         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
49658
49659 2003-11-11  Bruno Haible  <bruno@clisp.org>
49660
49661         * m4/size_max.m4: New file.
49662         * m4/ptrdiff_max.m4: New file.
49663         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
49664         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
49665         (gl_XALLOC): Invoke it.
49666
49667 2003-11-11  Bruno Haible  <bruno@clisp.org>
49668
49669         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
49670         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
49671         defined.
49672
49673 2003-11-10  Paul Eggert  <eggert@twinsun.com>
49674
49675         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
49676         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
49677         rejected some allocations of exactly SIZE_MAX - 2 bytes.
49678         From Bruno Haible.
49679         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
49680         not (size_t) -1, since it's defined here.
49681
49682 2003-11-09  Karl Berry  <karl@gnu.org>
49683
49684         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
49685
49686 2003-11-06  Paul Eggert  <eggert@twinsun.com>
49687
49688         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
49689         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
49690         Reject sizes of exactly SIZE_MAX bytes.
49691         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
49692         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
49693
49694 2003-11-05  Bruno Haible  <bruno@clisp.org>
49695
49696         * lib/xsize.h: Include limits.h, to avoid a possible collision with
49697         SIZE_MAX defined in <limits.h> on Solaris.
49698
49699 2003-11-04  Jim Meyering  <jim@meyering.net>
49700
49701         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
49702         variable names, rather than @VAR@.
49703         * modules/poll: Likewise.
49704
49705 2003-11-04  Bruno Haible  <bruno@clisp.org>
49706
49707         * modules/xsize: New file.
49708         * modules/linebreak: Depend on xsize.
49709         * MODULES.html.sh (func_all_modules): Add xsize.
49710
49711 2003-11-04  Bruno Haible  <bruno@clisp.org>
49712
49713         * m4/xsize.m4: New file.
49714
49715 2003-11-04  Bruno Haible  <bruno@clisp.org>
49716
49717         * lib/xsize.h: New file.
49718         * lib/linebreak.c: Include xsize.h.
49719         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
49720         argument for overflow.
49721         Suggested by Paul Eggert.
49722
49723 2003-11-03  Karl Berry  <karl@gnu.org>
49724
49725         * config/config.{guess,sub}: update from config.
49726
49727 2003-11-03  Jim Meyering  <jim@meyering.net>
49728
49729         * modules/userspec (lib_SOURCES): Add userspec.h.
49730         (Include): Add "userspec.h".
49731         Improve description.
49732
49733 2003-11-03  Jim Meyering  <jim@meyering.net>
49734
49735         * lib/userspec.c: Include "userspec.h".
49736         * lib/userspec.h: New file.
49737
49738 2003-11-03  Bruno Haible  <bruno@clisp.org>
49739
49740         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
49741
49742 2003-11-03  Bruno Haible  <bruno@clisp.org>
49743
49744         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
49745         available, to avoid (extremely rare) race condition.
49746         Suggested by Paul Eggert.
49747
49748 2003-11-02  Karl Berry  <karl@gnu.org>
49749
49750         * config/srclist.txt (vasprintf.c): sync broken, sigh.
49751
49752 2003-10-31  Paul Eggert  <eggert@twinsun.com>
49753
49754         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
49755         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
49756         (read_filesystem_list): Set and use me_type_malloced.
49757         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
49758         whatever the type happens to be), for brevity and consistency.
49759         Check for size calculation overflow on Alphas running OSF/1.
49760
49761 2003-10-31  Jim Meyering  <jim@meyering.net>
49762
49763         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
49764
49765         * lib/linebuffer.c: Include <string.h> for declaration of memset.
49766
49767 2003-10-30  Paul Eggert  <eggert@twinsun.com>
49768             Bruno Haible  <bruno@clisp.org>
49769
49770         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
49771         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
49772
49773 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49774
49775         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
49776         netbsd*-gnu*.  Suggested by Robert Millan.
49777
49778 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49779
49780         * modules/group-member: Depend on stdbool.
49781
49782 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49783
49784         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
49785
49786 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49787
49788         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
49789         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
49790         after the 'gnu' in these cases.  This fixes some bugs in the
49791         previous change, and is based on suggestions by Robert Millan.
49792
49793 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49794
49795         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
49796         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
49797         no longer needed.
49798         * lib/quotearg.c (quotearg_n_options): Use it.
49799         * lib/group-member.c: Include <stdbool.h>.
49800         (free_group_info): Arg is now const *; don't free arg.
49801         (get_group_info): Now returns bool and accepts struct group_info *,
49802         rather than returning a malloc'ed struct group_info *.
49803         All uses changed.  Check for overflow in internal size calculation.
49804
49805         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
49806         rather than xmalloc/xrealloc.
49807         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
49808         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
49809         conformance bug: the old code used a pointer after freeing the
49810         storage that it addressed.
49811         * lib/hash.c (hash_initialize): Simplify the code by using
49812         xalloc_oversized rather than doing it by hand.
49813         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
49814         the buffer preserved.  Use free and xmalloc instead.
49815         * lib/quotearg.c (quotearg_n_options): Likewise.
49816         Use a simpler test for size overflow.  Don't use xalloc_oversized
49817         because unsigned int might be wider than size_t (!); this suggests
49818         that we should switch from unsigned int to size_t for slot numbers.
49819
49820 2003-10-28  Paul Eggert  <eggert@twinsun.com>
49821
49822         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
49823         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
49824         NetBSD kernels.  Requested by Richard Stallman.
49825
49826 2003-10-27  Paul Eggert  <eggert@twinsun.com>
49827
49828         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
49829         to allocate the returned structure.  Do not allocate a subarray,
49830         as x2nrealloc will do that.
49831         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
49832         instead of xnrealloc.
49833         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
49834
49835 2003-10-27  Bruno Haible  <bruno@clisp.org>
49836
49837         * lib/stdbool_.h: Better support for BeOS.
49838
49839 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49840
49841         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
49842         now uses inline.
49843
49844 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49845
49846         * lib/xalloc.h (xalloc_oversized): New static inline function, for
49847         callers that want to do their own size-overflow checking.  Include
49848         <stdbool.h>, since xalloc_oversized returns bool.
49849         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
49850         to use xalloc_oversized.
49851
49852         Add two functions x2realloc, x2nrealloc, for programs that grow
49853         arrays dynamically by doubling their sizes.
49854         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
49855         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
49856         New functions.
49857
49858         Port to C99 semantics for 'inline' of external functions.
49859         Bug reported by Bruno Haible.
49860         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
49861         with the old contents of xnmalloc.
49862         (xnmalloc, xmalloc): Use it.
49863         (xnrealloc_inline): New static inline function,
49864         with the old contents of xnrealloc.
49865         (xnrealloc, xrealloc): Use it.
49866
49867         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
49868         that.
49869
49870 2003-10-26  Karl Berry  <karl@gnu.org>
49871
49872         * config/srclist.txt (COPYING.DOC): no longer available from
49873         /gd/gnuorg; don't know where the ultimate source is.
49874
49875 2003-10-25  Paul Eggert  <eggert@twinsun.com>
49876
49877         Fix several address-calculation bugs in the hash modules,
49878         plus some minor code cleanup.
49879
49880         * lib/hash.h: Include <stdbool.h>, for bool.
49881         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
49882         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
49883         hash_get_n_entries, hash_get_max_bucket_length,
49884         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
49885         hash_rehash): Use size_t rather than unsigned.
49886         * lib/hash.c (struct hash_table, hash_get_n_buckets,
49887         hash_get_n_buckets_used, hash_get_n_entries,
49888         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
49889         hash_get_entries, hash_do_for_each, hash_string, is_prime,
49890         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
49891         Likewise.
49892         (SIZE_MAX): Define if not defined.
49893         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
49894         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
49895         hash_print):
49896         Use const * when possible.
49897         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
49898         (check_tuning): Fix bug: if tuning parameters were very close to
49899         0 or 1, rounding errors could have caused subscript violations.
49900         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
49901         (hash_initialize): Add 'fail:' label
49902         to free table and return NULL, and use it to simplify code.
49903         Use calloc rather than clearing the storage ourself.
49904         (hash_initialize, hash_rehash): Check for arithmetic overflow in
49905         buffer size calculations.
49906         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
49907         Include <stddef.h>, for size_t.
49908         * lib/hash-pjw.c (hash_pjw): Likewise.
49909         Switch to method described by Bruno Haible.
49910         Include <limits.h>, for CHAR_BIT.
49911         (SIZE_BITS): New macro.
49912
49913 2003-10-23  Paul Eggert  <eggert@twinsun.com>
49914
49915         * m4/getline.m4 (AM_FUNC_GETLINE):
49916         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
49917         hosts.  Problem reported by Derek Robert Price in
49918         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
49919         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
49920         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
49921
49922 2003-10-21  Paul Eggert  <eggert@twinsun.com>
49923
49924         * lib/getndelim2.c (getndelim2): When size calculation overflows,
49925         ceiling the allocation at NMAX bytes rather than silently
49926         discarding input bytes before NMAX is reached.  This makes
49927         a difference only if NMAX exceeds SIZE_MAX / 2.
49928
49929         * lib/obstack.c: Merge from glibc.
49930         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
49931         Add libc_hidden_def (_obstack_newchunk).
49932         (_obstack_free) [! defined _LIBC]: Remove.
49933         [defined _LIBC]: Make a strong alias from obstack_free, rather than
49934         a clone of the function body.
49935         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
49936         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
49937
49938         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
49939         glibc.
49940         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
49941         arg to memcpy.
49942
49943         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
49944         (obstack_ptr_grow_fast, obstack_int_grow_fast):
49945         Don't use lvalue casts, as GCC plans to remove support for them
49946         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
49947         was also present in the non-GCC version, indicating that this
49948         code had always been buggy and had never been widely used.
49949         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
49950         Use the fast variant of each macro, rather than copying the
49951         definiens of the fast variant; that way, we'll be more likely to
49952         catch future bugs in the fast variants.
49953
49954 2003-10-20  Bruno Haible  <bruno@clisp.org>
49955
49956         * modules/wait-process: New file.
49957         * MODULES.html.sh (func_all_modules): Add wait-process.
49958
49959 2003-10-20  Bruno Haible  <bruno@clisp.org>
49960
49961         * m4/wait-process.m4: New file.
49962
49963 2003-10-20  Bruno Haible  <bruno@clisp.org>
49964
49965         * lib/wait-process.h: New file, from GNU gettext.
49966         * lib/wait-process.c: New file, from GNU gettext.
49967
49968 2003-10-19  Jim Meyering  <jim@meyering.net>
49969
49970         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
49971         HPUX 10.20.
49972
49973 2003-10-18  Karl Berry  <karl@gnu.org>
49974
49975         * config/config.guess: update from config.
49976
49977 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49978
49979         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
49980         (getgroups): First arg is int, not size_t.
49981         Don't let 'free' mangle errno.
49982
49983 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49984
49985         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
49986
49987 2003-10-16  Karl Berry  <karl@gnu.org>
49988
49989         * config/config.{guess,sub}: update from config.
49990
49991 2003-10-16  Jim Meyering  <jim@meyering.net>
49992
49993         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
49994         memcpy.
49995
49996 2003-10-15  Paul Eggert  <eggert@twinsun.com>
49997
49998         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
49999         (SIZE_MAX): Remove.
50000         (new_exclude, add_exclude_file): Initial size no longer needs to
50001         be a power of 2.
50002         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
50003         our own address arithmetic overflow checking.
50004
50005         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
50006         (fnmatch): Do not alloca more than 2000 wide characters;
50007         instead, use malloc for large buffers.
50008         Check for address arithmetic overflow, and return -1
50009         with errno set to ENOMEM in that case.
50010         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
50011         (NEW_PATTERN): Do not alloca more than 8000 bytes;
50012         instead, return -1.  Check for address arithmetic overflow.
50013
50014 2003-10-14  Paul Eggert  <eggert@twinsun.com>
50015
50016         Handle invalid suffixes and overflow independently, so that
50017         callers can treat them independently as needed.  Fix some bugs in
50018         suffix handling, e.g., "100k@" was not diagnosed as an invalid
50019         suffix for a human-readable blocksize.  The major caller-visible
50020         change is the addition of a new
50021         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
50022         that both overflow and suffix chars were found.
50023
50024         * lib/human.c (humblock): Don't check separately for invalid suffix
50025         char; that is xstrtoumax's job (now that its bug is fixed).
50026         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
50027         INTMAX_MAX]: New macros.
50028         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
50029         TYPE_MAXIMUM): New macros.
50030         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
50031         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
50032         if overflow occurs, as it's what __strtol does and it's more useful
50033         in practice.
50034         (__xstrtol): If __strtol reports some error other than ERANGE,
50035         reflect it to the caller as LONGINT_INVALID.  If it reports
50036         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
50037         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
50038         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
50039         value.
50040         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
50041         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
50042         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
50043         [defined UINTMAX_MAX]: New macros.
50044
50045 2003-10-14  Bruno Haible  <bruno@clisp.org>
50046
50047         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
50048
50049 2003-10-14  Bruno Haible  <bruno@clisp.org>
50050
50051         * m4/sig_atomic_t: New file, from GNU gettext.
50052         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
50053
50054 2003-10-14  Bruno Haible  <bruno@clisp.org>
50055
50056         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
50057         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
50058         Also use volatile where needed.
50059
50060 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50061
50062         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
50063         Change maintainer from Bruno Haible to 'all'.
50064
50065 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50066
50067         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
50068
50069 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50070
50071         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
50072         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
50073         and define in terms of the other primitives.
50074         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
50075         (SIZE_MAX): Define if not already defined.
50076         (array_size_overflow): New function.
50077         (xalloc_die): Abort instead of exiting if 'error' returns.
50078         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
50079         (xmalloc, xrealloc): Use them.
50080         (xcalloc): Check for address arithmetic overflow.
50081         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
50082         a bit faster than strcpy.
50083
50084 2003-10-10  Simon Josefsson  <jas@extundo.com>
50085
50086         * modules/argp (Depends-on): Add restrict and strcase.
50087
50088 2003-10-10  Simon Josefsson  <jas@extundo.com>
50089
50090         * m4/argp.m4: Add AC_C_INLINE.
50091
50092 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50093
50094         Merge getpass from libc, plus a few fixes.
50095
50096         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
50097         Include <stdbool.h>.
50098         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
50099         __fsetlocking to empty.
50100         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
50101         do include <bits/libc-lock.h>.
50102         Do not include <fcntl.h>; not needed.
50103         [_LIBC]: Include <wchar.h>.
50104         (NOTCANCEL_MODE): New macro.
50105         (flockfile, funlockfile) [_LIBC]: New macros.
50106         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
50107         [!_LIBC]: New macros.
50108         (call_fclose): New function.
50109         (getpass): Use it.  Save tty stream separately; this simplifies the
50110         code and makes it more reliable if stdin happens to equal stdout.
50111         Invoke __fsetlocking on tty.
50112         Handle thread cancellation if needed.
50113         Namespace cleanup (use __tcgetattr, __getline).
50114         Use bool for Booleans.
50115         [USE_IN_LIBIO]: Handle wide streams.
50116         [!_LIBC]: Unconditionally do the fseek, since we don't know what
50117         stream might go where.
50118
50119         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
50120         doesn't have to include <stdio.h> before us.
50121         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
50122         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
50123         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
50124         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
50125         if not declared, so that we can use getpass.c code from libc without
50126         rewriting it.
50127         (flockfile, ftrylockfile, funlockfile): New macros.
50128
50129 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50130
50131         * modules/getpass: Depend on stdbool.
50132
50133 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50134
50135         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
50136
50137 2003-10-07  Karl Berry  <karl@gnu.org>
50138
50139         * config/config.{guess,sub}: update from config.
50140
50141 2003-10-06  Jim Meyering  <jim@meyering.net>
50142             Bruno Haible  <bruno@clisp.org>
50143
50144         This lets translators provide better translations for the
50145         "Written by ..." part of --version output.
50146         * lib/version-etc.h: Include stdarg.h.
50147         (version_etc_copyright): Declare as readonly.
50148         (version_etc): Make this function variadic with a NULL-terminated list
50149         of author name strings.
50150         (version_etc_va): New declaration.
50151         * lib/version-etc.c: Include stdarg.h, stdlib.h.
50152         (version_etc_copyright): Declare as readonly.
50153         (version_etc_va): New function. Provide a different translatable string
50154         for each possible number of authors < 10. Abbreviate when there are 10
50155         authors or more.
50156         (version_etc): Make this function variadic. Call version_etc_va.
50157         Suggestion from Gary V. Vaughan.
50158
50159         * lib/long-options.h (parse_long_options): Change prototype: the
50160         authors string is moved to the end and becomes variadic.
50161         * lib/long-options.c: Include stdarg.h.
50162         (parse_long_options): Make this function variadic, too.
50163         Call version_etc_va, not version_etc.
50164
50165 2003-10-06  Bruno Haible  <bruno@clisp.org>
50166
50167         * modules/version-etc-2: Remove file.
50168         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
50169
50170 2003-10-06  Bruno Haible  <bruno@clisp.org>
50171
50172         * modules/fatal-signal: New file.
50173         * MODULES.html.sh (func_all_modules): Add fatal-signal.
50174
50175 2003-10-06  Bruno Haible  <bruno@clisp.org>
50176
50177         * m4/fatal-signal.m4: New file.
50178         * m4/signalblocking.m4: New file, from GNU gettext.
50179
50180 2003-10-06  Bruno Haible  <bruno@clisp.org>
50181
50182         * lib/version-etc-2.h: Remove file.
50183         * lib/version-etc-2.c: Remove file.
50184
50185 2003-10-06  Bruno Haible  <bruno@clisp.org>
50186
50187         * lib/fatal-signal.h: New file, from GNU gettext.
50188         * lib/fatal-signal.c: New file, from GNU gettext.
50189
50190 2003-10-05  Paul Eggert  <eggert@twinsun.com>
50191
50192         * README: Rework advice for preventing empty .o files.
50193         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
50194         not <sys/types.h>.
50195
50196 2003-10-04  Karl Berry  <karl@gnu.org>
50197
50198         * lib/argp*: update from libc.
50199
50200 2003-10-04  Karl Berry  <karl@gnu.org>
50201
50202         * config/config.{guess,sub}: update from config.
50203
50204 2003-10-02  Bruno Haible  <bruno@clisp.org>
50205
50206         * modules/lchown (Include): Add lchown.h.
50207         * modules/time_r (Include): Use "..." syntax.
50208         * modules/xgetdomainname (Include): Add xgetdomainname.h.
50209
50210 2003-10-01  Simon Josefsson  <jas@extundo.com>
50211
50212         * MODULES.html.sh (func_all_modules): Move gethostname from section
50213         'based on' to section 'lacking' POSIX:2001.
50214
50215 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
50216
50217         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
50218         to output mode on the same stream.
50219
50220 2003-09-29  Paul Eggert  <eggert@twinsun.com>
50221
50222         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
50223         Fix arg typo in previous patch.
50224
50225 2003-09-28  Jim Meyering  <jim@meyering.net>
50226
50227         * lib/error.c: Correct cpp indentation.
50228
50229 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50230
50231         * modules/free: New file.
50232
50233 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50234
50235         * m4/free.m4: New file.
50236
50237 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50238
50239         * lib/minmax.h (MIN, MAX)
50240         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
50241         Omit the special code that used __typeof__, since we worry that
50242         it could be more trouble than it's worth.  See:
50243         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
50244         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
50245
50246         * lib/free.c: New file.
50247
50248 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
50249
50250         Trivial fixes to Makefile.am parts of module listings.
50251         * modules/strstr: Append strstr.h to lib_SOURCES.
50252         * modules/strcase: Likewise, for strcase.h.
50253
50254 2003-09-27  Karl Berry  <karl@gnu.org>
50255
50256         * config/mkinstalldirs: update from automake.
50257
50258 2003-09-26  Paul Eggert  <eggert@twinsun.com>
50259
50260         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
50261         (error_tail): Do not loop, reallocating temporary buffer, since
50262         the output cannot contain more wide characters than the input
50263         contains bytes, the size must be big enough already.  This avoids
50264         one potential size overflow calculation.  Check for size overflow
50265         when calculating temporary buffer size.  Free temporary buffer
50266         when done, if it was allocated with malloc; this plugs a memory
50267         leak.  Remove casts from void * to pointers, that are no longer
50268         needed now that we're assuming C89 or better.
50269
50270         Merge error changes from glibc.
50271
50272         * lib/error.c, error.h: Update copyright notice header to match glibc.
50273         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
50274         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
50275         Disable cancellation while printing error.
50276         * lib/error.h: Prepend __ to parameter names.
50277
50278 2003-09-26  Jim Meyering  <jim@meyering.net>
50279
50280         * lib/error.c (error_tail): Move some declarations
50281         into inner scope where the local variables are used.
50282
50283 2003-09-26  Bruno Haible  <bruno@clisp.org>
50284
50285         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
50286         stpncpy().
50287         Don't define stpncpy through config.h; it's now done through stpncpy.h.
50288
50289 2003-09-26  Bruno Haible  <bruno@clisp.org>
50290
50291         * lib/stpncpy.h (gnu_stpncpy): New declaration.
50292         (stpncpy): Define as alias for gnu_stpncpy.
50293         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
50294
50295 2003-09-25  Simon Josefsson  <jas@extundo.com>
50296
50297         * lib/xgetdomainname.h: New file.
50298         * lib/xgetdomainname.c: New file.
50299
50300 2003-09-25  Simon Josefsson  <jas@extundo.com>
50301             Bruno Haible  <bruno@clisp.org>
50302
50303         * modules/getdomainname: New file.
50304         * modules/xgetdomainname: New file.
50305         * MODULES.html.sh (func_all_modules): Add getdomainname,
50306         xgetdomainname.
50307
50308 2003-09-25  Simon Josefsson  <jas@extundo.com>
50309             Bruno Haible  <bruno@clisp.org>
50310
50311         * m4/getdomainname.m4: New file.
50312
50313 2003-09-25  Simon Josefsson  <jas@extundo.com>
50314             Bruno Haible  <bruno@clisp.org>
50315
50316         * lib/getdomainname.h: New file.
50317         * lib/getdomainname.c: New file.
50318
50319 2003-09-25  Karl Berry  <karl@gnu.org>
50320
50321         * lib/argp-fmtstream.c, argp-help.c: update from libc.
50322
50323 2003-09-25  Karl Berry  <karl@gnu.org>
50324
50325         * config/install-sh: update from automake.
50326
50327 2003-09-25  Bruno Haible  <bruno@clisp.org>
50328
50329         * modules/version-etc-2: New file, from modules/version-etc with
50330         modifications.
50331         * MODULES.html.sh (func_all_modules): Add version-etc-2.
50332
50333 2003-09-25  Bruno Haible  <bruno@clisp.org>
50334
50335         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
50336         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
50337
50338 2003-09-24  Simon Josefsson  <jas@extundo.com>
50339
50340         * modules/xgethostname: Add xgethostname.h.
50341
50342 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50343
50344         * lib/linebuffer.c (freebuffer): Don't free the argument, just
50345         the buffer associated with the argument.  Bug reported by
50346         Simon Josefsson.
50347
50348 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50349
50350         * README: Document assumptions that 'int' is at least 32 bits
50351         wide, that integer arithmetic is 2's complement without overflow,
50352         that there are no holes in integer values, that adding sizes of
50353         two nonoverlapping objects can't overflow, and that all-bits-zero
50354         yields scalar zero.  Fix spelling and capitalization typos.
50355
50356 2003-09-19  Karl Berry  <karl@gnu.org>
50357
50358         * lib/argp.h: update from libc.
50359
50360 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50361
50362         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
50363         to avoid spurious warnings like "AC_RUN_IFELSE was called before
50364         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
50365
50366 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50367
50368         * gnulib-tool: Use "test -h", not "test -L", for portability
50369         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
50370         (tags_regexp): Remove, since \| doesn't conform to POSIX.
50371         (sed_extract_prog): Issue s commands one-by-one, rather than
50372         using \| in one s command.
50373
50374 2003-09-16  Paul Eggert  <eggert@twinsun.com>
50375
50376         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
50377         input error, instead of returning NULL the next time we are called
50378         (and therefore losing track of errno).
50379
50380 2003-09-16  Bruno Haible  <bruno@clisp.org>
50381
50382         * gnulib-tool (func_create_testdir): Warn about duplicated
50383         dependencies.
50384
50385 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50386
50387         * modules/argmatch, modules/fatal, modules/obstack,
50388         modules/xalloc, modules/xgethostname: Sort dependencies by
50389         importance, not alphabetically.
50390
50391 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50392
50393         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
50394         fails, so that the caller gets the proper errno.
50395
50396         * lib/readutmp.c (read_utmp): Likewise.
50397         Check for fstat error.  Close stream and free storage
50398         when failing.
50399
50400 2003-09-14  Karl Berry  <karl@gnu.org>
50401
50402         * config/srclist.txt (strdup.c): disable for c89 changes.
50403
50404 2003-09-14  Jim Meyering  <jim@meyering.net>
50405
50406         * lib/getloadavg.c: Correct cpp indentation.
50407         * lib/strdup.c: Likewise.
50408         * lib/vasnprintf.c: Likewise.
50409
50410 2003-09-14  Bruno Haible  <bruno@clisp.org>
50411
50412         * modules/fwriteerror: New file.
50413         * MODULES.html.sh (func_all_modules): Add fwriteerror.
50414
50415 2003-09-14  Bruno Haible  <bruno@clisp.org>
50416
50417         * lib/fwriteerror.h: New file.
50418         * lib/fwriteerror.c: New file.
50419
50420 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50421
50422         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
50423         modules/xgethostname, modules/xalloc: Depend on exit.
50424
50425 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50426
50427         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
50428
50429         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
50430         and AC_MINIX, too, so that their extensions are available.
50431
50432         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
50433         This macro has been superseded by gl_BACKUPFILE.
50434
50435         More patches to assume C89 or better.
50436
50437         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
50438
50439         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
50440         unconditionally.
50441         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
50442         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
50443         Include <string.h>, <stdlib.h> unconditionally.
50444         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
50445         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
50446         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
50447         headers or for string.h.
50448         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
50449         or strtoul.
50450
50451         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
50452         headers.
50453         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
50454         * m4/userspec.m4 (gl_USERSPEC): Likewise.
50455         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
50456         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
50457         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
50458         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
50459         memcpy, memset.
50460         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
50461         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
50462         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
50463         strtol.
50464         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
50465         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
50466         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
50467         strtoul.
50468
50469 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50470
50471         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
50472         * lib/obstack.c [!defined _LIBC]: Likewise.
50473         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
50474         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
50475         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
50476
50477         More changes to assume C89 or better.
50478
50479         * lib/error.c (error_tail): Assume vprintf.
50480
50481         * lib/argmatch.c (getenv): Remove decl.
50482         * lib/progreloc.c (get_full_program_name): Define via prototype.
50483         * lib/setenv.c (clearenv): Likewise.
50484         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
50485         needed.
50486         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
50487         (malloc, memcpy): Remove decls.
50488         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
50489         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
50490         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50491         (memcpy): Remove macro.
50492         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
50493         (__P): Remove.  All uses removed.
50494         (PTR): Remove.  All uses changed to void *.
50495         (CHAR_BIT, NULL): Remove.
50496         (spaces, zeros, memset_space, memset_zero)
50497         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
50498         Remove.
50499         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
50500         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
50501         Define with prototype.
50502         Remove now-unnecessary prototype decl.
50503         (extra_args_spec): Assume ANSI C.  All uses changed.
50504         (extra_args_spec_iso): Remove.
50505         (my_strftime, emacs_strftimeu): Define via prototype.
50506         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
50507         unconditionally.
50508         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
50509         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
50510         (strtoul, strtol): Remove decls.
50511         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
50512         LONG_MAX): Remove.
50513         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50514         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
50515         (LOCALE_PARAM_PROTO): New macro.
50516         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
50517         (INTERNAL (strtol), strtol): Define with a prototype.
50518         (PARAMS): Remove.  All uses removed.
50519         * lib/tempname.c: Include <string.h> unconditionally.
50520         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
50521         * lib/xgethostname.c (main): Define with a prototype.
50522         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
50523         Include <stdlib.h> unconditionally.
50524         (calloc, malloc, realloc, free): Remove decls.
50525         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
50526         Include <stdlib.h> unconditionally.  Sort include file names.
50527         (strtod): Remove.
50528         (xstrtod): Define with a prototype.
50529         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
50530         (strtol, strtoul): Remove decls.
50531
50532 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50533
50534         More patches to assume C89 or better.
50535         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
50536         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
50537         string.h, memchr, STDC_HEADERS.
50538
50539 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50540
50541         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
50542         Include <stdlib.h>, <string.h> unconditionally.
50543         Remove now-unnecessary cast to char *.
50544         * lib/strnlen.c: Include <string.h> unconditionally.
50545         * lib/yesno.c (yesno): Define with a prototype.
50546
50547 2003-09-11  Bruno Haible  <bruno@clisp.org>
50548
50549         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
50550
50551 2003-09-10  Jim Meyering  <jim@meyering.net>
50552
50553         * lib/error.c: Correct indentation of cpp directives.
50554
50555 2003-09-10  Bruno Haible  <bruno@clisp.org>
50556
50557         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
50558         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
50559         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
50560         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
50561         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
50562         <stdlib.h> and <string.h> checks.
50563         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
50564         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
50565
50566 2003-09-10  Bruno Haible  <bruno@clisp.org>
50567
50568         * lib/strcspn.c: Include <string.h> unconditionally.
50569         * lib/strpbrk.c: Include <string.h> unconditionally.
50570         * lib/strstr.c: Include <string.h> unconditionally.
50571         * lib/unicodeio.c: Include <string.h> unconditionally.
50572         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
50573         * lib/unsetenv.c: Likewise.
50574         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
50575         * lib/yesno.c: Include <stdlib.h> unconditionally.
50576         (rpmatch): Add prototype.
50577
50578 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50579
50580         More patches to assume C89 or better.
50581         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
50582         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
50583         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
50584         or for string.h.
50585         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
50586         stdlib.h.
50587         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
50588         C headers.
50589         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
50590         string.h.
50591         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
50592         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
50593         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
50594         or for string.h.
50595         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
50596         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
50597         C headers.
50598         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
50599         memcpy.
50600         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
50601         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
50602         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
50603         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
50604         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
50605         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
50606         string.h, free.
50607         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
50608         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
50609         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
50610         C headers, or for string.h.
50611         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
50612         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
50613         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
50614         headers, memory.h, stdlib.h, string.h, strings.h.
50615         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
50616         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
50617         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
50618         strchr.
50619         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
50620         headers, memory.h, string.h.
50621         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
50622         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
50623         free.
50624         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
50625         headers.
50626         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
50627         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
50628         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
50629         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
50630         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
50631
50632 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50633
50634         More K&R removal.
50635
50636         * lib/acosl.c (main): Use a prototype.
50637         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
50638         tanl.c: Likewise.
50639
50640         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
50641
50642         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
50643         (getopt, etopt_long, getopt_long_only, _getopt_internal)
50644         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
50645         with a prototype.
50646         * lib/getopt.c (const): Remove macro.
50647         Include <string.h> unconditionally.
50648         (my_index): Remove; all uses changed to strchr.
50649         (strlen): Remove decl.
50650         (exchange): Remove forward decl; no longer needed.
50651         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
50652         Define with prototype.
50653         * lib/getopt1.c (const): Remove macro.
50654         (getopt_long, getopt_long_only, main): Define with prototype.
50655
50656         * lib/getugroups.c: Include <string.h> unconditionally.
50657
50658         * lib/getusershell.c: Include <stdlib.h> unconditionally.
50659         (getusershell, setusershell, endusershell, readname, main):
50660         Define with prototypes.
50661
50662         * lib/group-member.c: Include group-member.h first.
50663         Include <stdlib.h> unconditionally.
50664
50665         * lib/hard-locale.c: Include hard-locale.h first.
50666         Include <stdlib.h>, <string.h> unconditionally.
50667
50668         * lib/hash.c (free, malloc): Remove decls.
50669         Include <stdlib.h> unconditionally.
50670
50671         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
50672         (getenv): Do not declare.
50673
50674         * lib/idcache.c: Include <string.h> unconditionally.
50675
50676         * lib/long-options.c: Include long-options.h first, to test interface.
50677         Include <stdlib.h> unconditionally.
50678
50679         * lib/makepath.c: Include makepath.h first, to test interface.
50680         Include <stdlib.h> and <string.h> unconditionally.
50681
50682         * lib/linebuffer.c: Include <stdlib.h>.
50683         (free): Remove decl.
50684
50685         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
50686         stddef.h. rpl_malloc returns void *, not char *.
50687         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
50688         prototype.
50689
50690         * lib/md5.h: Include <limits.h> unconditionally.
50691         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
50692         (__P): Remove; all uses removed.
50693         * lib/md5.c: Include "md5.h" first.
50694         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
50695         md5_buffer, md5_process_bytes, md5_process_block):
50696         Define with prototypes.
50697         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
50698         * lib/sha.c: Include "sha.h" first.
50699         Include <stdlib.h>, <string.h> unconditionally.
50700
50701         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
50702         * lib/memcmp.c (__ptr_t): Likewise.
50703         * lib/memrchr.c (__ptr_t): Likewise.
50704         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
50705         Include <string.h> unconditionally.
50706         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
50707         * lib/memchr.c: Include <stdlib.h> unconditionally.
50708         * lib/memchr.c (LONG_MAX): Remove.
50709         * lib/memrchr.c (LONG_MAX): Likewise.
50710         * lib/memchr.c (__memchr): Define via a prototype.
50711         * lib/memrchr.c (__memrchr): Likewise.
50712         * lib/memcmp.c (__P): Remove, and remove all uses.
50713         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
50714         Remove forward decls; no longer needed.
50715         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
50716         Use types required by C89 in prototype.
50717
50718         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
50719         * lib/savedir.c: Likewise.
50720         * lib/mkdir.c (free): Remove decl.
50721         * lib/rmdir.c (rmdir): Define with a prototype.
50722         * lib/savedir.c: Include savedir.h first, to test interface.
50723
50724         * lib/mktime.c (STDC_HEADERS): Remove.
50725         Include <stdlib.h>, <string.h> unconditionally.
50726
50727         * lib/modechange.c: Include <stdlib.h> unconditionally.
50728         (malloc): Remove decl.
50729
50730         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
50731         (free): Remove decl.
50732
50733         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
50734         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
50735         (This type really should be intptr_t, but that's a C99ism.)
50736         (_obstack_memcpy): Remove: all uses changed to memcpy.
50737         Include <string.h> unconditionally.
50738         (struct obstack): Assume __STDC__ for types of members
50739         chunkfun, freefun, extra_arg.
50740         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
50741         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
50742         obstack_begin, obstack_specify_allocation,
50743         obstack_specify_allocation_with_arg, obstack_chunkfun,
50744         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
50745         Remove unprototyped decls and the macros that use them.
50746         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
50747         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
50748         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
50749         (defined __STDC__ && __STDC__)]:
50750         Remove nonprototyped code.
50751         Include <stdlib.h> unconditionally.
50752         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
50753         _obstack_allocated_p, _obstack_free, obstack_free,
50754         _obstack_memory_used, print_and_abort):
50755         Define using prototypes.
50756         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
50757         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
50758         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
50759         obstack_next_free, obstack_object_size, obstack_room) [0]:
50760         Remove unused, unprototyped code.
50761
50762         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
50763
50764         * lib/physmem.c (physmem_total, physmem_available, main): Define
50765         with prototypes.
50766
50767         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
50768         (main): Define with a prototype.
50769
50770         * lib/posixver.c (getenv): Remove decl.
50771
50772         * lib/putenv.c (malloc): Returns void *, not char *.
50773         Include <string.h> unconditionally.
50774         (strchr, memcpy, NULL): Do not define.
50775
50776         * lib/readtokens.c: Include readtokens.h first, to test interface.
50777         Include <stdlib.h>, <string.h> unconditionally.
50778         (init_tokenbuffer): Define with a prototype.
50779
50780         * lib/regex.c (PARAMS): Remove.  All uses removed.
50781         All uses of _RE_ARGS removed, too.
50782         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
50783         unconditionally.
50784         (bzero): Assume memset exists.
50785         (memcmp, memcpy, NULL): Remove.
50786         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
50787         char, or assignments to local vars of type signed char.
50788         (init_syntax_once, PREFIX(extract_number_and_incr),
50789         PREFIX(print_partial_compiled_pattern),
50790         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
50791         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
50792         PREFIX(regex_grow_registers), PREFIX(regex_compile),
50793         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
50794         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
50795         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
50796         wcs_compile_range, byte_compile_range, truncate_wchar,
50797         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
50798         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
50799         count_mbs_length, wcs_re_match_2_internal,
50800         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
50801         PREFIX(alt_match_null_string_p),
50802         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
50803         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
50804         regfree, PREFIX(extract_number)): Define with prototype.  Remove
50805         now-unnecessary declaration, if any.
50806         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
50807         regcomp, regexec):
50808         Remove now-unnecessary casts among pointer types.
50809         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
50810
50811         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
50812         (free): Remove decl.
50813
50814         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
50815
50816         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
50817         (free): Remove decl.
50818
50819         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
50820         * lib/xgetcwd.c: Likewise.
50821
50822         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
50823         (free): Remove decl.
50824
50825         * lib/strchrnul.c (strchrnul): Define with a prototype.
50826         Fix bug: c_in was not converted to char before searching.
50827
50828         The following changes are not K&R related:
50829
50830         * lib/group-member.h: Include <sys/types.h>, so that this file is
50831         self-contained.
50832         * lib/makepath.h: Likewise.
50833
50834         * lib/getusershell.c (readname, default_index, line_size, readname):
50835         Use size_t, not int, for sizes.
50836         (readname): If the size overflows, report an error instead of
50837         looping forever.
50838
50839 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50840
50841         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
50842         libc.
50843
50844 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50845
50846         * README: New section: portability guidelines.
50847
50848 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50849
50850         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
50851         C89 spec.
50852
50853 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50854
50855         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
50856
50857 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50858
50859         Assume C89 or better; remove K&R cruft.
50860         A few of these changes were first proposed by Derek Robert Price
50861         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
50862
50863         * lib/addext.c: Include <string.h> unconditionally.
50864         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
50865         Don't declare getenv or malloc.
50866
50867         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
50868         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
50869         (NULL): Remove.
50870         (find_stack_direction, alloca): Use prototypes.
50871
50872         * lib/atexit.c (atexit): Define using a prototype.
50873
50874         * lib/basename.c, dirname.c, stripslash.c:
50875         Include <string.h> unconditionally.
50876
50877         * lib/bcopy.c: Include <stddef.h>.
50878         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
50879
50880         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
50881
50882         * lib/error.h (error, error_at_line, error_print_progname)
50883         [! (defined (__STDC__) && __STDC__)]: Remove decls.
50884         * lib/error.c: Include error.h first, to check interface.
50885         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50886         (VA_START): Remove; all uses changeed to va_start.
50887         (exit, strerror): Remove decls.
50888         (error_print_progname): Prototype uncondionally.
50889         Don't include <errno.h>; no longer needed.
50890         (private_strerror): Remove.
50891         (error_tail): Always define.
50892         (error, error_at_line): Assume C89 or better; always use prototypes.
50893         * lib/fatal.c: Include "fatal.h" first, to test interface.
50894         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50895         (VA_START): Remove; all uses changed to va_start.
50896         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
50897         this case.
50898         (exit): Remove decl.
50899         (fatal): Prototype unconditionally.  Assume va_start works.
50900         Abort at end, to pacify gcc.
50901
50902         * lib/euidaccess.c (main): Define with a prototype.
50903
50904         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
50905
50906         * lib/exitfail.c: Include <stdlib.h> unconditionally.
50907
50908         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
50909         prototypes.
50910         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
50911         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
50912         (getenv): Remove decl.
50913         (fnmatch): Define using a prototype.
50914         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
50915         (FCT): Define using a prototype.
50916
50917         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
50918
50919         * lib/gethostname.c: Include <stddef.h>.
50920         (gethostname): Define with prototype.  Length is size_t, not int.
50921
50922 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50923
50924         Assume C89 or better; remove K&R cruft.
50925         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
50926         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
50927         string.h, getenv, malloc.
50928         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
50929         headers.
50930         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
50931         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
50932         do not check for strerror.
50933         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
50934         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
50935         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
50936         do not check for doprnt or vprintf.
50937         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
50938         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
50939
50940 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50941
50942         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
50943         getversion.c should have been removed then, but was accidentally
50944         preserved.
50945
50946         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
50947         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
50948
50949 2003-09-08  Karl Berry  <karl@gnu.org>
50950
50951         * config/config.sub, config.guess, srclistvars.sh: update from savannah
50952                 config, forget about prep.
50953
50954         * config/depcomp, missing: update from automake.
50955
50956 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50957
50958         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
50959         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50960
50961 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50962
50963         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
50964         copy_tm_result.  Bug reported by Simon Josefsson in
50965         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50966
50967 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50968
50969         * m4/time_r.m4: New file.
50970         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
50971         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
50972         is. Check for timegm declaration.
50973         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
50974         Do not check for gmtime_r.
50975         Replace mktime if __mktime_internal does not exist and if mktime
50976         hasn't been replaced already.
50977
50978 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50979
50980         * lib/time_r.c, lib/time_r.h: New files.
50981
50982         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
50983         __localtime_r.
50984         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
50985         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
50986
50987         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
50988         __gmtime_r.
50989         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
50990         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
50991         Include <time_r.h>.
50992
50993         * lib/timegm.c: Switch to glibc implementation, with the following
50994         changes:
50995         [defined HAVE_CONFIG_H]: Include <config.h>.
50996         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
50997         (__mktime_internal) [!defined _LIBC]: New decl.
50998         (__gmtime_r) [!defined _LIBC]: New macro and function.
50999         (timegm): Use a prototype, since gnulib assumes C89.
51000         Do not bother declaring tmp to be const, as it's not really usefu.
51001         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
51002         (timegm): Declare only if HAVE_DECL_TIMEGM.
51003
51004 2003-09-06  Paul Eggert  <eggert@twinsun.com>
51005
51006         * MODULES.html.sh (func_all_modules): Add time_r.
51007         * modules/time_r: New file.
51008         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
51009         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
51010
51011 2003-09-03  Paul Eggert  <eggert@twinsun.com>
51012
51013         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
51014         Bug reported by Lute Kamstra in
51015         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
51016
51017         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
51018         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
51019         course with correspondingly smaller numbers for tomorrow and
51020         yesterday.  From Tadayoshi Funaba.  Originally installed into
51021         sh-utils on 1999-08-07, but the patch got lost (I guess during the
51022         coreutils merge?).
51023
51024 2003-08-31  Simon Josefsson  <jas@extundo.com>
51025
51026         * modules/timegm: New file.
51027         * MODULES.html.sh (func_all_modules): Add timegm.
51028
51029 2003-08-31  Simon Josefsson  <jas@extundo.com>
51030
51031         * m4/timegm.m4: New file.
51032
51033 2003-08-31  Simon Josefsson  <jas@extundo.com>
51034
51035         * lib/timegm.h: New file.
51036         * lib/timegm.c: New file.  Based on
51037         wget-1.8.2/src/http.c:mktime_from_utc.
51038
51039 2003-08-31  Karl Berry  <karl@gnu.org>
51040
51041         * lib/argp.h: update from libc.
51042
51043 2003-08-28  Bruno Haible  <bruno@clisp.org>
51044
51045         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
51046         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
51047         followed by '#define fnmatch fnmatch_posix' gives an error.
51048
51049 2003-08-28  Bruno Haible  <bruno@clisp.org>
51050
51051         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
51052         warning on QNX, which defines O_BINARY to 000000.
51053
51054 2003-08-27  Jim Meyering  <jim@meyering.net>
51055
51056         * m4/mkstemp.m4: Require that the system mkstemp be able to create
51057         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
51058         would fail after 32.  Reported by Danny Levinson.  Details here:
51059         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
51060
51061 2003-08-24  Bruno Haible  <bruno@clisp.org>
51062
51063         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
51064         MSVC7 <stdio.h> is included later.
51065
51066 2003-08-22  Simon Josefsson  <jas@extundo.com>
51067
51068         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
51069
51070 2003-08-20  Karl Berry  <karl@gnu.org>
51071
51072         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
51073
51074 2003-08-20  Bruno Haible  <bruno@clisp.org>
51075
51076         * modules/progname: New file.
51077         * MODULES.html.sh (func_all_modules): Add progname.
51078
51079 2003-08-20  Bruno Haible  <bruno@clisp.org>
51080
51081         * lib/progname.h: New file, from GNU gettext.
51082         * lib/progname.c: New file, from GNU gettext.
51083         * lib/progreloc.c: New file, from GNU gettext.
51084
51085 2003-08-19  Jim Meyering  <jim@meyering.net>
51086
51087         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
51088         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
51089
51090 2003-08-19  Bruno Haible  <bruno@clisp.org>
51091
51092         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
51093         more.
51094
51095 2003-08-19  Bruno Haible  <bruno@clisp.org>
51096
51097         * lib/xstrdup.c: Assume <string.h> exists.
51098
51099 2003-08-18  Paul Eggert  <eggert@twinsun.com>
51100
51101         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
51102         in makefile rules.
51103
51104 2003-08-18  Jim Meyering  <jim@meyering.net>
51105
51106         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
51107         * m4/lib-ld.m4: Likewise.
51108
51109 2003-08-18  Jim Meyering  <jim@meyering.net>
51110
51111         * lib/setenv.h: Indent nested cpp directive.
51112         * lib/vasnprintf.c: Remove trailing blanks.
51113
51114 2003-08-17  Simon Josefsson  <jas@extundo.com>
51115
51116         * modules/xstrndup: New file.
51117         * MODULES.html.sh (func_all_modules): Add xstrndup.
51118
51119 2003-08-17  Simon Josefsson  <jas@extundo.com>
51120
51121         * modules/argp: Fix autoconf macro name. Add more dependencies.
51122
51123 2003-08-17  Simon Josefsson  <jas@extundo.com>
51124
51125         * m4/xstrndup.m4: New file.
51126
51127 2003-08-17  Simon Josefsson  <jas@extundo.com>
51128
51129         * m4/argp.m4: New file.
51130
51131 2003-08-17  Simon Josefsson  <jas@extundo.com>
51132             Bruno Haible  <bruno@clisp.org>
51133
51134         * lib/xstrndup.h: New file.
51135         * lib/xstrndup.c: New file.
51136
51137 2003-08-17  Bruno Haible  <bruno@clisp.org>
51138
51139         * modules/strndup (Files, Include): Add lib/strndup.h.
51140
51141 2003-08-17  Bruno Haible  <bruno@clisp.org>
51142
51143         * modules/euidaccess (Files): Add lib/euidaccess.h.
51144
51145 2003-08-17  Bruno Haible  <bruno@clisp.org>
51146
51147         * lib/strndup.h: New file.
51148
51149 2003-08-17  Bruno Haible  <bruno@clisp.org>
51150
51151         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
51152         like AC_GNU_SOURCE.
51153         * modules/extensions (configure.ac): Comment out the invocation of
51154         gl_USE_SYSTEM_EXTENSIONS.
51155
51156 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51157
51158         Merges from coreutils, etc.
51159         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
51160         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
51161         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
51162         fixing a typo.
51163         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
51164         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
51165
51166 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51167
51168         Document merge from coreutils.
51169         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
51170         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
51171         * modules/utime: Add m4/utimes-null.m4.
51172
51173 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51174
51175         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
51176         space, undoing this 2003-08-12 change:
51177         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51178
51179 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51180
51181         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
51182         strtoul.c from libc, undoing this 2003-08-12 change:
51183         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51184
51185 2003-08-16  Jim Meyering  <jim@meyering.net>
51186
51187         Merges from coreutils.
51188         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
51189         prefix.  Adjust cache variables similarly.  Create 500 rather than
51190         just 300 files, to exercise bug on Darwin6.5, too.
51191         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
51192         $missing_dir.
51193         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
51194         AM_SYS_POSIX_TERMIOS.
51195         Reported by mkc@mathdogs.com.
51196         Also change use of $am_cv_sys_posix_termios
51197         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
51198         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
51199         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
51200         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
51201         in /proc/mounts until it finds one with matching device number.  This
51202         is unnecessary when the FILE argument *is* a mount point.  No stat call
51203         is necessary in that case.  So, disable the statvfs-testing code on
51204         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
51205         as RedHat bug# 84846.
51206         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51207         to 1MB, so as not to render systems with no stack size limit (e.g.,
51208         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51209         Include <unistd.h>.  On some systems,
51210         it is required for the definition of _SC_PAGESIZE.
51211
51212 2003-08-16  Jim Meyering  <jim@meyering.net>
51213
51214         Merge from coreutils.
51215         * lib/xstrtoimax.c: #else #if -> #elif.
51216         * lib/xstrtoumax.c: Likewise.
51217
51218 2003-08-16  Jim Meyering  <jim@meyering.net>
51219
51220         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
51221         * m4/utimes.m4: Removed.
51222         * m4/utimes-null.m4: Renamed from utimes.m4.
51223
51224         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51225         to 1MB, so as not to render systems with no stack size limit (e.g.,
51226         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51227         Include <unistd.h>.  On some systems,
51228         it is required for the definition of _SC_PAGESIZE.
51229
51230 2003-08-16  Jim Meyering  <jim@meyering.net>
51231         and Paul Eggert  <eggert@cs.ucla.edu>
51232
51233         Merges from coreutils, etc.
51234
51235         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
51236         using the latest version from cvs.  This avoids problems with #line
51237         directives using a vendor (Sun) compiler.
51238         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
51239         Don't set GETGROUPS_LIB here; now it's
51240         done via getgroups.m4's wrapper function.
51241         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
51242         rather than just in sh-util/configure.in, so that the
51243         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
51244         same.
51245         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
51246         AC_FUNC_GETLOADAVG where to find getloadavg.c.
51247         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
51248         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
51249         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
51250         Remove code that is now done by the newly-required macros.
51251         Append $(EXEEXT) to DF_PROG.
51252         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
51253         Do not invoke or require the following here,
51254         since prereq.m4 or some gnulib .m4 now does this for us:
51255         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
51256         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
51257         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
51258         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
51259         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
51260         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
51261         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
51262         AC_FUNC_OBSTACK.
51263         Do not replace the following functions, as this is now the job
51264         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
51265         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
51266         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
51267         atexit getpass, strdup, getpagesize.
51268         Replace 'raise'.
51269         Do not check for the following functions, as this is now the job
51270         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
51271         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
51272         setregid.
51273         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
51274         Check for sys/sysctl.h.
51275         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
51276         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
51277         of checking for ssize_t ourselves.
51278
51279         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
51280         Require every macro that gnulib/modules/* suggests for us.
51281         (jm_PREREQ_ADDEXT): New macro.
51282         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
51283         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
51284
51285         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
51286         (gl_PHYSMEM): Use it.
51287         Also check for `table' function.
51288         Check for new headers and functions.
51289         Add check for sys/sysmp.h.
51290         With suggestions from Kaveh Ghazi.
51291         Ignore headers that are present but cannot be compiled.  This
51292         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
51293         C 5.4.
51294
51295 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51296
51297         Document merge from coreutils.
51298         * modules/userspec: Depend on posixver.
51299         * modules/strftime: Depend on tzset.
51300
51301 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51302
51303         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
51304         rather than tab, after '#' in shell-script copyright notices.
51305         Suggested by Bruno Haible.
51306
51307 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51308
51309         * config/srclist-update: Use three spaces, rather than tab, after '#'
51310         in shell-script copyright notices.  Suggested by Bruno Haible.
51311         Remove unnecessary parenthesization in regular expression.
51312
51313 2003-08-15  Jim Meyering  <jim@meyering.net>
51314
51315         Merge from coreutils.
51316         * lib/xgethostname.c: Include <stdlib.h>.
51317         (xghostname): Don't exit for anything other than memory-related
51318         failure; just return NULL.
51319         * lib/userspec.c: Include "posixver.h".
51320         (parse_user_spec): Accept `.' as a separator only
51321         in pre-POSIX-200112 mode.
51322         * lib/strtoimax.c: Use #elif rather than #else #if.
51323         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
51324         Remove function, now that we can rely on a working tzset function.
51325         [!_LIBC]: Ensure that the required autoconf test has been run.
51326         [!defined _NL_CURRENT && HAVE_STRFTIME]:
51327         Use underlying_strftime for %r.
51328         * lib/sha.c: Merge in some clean-up and optimization changes from
51329         glibc.
51330         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
51331         Ensure that it is a multiple of 64.
51332         Rearrange loop exit tests so as to avoid performing an
51333         additional fread after encountering an error or EOF.
51334         * lib/realloc.c: Update copyright date.
51335
51336 2003-08-15  Jim Meyering  <jim@meyering.net>
51337         and Paul Eggert  <eggert@twinsun.com>
51338
51339         Merge from coreutils.
51340         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
51341         member but strut utmpx does not.  Needed for AIX 4.3.3.
51342         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
51343
51344 2003-08-15  Jim Meyering  <jim@meyering.net>
51345         and Paul Eggert  <eggert@cs.ucla.edu>
51346
51347         Merges from coreutils, etc.
51348         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
51349         Require gl_FUNC_TZSET_CLOBBER.
51350         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
51351         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
51352         members.
51353
51354 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51355
51356         Help the merge from coreutils.
51357         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
51358         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
51359         * m4/tzset.m4: Use it too.
51360
51361 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51362
51363         * modules/tzset: New file.
51364
51365 2003-08-14  Jim Meyering  <jim@meyering.net>
51366
51367         Merges from coreutils.
51368         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
51369         variable names, rather than @FNMATCH_H@.
51370         * modules/alloca: Likewise for $(ALLOCA_H).
51371
51372         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
51373         the three copies of the literal target, `fnmatch.h'.
51374         * modules/alloca (alloca.h): Likewise.
51375
51376 2003-08-14  Jim Meyering  <jim@meyering.net>
51377
51378         Merge from coreutils.
51379         * m4/tzset.m4: New file.
51380         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
51381         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
51382         otherwise, AIX 5.1 systems would end up using the latter.
51383         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
51384         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
51385         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
51386         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
51387
51388 2003-08-14  Jim Meyering  <jim@meyering.net>
51389
51390         Merge from coreutils.
51391         * lib/obstack.h: Whitespace changes.
51392         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
51393         and xcalloc return values.
51394         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
51395         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
51396         hang on OSF/1 5.1 for DIR on both local and remote file systems.
51397         Reported by (and fix confirmed by) Nelson H. F. Beebe.
51398         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
51399         error from mntctl.
51400         Use mntctl's return value to drive the entry-processing loop, since
51401         we can't rely on the value of the vmt_length member in the last
51402         entry.  On some systems doing so could result in exhausting
51403         virtual memory.  Based in part on a patch from Mike Jetzer.
51404
51405 2003-08-14  Jim Meyering  <jim@meyering.net>
51406         and Paul Eggert  <eggert@twinsun.com>
51407
51408         Merges from coreutils, plus other fixes.
51409         * lib/physmem.c: Merge in portability changes from gcc/libiberty
51410         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
51411         for credits and details.  Thanks to Kaveh Ghazi for helping
51412         to keep these files in sync.
51413         (ARRAY_SIZE): Define it.
51414         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
51415         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
51416         (memcasecmp): Don't assume size_t fits in unsigned int.
51417         Remove casts and duplicate code.
51418         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
51419         (memcpy): Remove definition.
51420         Merge in some clean-up and optimization changes from glibc.
51421         [BLOCKSIZE]: Move definition to top of file.
51422         Ensure that it is a multiple of 64.
51423         Rearrange loop exit tests so as to avoid performing an
51424         additional fread after encountering an error or EOF.
51425         * lib/md5.h (md5_uintptr): Define.
51426         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
51427         return to the initial working directory.  Preserve errno
51428         for caller.
51429         * lib/idcache.c: Include "xalloc.h".
51430         (xmalloc, xrealloc): Remove decls.
51431         (getuser): Remove casts no longer required in C89.
51432         * lib/human.c: Include stdio.h, for sprintf.
51433         * lib/group-member.c: Include "xalloc.h".
51434         (xmalloc, xrealloc): Remove decls.
51435         (get_group_info): Remove casts no longer required in C89.
51436         * lib/getusershell.c (readname): Remove casts no longer required in
51437         C89.
51438         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
51439         * lib/getline.c: Whitespace fix, from coreutils.
51440
51441 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51442
51443         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
51444         Check for isascii.
51445
51446         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51447         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51448         Undo previous (whitespace-only) change.
51449
51450 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51451
51452         * lib/exclude.c: Include <ctype.h>
51453         (IN_CTYPE_DOMAIN): New macro.
51454         (is_space): New fn.
51455         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
51456         and empty lines.
51457
51458         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51459         Undo previous (whitespace-only) change.
51460
51461 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51462
51463         * config/srclist-update: Change update back to the old behavior,
51464         leaving whitespace alone.  Use one 'sed' command rather than a
51465         pipeline.
51466         (fixlicense): Now a variable, not a function.
51467         (remove_trailing_blanks): Remove.
51468         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
51469         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51470         Undo previous (whitespace-only) change.
51471
51472 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51473
51474         Merge from coreutils.
51475         * modules/euidaccess: Add lib_SOURCES, include for new
51476         file euidaccess.h
51477
51478 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51479
51480         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51481         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51482         Normalize leading white space and remove trailing white space.
51483
51484         Merge from coreutils
51485         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
51486
51487         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
51488         0.12.1.  These files are now being upgraded automatically by
51489         ../config/srclist-update.
51490
51491 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51492
51493         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51494         Normalize leading white space and remove trailing white space.
51495         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
51496         notice, as per ../config/srclist-update.
51497
51498         Merge from coreutils.
51499         * lib/euidaccess.h: New file.
51500         * lib/euidaccess.c: Include it.
51501         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
51502         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
51503         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
51504
51505 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51506
51507         * config/srclist-update: Add copyright notice.
51508         (remove_id_lines, remove_trailing_blanks): New constants.
51509         (fixfile): Use them to normalize spacing a bit in copied files.
51510         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51511         Normalize leading white space and remove trailing white space.
51512
51513         * config/texinfo.tex: Sync with texinfo.
51514
51515         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
51516         strtoul.c from libc, to merge coreutils whitespace changes.
51517
51518         * config/srclist.txt: Get the following m4 files from gettext:
51519         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
51520         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
51521         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
51522         wint_t.m4.
51523
51524 2003-08-12  Karl Berry  <karl@gnu.org>
51525
51526         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
51527         been made.
51528
51529 2003-08-11  Paul Eggert  <eggert@twinsun.com>
51530
51531         * modules/gnu-source, m4/gnu-source.m4:
51532         Remove; we're assuming Autoconf 2.54 or later now.
51533         Suggested by Bruno Haible.
51534         * MODULES.html.sh (func_all_modules): Remove gnu-source.
51535
51536 2003-08-11  Bruno Haible  <bruno@clisp.org>
51537
51538         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
51539
51540 2003-08-11  Bruno Haible  <bruno@clisp.org>
51541
51542         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
51543         (vasnprintf): Use it instead of wcslen.
51544
51545 2003-08-11  Bruno Haible  <bruno@clisp.org>
51546
51547         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
51548         value to ensure that _Bool promotes to int. Use #define for _Bool when
51549         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
51550
51551 2003-08-10  Karl Berry  <karl@gnu.org>
51552
51553         * lib/regex.h: update from libc (whitespace fix).
51554
51555 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51556
51557         Merge some files from coreutils.  These changes were
51558         originally made by Jim Meyering.
51559         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
51560         many older Unixes require this.
51561         * lib/alloca.c (alloca): Remove cast to argument of free;
51562         no longer needed in C89.
51563         * lib/alloca_.h, regex.h: Fix white space to match
51564         what GNU indent does.
51565
51566 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51567
51568         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
51569         apparently Emacs's Unicode mode got confused before my 2003-08-05
51570         checkin.
51571
51572 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51573
51574         * m4/extensions.m4: New file.
51575         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
51576         Require gl_USE_SYSTEM_EXTENSIONS.
51577         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
51578         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
51579
51580 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51581
51582         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
51583         * modules/extensions, modules/gnu-source: New files.
51584         * modules/timespec, modules/unlocked-io: Depend on extensions.
51585
51586 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51587
51588         * modules/restrict: New file.
51589         * MODULES.html.sh (func_all_modules): Add restrict.
51590         * modules/regex: Depend on restrict.
51591
51592 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51593
51594         * m4/restrict.m4: New file.
51595         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
51596
51597 2003-08-07  Bruno Haible  <bruno@clisp.org>
51598
51599         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
51600         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
51601
51602 2003-08-07  Bruno Haible  <bruno@clisp.org>
51603
51604         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
51605         makes the module 'getndelim2' compatible with the module 'getline'.
51606
51607 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51608
51609         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
51610         byte with "\201" to avoid glitches when editing that source file
51611         with multi-gnome-terminal.
51612
51613 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51614
51615         * lib/bumpalloc.h: Remove.
51616
51617 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51618
51619         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
51620         * modules/bumpalloc: Remove.
51621
51622 2003-08-04  Paul Eggert  <eggert@twinsun.com>
51623
51624         * lib/getloadavg.c: Change copyright notice and spacing to conform to
51625         GNU coding style.
51626
51627         Merge from coreutils.
51628         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
51629         1. From glibc.
51630         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
51631         from Karl Berry, implemented by Jim Meyering.
51632         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
51633         from Dmitry V. Levin.
51634         Remove anachronistic cast of xrealloc.
51635         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
51636         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
51637         type. Otherwise, it wouldn't compile with at least /bin/cc on
51638         ymp-cray-unicos9.0.2.X.
51639         Combine two mostly-identical uses of alloca into one.
51640         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
51641
51642 2003-08-04  Dave Love  <d.love@dl.ac.uk>
51643
51644         [From Emacs.]
51645
51646         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
51647         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
51648         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
51649         obsolete NLIST_NAME_UNION.
51650         [__GNU__]: Undef BSD and FSCALE.
51651         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
51652
51653 2003-08-03  Paul Eggert  <eggert@twinsun.com>
51654
51655         * lib/stdbool_.h (_Bool): Make it signed char, instead of
51656         an enum type, so that it's guaranteed to promote to int.  See:
51657         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
51658
51659 2003-08-03  Karl Berry  <karl@gnu.org>
51660
51661         * config/depcomp: update from automake.
51662
51663 2003-07-31  Paul Eggert  <eggert@twinsun.com>
51664
51665         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
51666         (strerror): Don't assume that a printable int fits in 14 bytes.
51667
51668 2003-07-31  Bruno Haible  <bruno@clisp.org>
51669
51670         * modules/getpass-gnu: New file.
51671         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
51672
51673 2003-07-31  Bruno Haible  <bruno@clisp.org>
51674
51675         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
51676
51677 2003-07-24  Karl Berry  <karl@gnu.org>
51678
51679         * config/missing: update from automake.
51680
51681 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
51682             Bruno Haible  <bruno@clisp.org>
51683
51684         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
51685         * lib/getline.c (getline, getdelim): Likewise.
51686         Remove _GNU_SOURCE define; now it's defined in config.h through
51687         m4/getline.m4.
51688
51689 2003-07-23  Karl Berry  <karl@gnu.org>
51690
51691         * config/config.sub: update from prep.
51692
51693 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51694
51695         * modules/xalloc (Depends-on): Add exitfail.
51696         * modules/xmemcoll: Likewise.
51697
51698 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51699
51700         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
51701         over-parenthesization in macros.
51702
51703         Sync with coreutils.
51704
51705         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
51706         required by C99.
51707
51708         Use `exit_failure' for xalloc and xmemcoll instead of their own
51709         private exit-failure variables.
51710         * lib/xalloc.h (xalloc_exit_failure): Remove.
51711         * lib/xmalloc.c: Likewise.  Include exitfail.h.
51712         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
51713         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
51714         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
51715         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
51716
51717 2003-07-20  Jim Meyering  <jim@meyering.net>
51718
51719         * modules/closeout (Depends-on): Add exitfail.
51720         Suggestion from Bruno Haible.
51721
51722 2003-07-19  Karl Berry  <karl@gnu.org>
51723
51724         * config/config.sub: update from prep.
51725
51726 2003-07-18  Paul Eggert  <eggert@twinsun.com>
51727
51728         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
51729         Remove.
51730         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
51731         to test that it can stand by itself.  Include "exitfail.h".
51732         Clients should set exit_failure instead.
51733         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
51734
51735 2003-07-18  Bruno Haible  <bruno@clisp.org>
51736
51737         * modules/getndelim2: New file.
51738         * modules/getline: Share files with module getndelim2.
51739         * modules/getnline: Depend on getndelim2 instead of sharing files with
51740         it. Add getnline.c to lib_SOURCES.
51741         * MODULES.html.sh (func_all_modules): Add getndelim2.
51742
51743 2003-07-18  Bruno Haible  <bruno@clisp.org>
51744
51745         * m4/getndelim2.m4: New file.
51746         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
51747         invoke gl_PREREQ_GETNDELIM2.
51748         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
51749         gl_PREREQ_GETNDELIM2.
51750         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
51751         gl_GETNDELIM2.
51752
51753 2003-07-18  Bruno Haible  <bruno@clisp.org>
51754
51755         * lib/getndelim2.h: New file.
51756         * lib/getndelim2.c: Make into a module of its own. Include config.h,
51757         getndelim2.h.
51758         (getndelim2): Make non-static. Change return type to ssize_t.
51759         * lib/getline.h: Change argument names.
51760         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
51761         * lib/getnline.c: Include getndelim2.h.
51762
51763 2003-07-18  Andreas Schwab  <schwab@suse.de>
51764
51765         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
51766
51767 2003-07-17  Karl Berry  <karl@gnu.org>
51768
51769         * config/config.sub: update from prep.
51770
51771 2003-07-17  Bruno Haible  <bruno@clisp.org>
51772
51773         * modules/getnline: New file.
51774         * modules/getline: Add lib/getndelim2.c to source file list.
51775         * MODULES.html.sh (func_all_modules): Add getnline.
51776
51777 2003-07-17  Bruno Haible  <bruno@clisp.org>
51778
51779         * m4/getnline.m4: New file.
51780
51781 2003-07-17  Bruno Haible  <bruno@clisp.org>
51782
51783         * m4/Makefile.am.in: Remove file.
51784         * m4/Makefile.am: Remove file.
51785         * m4/Makefile.in: Remove file.
51786
51787 2003-07-17  Bruno Haible  <bruno@clisp.org>
51788
51789         * lib/getnline.h: New file.
51790         * lib/getnline.c: New file.
51791         * lib/getndelim2.c: New file, extracted from getline.c.
51792         (getndelim2): Renamed from getdelim2, with added nmax argument.
51793         * lib/getline.c: Include getndelim2.c.
51794         (getdelim2): Moved out to getndelim2.c.
51795         (getline, getdelim): Update.
51796
51797 2003-07-17  Bruno Haible  <bruno@clisp.org>
51798
51799         * lib/Makefile.am: Remove file.
51800         * lib/Makefile.in: Remove file.
51801
51802 2003-07-17  Bruno Haible  <bruno@clisp.org>
51803
51804         * configure.in: Remove file.
51805         * Makefile.in: Remove file.
51806
51807 2003-07-17  Bruno Haible  <bruno@clisp.org>
51808
51809         * MODULES.html.sh: Put the </BODY> right before </HTML>.
51810
51811 2003-07-16  Karl Berry  <karl@gnu.org>
51812
51813         * config/srclist-update: was running fixlicense twice, which caused
51814                 texinfo.tex to be nullified for some reason.  Simplify,
51815                 $gplsrc is no longer needed as far as I can see?
51816
51817 2003-07-16  Jim Meyering  <jim@meyering.net>
51818
51819         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
51820
51821 2003-07-15  Paul Eggert  <eggert@twinsun.com>
51822
51823         * config/srclist.txt: Get the following files from gettext-runtime/intl
51824         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
51825         ref-del.sin.  From Bruno Haible.
51826         * config/srclist-update (fixfile): Change grep pattern again, since the
51827         previous fix didn't work (there was another trailing $).  Use
51828         '[$]' to escape the $s.
51829
51830 2003-07-15  Karl Berry  <karl@gnu.org>
51831
51832         * lib/vasnprintf.c: update from gettext.
51833
51834 2003-07-15  Karl Berry  <karl@gnu.org>
51835
51836         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
51837         gets expanded when surrounded by '$'.
51838
51839 2003-07-15  Jim Meyering  <jim@meyering.net>
51840
51841         * modules/save-cwd: Don't depend on error.  From Derek Price.
51842
51843 2003-07-15  Jim Meyering  <jim@meyering.net>
51844
51845         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
51846
51847 2003-07-14  Simon Josefsson  <jas@extundo.com>
51848
51849         * modules/mempcpy: New file.
51850         * MODULES.html.sh (func_all_modules): Add mempcpy.
51851
51852 2003-07-14  Simon Josefsson  <jas@extundo.com>
51853
51854         * m4/mempcpy.m4: New file.
51855
51856 2003-07-14  Simon Josefsson  <jas@extundo.com>
51857
51858         * lib/mempcpy.h: New file.
51859         * lib/mempcpy.c: New file.
51860
51861 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51862
51863         * modules/getdate, modules/posixtm: Depend on mktime.
51864
51865 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51866
51867         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
51868         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
51869         unicodeio.c, unicodeio.h, unlocked-io.h:
51870         Switch from LGPL to GPL.
51871
51872 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51873
51874         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
51875         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
51876         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
51877         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
51878         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
51879         updated automatically by ../config/srclist-update.  This changes
51880         their license from LPGL to GPL.
51881
51882 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51883
51884         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
51885         assumed to refer to the root of the most recent stable gettext version.
51886         * config/srclistvars.sh: Add defaults for eggert.
51887         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
51888         Match "This program" as well as "The program".  This is needed
51889         for gettext.
51890
51891 2003-07-14  Jim Meyering  <jim@meyering.net>
51892
51893         Don't emit diagnostics.  Let callers do that.
51894         * lib/save-cwd.c: Don't include "error.h".
51895         (save_cwd): Don't call error.  Ensure that errno is valid
51896         when returning nonzero.
51897
51898         * lib/save-cwd.h (restore_cwd): Update prototype.
51899         * lib/save-cwd.c (restore_cwd): Remove two parameters.
51900         Simplify.  Don't call error upon failure.  Let callers do that.
51901         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
51902         when auditing is enabled.  But don't bother updating the #if.
51903
51904 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
51905
51906         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
51907         it breaks C++ compilation.
51908         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
51909
51910 2003-07-10  Simon Josefsson  <jas@extundo.com>
51911
51912         * modules/strchrnul (Makefile.am): Add strchrnul.h.
51913
51914 2003-07-10  Jim Meyering  <jim@meyering.net>
51915
51916         * m4/clock_time.m4: Remove trailing blank.
51917         * m4/intmax_t.m4: Likewise.
51918
51919 2003-07-10  Jim Meyering  <jim@meyering.net>
51920
51921         * lib/vasnprintf.c: Remove trailing blanks.
51922         Make cpp indentation consistent.
51923
51924 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51925
51926         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
51927         posixver.c, strftime.c, strnlen.c, strverscmp.c:
51928         Switch from LGPL to GPL.
51929
51930 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51931
51932         * config/srclist.txt: Sort sublists.  Add
51933         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
51934         that differ from gnulib for one reason or another; we'd like this list
51935         to be smaller but for now let's document what we have.
51936
51937 2003-07-08  Paul Eggert  <eggert@twinsun.com>
51938
51939         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
51940         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
51941         and sweeter "eval x=$x".
51942         * config/srclist.txt: Get lib/argp* from glibc.
51943
51944 2003-07-07  Paul Eggert  <eggert@twinsun.com>
51945
51946         * lib/mktime.c: Fix some boundary cases and remove need for floating
51947         point.
51948
51949         Issue a compile-time diagnostic if time_t is floating point, or if
51950         two's complement arithmetic is not in effect, or if arithmetic
51951         right shift does not propagate the sign.  These assumptions were
51952         all in the original code but they weren't checked.
51953
51954         (TIME_T_MIDPOINT, verify): New macros.
51955         (__isleap): Remove; it has integer overflow problems.
51956         (leapyear): New function, without those problems.
51957         (ydhms_tm_diff): Remove; splitting into two parts.
51958         (ydhms_diff): New function, containing the arithmetic part of
51959         the old ydhms_tm_diff function.  Issue a compile-time
51960         diagnostic if we are not using C99 integer division.
51961         Avoid casts when possible.
51962         (guess_time_tm): New function, containing the checking part of
51963         the old ydhms_tm_diff function.  Return the new value, rather than
51964         the difference between it and the old.  Accept a new argument T
51965         so that *T specifies the old value.  Check for overflow in the result.
51966
51967         (__mktime_internal): Use a time_t offset, not a long int offset.
51968         This undoes the 2003-06-04 change, which is no longer needed now
51969         that we have better overflow checking.
51970         (localtime_offset): Likewise.
51971
51972         (__mktime_internal): Avoid harmful overflow on hosts where time_t
51973         and long are 64-bit but int is only 32-bit.
51974         (ydhms_diff): Use long int to store year1 and yday1.
51975         Issue a compile-time diagnostic if long int is not wide enough.
51976
51977         (__mktime_internal): Use long int to store adjusted year and yday.
51978         Use plain C rather than preprocessor commands, if that doesn't
51979         affect efficiency.
51980         Check for overflow (and try to repair) after each probe
51981         rather than checking only at the very end.  This avoids some bugs
51982         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
51983         does not equal GMT offset at maximum time).
51984         Use integer to check for overflow rather than floating point; this
51985         is more portable to non-IEEE hosts, and is a tad faster.
51986         When we detect that we are oscillating between two values,
51987         don't check whether tm_isdst has the requested value, since
51988         we already know the answer.  When tm_isdst has the wrong value,
51989         use a different heuristic to find the right one, based on the
51990         extreme values actually observed in practice in tz2003a,
51991         rather than the (overly optimistic) "previous 3 calendar quarters".
51992
51993         (not_equal_tm, print_tm, check_result): Use "const T" rather than
51994         "T const" to accommodate glibc style.
51995         (check_result): Use less-confusing report format.  "long" -> "long int.
51996         (main): Likewise.
51997         Don't loop if the iteration overflows time_t.
51998         Allow a negative step in the iteration.
51999
52000 2003-07-06  Karl Berry  <karl@gnu.org>
52001
52002         * config/depcomp: update from automake.
52003         * config/config.sub: update from prep.
52004
52005 2003-07-03  Karl Berry  <karl@gnu.org>
52006
52007         * config/config.guess: update from prep.
52008
52009 2003-07-01  Paul Eggert  <eggert@twinsun.com>
52010
52011         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
52012         xreadlink.c now includes it unconditionally.
52013
52014 2003-07-01  Paul Eggert  <eggert@twinsun.com>
52015
52016         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
52017         having it depend on HAVE_SYS_TYPES_H.
52018
52019 2003-07-01  Bruno Haible  <bruno@clisp.org>
52020
52021         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
52022         <sys/types.h> should be sufficient.
52023         Reported by Paul Eggert.
52024
52025 2003-06-26  Karl Berry  <karl@gnu.org>
52026
52027         * config/depcomp: update from automake.
52028
52029 2003-06-26  Bruno Haible  <bruno@clisp.org>
52030
52031         * modules/human: Depend on module stdbool.
52032
52033 2003-06-25  Bruno Haible  <bruno@clisp.org>
52034
52035         * modules/readlink: New file.
52036         * modules/xreadlink: Depend on it.
52037         * MODULES.html.sh (func_all_modules): Add readlink.
52038
52039 2003-06-25  Bruno Haible  <bruno@clisp.org>
52040
52041         * m4/readlink.m4: New file.
52042
52043 2003-06-25  Bruno Haible  <bruno@clisp.org>
52044
52045         * lib/readlink.c: New file.
52046
52047 2003-06-22  Karl Berry  <karl@gnu.org>
52048
52049         * config/srclist.txt: update mkinstalldirs from automake.
52050         * config/mkinstalldirs: update.
52051
52052 2003-06-22  Bruno Haible  <bruno@clisp.org>
52053
52054         Portability to mingw32.
52055         * m4/ssize_t.m4: New file, from GNU gettext.
52056         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
52057         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
52058
52059 2003-06-22  Bruno Haible  <bruno@clisp.org>
52060
52061         * modules/safe-read: Add m4/ssize_t.m4.
52062         * modules/xreadlink: Add m4/ssize_t.m4.
52063
52064 2003-06-20  Bruno Haible  <bruno@clisp.org>
52065
52066         Assume C89, so PARAMS isn't needed.
52067         * lib/unicodeio.h (PARAMS): Remove.
52068         * lib/unicodeio.c: Don't use PARAMS.
52069
52070 2003-06-18  Karl Berry  <karl@gnu.org>
52071
52072         * config/config.{guess,sub}: update from prep.
52073
52074 2003-06-18  Jim Meyering  <jim@meyering.net>
52075
52076         Merge changes from coreutils.
52077         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
52078         Remove explicit declarations of xmalloc and realloc.
52079         Include xalloc.h.
52080         (read_utmp): Remove anachronistic cast of xmalloc.
52081
52082 2003-06-17  Paul Eggert  <eggert@twinsun.com>
52083
52084         Assume C89, so PARAMS isn't needed.
52085         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
52086         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
52087         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
52088         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
52089         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
52090         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
52091         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
52092         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
52093         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
52094         lib/xstrtod.h, lib/xstrtol.h: Likewise.
52095         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
52096         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
52097         no longer needed. Anyway, config.h should always be included before any
52098         other file.
52099
52100 2003-06-11  Simon Josefsson  <jas@extundo.com>
52101
52102         * modules/sysexits: New file.
52103         * MODULES.html.sh (func_all_modules): Add sysexits.
52104
52105 2003-06-11  Simon Josefsson  <jas@extundo.com>
52106
52107         * lib/sysexit_.h: New file.
52108
52109 2003-06-11  Derek Price  <derek@ximbiot.com>
52110
52111         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
52112         necessary.
52113
52114 2003-06-11  Bruno Haible  <bruno@clisp.org>
52115
52116         * m4/sysexits.m4: New file.
52117
52118 2003-06-10  Simon Josefsson  <jas@extundo.com>
52119
52120         * lib/argp.h: New file, from glibc.
52121         * lib/argp-ba.c: New file, from glibc.
52122         * lib/argp-eexst.c: New file, from glibc.
52123         * lib/argp-fmtstream.c: New file, from glibc.
52124         * lib/argp-fmtstream.h: New file, from glibc.
52125         * lib/argp-fs-xinl.c: New file, from glibc.
52126         * lib/argp-help.c: New file, from glibc.
52127         * lib/argp-namefrob.h: New file, from glibc.
52128         * lib/argp-parse.c: New file, from glibc.
52129         * lib/argp-pv.c: New file, from glibc.
52130         * lib/argp-pvh.c: New file, from glibc.
52131         * lib/argp-xinl.c: New file, from glibc.
52132
52133 2003-06-10  Simon Josefsson  <jas@extundo.com>
52134
52135         * modules/strchrnul: New file.
52136
52137 2003-06-10  Simon Josefsson  <jas@extundo.com>
52138
52139         * modules/argp: New file.
52140
52141 2003-06-10  Simon Josefsson  <jas@extundo.com>
52142
52143         * m4/strchrnul.m4: New file.
52144
52145 2003-06-10  Simon Josefsson  <jas@extundo.com>
52146
52147         * lib/strchrnul.h: New file.
52148         * lib/strchrnul.c: New file.
52149
52150 2003-06-10  Bruno Haible  <bruno@clisp.org>
52151
52152         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
52153
52154 2003-06-07  Karl Berry  <karl@gnu.org>
52155
52156         * config/config.{guess,sub}: update from prep.
52157
52158 2003-06-07  Jim Meyering  <jim@meyering.net>
52159
52160         * modules/strtod: Use $(...) notation, not @...@ for
52161         AC_REPLACE'd variables.
52162         * modules/localcharset: Likewise.
52163
52164 2003-06-07  Jim Meyering  <jim@meyering.net>
52165
52166         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
52167         in place of my name in the copyright comment.
52168         Remove definition and uses of __P.
52169
52170         From coreutils.
52171         * lib/stat.c: Don't declare xmalloc explicitly.
52172         Instead, include "xalloc.h".
52173         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
52174         xrealloc, and xcalloc return values.
52175         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
52176         Improve comment.
52177         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
52178
52179 2003-06-07  Bruno Haible  <bruno@clisp.org>
52180
52181         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
52182         avoid AC_CONFIG_LINKS.
52183         * modules/fnmatch (Makefile.am): Use explicit creation rule for
52184         fnmatch.h, to avoid AC_CONFIG_LINKS.
52185         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
52186
52187 2003-06-07  Bruno Haible  <bruno@clisp.org>
52188
52189         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
52190         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
52191         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52192         directory.
52193         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
52194         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52195         directory.
52196
52197 2003-06-06  Jim Meyering  <jim@meyering.net>
52198
52199         Merge from coreutils.
52200         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
52201         Consolidate declarations and initializations of *_base* locals.
52202
52203         Merge from coreutils.
52204         This avoids a core dump on systems without GNU putenv,
52205         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
52206         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
52207         (unsetenv): New static function, from GNU libc.
52208         (rpl_putenv): Use it.
52209
52210         * lib/modechange.c: Remove trailing blanks.
52211
52212         Merge from coreutils.
52213         * lib/fsusage.c: Remove declaration of statfs.
52214         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
52215
52216         * lib/posixtm.c: Include <stdbool.h> unconditionally.
52217
52218 2003-06-06  Jim Meyering  <jim@meyering.net>
52219
52220         * lib/stdbool_.h: Renamed from stdbool.h.in.
52221
52222 2003-06-06  Jim Meyering  <jim@meyering.net>
52223             Bruno Haible  <bruno@clisp.org>
52224
52225         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
52226         Adjust Makefile.am snippet not to redirect directly to target.
52227         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
52228
52229 2003-06-05  Paul Eggert  <eggert@twinsun.com>
52230
52231         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
52232         mismatch, look in future quarters as well as past.  This fixes a
52233         bug when processing fall-backwards gaps immediately after a long
52234         period of daylight-saving time.
52235
52236         * lib/mktime.c: Assume freestanding C89 or better.
52237         (HAVE_LIMITS_H): Remove.  Assume it's 1.
52238         (__P): Remove; not used.
52239         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
52240         (mktime, not_equal_tm, print_tm, check_result,
52241         main): Use prototypes.  Use const * where appropriate.
52242         (main): Fix typo in testing code that uncovered by above changes.
52243         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
52244
52245 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52246
52247         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
52248         locale.h, localeconv.  This merges changes from coreutils.
52249
52250         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
52251         It can be removed after the next Autoconf is released.
52252         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
52253         needed.
52254
52255 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52256
52257         * lib/mktime.c: Fix Debian bug 177940
52258         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
52259         (localtime_offset): Now long int, not time_t, because we want it
52260         to be guaranteed to be signed.  All uses changed.
52261         (__mktime_internal): If overflow would occur when adding offset,
52262         don't add it.
52263
52264         Merge 'human' changes from coreutils.  Rewrite to support
52265         locale-specific notations like thousands separators.
52266         * lib/human.c: Simplify authorship notice.
52267         Include human.h immediately after config.h.
52268         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
52269         <limits.h>: Do not include, since human.h does.
52270         (SIZE_MAX, UINTMAX_MAX): New macros.
52271         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
52272         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
52273         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
52274         (power_letter): Renamed from suffixes.
52275         (generate_suffix_backwards): Remove.
52276         (adjust_value): Now takes int style (because of human.h changes)
52277         and long double value (for greater precision on some platforms).
52278         (group_number): New function.
52279         (human_readable): Use it.  Use integer options, not enum.
52280         Put the options before the sizes in the arg list.
52281         Support all the new options.
52282         The old human_readable function has been removed;
52283         use inttostr.h instead.
52284         (human_readable, default_block_size, humblock):
52285         Use uintmax_t, not int, for block sizes.
52286         (human_readable_inexact, block_size_types): Remove.
52287         (block_size_opts): New constant.
52288         (human_options): Renamed from human_block_size, with new signature
52289         that allows block sizes up to UINTMAX_MAX.  All callers changed.
52290         * lib/human.h: Add copyright and authorship notice.
52291         Include <limits.h> and <stdbool.h> unconditionally.
52292         (PARAMS): Remove.  All uses removed.
52293         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
52294         (enum human_inexact_style): Remove tag; now a nameless enum.
52295         (human_floor, human_ceiling, human_round_to_even): Now have
52296         values 2, 0, 1 rather than -1, 1, 0.
52297         (human_group_digits, human_suppress_point_zero, human_autoscale,
52298         human_base_1024, human_SI, human_B): New constants.
52299         (human_readable_inexact, human_block_size): Remove.
52300         (human_readable): Size args are now uintmax_t, not int.
52301         (human_options): New decl.
52302
52303         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
52304         unnecessary now that we assume C89 or better.  This change
52305         imported from coreutils.
52306
52307         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52308         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
52309         in the 2003-05-30 sync from glibc.
52310
52311         .h files should stand alone, but we shouldn't include <sys/types.h>
52312         if we can get away with just <stddef.h>.
52313
52314         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
52315         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
52316         rather than <sys/types.h>, as we merely need size_t.
52317         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
52318         to get size_t.
52319         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
52320         Include <stdio.h>, to get FILE.
52321         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
52322         memcasecmp.h has included <stddef.h> and all we need is size_t.
52323         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
52324         our interface, instead of including <sys/types.h>
52325
52326 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52327
52328         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
52329         now, as glibc mktime is buggy on non-glibc systems.
52330
52331 2003-06-03  Karl Berry  <karl@gnu.org>
52332
52333         * config/config.sub: update from prep.
52334
52335 2003-06-02  Paul Eggert  <eggert@twinsun.com>
52336
52337         [from coreutils]
52338         Fix some minor time-related bugs with POSIX time arguments.
52339         Some valid time stamps were being rejected (notably -1, and
52340         time stamps before 1900 on 64-bit hosts).  And some invalid
52341         time stamps were being accepted, e.g. September 31.
52342
52343         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
52344         that we can return (time_t) -1 successfully.
52345         * lib/posixtm.c: Likewise.
52346         [HAVE_STDBOOL_H]: Include <stdbool.h>.
52347         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
52348         (t): Remove static var.
52349         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
52350         of static var.  All uses changed.
52351         (year): Do not reject years before 1900; they can occur with
52352         64-bit time_t.
52353         (posix_time_parse): Do not check for out-of-range components;
52354         that is now the caller's responsibility, since our checks were
52355         only approximations.
52356         (posixtime): Use mktime to check for out-of-range components,
52357         since it knows them exactly.
52358         If mktime returns (time_t) -1, check whether an error actually occurred
52359         by invoking localtime on -1.
52360         (main) [TEST_POSIXTIME]: Check for input data errors, and report
52361         posixtime failures better.
52362         Improve the test data (in comments only).
52363
52364 2003-06-02  Karl Berry  <karl@gnu.org>
52365
52366         * config/mkinstalldirs (version): new variable.
52367         (--version): new option.
52368         (usage): improve message.
52369
52370 2003-05-30  Karl Berry  <karl@gnu.org>
52371
52372         * lib/mktime.c: update from libc.
52373
52374 2003-05-30  Bruno Haible  <bruno@clisp.org>
52375
52376         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
52377         * config/config.rpath: Upgrade to gettext-0.12.1.
52378
52379 2003-05-30  Bruno Haible  <bruno@clisp.org>
52380
52381         * m4/gettext.m4: Upgrade to gettext-0.12.1.
52382         * m4/nls.m4: New file, from gettext-0.12.1.
52383         * m4/po.m4: New file, from gettext-0.12.1.
52384         * m4/progtest.m4: Upgrade to gettext-0.12.1.
52385
52386 2003-05-30  Bruno Haible  <bruno@clisp.org>
52387
52388         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
52389         * lib/localcharset.h: Likewise.
52390         * lib/localcharset.c: Likewise.
52391
52392 2003-05-29  Karl Berry  <karl@gnu.org>
52393
52394         * config/config.rpath: update from gettext.
52395
52396 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52397
52398         Assume the headers required for C89 freestanding compilers.
52399         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
52400         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
52401         * m4/human.m4 (gl_HUMAN): Likewise.
52402         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
52403         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
52404         * m4/userspec.m4 (gl_USERSPEC): Likewise.
52405         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
52406         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
52407         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
52408
52409 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52410
52411         Assume the headers required for C89 freestanding compilers.
52412         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
52413         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
52414         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
52415         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
52416         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
52417         define, since <limits.h> is guaranteed to do that.
52418         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
52419         * lib/exclude.c: Include <stdbool.h> unconditionally.
52420         * lib/tempname.c: Include <stddef.h> unconditionally.
52421         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
52422         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
52423         <stddef.h> does that.
52424         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
52425         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
52426         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
52427         needed.
52428         * lib/xstrtol.c: Likewise.
52429         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
52430         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
52431
52432         * lib/addext.c (addext): Use assignment rather than cast, to avoid
52433         warnings on some platforms.
52434
52435         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52436         arbitrarily.
52437
52438 2003-05-26  Jim Meyering  <jim@meyering.net>
52439
52440         Merge in a change from coreutils:
52441         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
52442         that is guaranteed to be `no'.  Use `no_such_member' to indicate
52443         that condition, rather than `-1' which is slightly misleading.
52444         Change the name of the cache variable to have the gl_ prefix.
52445         Prompted by a patch from Richard Dawe for DJGPP.
52446
52447 2003-05-24  Karl Berry  <karl@gnu.org>
52448
52449         * config/config.guess: update from prep.
52450
52451 2003-05-22  Karl Berry  <karl@gnu.org>
52452
52453         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
52454
52455 2003-05-20  Karl Berry  <karl@gnu.org>
52456
52457         * config/config.guess: update from prep.
52458
52459 2003-05-18  Karl Berry  <karl@gnu.org>
52460
52461         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
52462         might actually be set by the user.
52463
52464         * config/depcomp, install-sh, mdate-sh: update from automake.
52465
52466 2003-05-17  Bruno Haible  <bruno@clisp.org>
52467
52468         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
52469         invalid expansion for AC_EGREP_CPP.
52470         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
52471         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
52472         Suggested by Akim Demaille <akim@epita.fr> in
52473         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
52474
52475 2003-05-12  Jim Meyering  <jim@meyering.net>
52476
52477         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
52478         the space-padded-by-default conversion specifiers, %e, %k, %l.
52479
52480 2003-05-12  Bruno Haible  <bruno@clisp.org>
52481
52482         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
52483         the string is longer than 4 KB.
52484
52485 2003-05-11  Karl Berry  <karl@gnu.org>
52486
52487         * config/config.{guess,sub}: update from prep.
52488
52489 2003-05-09  Bruno Haible  <bruno@clisp.org>
52490
52491         * modules/error: Add m4/strerror_r.m4 to file list.
52492
52493 2003-05-03  Bruno Haible  <bruno@clisp.org>
52494
52495         Upgrade to Unicode-4.0.
52496         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
52497         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
52498         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
52499         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
52500         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
52501         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
52502         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
52503         Change width of U+E0100..U+E01EF from 1 to 0.
52504
52505 2003-04-25  Jim Meyering  <jim@meyering.net>
52506
52507         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
52508         of type size_t, not int.
52509
52510 2003-04-25  Bruno Haible  <bruno@clisp.org>
52511
52512         * lib/copy-file.c: Include <stddef.h>, for size_t.
52513
52514 2003-04-21  Paul Eggert  <eggert@twinsun.com>
52515
52516         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
52517         code which expansion is under static control.  Patch imported from
52518         Akim Demaille's patch to Bison; see
52519         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
52520
52521 2003-04-14  Bruno Haible  <bruno@clisp.org>
52522
52523         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
52524
52525 2003-04-11  Jim Meyering  <jim@meyering.net>
52526
52527         Merge changes from Coreutils.
52528
52529         2003-03-22  Jim Meyering  <jim@meyering.net>
52530
52531         * lib/strftime.c (widen): Cast alloca return value to proper type.
52532
52533         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
52534
52535         From GNU libc.
52536         * lib/strftime.c (my_strftime): Handle very large width
52537         specifications for numeric values correctly.  Improve checks for
52538         overflow.
52539
52540         2003-01-19  Jim Meyering  <jim@meyering.net>
52541
52542         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
52543         definitions.
52544         (nl_get_alt_digit) [! defined my_strftime]: Define.
52545         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
52546         _nl_get_alt_digit and _nl_get_walt_digit.
52547
52548         * lib/strftime.c (my_strftime): Merge in locale-related changes from
52549         libc. These changes have no effect outside of _LIBC.
52550
52551 2003-04-10  Bruno Haible  <bruno@clisp.org>
52552
52553         * modules/findprog: New file.
52554         * MODULES.html.sh (func_all_modules): Add it.
52555
52556 2003-04-10  Bruno Haible  <bruno@clisp.org>
52557
52558         * m4/findprog.m4: New file.
52559         * m4/eaccess.m4: New file.
52560
52561 2003-04-10  Bruno Haible  <bruno@clisp.org>
52562
52563         * lib/findprog.h: New file, from GNU gettext.
52564         * lib/findprog.c: New file, from GNU gettext.
52565
52566 2003-04-05  Jim Meyering  <jim@meyering.net>
52567
52568         Merge changes from Coreutils.
52569
52570         * lib/exclude.h (PARAMS): Remove definition and uses.
52571         * lib/exclude.c: Remove uses of `PARAMS'.
52572
52573         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
52574         Add test-cases for DOS filenames. Declare program_name.
52575         (main): Set up program_name.  Patch by Rich Dawe.
52576
52577         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
52578         error from mntctl.
52579         Use mntctl's return value to drive the entry-processing loop, since
52580         we can't rely on the value of the vmt_length member in the last
52581         entry.  On some systems doing so could result in exhausting
52582         virtual memory.  Based in part on a patch from Mike Jetzer.
52583
52584 2003-04-04  Bruno Haible  <bruno@clisp.org>
52585
52586         * modules/linebreak: New file.
52587         * MODULES.html.sh (func_all_modules): Add it.
52588
52589 2003-04-04  Bruno Haible  <bruno@clisp.org>
52590
52591         * m4/linebreak.m4: New file.
52592
52593 2003-04-04  Bruno Haible  <bruno@clisp.org>
52594
52595         * lib/linebreak.h: New file, from GNU gettext.
52596         * lib/linebreak.c: New file, from GNU gettext with slight
52597         modifications.
52598         * lib/lbrkprop.h: New file, from GNU gettext.
52599
52600 2003-04-03  Bruno Haible  <bruno@clisp.org>
52601
52602         * modules/utf8-ucs4: New file.
52603         * modules/utf16-ucs4: New file.
52604         * modules/ucs4-utf8: New file.
52605         * modules/ucs4-utf16: New file.
52606         * MODULES.html.sh (func_all_modules): Add them.
52607
52608 2003-04-03  Bruno Haible  <bruno@clisp.org>
52609
52610         * m4/utf-ucs4.m4: New file.
52611         * m4/ucs4-utf.m4: New file.
52612
52613 2003-04-03  Bruno Haible  <bruno@clisp.org>
52614
52615         * lib/utf8-ucs4.h: New file, from GNU gettext.
52616         * lib/utf16-ucs4.h: New file, from GNU gettext.
52617         * lib/ucs4-utf8.h: New file, from GNU gettext.
52618         * lib/ucs4-utf16.h: New file, from GNU gettext.
52619
52620 2003-04-02  Bruno Haible  <bruno@clisp.org>
52621
52622         * modules/binary-io: New file.
52623         * MODULES.html.sh (func_all_modules): Add it.
52624
52625 2003-04-02  Bruno Haible  <bruno@clisp.org>
52626
52627         * lib/binary-io.h: New file, from GNU gettext.
52628
52629 2003-04-01  Bruno Haible  <bruno@clisp.org>
52630
52631         * modules/pathname: New file.
52632         * MODULES.html.sh (func_all_modules): Add it.
52633
52634 2003-04-01  Bruno Haible  <bruno@clisp.org>
52635
52636         * lib/pathname.h: New file, from GNU gettext.
52637         * lib/concatpath.c: New file, from GNU gettext.
52638
52639 2003-03-30  Bruno Haible  <bruno@clisp.org>
52640
52641         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
52642
52643 2003-03-30  Bruno Haible  <bruno@clisp.org>
52644
52645         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
52646         function chown() doesn't exist.
52647
52648 2003-03-28  Bruno Haible  <bruno@clisp.org>
52649
52650         * modules/copy-file: New file.
52651         * MODULES.html.sh (func_all_modules): Add it.
52652
52653 2003-03-28  Bruno Haible  <bruno@clisp.org>
52654
52655         * m4/copy-file.m4: New file.
52656
52657 2003-03-28  Bruno Haible  <bruno@clisp.org>
52658
52659         * lib/copy-file.h: New file, from GNU gettext.
52660         * lib/copy-file.c: New file, from GNU gettext.
52661
52662 2003-03-18  Jim Meyering  <jim@meyering.net>
52663
52664         * lib/quote.c (quote_n): Fix typo in comment.
52665
52666 2003-03-18  Bruno Haible  <bruno@clisp.org>
52667
52668         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
52669         checking.
52670         * m4/onceonly_2_57.m4: Likewise.
52671
52672 2003-03-17  Bruno Haible  <bruno@clisp.org>
52673
52674         * m4/onceonly.m4: Require autoconf 2.54 or newer.
52675         (m4_quote): Remove macro.
52676         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
52677
52678 2003-03-14  Jim Meyering  <jim@meyering.net>
52679
52680         Merge changes from Coreutils.
52681         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
52682         to be const, in order to avoid warnings.
52683         (obstack_room): Likewise.
52684         (obstack_empty_p): Likewise.
52685
52686 2003-03-14  Bruno Haible  <bruno@clisp.org>
52687
52688         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
52689         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
52690
52691 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52692
52693         Merge changes from Bison.
52694         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
52695         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
52696         when compiling Bison 1.875's `bitset bset = obstack_alloc
52697         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
52698         * lib/hash.c: Include <stdbool.h> unconditionally.
52699
52700 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52701
52702         * m4/onceonly.m4 (m4_quote): New macro.
52703         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
52704         Quote AC_FOREACH variable-expansions properly.
52705
52706 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52707
52708         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
52709
52710 2003-03-09  Paul Eggert  <eggert@twinsun.com>
52711
52712         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
52713         Reported by Bruce Becker; see:
52714         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
52715
52716 2003-03-03  Paul Eggert  <eggert@twinsun.com>
52717             Bruno Haible  <bruno@clisp.org>
52718
52719         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
52720         Reported by John Hughes, see
52721         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
52722
52723 2003-02-20  Bruno Haible  <bruno@clisp.org>
52724
52725         * MODULES.html.sh (func_all_modules): Add poll.
52726
52727 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52728
52729         * modules/poll: New file.
52730
52731 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52732
52733         * lib/poll_.h: New file.
52734         * lib/poll.c: New file.
52735
52736 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52737
52738         * m4/poll.m4: New file.
52739
52740 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52741
52742         * modules/mathl: New file.
52743
52744 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52745
52746         * lib/mathl.h: New file.
52747         * lib/acosl.c: New file.
52748         * lib/asinl.c: New file.
52749         * lib/atanl.c: New file.
52750         * lib/ceill.c: New file.
52751         * lib/cosl.c: New file.
52752         * lib/expl.c: New file.
52753         * lib/floorl.c: New file.
52754         * lib/frexpl.c: New file.
52755         * lib/ldexpl.c: New file.
52756         * lib/logl.c: New file.
52757         * lib/sincosl.c: New file.
52758         * lib/sinl.c: New file.
52759         * lib/sqrtl.c: New file.
52760         * lib/tanl.c: New file.
52761         * lib/trigl.c: New file.
52762         * lib/trigl.h: New file.
52763
52764 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52765
52766         * m4/mathl.m4: New file.
52767
52768 2003-02-18  Bruno Haible  <bruno@clisp.org>
52769
52770         * MODULES.html.sh (func_all_modules): Add mathl.
52771
52772 2003-02-17  Bruno Haible  <bruno@clisp.org>
52773
52774         * modules/mkdtemp: New module.
52775         * MODULES.html.sh (func_all_modules): Add it.
52776
52777 2003-02-17  Bruno Haible  <bruno@clisp.org>
52778
52779         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
52780
52781 2003-02-17  Bruno Haible  <bruno@clisp.org>
52782
52783         * lib/mkdtemp.h: New file, from GNU gettext.
52784         * lib/mkdtemp.c: New file, from GNU gettext.
52785
52786 2003-02-02  Jim Meyering  <jim@meyering.net>
52787
52788         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
52789         e.g. glibc-2.2.93.
52790
52791 2003-01-31  Bruno Haible  <bruno@clisp.org>
52792
52793         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
52794         'rpl_rename'.
52795         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
52796         'rpl_strnlen'.
52797         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
52798         'rpl_strtod'.
52799         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
52800         'rpl_utime'.
52801
52802 2003-01-31  Bruno Haible  <bruno@clisp.org>
52803
52804         * lib/rename.c: #undef rename before defining rpl_rename.
52805         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
52806
52807 2003-01-30  Bruno Haible  <bruno@clisp.org>
52808
52809         * modules/vasnprintf, modules/vasprintf: New modules.
52810         * MODULES.html.sh (func_all_modules): Add them.
52811
52812 2003-01-30  Bruno Haible  <bruno@clisp.org>
52813
52814         * m4/signed.m4: New file, from GNU gettext.
52815         * m4/longdouble.m4: New file, from GNU gettext.
52816         * m4/wchar_t.m4: New file, from GNU gettext.
52817         * m4/wint_t.m4: New file, from GNU gettext.
52818         * m4/vasnprintf.m4: New file.
52819         * m4/vasprintf.m4: New file.
52820
52821 2003-01-30  Bruno Haible  <bruno@clisp.org>
52822
52823         * lib/printf-args.h: New file, from GNU gettext.
52824         * lib/printf-args.c: New file, from GNU gettext.
52825         * lib/printf-parse.h: New file, from GNU gettext.
52826         * lib/printf-parse.c: New file, from GNU gettext.
52827         * lib/vasnprintf.h: New file, from GNU gettext.
52828         * lib/vasnprintf.c: New file, from GNU gettext.
52829         * lib/asnprintf.c: New file, from GNU gettext.
52830         * lib/vasprintf.h: New file, from GNU gettext with modifications.
52831         * lib/vasprintf.c: New file, from GNU gettext.
52832         * lib/asprintf.c: New file, from GNU gettext.
52833
52834 2003-01-29  Bruno Haible  <bruno@clisp.org>
52835
52836         * modules/stpncpy: New module.
52837         * MODULES.html.sh (func_all_modules): Add it.
52838
52839 2003-01-29  Bruno Haible  <bruno@clisp.org>
52840
52841         * m4/stpncpy.m4: New file.
52842
52843 2003-01-29  Bruno Haible  <bruno@clisp.org>
52844
52845         * lib/stpncpy.h: New file, from GNU gettext with modifications.
52846         * lib/stpncpy.c: New file, from GNU gettext with modifications.
52847
52848 2003-01-28  Bruno Haible  <bruno@clisp.org>
52849
52850         * modules/c-ctype: New module.
52851         * MODULES.html.sh (func_all_modules): Add it.
52852
52853 2003-01-28  Bruno Haible  <bruno@clisp.org>
52854
52855         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
52856         Paul Eggert.
52857         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
52858         Paul Eggert.
52859
52860 2003-01-27  Bruno Haible  <bruno@clisp.org>
52861
52862         * modules/xsetenv: New module.
52863         * MODULES.html.sh (func_all_modules): Add it.
52864
52865 2003-01-27  Bruno Haible  <bruno@clisp.org>
52866
52867         * lib/xsetenv.h: New file, from GNU gettext.
52868         * lib/xsetenv.c: New file, from GNU gettext.
52869
52870 2003-01-23  Jim Meyering  <jim@meyering.net>
52871
52872         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
52873         from working on systems without dirfd (at least Irix and OSF1/Tru64).
52874
52875 2003-01-23  Bruno Haible  <bruno@clisp.org>
52876
52877         * modules/minmax: New module.
52878         * MODULES.html.sh (func_all_modules): Add it.
52879
52880 2003-01-23  Bruno Haible  <bruno@clisp.org>
52881
52882         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
52883         Eggert.
52884
52885 2003-01-22  Bruno Haible  <bruno@clisp.org>
52886
52887         * modules/exit: New module.
52888         * MODULES.html.sh (func_all_modules): Add it.
52889
52890 2003-01-22  Bruno Haible  <bruno@clisp.org>
52891
52892         * lib/exit.h: New file, from GNU gettext.
52893
52894 2003-01-19  Bruno Haible  <bruno@clisp.org>
52895
52896         * gnulib-tool: Recognize option --extract-maintainer.
52897         (func_get_maintainer): New function.
52898         * modules/*: Add Maintainer entry.
52899
52900 2003-01-16  Jim Meyering  <jim@meyering.net>
52901
52902         * m4/regex.m4: The `regex' struct is both input and output.
52903         Initialize it before each use.  Patch by Tim Waugh.
52904
52905 2003-01-16  Bruno Haible  <bruno@clisp.org>
52906
52907         * MODULES.html.sh: Add a table of contents. Add the module name as
52908         leftmost column. Add hyperlinks.
52909
52910 2003-01-15  Bruno Haible  <bruno@clisp.org>
52911
52912         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
52913
52914 2003-01-15  Bruno Haible  <bruno@clisp.org>
52915
52916         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
52917         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
52918         suffix.
52919
52920 2003-01-15  Bruno Haible  <bruno@clisp.org>
52921
52922         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
52923
52924 2003-01-15  Bruno Haible  <bruno@clisp.org>
52925
52926         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
52927         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
52928
52929 2003-01-14  Jim Meyering  <jim@meyering.net>
52930
52931         * lib/same.c (same_name): Tweak a comment.
52932
52933 2003-01-14  Bruno Haible  <bruno@clisp.org>
52934
52935         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
52936         when a string comparison is sufficient.
52937
52938 2003-01-14  Bruno Haible  <bruno@clisp.org>
52939
52940         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
52941         'unsigned int'.
52942
52943 2003-01-14  Bruno Haible  <bruno@clisp.org>
52944
52945         * lib/hash-pjw.c: Add comment about low quality of this function.
52946
52947 2003-01-13  Bruno Haible  <bruno@clisp.org>
52948
52949         * modules/stpcpy: Distribute lib/stpcpy.h.
52950         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
52951
52952 2003-01-13  Bruno Haible  <bruno@clisp.org>
52953
52954         * modules/*: Add a description.
52955         * modules/strpbrk: Fix Makefile.am snippet.
52956         * modules/strtoimax: Fix dependencies.
52957         * modules/strtoumax: Likewise.
52958
52959 2003-01-13  Bruno Haible  <bruno@clisp.org>
52960
52961         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
52962         * modules/alloca (Makefile.am): All object files depend on alloca.h.
52963         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
52964
52965 2003-01-13  Bruno Haible  <bruno@clisp.org>
52966
52967         * gnulib-tool (func_create_testdir): Store config/* files in the main
52968         directory.
52969         * config.rpath: Move to ...
52970         * config/config.rpath: ... here.
52971         * modules/gettext: Contains config/config.rpath, not config.rpath.
52972         * modules/iconv: Likewise.
52973
52974 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52975
52976         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52977         to avoid collisions with libcurses and libreadline.
52978
52979         * m4/getstr.m4: Remove.
52980         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
52981
52982 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52983
52984         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52985         to avoid collisions with libcurses and libreadline.
52986
52987         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
52988         * lib/getstr.h, getstr.c: Remove.
52989         * lib/getline.c: Include "getline.h", to check interface.
52990         Move body of old getstr.c here: this defines MIN_CHUNK and
52991         declares getdelim2, which is renamed from getstr.
52992         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
52993
52994         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
52995         All uses changed.
52996         * lib/linebuffer.h: Likewise.
52997         (readline): Remove backward-compatibility macro.
52998
52999 2003-01-12  Paul Eggert  <eggert@twinsun.com>
53000
53001         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
53002         to avoid collisions with libcurses and libreadline.
53003         * getstr: Remove.
53004         * MODULES.html.sh: Remove getstr.
53005         * modules/getline: Depend on unlocked-io, not getstr.
53006
53007 2003-01-12  Jim Meyering  <jim@meyering.net>
53008
53009         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
53010
53011 2003-01-10  Bruno Haible  <bruno@clisp.org>
53012
53013         * modules/alloca: Change Makefile.am requirements. Simplify Include
53014         requirements. Add lib/alloca_.h to file list.
53015
53016 2003-01-10  Bruno Haible  <bruno@clisp.org>
53017
53018         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
53019
53020 2003-01-10  Bruno Haible  <bruno@clisp.org>
53021
53022         * lib/alloca_.h: New file.
53023         * lib/getdate.y: Unconditionally include alloca.h.
53024         * lib/makepath.c: Likewise.
53025         * lib/setenv.c: Likewise.
53026         * lib/userspec.c: Likewise.
53027
53028 2003-01-09  Karl Berry  <karl@gnu.org>
53029
53030         * MODULES.html.sh: include `dirname $0` in PATH, to find
53031         gnulib-tool.
53032
53033 2003-01-09  Bruno Haible  <bruno@clisp.org>
53034
53035         * modules/stdbool: Change configure.ac, Makefile.am requirements.
53036         Simplify Include requirements. Add lib/stdbool.h.in to file list.
53037
53038 2003-01-09  Bruno Haible  <bruno@clisp.org>
53039
53040         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
53041
53042 2003-01-09  Bruno Haible  <bruno@clisp.org>
53043
53044         * lib/stdbool.h.in: New file.
53045
53046 2003-01-09  Bruno Haible  <bruno@clisp.org>
53047
53048         * gnulib-tool (func_all_modules): Ignore files ending in ~.
53049         * MODULES.html.sh: Likewise.
53050
53051 2003-01-08  Jim Meyering  <jim@meyering.net>
53052
53053         * lib/full-write.c: Undefine and define-away `const' after inclusion
53054         of errno.h, not before.  Suggestion from Bruno Haible.
53055
53056 2003-01-08  Bruno Haible  <bruno@clisp.org>
53057
53058         * modules/full-read: Depend on full-write.
53059
53060 2003-01-08  Bruno Haible  <bruno@clisp.org>
53061
53062         * lib/safe-read.c: Include specification header first, to ensure its
53063         selfcontainedness.
53064         * lib/full-write.c: Likewise.
53065
53066 2003-01-07  Jim Meyering  <jim@meyering.net>
53067
53068         * lib/full-write.c: Rework so that it may serve to define full_read,
53069         too.
53070         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
53071
53072 2003-01-07  Bruno Haible  <bruno@clisp.org>
53073
53074         * lib/strtoimax.c: Include <stdint.h> as an alternative to
53075         <inttypes.h>.
53076         * lib/xstrtol.h: Likewise.
53077         * lib/xstrtoimax.c: Likewise.
53078         * lib/xstrtoumax.c: Likewise.
53079         * lib/human.h: Likewise.
53080
53081         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
53082         on systems that have <inttypes.h> but not <stdint.h>.
53083
53084 2003-01-07  Bruno Haible  <bruno@clisp.org>
53085
53086         * MODULES.html.sh: Add copyright notice.
53087         (missed_files): Omit CVS directory entries.
53088         (func_module): Make it work with sed-3.02.
53089         * MODULES.txt: Remove file.
53090
53091 2003-01-06  Jim Meyering  <jim@meyering.net>
53092
53093         * lib/version-etc.c: Update year in translatable copyright string.
53094
53095 2003-01-03  Karl Berry  <karl@gnu.org>
53096
53097         * config/config.{guess,sub}: update from prep.
53098
53099 2003-01-02  Karl Berry  <karl@gnu.org>
53100
53101         * doc/COPYING.DOC: belatedly updated to 1.2.
53102
53103 2003-01-01  Karl Berry  <karl@gnu.org>
53104
53105         * gnulib-tool (func_verify_module): report module name $module in
53106         error message, not $1.
53107         * gnulib-tool (create-testdir): don't complain if destdir couldn't
53108         be created, only if it doesn't exist.
53109         * gnulib-tool (last_checkin_date): don't expand the $Date here.
53110
53111 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53112
53113         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
53114
53115 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53116
53117         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
53118         memcmp if strcoll doesn't work.
53119
53120 2002-12-31  Bruno Haible  <bruno@clisp.org>
53121
53122         * lib/utime.c (utime_null): No need to call ftruncate if the file was
53123         nonempty.
53124
53125 2002-12-31  Bruno Haible  <bruno@clisp.org>
53126
53127         * lib/memcoll.c (STRCOLL): New macro.
53128         (memcoll): Use it.
53129
53130 2002-12-31  Bruno Haible  <bruno@clisp.org>
53131
53132         * lib/localcharset.h: New file.
53133         * lib/localcharset.c: Include it.
53134         * lib/unicodeio.c: Likewise.
53135
53136 2002-12-31  Bruno Haible  <bruno@clisp.org>
53137
53138         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
53139         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
53140
53141 2002-12-31  Bruno Haible  <bruno@clisp.org>
53142
53143         * lib/getline.h: Include <stddef.h>, for size_t.
53144
53145         * lib/unicodeio.h: Include <stddef.h>, for size_t.
53146         * lib/unicodeio.c: Don't include <stddef.h>.
53147
53148 2002-12-31  Bruno Haible  <bruno@clisp.org>
53149
53150         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
53151         HAVE_TM_ZONE.
53152
53153 2002-12-24  Karl Berry  <karl@gnu.org>
53154
53155         * config/config.guess: update from prep.
53156
53157 2002-12-24  Bruno Haible  <bruno@clisp.org>
53158
53159         General infrasructure.
53160         * m4/README: Rewritten.
53161         * m4/onceonly.m4: New file.
53162         * m4/onceonly_2_57.m4: New file.
53163
53164         Module atexit.
53165         * m4/atexit.m4: New file.
53166
53167         Module strtod.
53168         * m4/strtod.m4: New file.
53169
53170         Module strtol.
53171         * m4/strtol.m4: New file.
53172
53173         Module strtoul.
53174         * m4/strtoul.m4: New file.
53175
53176         Module memchr.
53177         * m4/memchr.m4: New file.
53178
53179         Module memcmp.
53180         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
53181         (jm_FUNC_MEMCMP): Invoke it.
53182
53183         Module memcpy.
53184         * m4/memcpy.m4: New file.
53185
53186         Module memmove.
53187         * m4/memmove.m4: New file.
53188
53189         Module memset.
53190         * m4/memset.m4: New file.
53191
53192         Module strcspn.
53193         * m4/strcspn.m4: New file.
53194
53195         Module strpbrk.
53196         * m4/strpbrk.m4: New file.
53197
53198         Module strstr.
53199         * m4/strstr.m4: New file.
53200
53201         Module strerror.
53202         * m4/strerror.m4: New file.
53203
53204         Module mktime.
53205         * m4/mktime.m4: Renamed from jm-mktime.m4.
53206         (gl_PREREQ_MKTIME): New macro.
53207         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
53208
53209         Module malloc.
53210         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
53211         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
53212         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
53213
53214         Module realloc.
53215         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
53216         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
53217         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
53218
53219         Module strftime.
53220         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
53221         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
53222         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
53223         gl_TM_GMTOFF.
53224         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
53225
53226         Module xalloc.
53227         * m4/xalloc.m4: New file.
53228
53229         Module alloca.
53230         * m4/alloca.m4: New file.
53231
53232         Module putenv.
53233         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
53234         (jm_FUNC_PUTENV): Invoke it.
53235
53236         Module setenv.
53237         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
53238         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
53239         when invoked twice.
53240         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
53241         gt_FUNC_SETENV.
53242
53243         Module memrchr.
53244         * m4/memrchr.m4: New file.
53245
53246         Module stpcpy.
53247         * m4/stpcpy.m4: New file.
53248
53249         Module strcase.
53250         * m4/strcase.m4: New file.
53251
53252         Module strdup.
53253         * m4/strdup.m4: New file.
53254
53255         Module strnlen.
53256         * m4/strnlen.m4: New file.
53257
53258         Module strndup.
53259         * m4/strndup.m4: New file.
53260
53261         Module xstrtod.
53262         * m4/xstrtod.m4: New file.
53263
53264         Module xstrtol.
53265         * m4/xstrtol.m4: New file.
53266
53267         Module getdate.
53268         * m4/getdate.m4: New file.
53269
53270         Module unlocked-io.
53271         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
53272         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
53273         * m4/jm-glibc-io.m4n: Remove file.
53274
53275         Module long-options.
53276         * m4/long-options.m4: New file.
53277
53278         Module md5.
53279         * m4/md5.m4: New file.
53280
53281         Module sha.
53282         * m4/sha.m4: New file.
53283
53284         Module getstr.
53285         * m4/getstr.m4: New file.
53286
53287         Module getline.
53288         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
53289         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
53290         <sys/types.h>, for size_t. Use the function name gnu_getline, not
53291         simply getline. Infoke gl_PREREQ_GETLINE.
53292
53293         Module obstack.
53294         * m4/obstack.m4: New file.
53295
53296         Module hash.
53297         * m4/hash.m4: New file.
53298
53299         Module readtokens.
53300         * m4/readtokens.m4: New file.
53301
53302         Module strverscmp.
53303         * m4/strverscmp.m4: New file.
53304
53305         Module stdbool.
53306         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
53307         OSF/1.
53308
53309         Module strtoll.
53310         * m4/strtoll.m4: New file.
53311
53312         Module strtoull.
53313         * m4/strtoull.m4: New file.
53314
53315         Module strtoimax.
53316         * m4/strtoimax.m4: New file.
53317
53318         Module strtoumax.
53319         * m4/strtoumax.m4: New file.
53320
53321         Module xstrtoimax.
53322         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
53323         jm_AC_PREREQ_XSTRTOIMAX.
53324         Moved the strtol prerequisites to strtol.m4.
53325         Moved the strtoll prerequisites to strtoll.m4.
53326         Moved the strtoimax prerequisites to strtoimax.m4.
53327
53328         Module xstrtoumax.
53329         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
53330         jm_AC_PREREQ_XSTRTOUMAX.
53331         Moved the strtoul prerequisites to strtoul.m4.
53332         Moved the strtoull prerequisites to strtoull.m4.
53333         Moved the strtoumax prerequisites to strtoumax.m4.
53334
53335         Module chown.
53336         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
53337         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
53338
53339         Module dup2.
53340         * m4/dup2.m4: New file.
53341
53342         Module ftruncate.
53343         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
53344         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
53345
53346         Module getgroups.
53347         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
53348         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
53349
53350         Module gettimeofday.
53351         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
53352         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
53353         gl_PREREQ_GETTIMEOFDAY.
53354
53355         Module mkdir.
53356         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
53357         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
53358
53359         Module mkstemp.
53360         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
53361         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
53362         jm_AC_TYPE_UINTMAX_T.
53363         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
53364
53365         Module stat.
53366         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
53367         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
53368
53369         Module lstat.
53370         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
53371         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
53372
53373         Module timespec.
53374         * m4/timespec.m4 (gl_TIMESPEC): New macro.
53375         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
53376         * m4/st_mtim.m4: Indentation.
53377
53378         Module nanosleep.
53379         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
53380         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
53381         gl_PREREQ_NANOSLEEP.
53382
53383         Module regex.
53384         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
53385         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
53386         (gl_REGEX): New macro.
53387
53388         Module rename.
53389         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
53390         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
53391
53392         Module rmdir.
53393         * m4/rmdir.m4: New file.
53394
53395         Module utime.
53396         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
53397         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
53398         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
53399
53400         Module dirname.
53401         * m4/dirname.m4: New file.
53402
53403         Module getopt.
53404         * m4/getopt.m4: New file.
53405
53406         Module unistd-safer.
53407         * m4/unistd-safer.m4: New file.
53408
53409         Module fnmatch.
53410         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
53411         declaration.
53412         (gl_PREREQ_FNMATCH_EXTRA): New macro.
53413         (gl_FUNC_FNMATCH_POSIX): New macro.
53414         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
53415         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
53416         simply fnmatch.
53417
53418         Module exclude.
53419         * m4/exclude.m4: New file.
53420
53421         Module human.
53422         * m4/human.m4: New file.
53423
53424         Module acl.
53425         * m4/acl.m4: Nop.
53426
53427         Module backupfile.
53428         * m4/backupfile.m4: New file.
53429         * m4/d-ino.m4: Indentation.
53430
53431         Module fsusage.
53432         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
53433         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
53434         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
53435
53436         Module dirfd.
53437         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
53438         requirements.
53439
53440         Module euidaccess.
53441         * m4/euidaccess.m4: New file.
53442
53443         Module file-type.
53444         * m4/file-type.m4: New file.
53445
53446         Module fileblocks.
53447         * m4/fileblocks.m4: New file.
53448
53449         Module filemode.
53450         * m4/filemode.m4: New file.
53451
53452         Module isdir.
53453         * m4/isdir.m4: New file.
53454
53455         Module lchown.
53456         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
53457         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
53458
53459         Module makepath.
53460         * m4/makepath.m4: New file.
53461
53462         Module modechange.
53463         * m4/modechange.m4: New file.
53464
53465         Module mountlist.
53466         * m4/mountlist.m4: New file.
53467         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
53468         Indentation.
53469
53470         Module path-concat.
53471         * m4/path-concat.m4: New file.
53472
53473         Module pathmax.
53474         * m4/pathmax.m4: New file.
53475
53476         Module same.
53477         * m4/same.m4: New file.
53478
53479         Module save-cwd.
53480         * m4/save-cwd.m4: New file.
53481
53482         Module savedir.
53483         * m4/savedir.m4: New file.
53484
53485         Module xgetcwd.
53486         * m4/xgetcwd.m4: New file.
53487         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
53488
53489         Module xreadlink.
53490         * m4/xreadlink.m4: New file.
53491
53492         Module safe-read.
53493         * m4/safe-read.m4: New file.
53494
53495         Module safe-write.
53496         * m4/safe-write.m4: New file.
53497
53498         Module closeout.
53499         * m4/closeout.m4: New file.
53500
53501         Module stdio-safer.
53502         * m4/stdio-safer.m4: New file.
53503
53504         Module getpass.
53505         * m4/getpass.m4: New file.
53506
53507         Module getugroups.
53508         * m4/getugroups.m4: New file.
53509
53510         Module group-member.
53511         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
53512         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
53513
53514         Module idcache.
53515         * m4/idcache.m4: New file.
53516
53517         Module userspec.
53518         * m4/userspec.m4: New file.
53519
53520         Module gettime.
53521         * m4/clock_time.m4: New file.
53522         * m4/gettime.m4: New file.
53523
53524         Module settime.
53525         * m4/settime.m4: New file.
53526
53527         Module posixtm.
53528         * m4/posixtm.m4: New file.
53529
53530         Module gethostname.
53531         * m4/gethostname.m4: New file.
53532
53533         Module canon-host.
53534         * m4/canon-host.m4: New file.
53535
53536         Module gettext.
53537         * m4/codeset.m4: New file, from gettext-0.11.5.
53538         * m4/gettext.m4: New file, from gettext-0.11.5.
53539         * m4/glibc21.m4: New file, from gettext-0.11.5.
53540         * m4/iconv.m4: New file, from gettext-0.11.5.
53541         * m4/intdiv0.m4: New file, from gettext-0.11.5.
53542         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
53543         * m4/inttypes.m4: New file, from gettext-0.11.5.
53544         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
53545         * m4/isc-posix.m4: New file, from gettext-0.11.5.
53546         * m4/lcmessage.m4: New file, from gettext-0.11.5.
53547         * m4/lib-ld.m4: New file, from gettext-0.11.5.
53548         * m4/lib-link.m4: New file, from gettext-0.11.5.
53549         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
53550         * m4/progtest.m4: New file, from gettext-0.11.5.
53551         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
53552         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
53553         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
53554
53555         Module localcharset.
53556         * m4/localcharset.m4: New file.
53557
53558         Module hard-locale.
53559         * m4/hard-locale.m4: New file.
53560
53561         Module mbswidth.
53562         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
53563         onceonly macros.
53564         * m4/mbrtowc.m4: Add comment.
53565
53566         Module memcasecmp.
53567         * m4/memcasecmp.m4: New file.
53568
53569         Module memcoll.
53570         * m4/memcoll.m4: New file.
53571
53572         Module unicodeio.
53573         * m4/unicodeio.m4: New file.
53574
53575         Module rpmatch.
53576         * m4/rpmatch.m4: New file.
53577
53578         Module yesno.
53579         * m4/yesno.m4: New file.
53580
53581         Module exitfail.
53582         * m4/exitfail.m4: New file.
53583
53584         Module c-stack.
53585         * m4/c-stack.m4 (gl_C_STACK): New macro.
53586         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
53587
53588         Module error.
53589         * m4/error.m4 (gl_ERROR): New macro.
53590         (jm_PREREQ_ERROR): Use onceonly macros.
53591
53592         Module fatal.
53593         * m4/fatal.m4: New file.
53594
53595         Module getloadavg.
53596         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
53597         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
53598
53599         Module getpagesize.
53600         * m4/getpagesize.m4: New file.
53601
53602         Module getusershell.
53603         * m4/getusershell.m4: New file.
53604
53605         Module physmem.
53606         * m4/physmem.m4: New file.
53607
53608         Module posixver.
53609         * m4/posixver.m4: New file.
53610
53611         Module quotearg.
53612         * m4/quotearg.m4: New file.
53613
53614         Module quote.
53615         * m4/quote.m4: New file.
53616
53617         Module readutmp.
53618         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
53619
53620         Module sig2str.
53621         * m4/sig2str.m4: New file.
53622
53623         Other.
53624         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
53625         ulonglong.m4.
53626         * m4/intmax_t.m4: New file.
53627         * m4/d-type.m4: Indentation.
53628         * m4/jm-macros.m4: Update.
53629         * m4/prereq.m4 (jm_PREREQ): Update.
53630         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
53631         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
53632         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
53633         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
53634         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
53635         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
53636         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
53637         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
53638         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
53639         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
53640         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
53641         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
53642         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
53643         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
53644         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
53645         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
53646         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
53647         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
53648         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
53649
53650 2002-12-24  Bruno Haible  <bruno@clisp.org>
53651
53652         * MODULES.txt: Update according to m4/ changes.
53653
53654         Module gettext.
53655         * config.rpath: New file, from gettext-0.11.5.
53656
53657         * modules/*: New module descriptions.
53658         * gnulib-tool: New file.
53659         * MODULES.html.sh: New file.
53660
53661 2002-12-21  Karl Berry  <karl@gnu.org>
53662
53663         * doc/fdl.texi: update to version 1.2.
53664
53665 2002-12-19  Karl Berry  <karl@gnu.org>
53666
53667         * config/config.guess: update from prep.
53668
53669 2002-12-18  Bruno Haible  <bruno@clisp.org>
53670
53671         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
53672         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
53673
53674 2002-12-17  Bruno Haible  <bruno@clisp.org>
53675
53676         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
53677         stdlib.h, string.h.
53678
53679 2002-12-17  Bruno Haible  <bruno@clisp.org>
53680
53681         * lib/canon-host.c (strdup): Remove unused declaration.
53682
53683         * lib/fsusage.c: Include full_read.h.
53684         (get_fs_usage): Use full_read instead of safe_read.
53685
53686         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
53687
53688 2002-12-12  Karl Berry  <karl@gnu.org>
53689
53690         * config/config.guess: update from prep.
53691
53692 2002-12-11  Bruno Haible  <bruno@clisp.org>
53693
53694         * m4/setenv.m4: New file, from gettext-0.11.5.
53695
53696 2002-12-11  Bruno Haible  <bruno@clisp.org>
53697
53698         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
53699         not unsetenv().
53700         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
53701         modifications:
53702
53703         2002-12-11  Bruno Haible  <bruno@clisp.org>
53704
53705                 * setenv.c (alloca): Fall back to malloc.
53706                 (freea): New macro.
53707                 (setenv): Use freea() to free memory allocated with alloca().
53708
53709         2002-11-13  Bruno Haible  <bruno@clisp.org>
53710
53711                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
53712                 function declarations.
53713                 * unsetenv.c (unsetenv): Likewise.
53714
53715         2002-03-04  Bruno Haible  <bruno@clisp.org>
53716
53717                 Portability to AIX 4.3.3.
53718                 * unsetenv.c: New file, extracted from setenv.c.
53719                 * setenv.c: Move the unsetenv() function to unsetenv.c.
53720
53721         2001-12-20  Bruno Haible  <bruno@clisp.org>
53722
53723                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
53724                 use malloc instead. For SunOS 4.
53725
53726         2001-12-11  Bruno Haible  <bruno@clisp.org>
53727
53728                 * setenv.c: Declare alloca.
53729                 (compar_fn_t): New typedef.
53730                 (KNOWN_VALUE, STORE_VALUE): Use it.
53731
53732         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
53733         setenv.h.
53734
53735 2002-12-10  Paul Eggert  <eggert@twinsun.com>
53736
53737         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
53738         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
53739         Choose values that are less likely to collide with system fnmatch
53740         options.
53741         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
53742         defined (e.g., a pure POSIX system).
53743         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
53744         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
53745
53746 2002-12-06  Paul Eggert  <eggert@twinsun.com>
53747
53748         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
53749         a pain in practice to deal with generated m4 files.  This change
53750         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
53751
53752         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
53753         and jm-glibc-io.m4, as they are no longer a special case.
53754         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
53755         kludge and the auto-generation stuff.  Check only whether the
53756         functions are declared, not whether they exist, since older hosts
53757         that don't declare the functions can't use the optimization anyway.
53758
53759 2002-12-06  Jim Meyering  <jim@meyering.net>
53760
53761         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
53762
53763         Merge in changes from libc's misc/error.c, in preparation
53764         for the merge of gnulib's changes back into libc.
53765
53766         * lib/error.c (_): Define only if not already defined.
53767         Move definition to follow all #include directives.
53768         Include unlocked-io.h only if !_LIBC.
53769         [_LIBC]: Include <libio/libioP.h>.
53770         [USE_IN_LIBIO]: Include <libio/iolibio.h>
53771         (fflush): Tweak definition to use INTUSE.
53772         (putc): Define.
53773
53774 2002-12-05  Paul Eggert  <eggert@twinsun.com>
53775
53776         * lib/alloca.c [defined emacs]: Include "lisp.h".
53777         (xalloc_die) [defined emacs]: New macro.
53778         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
53779         [! defined emacs]: Include <xalloc.h>.
53780         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
53781         (pointer): Typedef to POINTER_TYPE *.
53782         (malloc): Remove decl; we now always use xmalloc.
53783         (alloca): Use old-style definition, since Emacs needs this.
53784         Check for arithmetic overflow when computing combined size.
53785
53786 2002-12-04  Paul Eggert  <eggert@twinsun.com>
53787
53788         Do not generate unlocked-io.h automatically, since it's easier to
53789         maintain it by hand.
53790
53791         * lib/unlocked-io.h: New file, from GNU diffutils,
53792         but with proper copyright notice and attribution.
53793         * lib/gen-uio: Remove.
53794         * lib/Makefile.am: Add copyright notice.
53795         (libfetish_a_SOURCES): Add unlocked-io.h.
53796         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
53797         (DISTCLEANFILES, io_functions): Remove macros.
53798         (EXTRA_DIST): Remove gen_uio.
53799         (unlocked-io.h): Remove rule.
53800
53801 2002-12-04  Jim Meyering  <jim@meyering.net>
53802
53803         Reflect the fact that stat.c and lstat.c are no longer generated.
53804         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
53805         (DISTCLEANFILES): Likewise.
53806         (EXTRA_DIST): Likewise.
53807         (all_local): Don't depend on stat.c or lstat.c.
53808         (stat.c, lstat.c): Remove rules.
53809         (EXTRA_DIST): Remove xstat.in.
53810
53811         * lib/xstat.in: Remove file.  Contents moved into stat.c.
53812         * lib/stat.c: New file.  Contents mostly from xstat.in.
53813         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
53814         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
53815
53816         * lib/safe-read.c: Rework so that it may serve to define safe_write,
53817         too.
53818         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
53819
53820 2002-12-03  Jim Meyering  <jim@meyering.net>
53821
53822         * lib/safe-read.c, safe-write.c: Change variable names and comments,
53823         but not semantics, to minimize the differences between these two files.
53824         (safe_read): Change comment to mention SAFE_READ_ERROR.
53825
53826         * lib/safe-read.c (IS_EINTR): Define.
53827         (safe_read): Use IS_EINTR in place of in-function cpp directives.
53828
53829 2002-12-02  Jim Meyering  <jim@meyering.net>
53830
53831         * lib/safe-read.c (EINTR): Define.
53832         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
53833         (INT_MAX): Provide fallback.
53834         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
53835
53836         * lib/safe-read.h (SAFE_READ_ERROR): Define.
53837
53838 2002-12-02  Bruno Haible  <bruno@clisp.org>
53839
53840         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
53841         Define, taken from safe-read.c.
53842         (INT_MAX): Provide fallback.
53843         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
53844         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
53845
53846         * lib/safe-read.c (EINTR): Remove definition.
53847         (safe_read): Don't use EINTR if it is absent.
53848
53849 2002-12-01  Jim Meyering  <jim@meyering.net>
53850
53851         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
53852         zero.
53853         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
53854
53855 2002-11-27  Paul Eggert  <eggert@twinsun.com>
53856
53857         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
53858         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
53859         with `if (! (value < limit)) abort ();', for readability.
53860
53861 2002-11-26  Karl Berry  <karl@gnu.org>
53862
53863         * lib/strdup.c: copy from libc again, with jim's ok.
53864         * lib/.cppi-disable: re-add strdup.c
53865
53866 2002-11-25  Karl Berry  <karl@gnu.org>
53867
53868         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
53869         instead of "strtol.c".
53870
53871 2002-11-25  Karl Berry  <karl@gnu.org>
53872
53873         * config/install-sh: update from automake for variable quoting, $0 in
53874         error msgs, etc.
53875
53876         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
53877         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
53878         entry.
53879
53880 2002-11-25  Jim Meyering  <jim@meyering.net>
53881
53882         * lib/mktime.c: Sync from libc, now that it has the latest fix.
53883
53884 2002-11-24  Karl Berry  <karl@gnu.org>
53885
53886         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
53887         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
53888
53889 2002-11-24  Jim Meyering  <jim@meyering.net>
53890
53891         Update from coreutils:
53892
53893         * lib/mktime.c: Merge in changes from libc.
53894
53895         Avoid a link-time failure on some Linux systems.
53896         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
53897         (otherwise).
53898         (__mon_yday): Declare with the STATIC attribute.
53899         (__mktime_internal): Likewise.
53900         Based on a report from Greg Schafer.
53901
53902 2002-11-23  Jim Meyering  <jim@meyering.net>
53903
53904         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
53905         Use `unsigned', not `int', as type of index.
53906
53907         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
53908
53909         * lib/fsusage.c: Remove unneeded parentheses around operands of
53910         `defined'.
53911
53912 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53913
53914         * lib/quotearg.h: Allow multiple inclusion by surrounding with
53915         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
53916         so that we can be included first.
53917         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
53918         * lib/quotearg.c: Include quotearg.h immediately after config.h.
53919         No need to include stddef.h or sys/types.h any more.
53920         Surround local include files with "", not "<>".
53921         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
53922         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
53923         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
53924         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
53925         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
53926         (ISPRINT): Remove; no longer needed now that we assume C89.
53927
53928         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
53929         Preserve errno.
53930
53931         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
53932         quotearg_char): Use SIZE_MAX rather than
53933         (size_t) -1 when we are talking about "infinity".
53934
53935         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
53936
53937 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53938
53939         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
53940         hint that one should use `if (! x) abort ();' rather than `assert
53941         (x);', and anyway it's one less thing to worry about configuring.
53942         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
53943         hash_rehash, hash_insert): Use abort rather than assert.
53944
53945 2002-11-22  Bruno Haible  <bruno@clisp.org>
53946
53947         * lib/safe-read.h: Assume C89. Add comments.
53948         (safe_read): Change return type to size_t.
53949         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
53950         byte counts > SSIZE_MAX correctly.
53951         * lib/safe-write.h: New file.
53952         * lib/safe-write.c: New file.
53953         * lib/full-read.h: New file.
53954         * lib/full-read.c: New file.
53955         * lib/full-write.h: Assume C89. Add comments.
53956         * lib/full-write.c: Include safe-write.h.
53957         (full_write): Rewritten to use safe_write.
53958         Suggested by Jim Meyering and Paul Eggert.
53959
53960 2002-11-21  Jim Meyering  <jim@meyering.net>
53961
53962         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
53963
53964         Merge in changes from the coreutils.
53965
53966         2002-09-25  Paul Eggert  <eggert@twinsun.com>
53967         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
53968         <stdint.h>.
53969         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
53970         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
53971         int.  Work more efficiently if X is the same width as uintmax_t.
53972         Do not compare X to -1, to avoid bogus compiler warning.
53973         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
53974         Don't assume that f_frsize and f_bsize are the same type.
53975
53976         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
53977         warning on FreeBSD.
53978
53979         * lib/makepath.c (make_path): Restore umask *before* creating the final
53980         component.
53981         (make_path): Minor reformatting.
53982
53983         * lib/xmalloc.c: Adjust to work with new autoconf macros,
53984         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
53985         HAVE_MALLOC/HAVE_REALLOC.
53986
53987         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
53988         dummy ones.  At least on GNU/Linux systems, `auto' means something
53989         else.
53990         From Michael Stone.
53991
53992 2002-11-21  Bruno Haible  <bruno@clisp.org>
53993
53994         Remove case insensitive option matching.
53995         * lib/argmatch.h (argcasematch): Remove declaration.
53996         (ARGCASEMATCH): Remove macro.
53997         (__xargmatch_internal): Remove case_sensitive argument.
53998         (XARGMATCH): Update.
53999         (XARGCASEMATCH): Remove macro.
54000         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
54001         case_sensitive argument.
54002         (argcasematch): Remove function.
54003         (__xargmatch_internal): Remove case_sensitive argument.
54004         (main): Use XARGMATCH instead of XARGCASEMATCH.
54005
54006         * lib/xmalloc.c: Change compile-time error message. Add comment about
54007         required autoconf version.
54008
54009 2002-11-20  Paul Eggert  <eggert@twinsun.com>
54010
54011         Merge argmatch cleanups from Bison.  Assume C89.
54012
54013         * lib/argmatch.c: Include config.h here, not in argmatch.h.
54014         Include stdlib.h, for EXIT_FAILURE.
54015         Always include <string.h>, since we assume C89.
54016         (EXIT_FAILURE): Remove pre-C89 bug workaround.
54017         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
54018         Include <stddef.h> instead, since it's all we need for size_t.
54019         (PARAMS): Remove.  All uses removed.
54020         (ARRAY_CARDINALITY): Do not bother to #undef.
54021         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
54022         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
54023         Remove unnecessary parentheses.
54024         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
54025         Insert necessary parentheses.
54026         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
54027         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
54028
54029 2002-11-19  Bruno Haible  <bruno@clisp.org>
54030
54031         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
54032         * lib/mbswidth.h: Include <stddef.h>, for size_t.
54033
54034         * lib/mbswidth.h (PARAMS): Remove macro.
54035         (mbswidth, mbsnwidth): Use ANSI C function declarations.
54036         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
54037
54038         * lib/gcd.h (PARAMS): Remove macro.
54039         (gcd): Use ANSI C function declarations.
54040         * lib/gcd.c (gcd): Likewise.
54041
54042 2002-11-15  Bruno Haible  <bruno@clisp.org>
54043
54044         * lib/strcspn.c: Include <stddef.h>.
54045         (strcspn): Use ANSI C function declaration. Change return type to
54046         size_t. Use NULL.
54047         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
54048         (strpbrk): Use NULL.
54049         * lib/strpbrk.h (PARAMS): Remove macro.
54050         (strpbrk): Use ANSI C function declaration.
54051         * lib/strstr.c: Don't include <sys/types.h>.
54052         * lib/strstr.h (PARAMS): Remove macro.
54053         (strstr): Use ANSI C function declarations.
54054
54055 2002-11-14  Karl Berry  <karl@gnu.org>
54056
54057         * config/mkinstalldirs: `do' on separate line, instead of
54058         `for var; do'.
54059
54060 2002-11-06  Bruno Haible  <bruno@clisp.org>
54061
54062         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
54063         * lib/gcd.c (gcd): Likewise.
54064
54065 2002-11-05  Bruno Haible  <bruno@clisp.org>
54066
54067         * lib/gcd.h: New file, from gettext-0.11.5.
54068         * lib/gcd.c: New file, from gettext-0.11.5.
54069
54070 2002-11-05  Bruno Haible  <bruno@clisp.org>
54071
54072         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54073         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54074         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54075         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54076
54077         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
54078         <libintl.h>.
54079         * lib/makepath.c: Include gettext.h instead of <locale.h> and
54080         <libintl.h>.
54081
54082         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
54083         * lib/human.c: Include gettext.h instead of <libintl.h>.
54084         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
54085         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
54086         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
54087         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
54088         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
54089         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
54090         (textdomain): Remove definition.
54091         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
54092
54093         * lib/long-options.c: Remove include of <libintl.h> and definition of
54094         _.
54095         * lib/same.c: Remove include of <libintl.h> and definition of _.
54096
54097 2002-11-04  Owen Taylor  <otaylor@redhat.com>
54098
54099         * lib/config.charset: A few additions for Solaris.
54100
54101 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54102
54103         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
54104         * lib/localcharset.c (locale_charset): Declare as extern "C".
54105
54106 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54107
54108         * lib/config.charset: msdos in uk_UA uses CP1125.
54109
54110 2002-11-04  Bruno Haible  <bruno@clisp.org>
54111
54112         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
54113         * lib/strcase.h: New file, from GNU gettext-0.11.5.
54114         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
54115         * lib/strstr.h: New file, from GNU gettext-0.11.5.
54116         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
54117
54118 2002-11-04  Bruno Haible  <bruno@clisp.org>
54119
54120         * lib/localcharset.c (locale_charset): Don't return an empty string.
54121
54122 2002-11-04  Bruno Haible  <bruno@clisp.org>
54123
54124         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
54125         aliases.
54126
54127 2002-11-04  Bruno Haible  <bruno@clisp.org>
54128
54129         * lib/config.charset: Update for newest glibc. Add canonical names
54130         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
54131
54132 2002-11-04  Bruno Haible  <bruno@clisp.org>
54133
54134         * lib/config.charset: Add support for NetBSD.
54135
54136 2002-11-04  Bruno Haible  <bruno@clisp.org>
54137
54138         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
54139
54140 2002-11-01  Bruno Haible  <bruno@clisp.org>
54141
54142         * configure.in: Add AC_CONFIG_AUX_DIR call.
54143         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
54144         test/Makefile.
54145         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
54146
54147 2002-09-28  Karl Berry  <karl@gnu.org>
54148
54149         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
54150         installed automake until the next release, since changes have been
54151         made.
54152
54153 2002-09-25  Karl Berry  <karl@gnu.org>
54154
54155         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
54156         * lib/getopt*: copy from libc/posix.
54157         * lib/gettext.h: copy from gettext.
54158         * lib/.cppi-disable: add strdup.c, gettext.h.
54159
54160 2002-09-25  Karl Berry  <karl@gnu.org>
54161
54162         * config/srclist.txt: enable gettext.h check.
54163         * config/config.{guess,sub}: update from prep.
54164         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
54165                 from automake 1.6.3.
54166         See srclist*.
54167
54168 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
54169
54170         * regex.c (PATFETCH): Remove the translating fetch.
54171         (PATFETCH_RAW): Rename to PATFETCH.
54172         (set_image_of_range): New fun.
54173         (SET_RANGE_TABLE_WORK_AREA): Use it.
54174         (regex_compile): Don't translate the pattern chars so eagerly.
54175         Only do it when inserting an `exactn' bytecode or when handling
54176         a char-range.
54177         (mutually_exclusive_p): Avoid empty statement.
54178
54179 2002-07-06  Jim Meyering  <meyering@lucent.com>
54180
54181         * m4/README: Don't mention Makefile.am.in.
54182         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
54183
54184 2002-07-01  Jim Meyering  <meyering@lucent.com>
54185
54186         * lib/c-stack.c: Include sys/time.h.
54187         From Volker Borchert.
54188
54189 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54190
54191         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
54192
54193 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54194
54195         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
54196         New macro.  Use it uniformly instead of
54197         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
54198         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
54199         reported by Vin Shelton.
54200
54201 2002-06-22  Paul Eggert  <eggert@twinsun.com>
54202
54203         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
54204         Do not assume SA_SIGINFO behavior.
54205         Bug reported by Jim Meyering on NetBSD 1.5.2.
54206
54207 2002-06-22  Jim Meyering  <meyering@lucent.com>
54208
54209         * m4/c-stack.m4: New file, from diffutils-2.8.2.
54210         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
54211
54212         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
54213         now that configure.ac uses AC_GNU_SOURCE.
54214         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
54215         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
54216
54217         Update to latest tools.  Suggestions from Paul Eggert.
54218         * m4/stdbool.m4: New file, from diffutils-2.8.2.
54219         * m4/gnu-source.m4: Update from diffutils-2.8.2.
54220         * m4/fnmatch.m4: Likewise.
54221         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
54222         to AC_HEADER_STDBOOL
54223
54224 2002-06-22  Jim Meyering  <meyering@lucent.com>
54225
54226         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
54227         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
54228
54229 2002-06-22  Jim Meyering  <meyering@lucent.com>
54230
54231         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
54232
54233         * lib/exitfail.c, exitfail.h: Likewise.
54234         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
54235
54236         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
54237         of fnmatch.h.
54238         (EXTRA_DIST): Add fnmatch_loop.c.
54239         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
54240
54241         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
54242         * lib/fnmatch.c: Update from diffutils-2.8.2.
54243         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
54244         * lib/fnmatch.h: Remove file.
54245
54246 2002-06-21  Jim Meyering  <meyering@lucent.com>
54247
54248         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
54249         * m4/mbrtowc.m4: Likewise.
54250
54251         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
54252         * m4/mbswidth.m4: Reflect name change:
54253         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
54254         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
54255
54256         * m4/lib-link.m4: Update from gettext-0.11.2.
54257         * m4/gettext.m4: Likewise.
54258
54259         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
54260         From Alfred M. Szmidt.
54261
54262 2002-06-18  Paul Eggert  <eggert@twinsun.com>
54263
54264         * lib/file-type.h: Report an error if neither S_ISREG nor
54265         S_IFREG is defined, instead of using a test specific to glibc
54266         2.2.  This should be safe, since POSIX requires S_ISREG and
54267         Unix Version 7 had S_IFREG.  We don't need to check for
54268         <sys/types.h> since we don't use any symbols that it defines.
54269
54270 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
54271
54272         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
54273         $@-t, so that each temporary file name is unique and valid in the first
54274         8 characters, for operation under DOS.
54275
54276 2002-06-15  Paul Eggert  <eggert@twinsun.com>
54277
54278         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
54279
54280 2002-06-15  Jim Meyering  <meyering@lucent.com>
54281
54282         Work even with DJGPP 2.03, which lacks support for symlinks.
54283         From Richard Dawe.
54284         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
54285         is defined.
54286         * lib/lchown.c (S_ISLNK): Likewise.
54287
54288 2002-06-15  Jim Meyering  <meyering@lucent.com>
54289
54290         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
54291         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
54292         have been included before this file.
54293
54294 2002-06-14  Jim Meyering  <meyering@lucent.com>
54295
54296         * lib/file-type.h: Use the version from diffutils-2.8.2.
54297         * lib/file-type.c: Likewise.
54298
54299 2002-06-07  Jim Meyering  <meyering@lucent.com>
54300
54301         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
54302         They're needed at least for NetBSD 1.5.2.
54303         ($statxfs_includes): Include those same headers.
54304         ($statxfs_includes): Include sys/vfs.h if available.
54305         ($statxfs_includes): Likewise for sys/statvfs.h.
54306         Check for the following members in both structs statfs and statvfs:
54307         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
54308
54309 2002-06-01  Jim Meyering  <meyering@lucent.com>
54310
54311         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
54312         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
54313
54314 2002-05-28  Jim Meyering  <meyering@lucent.com>
54315
54316         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
54317         Reported by Volker Borchert.
54318
54319 2002-05-27  Jim Meyering  <meyering@lucent.com>
54320
54321         Fix a problem seen only on nonconforming systems whereby ls.c's
54322         use of localtime, and then of gettimeofday would cause trouble:
54323         the localtime call used to initialize rpl_gettimeofday's save
54324         mechanism would clobber ls's current local time information so
54325         that in any long listing the first file would always be listed
54326         with date 1970-01-01.  Analysis by Volker Borchert.
54327
54328         * lib/gettimeofday.c (localtime): Undefine.
54329         (rpl_localtime): New function.
54330
54331 2002-05-27  Jim Meyering  <meyering@lucent.com>
54332
54333         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
54334         localtime.
54335
54336         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
54337         use the replacement function; it wouldn't resolve at link time.
54338         Reported by Volker Borchert.
54339
54340 2002-05-22  Jim Meyering  <meyering@lucent.com>
54341
54342         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
54343         file-type.h.
54344         * lib/file-type.h: New file.
54345         * lib/file-type.c (file_type): New file/function.  Extracted from
54346         diffutils.
54347
54348 2002-04-30  Jim Meyering  <meyering@lucent.com>
54349
54350         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
54351
54352 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54353
54354         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
54355
54356 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54357
54358         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
54359         Do not check for alloca.h (no longer used) or stdbool.h (was never
54360         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
54361
54362 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54363
54364         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
54365
54366 2002-04-29  Jim Meyering  <meyering@lucent.com>
54367
54368         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
54369         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
54370         Use AC_FUNC_STRNLEN here instead.
54371
54372         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
54373         With autoconf-2.53a, it's part of AC_PROG_CC.
54374
54375 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54376
54377         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
54378         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
54379
54380 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54381
54382         * lib/sig2str.h, lib/sig2str.c: New files.
54383         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
54384
54385 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54386
54387         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
54388         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
54389         of 127, since 64 is the largest conceivable number for ancient
54390         nonstandard hosts.
54391         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
54392
54393 2002-04-28  Jim Meyering  <meyering@lucent.com>
54394
54395         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
54396
54397 2002-04-24  Jim Meyering  <meyering@lucent.com>
54398
54399         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
54400         (jm_PREREQ): Use it.
54401
54402         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
54403         mach/mach.h fcntl.h.
54404         Check for this function: setlocale.
54405
54406 2002-04-24  Jim Meyering  <meyering@lucent.com>
54407
54408         * lib/gettext.h: New file, from Gettext.
54409         * lib/Makefile.am (INCLUDES): Remove -I../intl.
54410         (libfetish_a_SOURCES): Add gettext.h.
54411
54412 2002-04-16  Jim Meyering  <meyering@lucent.com>
54413
54414         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
54415         ut_pid, ut_id, ut_exit.
54416
54417 2002-04-16  Jim Meyering  <meyering@lucent.com>
54418
54419         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
54420         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
54421         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
54422
54423 2002-04-12  Jim Meyering  <meyering@lucent.com>
54424
54425         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
54426         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
54427         existence of the getmntinfo function.  Needed for Darwin 5.3.
54428
54429         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
54430         This is necessary at least on Darwin 5.3.
54431
54432         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
54433         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
54434         strnlen.o in the library, and that makes some versions of ranlib
54435         object.
54436
54437 2002-04-12  Jim Meyering  <meyering@lucent.com>
54438
54439         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
54440
54441 2002-04-09  Jim Meyering  <meyering@lucent.com>
54442
54443         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
54444         to be more precise.  Rather than saying we're checking whether the
54445         function `works', say what we're testing.
54446         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
54447         Reported by Bruno Haible.
54448
54449 2002-03-10  Jim Meyering  <meyering@lucent.com>
54450
54451         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
54452         Suggestion from Santiago Vila.
54453
54454 2002-03-08  Jim Meyering  <meyering@lucent.com>
54455
54456         * lib/rename.c: Mention that this wrapper is needed also on
54457         mips-dec-ultrix4.4 systems.
54458
54459 2002-03-02  Jim Meyering  <meyering@lucent.com>
54460
54461         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
54462         not HAVE_CLOCK_SETTIME.
54463
54464 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54465
54466         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
54467         Check for clock_settime.
54468
54469 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54470
54471         * lib/nanosleep.h: Rename to....
54472         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
54473
54474         * lib/gettime.c: New file.
54475         * lib/settime.c: New file.
54476         * lib/stime.c: Remove.
54477
54478         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
54479         timespec.h.  Remove nanosleep.h.
54480
54481 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54482
54483         * m4/acl.m4: New file.
54484         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
54485         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
54486
54487 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54488
54489         * lib/acl.c, lib/acl.h: New files.
54490         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
54491
54492 2002-02-24  Jim Meyering  <meyering@lucent.com>
54493
54494         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
54495         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
54496         cause trouble.  Reported by Nelson Beebe.
54497
54498 2002-02-23  Paul Eggert  <eggert@twinsun.com>
54499
54500         * lib/path-concat.c (xpath_concat): Reorder code to pacify
54501         compilers that don't know that xalloc_die never returns.
54502
54503 2002-02-20  Jim Meyering  <meyering@lucent.com>
54504
54505         * lib/getdate.c: Regenerate using bison-1.33.
54506
54507 2002-02-17  Jim Meyering  <meyering@lucent.com>
54508
54509         * config/config.guess (main): Don't use `head -1'; it's no longer
54510         portable. Use `sed 1q' instead.
54511
54512 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
54513
54514         * m4/codeset.m4: Upgrade to gettext-0.11.
54515         * m4/gettext.m4: Upgrade to gettext-0.11.
54516         * m4/glibc21.m4: Upgrade to gettext-0.11.
54517         * m4/iconv.m4: Upgrade to gettext-0.11.
54518         * m4/isc-posix.m4: Upgrade to gettext-0.11.
54519         * m4/lcmessage.m4: Upgrade to gettext-0.11.
54520         * m4/lib-ld.m4: New file, from gettext-0.11.
54521         * m4/lib-link.m4: New file, from gettext-0.11.
54522         * m4/lib-prefix.m4: New file, from gettext-0.11.
54523         * m4/progtest.m4: Upgrade to gettext-0.11.
54524
54525 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54526
54527         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
54528         (jm_PREREQ): Use it.
54529
54530 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54531
54532         * lib/posixver.c, lib/posixver.h: New files.
54533         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54534
54535 2002-02-02  Paul Eggert  <eggert@twinsun.com>
54536             Bruno Haible  <bruno@clisp.org>
54537
54538         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
54539         (fwrite_success_callback): New declaration.
54540         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
54541         print_unicode_char. Call failure callback instead of error.
54542         (fwrite_success_callback): New function.
54543         (exit_failure_callback): New function.
54544         (fallback_failure_callback): New function.
54545         (print_unicode_char): Call unicode_to_mb.
54546
54547 2002-01-26  Jim Meyering  <meyering@lucent.com>
54548
54549         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
54550         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
54551
54552 2002-01-26  Jim Meyering  <meyering@lucent.com>
54553
54554         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
54555
54556 2002-01-22  Paul Eggert  <eggert@twinsun.com>
54557
54558         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
54559
54560 2002-01-22  Jim Meyering  <meyering@lucent.com>
54561
54562         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
54563         Otherwise, some versions of automake would omit the rule that makes
54564         Makefile from Makefile.in.
54565
54566 2002-01-21  Paul Eggert  <eggert@twinsun.com>
54567
54568         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
54569         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54570         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
54571         (memcoll): Set errno to zero if there is no error.
54572
54573         * lib/quotearg.c (quotearg_buffer_restyled):
54574         Fix bug with quoting buffers containing NUL when backslashing escapes.
54575         This bug was exposed by the other changes in this patch.
54576         (quotearg_n_options): New arg ARGSIZE.
54577         All callers changed.
54578         (quoting_options_from_style): New function.
54579         (quotearg_n_style): Use it.
54580         (quotearg_n_style_mem): New function.
54581
54582         * lib/quotearg.h (quotearg_n_style_mem): New function.
54583
54584 2002-01-19  Jim Meyering  <meyering@lucent.com>
54585
54586         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
54587         Remove useless quotes: DF_PROG="df".
54588         * m4/strnlen.m4: New file.
54589
54590 2002-01-16  Paul Eggert  <eggert@twinsun.com>
54591
54592         * lib/backupfile.c (ISDIGIT): Comment fix.
54593         * lib/getdate.y (ISDIGIT): Likewise.
54594         * lib/posixtm.c (ISDIGIT, year): Likewise.
54595         * lib/strverscmp.c (ISDIGIT): Likewise.
54596         * lib/userspec.c (ISDIGIT): Likewise.
54597
54598 2002-01-16  Jim Meyering  <meyering@lucent.com>
54599
54600         * lib/getdate.y: Add three semicolons, each just before a closing
54601         brace. Bison (as of version 1.31) no longer papers over that mistake.
54602
54603 2002-01-05  Jim Meyering  <meyering@lucent.com>
54604
54605         * lib/version-etc.c (version_etc_copyright): Update copyright year.
54606
54607 2001-12-19  Paul Eggert  <eggert@twinsun.com>
54608
54609         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
54610         not silently exit merely because the output buffer happens to
54611         have nothing pending.
54612
54613 2001-12-18  Paul Eggert  <eggert@twinsun.com>
54614
54615         See the big note in ../ChangeLog.
54616         * lib/human.c (suffixes): Prefer K to k for 1024.
54617         (generate_suffix_backwards): New function.
54618         (human_readable_inexact): Use it.
54619         * lib/xstrtol.c (__xstrtol): If there is no number but there
54620         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
54621         Accept 'K' as well as 'k'.
54622
54623 2001-12-15  Jim Meyering  <meyering@lucent.com>
54624
54625         * lib/regex.h (__restrict_arr): Update from libc.
54626
54627         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
54628         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
54629         (STREQ): Define.
54630
54631 2001-12-14  Jim Meyering  <meyering@lucent.com>
54632
54633         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
54634         Suggestion from Bruno Haible.
54635
54636 2001-12-10  Jim Meyering  <meyering@lucent.com>
54637
54638         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
54639         xrealloc, Instead, include "xalloc.h".
54640         (initbuffer): Don't cast xmalloc return value to char*.
54641         (readline): Reword comment.
54642         Don't cast xrealloc return value to char*
54643         Return NULL, not 0.
54644
54645 2001-12-09  Jim Meyering  <meyering@lucent.com>
54646
54647         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
54648         about `signed and unsigned type in conditional expression'.
54649         * lib/posixtm.c (posix_time_parse): Likewise.
54650
54651         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
54652
54653         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
54654         to avoid a pedantic warning.
54655
54656         * lib/getstr.c: Don't include assert.h.
54657         (getstr): Remove warning-evoking assertions.
54658         Return -1 if offset parameter is out of bounds.
54659         Change the type of a local from int to size_t.
54660
54661         * lib/strftime.c (my_strftime_localtime_r): Include this function
54662         definition in the `#if ! HAVE_TM_GMTOFF' block.
54663
54664         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
54665         Include xalloc.h instead.
54666
54667 2001-12-02  Jim Meyering  <meyering@lucent.com>
54668
54669         * lib/tempname.c: Don't declare getenv, thus reverting the change of
54670         2001-11-18.  It's no longer necessary, now that stdlib.h is always
54671         included.
54672
54673         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
54674         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
54675
54676 2001-11-30  Akim Demaille  <akim@epita.fr>
54677
54678         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
54679         before being defined.
54680
54681 2001-11-27  Paul Eggert  <eggert@twinsun.com>
54682
54683         * lib/quotearg.h (quotearg_n, quotearg_n_style):
54684         First arg is int, not unsigned.
54685         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
54686         (SIZE_MAX, UINT_MAX): New macros.
54687         (quotearg_n_options): Abort if N is negative.
54688         Avoid overflow check on hosts where size_t is 64 bits and int
54689         is 32 bits, as overflow is impossible there.
54690         Fix off-by-one typo that caused unnecessary reallocation.
54691
54692 2001-11-27  Jim Meyering  <meyering@lucent.com>
54693
54694         * lib/tempname.c: Merge with version from libc.
54695         * lib/regex.c: Likewise.
54696
54697         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
54698         systems for which STDC_HEADERS is 0, it was not included, resulting in
54699         a warning about an integer-to-pointer conversion problem with getenv.
54700         Reported by Volker Borchert.
54701
54702 2001-11-26  Jim Meyering  <meyering@lucent.com>
54703
54704         * lib/gtod.h: Remove file.
54705         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
54706         * lib/gettimeofday.c: Don't include gtod.h.
54707         (GTOD_init): Remove function.
54708         (rpl_gettimeofday): Do its job here instead, rather than aborting.
54709         Suggestion from Volker Borchert.
54710
54711 2001-11-23  Jim Meyering  <meyering@lucent.com>
54712
54713         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
54714         it.
54715         * lib/hash.c (struct hash_table): Define it here instead.
54716
54717 2001-11-22  Jim Meyering  <meyering@lucent.com>
54718
54719         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
54720
54721 2001-11-20  Jim Meyering  <meyering@lucent.com>
54722
54723         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
54724         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
54725
54726 2001-11-19  Jim Meyering  <meyering@lucent.com>
54727
54728         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
54729         directory.  Use "conftestXXXXXX" as the template.
54730         Suggestion from Paul Eggert.
54731
54732         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
54733         immediately, so the test doesn't mistakenly hit the max-open-files
54734         limit.
54735
54736 2001-11-18  Paul Eggert  <eggert@twinsun.com>
54737
54738         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
54739         (TEMPORARIES): New macro.
54740         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
54741         removes an artificial limitation (e.g. HP-UX 10.20, where
54742         TMP_MAX is 17576).
54743
54744 2001-11-18  Jim Meyering  <meyering@lucent.com>
54745
54746         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
54747
54748 2001-11-18  Jim Meyering  <meyering@lucent.com>
54749
54750         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
54751         on SunOS 4.
54752
54753         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
54754         files will be created before anything else.
54755
54756 2001-11-17  Paul Eggert  <eggert@twinsun.com>
54757
54758         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
54759         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
54760
54761 2001-11-17  Jim Meyering  <meyering@lucent.com>
54762
54763         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
54764         Prompted by a report from Bob Proulx.
54765
54766         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
54767         Instead, require UTILS_FUNC_MKSTEMP.
54768
54769 2001-11-17  Jim Meyering  <meyering@lucent.com>
54770
54771         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
54772         Now, that's done as part of AC_FUNC_STRTOD.
54773
54774 2001-11-17  Jim Meyering  <meyering@lucent.com>
54775
54776         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
54777         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
54778         rather than group writable.  Patch by Juan F. Codagnone.
54779
54780         * lib/readtokens.c: Remove explicit declarations of xmalloc and
54781         xrealloc, Instead, include "xalloc.h".
54782
54783         * lib/mountlist.c: Include unlocked-io.h after all system headers.
54784         Remove explicit declarations of xmalloc, xrealloc,
54785         and xstrdup.  Instead, include "xalloc.h".
54786
54787         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
54788         unlocked-io.h.
54789         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
54790         Likewise.
54791         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
54792
54793         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
54794         Reported by Padraig Brady.
54795
54796         * lib/mkstemp.c: #undef mkstemp.
54797         Include config.h.
54798         (rpl_mkstemp): Rename from mkstemp.
54799         Protoize.
54800
54801 2001-11-16  Jim Meyering  <meyering@lucent.com>
54802
54803         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
54804         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
54805         determine the amount of total physical memory, use pstat_getstatic.
54806         HPUX-11 doesn't define _SC_PHYS_PAGES.
54807         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
54808         If sysconf couldn't be used to determine the amount of available
54809         physical memory, use both pstat_getstatic and pstat_getdynamic.
54810         Based on a patch from Bob Proulx.
54811
54812 2001-11-10  Jim Meyering  <meyering@lucent.com>
54813
54814         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
54815         (jm_PREREQ): Use it.
54816
54817 2001-11-09  Jim Meyering  <meyering@lucent.com>
54818
54819         * m4/jm-macros.m4: Require autoconf-2.52f.
54820         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
54821         Use these AC_-prefixed names, not the AM_-prefixed ones.
54822
54823         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
54824
54825 2001-11-05  Jim Meyering  <meyering@lucent.com>
54826
54827         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
54828
54829 2001-11-04  Jim Meyering  <meyering@lucent.com>
54830
54831         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
54832         $DEFS.
54833
54834 2001-11-03  Jim Meyering  <meyering@lucent.com>
54835
54836         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
54837         of AC_DEFUN.
54838
54839         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
54840         know the name of the variable in the macro definition.
54841
54842 2001-11-03  Jim Meyering  <meyering@lucent.com>
54843
54844         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
54845         in argmatch_to_argument call.
54846
54847         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
54848         argument.
54849
54850         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
54851         e.g., a fault due to an attempt to free a NULL pointer.
54852
54853 2001-11-01  Jim Meyering  <meyering@lucent.com>
54854
54855         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
54856         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
54857
54858 2001-11-01  Jim Meyering  <meyering@lucent.com>
54859
54860         * lib/dirfd.c, lib/dirfd.h: New files.
54861         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
54862
54863         * lib/hash.c (hash_print) [TESTING]: Clean up.
54864
54865 2001-10-22  Paul Eggert  <eggert@twinsun.com>
54866
54867         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
54868         to avoid a warning if -Wall.
54869
54870 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
54871
54872         * README: New file
54873         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
54874         (per RMS's instructions, this is now the canonical source)
54875         * lgpl/, gpl/: New directories.
54876
54877 2001-10-21  Paul Eggert  <eggert@twinsun.com>
54878
54879         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
54880
54881 2001-10-21  Jim Meyering  <meyering@lucent.com>
54882
54883         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
54884         this code would end up calling gettext even in packages built
54885         with --disable-nls.
54886         * lib/getopt.c (_): Likewise.
54887         * lib/regex.c (_): Likewise.
54888
54889 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54890
54891         * m4/error.m4 (jm_PREREQ_ERROR):
54892         Do not invoke AC_CHECK_FUNCS with strerror_r, as
54893         AC_FUNC_STRERROR_R does that.
54894         Check for strerror declaration.
54895
54896         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
54897         are supposed to have them these days.
54898         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
54899         Merge changes from latest Autoconf CVS.
54900         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
54901         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
54902         POSIX decided to standardize on the int flavor of strerror_r.
54903
54904 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54905
54906         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
54907         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
54908         Use strerror_r that is only a macro, even if it is not a function.
54909         (strerror): Check for HAVE_DECL_STRERROR before declaring.
54910         (private_strerror): Use prototypes, not old-style function definition.
54911         (print_errno_message): New function.
54912         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
54913         char*-flavored one.
54914         (error_tail, error, error_at_line): Use it.
54915
54916 2001-10-11  Jim Meyering  <meyering@lucent.com>
54917
54918         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
54919         and quote_n (1, ... to avoid clobbering a buffer.
54920
54921 2001-10-05  Jim Meyering  <meyering@lucent.com>
54922
54923         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
54924         hash-pjw.h.
54925         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
54926         * lib/hash-pjw.h: New file.
54927
54928 2001-09-30  Jim Meyering  <meyering@lucent.com>
54929
54930         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
54931         `struct fsstat' has the `f_fstypename' member.
54932         Use that to define FS_TYPE, which is now used to make
54933         the getfsstat link test tighter.
54934
54935 2001-09-30  Jim Meyering  <meyering@lucent.com>
54936
54937         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
54938         Include <sys/ucred.h>, for Apple Darwin.
54939         Include sys/mount.h and sys/fs_types.h only if available.
54940         (FS_TYPE): Define.
54941         (read_filesystem_list): Use FS_TYPE.
54942
54943 2001-09-29  Paul Eggert  <eggert@twinsun.com>
54944
54945         * lib/exclude.c (excluded_filename): 0 -> false, since it's
54946         a boolean context.
54947
54948 2001-09-29  Jim Meyering  <meyering@lucent.com>
54949
54950         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54951         [one-argument getmntent function]): Include stdio.h before mntent.h.
54952         SunOS 4.1.x needs it for the declaration of `FILE'.
54953         Patch by Volker Borchert.
54954
54955         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54956         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
54957         sys/fs_types.h, and make the link-test for getfsstat guard #include
54958         directives with appropriate #if HAVE_*_H tests so that we can
54959         detect getfsstat on Apple Darwin1.3.7 systems.
54960         Reported by Nelson Beebe.
54961         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
54962
54963 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54964
54965         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54966         #defines strtoimax.  Also treat the other strto* functions
54967         like strtoimax.
54968
54969         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
54970         Check for strtoul and strtoumax,
54971         as those declarations are made even in the signed case.
54972         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
54973         Likewise, for strtol and strtoimax.
54974
54975 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54976
54977         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54978         #defines strtoimax.  Also treat the other strto* functions
54979         like strtoimax.
54980
54981         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
54982         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
54983         (strtoimax, strtoumax): Do not declare if already defined as a macro.
54984
54985 2001-09-26  Jim Meyering  <meyering@lucent.com>
54986
54987         Most macros in unlocked-io.h had the wrong number of arguments.
54988         * lib/gen-uio: New script.
54989         (USE_UNLOCKED_IO): Define to 1 if not already defined.
54990         * lib/unlocked-io.hin: Remove file.
54991         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
54992         rather than trying to embed it here.
54993         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
54994         Reported by Padraig Brady.
54995
54996 2001-09-25  Volker Borchert  <bt@teknon.de>
54997
54998         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
54999         `result'.
55000
55001 2001-09-24  Jim Meyering  <meyering@lucent.com>
55002
55003         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
55004
55005 2001-09-23  Jim Meyering  <meyering@lucent.com>
55006
55007         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
55008         instead of the mere test for existence of mntent.h.  The latter
55009         would get a false-positive on AIX 3.4 systems.
55010         In the outer getmntent if-block, don't die if neither of the getmntent
55011         tests succeeds.  Instead, just fall through and continue with the
55012         remaining tests.
55013
55014 2001-09-23  Jim Meyering  <meyering@lucent.com>
55015
55016         * lib/mountlist.c: Remove useless parentheses in #if directives.
55017         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
55018         the deprecated MOUNTED symbol is no longer defined in mntent.h.
55019
55020 2001-09-22  Jim Meyering  <meyering@lucent.com>
55021
55022         * m4/gettext.m4: New file.  From gettext.
55023         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
55024         * m4/progtest.m4: Likewise
55025         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
55026         * m4/glibc21.m4: Likewise.
55027
55028         * m4/libintl.m4: Remove.  No longer used.
55029
55030 2001-09-22  Jim Meyering  <meyering@lucent.com>
55031
55032         * lib/localcharset.c: Update from latest gettext.
55033         * lib/config.charset: Likewise.
55034
55035 2001-09-20  Jim Meyering  <meyering@lucent.com>
55036
55037         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
55038         strtoimax.
55039         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
55040         strtoumax.
55041
55042 2001-09-20  Jim Meyering  <meyering@lucent.com>
55043
55044         * lib/xstrtol.c (strtoimax): Guard declaration with
55045         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
55046         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
55047         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
55048         (strtoumax): Likewise, for completeness (it wasn't necessary).
55049
55050 2001-09-17  Paul Eggert  <eggert@twinsun.com>
55051
55052         * lib/strtoimax.c (HAVE_LONG_LONG):
55053         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
55054         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
55055         to work around bug in IBM C compiler.
55056
55057 2001-09-17  Jim Meyering  <meyering@lucent.com>
55058
55059         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
55060         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
55061         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
55062         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
55063         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
55064         whenever the right hand side need not be expanded by the shell.
55065
55066 2001-09-16  Paul Eggert  <eggert@twinsun.com>
55067
55068         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
55069         library.  It's not correct, as some older glibcs are buggy.
55070         fnmatch wasn't fixed until glibc 2.2.
55071
55072         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
55073         special shell magic here.
55074
55075 2001-09-16  Jim Meyering  <meyering@lucent.com>
55076
55077         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
55078         * m4/jm-macros.m4: Require it.
55079
55080 2001-09-16  Jim Meyering  <meyering@lucent.com>
55081
55082         * lib/mkdir.c: New file.
55083
55084 2001-09-15  Jim Meyering  <meyering@lucent.com>
55085
55086         * m4/jm-macros.m4: Check for help2man.
55087
55088 2001-09-11  Jim Meyering  <meyering@lucent.com>
55089
55090         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
55091         The body, by Paul Eggert, was moved here from configure.in.
55092         * m4/jm-macros.m4: Require UTILS_HOST_OS.
55093
55094 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55095
55096         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
55097         (jm_PREREQ): Use it.
55098
55099 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55100
55101         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
55102         Use ssize_t, not int, to store result of readlink.
55103         Check for ssize_t overflow as well as size_t overflow,
55104         as POSIX says the result of readlink is implementation-defined
55105         when ssize_t overflows.
55106         Remove unnecessary cast to char*.
55107         Use free+malloc instead of realloc, as the storage doesn't need
55108         to be preserved and it's clearer and can be more efficient that way.
55109         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
55110         * lib/xreadlink.h (xreadlink): Update prototype.
55111
55112 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55113
55114         * lib/xgetcwd.c: Revert some of the previous change; intead,
55115         fix the HAVE_GETCWD_NULL code to behave more like the
55116         !HAVE_GETCWD_NULL code used to.
55117
55118         Include "xalloc.h".
55119         (xgetcwd): Do not return NULL when memory is exhausted; instead,
55120         invoke xalloc_die.
55121
55122 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55123
55124         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
55125         sys/param.h, as pathmax.h includes them.
55126
55127 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55128
55129         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
55130         (jm_PREREQ_XGETCWD): New macro.
55131
55132         * m4/getcwd.m4: New file.
55133
55134 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55135
55136         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
55137         like the HAVE_GETCWD_NULL code.
55138         Include pathmax.h if not HAVE_GETCWD.
55139         Do not include xalloc.h.
55140         (INITIAL_BUFFER_SIZE): New symbol.
55141         Do not use xmalloc / xrealloc, since the caller is responsible for
55142         handling errors.  Preserve errno around `free' during failure.
55143         Do not overrun buffer when using getwd.
55144
55145 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55146
55147         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
55148         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
55149         getcwd (NULL, 0).
55150
55151 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55152
55153         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
55154         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
55155         spotted by Jim Meyering.
55156
55157 2001-09-03  Jim Meyering  <meyering@lucent.com>
55158
55159         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
55160         failure.
55161
55162 2001-09-02  Jim Meyering  <meyering@lucent.com>
55163
55164         * lib/error.c: Update from GNU libc.
55165
55166 2001-09-01  Jim Meyering  <meyering@lucent.com>
55167
55168         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
55169         Used by df.
55170
55171 2001-09-01  Jim Meyering  <meyering@lucent.com>
55172
55173         * lib/xreadlink.c: New file.
55174         * lib/xreadlink.h: New file.
55175         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
55176         xreadlink.h.
55177
55178         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
55179         doesn't conflict with sparc Solaris 7's definition in
55180         /usr/include/sys/int_types.h.
55181
55182         * lib/exclude.c: Use `""', not `<>' to #include non-system header
55183         files.
55184         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
55185         and strncasecmp as r-values.  Unixware didn't have declarations.
55186
55187 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55188
55189         * lib/xstrtol.h: Add copyright notice.
55190         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
55191         LONGINT_INVALID_SUFFIX_CHAR.
55192
55193 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55194
55195         * lib/xstrtol.c (strtoimax): New decl.
55196
55197 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55198
55199         * lib/xgetcwd.c: Don't include pathmax.h.
55200         Include stdlib.h and unistd.h if available.
55201         Include xalloc.h.
55202         (xmalloc, xstrdup, free): Remove decls.
55203         (xgetcwd): Don't assume sizes fit in unsigned.
55204         Check for overflow when computing sizes.
55205         Simplify reallocation code.
55206
55207 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55208
55209         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
55210         a directory's st_size can have an arbitrary value, so the old
55211         usage could waste an arbitrary amount of memory.  All uses
55212         changed.
55213         * lib/savedir.h: Update prototype.
55214
55215 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55216
55217         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
55218
55219         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
55220         old strtoimax.c.
55221
55222         Also, make the following further changes to make this file's
55223         configuration more similar to that of strtol.c:
55224         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
55225         (strtoumax, uintmax_t, strtoull, strtol): Remove.
55226         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
55227         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
55228         changed to signed values.
55229
55230         And make the following changes as well:
55231         Fix copyright notice, as 1999 was missing.
55232         (verify): New macro.
55233         (strtoimax): Check sizes at compile-time, not run-time.
55234         Prefer strtol to strtoll if both work.
55235         (main): Remove; it was not that useful and was a pain to maintain.
55236
55237         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
55238
55239 2001-08-31  Jim Meyering  <meyering@lucent.com>
55240
55241         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
55242         Use an initial, malloc'd, buffer of length 128 rather than
55243         a statically allocated one of length 1024.
55244
55245 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55246
55247         Simplify code, partly by assuming autoconf 2.52 semantics.
55248
55249         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
55250
55251         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
55252         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
55253         All uses removed.
55254         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
55255         Move AC_REQUIRE to next-to-top level, to avoid confusion.
55256         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
55257         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
55258         jm_AC_HEADER_INTTYPES_H.
55259         * m4/jm-macros.m4 (jm_MACROS): Likewise.
55260
55261         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
55262
55263         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
55264         Quote first arg of AC_DEFUN.
55265         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
55266         since they are needed to parse the include file even if we need
55267         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
55268         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
55269         but with opposite signedness.
55270
55271 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55272
55273         Merge 'exclude' changes from tar 1.13.22.
55274         This fixes one or two unlikely storage allocation overflow bugs,
55275         but doesn't change user-visible behavior otherwise.
55276
55277 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55278
55279         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
55280         (jm_PREREQ_EXCLUDE): New macro.
55281
55282 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55283
55284         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
55285         tm to be declared.
55286
55287 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55288
55289         * lib/hash.c: Remove '2001' from copyright notice.
55290
55291 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55292
55293         * lib/full-write.h: New file.
55294         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
55295         * lib/full-write.c: Correct credits, as cccp.c no longer
55296         exists and anyway it was so heavily changed from the old cccp
55297         code as to be unrecognizable.  Include full-write.h.
55298         (full_write) Return size_t, with short writes meaning failure.
55299         All callers changed.  This fixes a bug with large buffers
55300         on 64-bit hosts.
55301         * lib/utime.c: Include full-write.h.
55302
55303 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55304
55305         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
55306         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
55307         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
55308         Include if available.
55309         (<xalloc.h>): Include
55310         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
55311         (verify): New macro.  Use it to verify that EXCLUDE macros do not
55312         collide with FNM macros.
55313         (struct patopts): New struct.
55314         (struct exclude): Use it, as exclude patterns now come with options.
55315         (new_exclude): Support above changes.
55316         (new_exclude, add_exclude_file):
55317         Initial size must now be a power of two to simplify overflow checking.
55318         (free_exclude, fnmatch_no_wildcards): New function.
55319         (excluded_filename): No longer requires options arg, as the options
55320         are determined by add_exclude.  Now returns bool, not int.
55321         (excluded_filename, add_exclude):
55322         Add support for the fancy new exclusion options.
55323         (add_exclude, add_exclude_file): Now takes int options arg.
55324         Check for arithmetic overflow when computing sizes.
55325         (add_exclude_file): xrealloc might modify errno, so don't
55326         realloc until after errno might be used.
55327
55328         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
55329         New macros.
55330         (free_exclude): New decl.
55331         (add_exclude, add_exclude_file): Now takes int options arg.
55332         (excluded_filename): No longer requires options arg, as the options
55333         are determined by add_exclude.  Now returns bool, not int.
55334
55335 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55336
55337         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
55338
55339 2001-08-27  Jim Meyering  <meyering@lucent.com>
55340
55341         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
55342
55343         * lib/version-etc.c (N_): Remove definition.
55344         Revert most of last change.
55345         Instead, simply don't mark the `Copyright...' string for translation.
55346         Based on advice from Paul Eggert.
55347
55348         * lib/strtoxmax.c: Tweak comment.
55349
55350 2001-08-26  Jim Meyering  <meyering@lucent.com>
55351
55352         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
55353
55354         * m4/xstrtoimax.m4: New file.
55355         * m4/xstrtoumax.m4: Add comments explaining why we
55356         AC_REPLACE_FUNCS(strtol).
55357
55358 2001-08-26  Jim Meyering  <meyering@lucent.com>
55359
55360         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
55361         of copyright with `%s' so translators don't get an untranslated
55362         message in 2002.
55363         (COPYRIGHT_YEAR): Define.
55364         (version_etc): Use fprintf rather than fputs.
55365         Suggestion from Ulrich Drepper.
55366
55367         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
55368
55369         * lib/strtoll.c: New file, from GNU libc.
55370         * lib/xstrtoimax.c: New file.
55371
55372         * lib/xstrtol.h: Add xstrtoimax.
55373         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
55374         * lib/strtoimax.c: New file.  Likewise, but first define
55375         STRTOUXMAX_SIGNED.
55376
55377         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
55378         ...
55379         * lib/strtoxmax.c: ... then renamed to this.
55380
55381 2001-08-18  Paul Eggert  <eggert@twinsun.com>
55382
55383         * m4/inttypes.m4: Add AC_PREREQ(2.13).
55384         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
55385         (jm_AC_TYPE_INTMAX_T): New macro.
55386         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
55387
55388         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
55389
55390         * m4/longlong.m4: Renamed from ulonglong.m4.
55391         * m4/inttypes.m4: Renamed from inttypes_h.m4.
55392         * m4/uintmax_t.m4: Removed.
55393
55394 2001-08-13  Paul Eggert  <eggert@twinsun.com>
55395
55396         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
55397         Port to Solaris 8, where 'sed' requires a space after the 'r'
55398         command, and where sh dislikes "$/".  Clean up the spacing a bit.
55399         Redirect output to $tmp just once.
55400
55401 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
55402
55403         * lib/addext.c (<errno.h>): Include.
55404         (errno): Declare if not defined.
55405         (addext): Work correctly when pathconf returns -1 and leaves
55406         errno alone because there is no limit.  Also, work even if
55407         pathconf returns a value greater than SIZE_MAX.
55408
55409 2001-08-12  Jim Meyering  <meyering@lucent.com>
55410
55411         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
55412         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
55413         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
55414         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
55415         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
55416         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
55417         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
55418         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
55419         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
55420         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
55421         utime.m4, utimes.m4, xstrtoumax.m4:
55422         Quote the first argument in each use of AC_DEFUN.
55423
55424 2001-08-12  Jim Meyering  <meyering@lucent.com>
55425
55426         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
55427         Simply `return getcwd (NULL, 0);'.
55428         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
55429         Use 1300 as initial value for length, not PATH_MAX.
55430
55431         * lib/pathmax.h: Clean up cpp syntax.
55432
55433 2001-08-12  Jim Meyering  <meyering@lucent.com>
55434
55435         * lib/gettimeofday.c: New file.
55436         * lib/gtod.h: New file.
55437         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
55438
55439 2001-08-05  Jim Meyering  <meyering@lucent.com>
55440
55441         * m4/jm-macros.m4: Require autoconf-2.52.
55442
55443 2001-08-04  Jim Meyering  <meyering@lucent.com>
55444
55445         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
55446         stmt, to get in sync with glibc.
55447
55448 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55449
55450         The following changes are from gettext 0.10.39 as maintained by
55451         Bruno Haible.
55452
55453         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
55454         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
55455         with inverted sense.  All uses changed.
55456
55457         * lib/mbswidth.c: Don't include <limits.h>.
55458         Include <stdlib.h> and <string.h> unconditionally.
55459         (iswcntrl, mbsinit, ISCNTRL): New macros.
55460         (mbsnwidth): Use K&R style function declarations.
55461         Don't bother checking for MB_LEN_MAX == 1, since the compiler
55462         can optimize it when MB_CUR_MAX == 1.
55463         The width of control characters is zero, not 1.
55464
55465 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55466
55467         The following changes are from gettext 0.10.39 as maintained by
55468         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
55469
55470         * m4/codeset.m4: Upgrade to serial AM1.
55471         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
55472         all uses changed.  Quote first arg of AC_DEFUN.
55473         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
55474
55475         * m4/iconv.m4: Upgrade to serial AM2.
55476         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
55477         Add --with-libconv-prefix.
55478         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
55479         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
55480         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
55481         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
55482         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
55483
55484         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
55485         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
55486         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
55487         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
55488         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
55489         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
55490         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
55491         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
55492         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
55493
55494         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
55495         string.h any more.
55496
55497         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
55498         not the default value.
55499
55500         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
55501         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
55502         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
55503         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
55504         Also check for iswcntrl, used for wcwidth fallback.
55505         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
55506         to Autoconf 2.13.
55507
55508 2001-08-03  Jim Meyering  <meyering@lucent.com>
55509
55510         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
55511         as it was in the original.  Reported by Paul Eggert.
55512
55513 2001-07-16  Jim Meyering  <meyering@lucent.com>
55514
55515         * m4/gettimeofday.m4: New file.
55516         Prompted by a report from Bernhard Baehr.
55517
55518 2001-07-15  Jim Meyering  <meyering@lucent.com>
55519
55520         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
55521         stuff. Now it's in ../Makefile.cfg.
55522
55523 2001-07-15  Jim Meyering  <meyering@lucent.com>
55524
55525         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
55526         (BUILT_SOURCES): Add unlocked-io.h.
55527         (io_functions): Define.
55528         (unlocked-io.h): New rule.
55529         (DISTCLEANFILES): Add unlocked-io.h.
55530         (all-local): Depend on unlocked-io.h, to ensure it is created.
55531
55532         * lib/unlocked-io.hin: New file
55533
55534         * lib/regex.c: Update from glibc.
55535
55536 2001-07-05  Jim Meyering  <meyering@lucent.com>
55537
55538         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
55539         recommendation.
55540         (libfetish_a_SOURCES): Put all .h files here instead.
55541         Remove a thus-exposed (better checks in automake) duplicate and
55542         two unnecessary .h files.
55543
55544 2001-07-04  Jim Meyering  <meyering@lucent.com>
55545
55546         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
55547         that generates jm-glibc-io.m4 so that it doesn't trigger any make
55548         distcheck failure.
55549
55550 2001-07-02  Jim Meyering  <meyering@lucent.com>
55551
55552         The following changes were prompted by suggestions from Bruno Haible.
55553
55554         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
55555         is now generated.
55556         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
55557         definition of EXTRA_DIST.
55558         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
55559         ensure that the generated file is created/updated whenever the list
55560         of $(unlocked_functions) is changed.
55561         (jm-glibc-io.m4): New rule.
55562         (unlocked-io.h): New rule -- currently unused.
55563
55564 2001-06-24  Jim Meyering  <meyering@lucent.com>
55565
55566         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
55567         unmatched right bracket, rather than kludging it with an extra,
55568         falsely-matching quote in a comment.  Patch by Akim Demaille.
55569
55570 2001-06-11  Jim Meyering  <meyering@lucent.com>
55571
55572         * lib/regex.c: Update from GNU libc.
55573
55574 2001-05-27  Jim Meyering  <meyering@lucent.com>
55575
55576         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
55577         Check for ut_type in struct utmp.
55578
55579 2001-05-27  Jim Meyering  <meyering@lucent.com>
55580
55581         * lib/readutmp.h (UT_TYPE): Define.
55582
55583 2001-05-24  Jim Meyering  <meyering@lucent.com>
55584
55585         * lib/argmatch.c: Include "quote.h".
55586         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
55587         quote function.  Reported by Göran Uddeborg.
55588
55589 2001-05-22  Jim Meyering  <meyering@lucent.com>
55590
55591         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
55592         now that we use the package-supplied version unconditionally.
55593         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
55594
55595 2001-05-21  Jim Meyering  <meyering@lucent.com>
55596
55597         * m4/regex.m4: Change a couple backticks to single quotes to avoid
55598         shell syntax errors.
55599
55600 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55601
55602         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
55603
55604 2001-05-20  Paul Eggert  <eggert@twinsun.com>
55605
55606         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
55607         Don't bother to check library strftime, since
55608         we'll be using our own my_strftime function anyway.
55609         Define my_strftime instead of strftime.
55610
55611 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
55612
55613         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
55614         which is not yet declared.
55615
55616 2001-05-15  Jim Meyering  <meyering@lucent.com>
55617
55618         * m4/regex.m4: Use proper quoting so brackets appear in the test
55619         program.
55620         Reported by, and with help from, Bruno Haible.
55621
55622 2001-05-13  Jim Meyering  <meyering@lucent.com>
55623
55624         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
55625         undefined.
55626
55627 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55628
55629         dirname code cleanup.  base_name now behaves more compatibly
55630         with POSIX basename when given file names that have trailing
55631         slashes, and similarly for dir_name.  Add new primitives
55632         base_len and dir_len.  Put the directory-name-related decls
55633         into dirname.h.
55634
55635         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
55636         * lib/backupfile.c (base_name): Likewise.
55637         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
55638         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
55639         * lib/makepath.c (strip_trailing_slashes): Likewise.
55640         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
55641         ISSLASH): Likewise.
55642         * lib/rename.c (strip_trailing_slashes): Likewise.
55643         * lib/same.c (base_name): Likewise.
55644         * lib/stripslash.c (ISSLASH): Likewise.
55645
55646         * lib/addext.c: Include <dirname.h> after size_t is defined.
55647         * lib/backupfile.c: Likewise.
55648
55649         * lib/addext.c (addext): Use base_len to trim redundant
55650         trailing slashes instead of doing it ourselves.
55651         But do not trim the last slash if it is not redundant.
55652
55653         * lib/backupfile.c (find_backup_file_name,
55654         max_backup_version): Use base_len instead of rolling it ourselves.
55655         Handle the case of "" and (on DOS) "C:" correctly.
55656
55657         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
55658         needed. Include <string.h>, <dirname.h>.
55659         (base_name): Allow file names ending in slashes, other than names
55660         that are all slashes.  In this case, return the basename followed
55661         by the slashes.  This is more general, and can be used in places
55662         where the original base_name purposely had an assertion failure.
55663         (base_len): New function.
55664
55665         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
55666         Do not include <assert.h>; no longer needed.
55667         Include xalloc.h.
55668         (memrchr): Remove decl.
55669         (dir_name_r): Remove.
55670         (dir_len): Renamed from dirlen.  All callers changed.
55671         Rewrite in terms of base_name, for simplicity and consistency.
55672         (dir_name): Never return NULL.  All callers changed.
55673         Do not include <stdlib.h> in test program; no longer needed.
55674         return 0; is fine for test program.
55675
55676         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
55677         New macros.
55678         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
55679
55680         * lib/path-concat.c (path_concat): Use base_len to compute
55681         base length, not strlen; this means we cannot rely on memcpy
55682         to null-terminate.
55683
55684         * lib/same.c (STREQ): Remove.
55685         (same_name): Handle the case where the basename ends in trailing '/'.
55686
55687         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
55688         a slash was stripped.  Do not strip the last slash after a
55689         file system prefix.
55690
55691 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55692
55693         * lib/Makefile.am (libfetish_a_SOURCES):
55694         Add strftime.c, since we now compile it on all hosts.
55695
55696         * lib/strftime.c (my_strftime):
55697         Define to nstrftime if emacs, but only if my_strftime is not defined.
55698         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
55699         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
55700         Add one more extra argument: a nanoseconds value.
55701         All uses changed.
55702         (ns): New macro.
55703         (my_strftime function): Add %N format.
55704         (emacs_strftimeu): Renamed from emacs_strftime,
55705         with extra ut argument.
55706
55707 2001-05-09  Paul Eggert  <eggert@twinsun.com>
55708
55709         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
55710
55711 2001-04-21  Jim Meyering  <meyering@lucent.com>
55712
55713         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
55714         doesn't interfere.
55715
55716 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55717
55718         * m4/ftruncate.m4: Check for chsize.
55719         Link with ftruncate.o unconditionally if ftruncate is missing.
55720         This was required when cross-compiling to i586-mingw32msvc.
55721
55722 2001-04-08  Jim Meyering  <meyering@lucent.com>
55723
55724         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
55725         recomputed; that's necessary when the offset spans a DST transition.
55726         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
55727
55728 2001-04-02  Jim Meyering  <meyering@lucent.com>
55729
55730         * lib/regex.h, regex.c: Update from GNU libc.
55731
55732 2001-03-24  Jim Meyering  <meyering@lucent.com>
55733
55734         * m4/jm-macros.m4: Require autoconf-2.49d.
55735
55736 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
55737
55738         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
55739
55740 2001-03-19  Paul Eggert  <eggert@twinsun.com>
55741
55742         * lib/version-etc.c (version_etc_copyright): Update to 2001.
55743
55744 2001-03-17  Jim Meyering  <meyering@lucent.com>
55745
55746         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
55747         now that the version in autoconf is equivalent.
55748         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
55749
55750         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
55751         Suggestion from Akim Demaille.
55752
55753         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
55754         (jm_PREREQ_TEMPNAME): New function.
55755
55756 2001-03-16  Paul Eggert  <eggert@twinsun.com>
55757
55758         * lib/tempname.c (uint64_t): Define to uintmax_t if
55759         not defined, and if UINT64_MAX is not defined.
55760         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
55761         Reported by John David Anglin.
55762
55763 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
55764
55765         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
55766         resolve alias if codeset is empty.
55767         * lib/config.charset (BeOS): Use wildcard syntax.
55768
55769 2001-03-13  Jim Meyering  <meyering@lucent.com>
55770
55771         * lib/path-concat.c (path_concat)
55772         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
55773         concatenating e.g., `C:' and `foo'.
55774         From Bruno Haible.
55775
55776 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
55777
55778         * lib/localcharset.c (locale_charset): Don't use
55779         setlocale(LC_CTYPE,NULL). Don't return NULL.
55780         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
55781
55782 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
55783
55784         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
55785         support for DOS/DJGPP.
55786
55787 2001-03-01  Paul Eggert  <eggert@twinsun.com>
55788
55789         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
55790         lacks mkstemp.  Compile our own tempname.c if we compile our own
55791         mkstemp.c, as mkstemp relies on tempname.
55792
55793 2001-03-01  Jim Meyering  <meyering@lucent.com>
55794
55795         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
55796         AH_VERBATIM really does output its argument verbatim.
55797
55798 2001-02-28  Paul Eggert  <eggert@twinsun.com>
55799
55800         * lib/Makefile.am (libfetish_a_SOURCES):
55801         Add dup-safer.c, fopen-safer.c.
55802         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
55803
55804         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
55805         * lib/unistd-safer.h: New files.
55806
55807 2001-02-25  Paul Eggert  <eggert@twinsun.com>
55808
55809         The mkstemp replacement is taken from glibc 2.2.2, with some
55810         portability fixes for use outside glibc, as follows:
55811
55812         * lib/tempname.c (struct_stat64): New macro.
55813         (direxists, __gen_tempname): Use it.
55814         This avoids a portability problem with Solaris 8.
55815
55816         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
55817         (<stddef.h>, <stdint.h>, <string.h>):
55818         Include only if STDC_HEADERS || _LIBC.
55819         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
55820         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
55821         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
55822         (__set_errno): Define this macro if <errno.h> doesn't.
55823         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
55824         Define these macros if <stdio.h> doesn't.
55825         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
55826         Define these macros if <sys/stat.h>
55827         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
55828         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
55829         __xstat64): Define if not _LIBC.
55830         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
55831         (__gen_tempname): Invoke gettimeofday only if
55832         HAVE_GETTIMEOFDAY || _LIBC;
55833         otherwise, fall back on plain "time".
55834         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
55835
55836         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
55837
55838         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
55839
55840 2001-02-18  Paul Eggert  <eggert@twinsun.com>
55841
55842         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
55843
55844 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55845
55846         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
55847         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
55848         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
55849         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
55850
55851 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55852
55853         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
55854         Remove workaround macros for hosts that have mbrtowc but not
55855         mbstate_t, as we now insist on proper declarations for both
55856         before using mbrtowc.
55857
55858 2001-02-17  Jim Meyering  <meyering@lucent.com>
55859
55860         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
55861         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
55862         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
55863         UnixWare 7.1.1.
55864
55865         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
55866         rather than AC_CACHE_VAL.
55867
55868 2001-02-17  Jim Meyering  <meyering@lucent.com>
55869
55870         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
55871         around included file name.
55872
55873         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
55874
55875         * lib/strftime.c: Update from GNU libc (the only changes were to
55876         comments).
55877
55878 2001-02-17  Jim Meyering  <meyering@lucent.com>
55879
55880         * lib/regex.c: Update from libc.
55881
55882 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
55883
55884         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
55885         clash.
55886
55887 2001-02-16  Paul Eggert  <eggert@twinsun.com>
55888
55889         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
55890         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
55891         Reported by Mark Hounschell via Paul Eggert.
55892
55893 2001-02-07  Jim Meyering  <meyering@lucent.com>
55894
55895         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
55896
55897 2001-02-05  Jim Meyering  <meyering@lucent.com>
55898
55899         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
55900         it includes the patch required for `large file' support with at least
55901         HP-UX's 10.20 /bin/cc.
55902
55903 2001-02-03  Jim Meyering  <meyering@lucent.com>
55904
55905         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
55906         AS_IF, now that it works once again (mysteriously).
55907         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55908
55909 2001-01-30  Jim Meyering  <meyering@lucent.com>
55910
55911         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
55912         * m4/chown.m4: Rename conftestchown to conftest.chown.
55913         * m4/rename.m4: s/conftestdir/conftest.d1/ and
55914         s/conftestdir2/conftest.d2/.
55915         * m4/utimes.m4: s/conftestdata/conftest.data/
55916         Inspired by Pavel Roskin's change in autoconf.
55917
55918 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
55919
55920         * lib/config.charset: Update for FreeBSD 4.2.
55921
55922 2001-01-27  Jim Meyering  <meyering@lucent.com>
55923
55924         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
55925         a use of AS_IF.
55926         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55927
55928 2001-01-26  Jim Meyering  <meyering@lucent.com>
55929
55930         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
55931         quotearg.c includes it.
55932
55933 2001-01-26  Jim Meyering  <meyering@lucent.com>
55934
55935         * lib/quotearg.c: Include stddef.h.
55936         * lib/quote.c: Include stddef.h.
55937         Reported by Axel Kittenberger.
55938
55939         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
55940         line in double quotes so that it evokes a better diagnostic.
55941         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
55942         Reported by Axel Kittenberger.
55943
55944 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
55945
55946         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
55947         as if it was a `charset'.
55948
55949 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55950
55951         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
55952         has const.
55953
55954 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55955
55956         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
55957         to avoid a warning.  Add back 'const' to inptr.
55958
55959 2001-01-20  Jim Meyering  <meyering@lucent.com>
55960
55961         Be sure that headers are checked before used in code compiled
55962         for the type checks.
55963         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
55964         In place of that, invoke jm_CHECK_ALL_TYPES.
55965         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
55966         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
55967         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
55968         The check for ssize_t was mistakenly run before the test for unistd.h.
55969
55970         The configure-time check for stdbool.h was missing.
55971         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
55972         (jm_PREREQ_HASH): New function.
55973
55974 2001-01-17  Jim Meyering  <meyering@lucent.com>
55975
55976         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
55977         for autoconf-2.49c.
55978         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
55979
55980 2001-01-16  Jim Meyering  <meyering@lucent.com>
55981
55982         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
55983         From Bruno Haible.
55984
55985 2001-01-14  Jim Meyering  <meyering@lucent.com>
55986
55987         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
55988         foo and bar.  Create conftestdir/ in the script, not in the C code.
55989         Remove directories in the script, not in the C code.
55990         Remove conftestdir{,2} before trying to create the directory.
55991         Make the entire configure script fail if the mkdir fails.
55992
55993 2001-01-14  Jim Meyering  <meyering@lucent.com>
55994
55995         * lib/rename.c: New file.  From Volker Borchert.
55996         Include stdlib.h, string.h or strings.h, and xalloc.h.
55997         Use strip_trailing_slashes rather than open-coding it.
55998
55999 2001-01-03  Paul Eggert  <eggert@twinsun.com>
56000
56001         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
56002
56003 2001-01-03  Jim Meyering  <meyering@lucent.com>
56004
56005         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
56006         of local `inptr' to avoid warning with some system declarations of
56007         iconv.
56008
56009 2001-01-02  Volker Borchert  <bt@teknon.de>
56010
56011         * m4/rename.m4: New file.
56012         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
56013
56014 2001-01-01  Jim Meyering  <meyering@lucent.com>
56015
56016         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
56017         even on systems with utmpx.h.  It's necessary for the declaration of
56018         utmp's ut_user member.  Reported by Andreas Jaeger.
56019
56020         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
56021         available. They are required for the declarations of getgrgid and
56022         getpwuid resp.
56023         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
56024         Reported by Andreas Jaeger.
56025
56026 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
56027
56028         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
56029         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
56030         so `make install' also works in VPATH builds.
56031
56032 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
56033
56034         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
56035         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
56036         can be used in subdirectories.
56037
56038 2000-12-29  Paul Eggert  <eggert@twinsun.com>
56039
56040         * lib/modechange.c: Do not assume that mode_t uses the
56041         traditional octal encoding.  E.g. "chmod 1 FOO" should set
56042         the other-execute bit of FOO even if S_IXOTH != 1.
56043
56044         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
56045         WOTH, XOTH, ALLM): New macros.
56046         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
56047          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
56048         Use them.
56049         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
56050         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
56051         (mode_compile):
56052         No need to use uintmax_t; unsigned long is long enough.
56053         Don't bother to get suffix since we don't use it.
56054
56055 2000-12-26  Jim Meyering  <meyering@lucent.com>
56056
56057         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
56058         better with autoheader.
56059
56060 2000-12-24  Jim Meyering  <meyering@lucent.com>
56061
56062         * lib/hash.c (is_prime): Return explicit boolean values.
56063         (hash_get_first): Return NULL to appease Irix5.6's 89.
56064         Reported by Nelson Beebe.
56065
56066 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
56067
56068         * lib/localcharset.c (locale_charset): Add support for Win32.
56069
56070 2000-12-18  Paul Eggert  <eggert@twinsun.com>
56071
56072         * lib/physmem.h, lib/physmem.c: New files.
56073
56074         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
56075         (noinst_HEADERS): Add physmem.h.
56076
56077         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
56078         't' for compatibility with Solaris 8 sort.
56079
56080 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
56081
56082         * lib/config.charset: Add support for BeOS.
56083
56084 2000-12-17  Jim Meyering  <meyering@lucent.com>
56085
56086         * m4/dos.m4 (jm_AC_DOS): New file and macro.
56087         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
56088
56089 2000-12-16  Jim Meyering  <meyering@lucent.com>
56090
56091         This bug had a serious impact on chown: `chown N:M FILE' (for integer
56092         N and M) would have treated it like `chown N:N FILE'.
56093
56094         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
56095
56096 2000-12-16  Jim Meyering  <meyering@lucent.com>
56097
56098         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
56099         SHELLS_FILE to a file name that's useful on djgpp systems.
56100         Include stdlib.h.
56101         (ADDITIONAL_DEFAULT_SHELLS): Define.
56102         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
56103         Based mostly on a patch from Prashant TR.
56104
56105 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
56106
56107         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
56108         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
56109         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
56110
56111 2000-12-08  Andreas Schwab  <schwab@suse.de>
56112
56113         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
56114         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
56115
56116 2000-12-07  Jim Meyering  <meyering@lucent.com>
56117
56118         * lib/stripslash.c (ISSLASH): Define.
56119         (strip_trailing_slashes): Use ISSLASH rather than comparing against
56120         `/'.
56121         From Prashant TR.
56122
56123         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
56124         (dir_name_r): Declare this function as static.
56125         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
56126         manifest itself on a name containing a mix of slashes and
56127         backslashes.
56128         Make this function work with names starting with a DOS-style
56129         drive letter and colon prefix.
56130         (dir_name): Append `.' if necessary.
56131         Based mostly on patches from Prashant TR and Eli Zaretskii.
56132
56133         * lib/dirname.h (dir_name_r): Remove prototype.
56134
56135 2000-12-06  Paul Eggert  <eggert@twinsun.com>
56136
56137         * m4/off_t-format.m4: Remove this file.
56138         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
56139
56140 2000-12-06  Jim Meyering  <meyering@lucent.com>
56141
56142         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
56143         replacement strtoull, we may well need the replacement strtoul, too.
56144         Check for declarations of strtoul and strtoull.
56145         Check for strtol.  Mainly as a cue to cause automake to include
56146         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
56147         Check for limits.h -- strtol.c needs it.
56148
56149 2000-12-05  Jim Meyering  <meyering@lucent.com>
56150
56151         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
56152
56153 2000-12-04  Jim Meyering  <meyering@lucent.com>
56154
56155         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
56156         Also include memory.h, stdlib.h, unistd.h if appropriate.
56157         Reported by Andreas Jaeger (conflicting declaration of malloc).
56158
56159 2000-12-02  Jim Meyering  <meyering@lucent.com>
56160
56161         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
56162         * m4/jm-macros.m4 (jm_MACROS): require it.
56163
56164 2000-12-02  Jim Meyering  <meyering@lucent.com>
56165
56166         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
56167
56168 2000-12-01  Paul Eggert  <eggert@twinsun.com>
56169
56170         * lib/memrchr.c: Include <config.h> before any system include file.
56171
56172 2000-11-30  Jim Meyering  <meyering@lucent.com>
56173
56174         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
56175
56176 2000-11-30  Jim Meyering  <meyering@lucent.com>
56177
56178         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
56179
56180 2000-11-29  Paul Eggert  <eggert@twinsun.com>
56181
56182         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
56183
56184 2000-11-26  Jim Meyering  <meyering@lucent.com>
56185
56186         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
56187
56188 2000-11-22  Paul Eggert  <eggert@twinsun.com>
56189
56190         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
56191         size of (size_t) -1; it's not portable.
56192
56193 2000-11-17  Jim Meyering  <meyering@lucent.com>
56194
56195         * lib/strstr.c: Update from GNU libc.
56196
56197 2000-11-17  Akim Demaille  <akim@epita.fr>
56198
56199         * lib/obstack.h: Formatting changes.
56200         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
56201         prevent type checking.
56202         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
56203         cast the value to (void *): assigning a `foo *' to a `void *'
56204         variable is valid.
56205         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
56206
56207 2000-11-16  Jim Meyering  <meyering@lucent.com>
56208
56209         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
56210
56211 2000-11-11  Jim Meyering  <meyering@lucent.com>
56212
56213         * lib/error.c: Add a couple #includes, merging from GNU libc version.
56214
56215 2000-11-10  Jim Meyering  <meyering@lucent.com>
56216
56217         * lib/obstack.h: Update from GNU libc.
56218         * lib/obstack.c: Likewise.
56219
56220 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
56221
56222         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
56223
56224 2000-11-06  Paul Eggert  <eggert@twinsun.com>
56225
56226         * lib/getusershell.c (setusershell): Use rewind rather than
56227         fseek/fseeko, to avoid configuration hassles with fseeko.
56228         Don't bother opening SHELLS_FILE if shellstream is NULL;
56229         it's not necessary.
56230
56231 2000-11-05  Jim Meyering  <meyering@lucent.com>
56232
56233         * lib/makepath.h (make_dir): Declare.
56234         * lib/makepath.c (make_dir): Remove `static' attribute.
56235         Tweak a comment.
56236
56237 2000-11-04  Jim Meyering  <meyering@lucent.com>
56238
56239         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
56240
56241 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
56242
56243         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
56244         last one in a bucket, advance to the next bucket.
56245
56246 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
56247
56248         * lib/fnmatch.c: Do not comment out all the code if we are using
56249         the GNU C library, because in some cases we are replacing buggy
56250         code in the GNU C library itself.
56251
56252 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
56253
56254         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
56255         (regex_compile): Catch bogus \(\1\).
56256
56257 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56258
56259         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
56260         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
56261         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
56262
56263 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56264
56265         * lib/error.h, getline.h, modechange.h:
56266         Remove "2000" from Copyright line, as the file hasn't been
56267         changed this year other than in the copyright notice.
56268
56269         * lib/xalloc.h: Add "2000" to Copyright line, as this file
56270         was changed this year.
56271
56272 2000-10-29  Jim Meyering  <meyering@lucent.com>
56273
56274         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
56275         renaming.
56276         * m4/ls-mntd-fs.m4: Likewise
56277
56278 2000-10-29  Jim Meyering  <meyering@lucent.com>
56279
56280         * lib/xstat.in: Fix grammar in comment.
56281
56282 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
56283
56284         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
56285         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
56286         doesn't define __restrict_arr.
56287
56288 2000-10-28  Jim Meyering  <meyering@lucent.com>
56289
56290         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
56291         (jm_PREREQ_MEMCHR): New function.
56292
56293 2000-10-28  Jim Meyering  <meyering@lucent.com>
56294
56295         * lib/memchr.c: Update from libc.
56296         Adjust for portability:
56297         [HAVE_STDLIB_H]: Include stdlib.h.
56298         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
56299         Undef __memchr, too.
56300         [!weak_alias]: Define __memchr to memchr.
56301
56302         * lib/regex.c: Update from libc.
56303         * lib/regex.h: Likewise.
56304         * lib/getopt1.c: Likewise.
56305         * lib/memcmp.c: Likewise.
56306
56307         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
56308         Avoid using fseek, when possible -- it's broken by design.
56309         Patch by Ulrich Drepper.
56310
56311 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
56312
56313         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
56314         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
56315         Giving in to popular pressure to shut up the compiler with casts.
56316
56317 2000-10-26  Jim Meyering  <meyering@lucent.com>
56318
56319         * lib/strftime.c: Update from libc.
56320
56321 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
56322
56323         * regex.c: More `unsigned char' -> `re_char' changes.
56324         Also change several `int' into `re_wchar_t'.
56325         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
56326         (PUSH_FAILURE_POINTER): Don't cast any more.
56327         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
56328         We want GCC to complain, since this piece of code makes
56329         re_match non-reentrant, which *should* be fixed.
56330         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
56331         (EXTEND_BUFFER): Use RETALLOC.
56332         (SET_LIST_BIT): Don't cast.
56333         (re_wchar_t): New type.
56334         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
56335         that those two functions will always properly return.
56336         (IMMEDIATE_QUIT_CHECK): Cast to void.
56337         (analyse_first): Use recursion rather than an explicit stack.
56338         (re_compile_fastmap): Can't fail anymore.
56339         (re_search_2): Don't check re_compile_fastmap for failure.
56340         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
56341         Now also sets the new value (passed in a new argument).
56342         (re_match_2_internal): Use it.
56343         Also, use a new var `reg' of type size_t when looping through regs
56344         rather than reuse the inappropriate `mcnt'.
56345
56346 2000-10-25  Jim Meyering  <meyering@lucent.com>
56347
56348         * lib/obstack.c: Update from libc.
56349
56350 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
56351
56352         * regex.c (regex_compile): Change the way of handling a range from
56353         a char less than 256 to a char not less than 256.
56354
56355 2000-10-24  Andrew Innes  <andrewi@gnu.org>
56356
56357         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
56358         NT-Emacs only.
56359         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
56360         so that re_search functions only quit when callers expect them to.
56361
56362 2000-10-23  Jim Meyering  <meyering@lucent.com>
56363
56364         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
56365         wrong.  That set_locale call must not have any side effects.
56366         From Paul Eggert.
56367
56368 2000-10-22  Jim Meyering  <meyering@lucent.com>
56369
56370         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
56371         [CYCLIC]: Remove now-unused definition.
56372
56373         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
56374         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
56375         Suggestion from Ulrich Drepper.
56376
56377 2000-10-21  Jim Meyering  <meyering@lucent.com>
56378
56379         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
56380         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
56381         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
56382
56383 2000-10-21  Jim Meyering  <meyering@lucent.com>
56384
56385         * lib/dirname.c (memrchr): Declare if necessary.
56386         (dir_name): Remove the restriction that there be no
56387         trailing slashes.  Now, this code skips past them, effectively
56388         ignoring them.
56389         [TEST_DIRNAME] (main): New unit tests.
56390
56391         * lib/memrchr.c: New file from GNU libc.
56392         Undef __memrchr, too.
56393         [!weak_alias]: Define __memrchr to memrchr.
56394         Guard weak_alias use with `#ifdef weak_alias'.
56395
56396 2000-10-21  Jim Meyering  <meyering@lucent.com>
56397
56398         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
56399         (dir_name): Use dir_name_r.
56400         * lib/dirname.h (dir_name_r): Declare it.
56401
56402 2000-10-17  Jim Meyering  <meyering@lucent.com>
56403
56404         * lib/quote.h (PARAMS): Define and use.
56405         Reported by Akim Demaille.
56406
56407         * lib/getopt.c: Update from libc.
56408
56409 2000-10-16  Jim Meyering  <meyering@lucent.com>
56410
56411         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
56412         setlocale.
56413         From Jan Fedak.
56414
56415 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
56416
56417         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
56418
56419 2000-09-25  Jim Meyering  <meyering@lucent.com>
56420
56421         * lib/md5.h (rol): Define (from GnuPG).
56422
56423         * lib/sha.c: Give credit (GnuPG) where due.
56424         (M): Use rol rather than open-coding it.
56425         Add a FIXME comment.
56426
56427 2000-09-21  Jim Meyering  <meyering@lucent.com>
56428
56429         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
56430         Reported by Michael Stone.
56431
56432 2000-09-20  Jim Meyering  <meyering@lucent.com>
56433
56434         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
56435         (noinst_HEADERS): Add sha.h.
56436         Based on code from Scott G. Miller and from GnuPG.
56437
56438 2000-09-18  Jim Meyering  <meyering@lucent.com>
56439
56440         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
56441         LIBS. Otherwise, everyone ends up linking with -lelf for some
56442         configurations.
56443         Reported by Mike Stone.
56444
56445 2000-09-15  Jim Meyering  <meyering@lucent.com>
56446
56447         * lib/regex.c: Update from libc.
56448
56449 2000-09-10  Jim Meyering  <meyering@lucent.com>
56450
56451         * lib/getopt.c (_getopt_internal): Update from glibc.
56452
56453 2000-09-09  Jim Meyering  <meyering@lucent.com>
56454
56455         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
56456         think it should be used as a general replacement for isascii.
56457         * lib/fnmatch.c: Likewise.
56458         * lib/mbswidth.c: Likewise
56459         * lib/regex.c: Likewise.
56460
56461         Don't use atoi.
56462         * lib/userspec.c: Include sys/param.h and limits.h.
56463         Include xstrtol.h.
56464         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
56465         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
56466         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
56467         UID, GID.  Check range.
56468
56469 2000-09-06  Jim Meyering  <meyering@lucent.com>
56470
56471         * lib/getopt.c (_getopt_internal): Update from glibc.
56472
56473 2000-08-30  Jim Meyering  <meyering@lucent.com>
56474
56475         * lib/strftime.c: Merge in changes from GNU libc.
56476
56477 2000-08-26  Jim Meyering  <meyering@lucent.com>
56478
56479         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
56480         * m4/fpending.m4: New file.
56481
56482 2000-08-26  Jim Meyering  <meyering@lucent.com>
56483
56484         * lib/closeout.c: Include "__fpending.h".
56485         (close_stdout_status): Return right away if there's nothing to flush.
56486
56487         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
56488         * lib/__fpending.c: New file.
56489         * lib/__fpending.h: New file.
56490
56491 2000-08-20  Jim Meyering  <meyering@lucent.com>
56492
56493         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
56494         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
56495         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
56496
56497 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
56498
56499         Improve fileutils installation on systems where running
56500         programs (like install) can't be unlinked.
56501         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
56502         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
56503
56504 2000-08-07  Paul Eggert  <eggert@twinsun.com>
56505
56506         Standardize on "memory exhausted" instead of "Memory exhausted"
56507         or "virtual memory exhausted".
56508         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
56509         "virtual memory exhausted".
56510         * lib/same.c (same_name): Invoke xalloc_die instead of printing
56511         our own message.
56512         * lib/userspec.c (parse_user_spec): Likewise.
56513         * lib/bumpalloc.h: comment fix
56514         * lib/same.c, userspec.c: Include xalloc.h.
56515
56516         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
56517         not char *const and pointing to a constant array.
56518         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
56519         (xrealloc): Comment fix.
56520
56521         * lib/userspec.c (parse_user_spec):
56522         Don't translate a message until just before returning,
56523         to avoid unnecessary translation.
56524
56525 2000-08-07  Jim Meyering  <meyering@lucent.com>
56526
56527         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
56528         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
56529         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
56530         getgroups.c, gethostname.c, getopt.h, group-member.c,
56531         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
56532         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
56533         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
56534         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
56535         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
56536         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
56537         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
56538         yesno.c: Back out Copyright date changes for each file with no change
56539         this year.  This eases coordination with other programs using the same
56540         source code modules.  From Paul Eggert.
56541
56542 2000-08-06  Paul Eggert  <eggert@twinsun.com>
56543
56544         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
56545         not char, for compatibility with glibc 2.1.3 strftime.c.
56546
56547 2000-08-03  Greg McGary  <greg@mcgary.org>
56548
56549         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
56550         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
56551         (EXTEND_BUFFER): Use them.
56552
56553 2000-08-01  Jim Meyering  <meyering@lucent.com>
56554
56555         * lib/dirname.c (ISSLASH): Define.
56556         (BACKSLASH_IS_PATH_SEPARATOR): Define.
56557         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
56558         both `\' and `/' may be use as path separators.
56559         Based on a patch from Prashant TR.
56560
56561 2000-07-31  Paul Eggert  <eggert@twinsun.com>
56562
56563         * lib/quotearg.c (quotearg_n_options): Don't make the initial
56564         slot vector a constant, since it might get modified.
56565
56566 2000-07-31  Jim Meyering  <meyering@lucent.com>
56567
56568         * lib/xmalloc.c: Use `virtual memory exhausted', not
56569         `Memory exhausted'.
56570         * lib/obstack.c (print_and_abort): Likewise.
56571
56572 2000-07-30  Paul Eggert  <eggert@twinsun.com>
56573
56574         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
56575         buffer, so that the caller can always quote one small
56576         component of a "memory exhausted" message in slot 0.
56577         From a suggestion by Jim Meyering.
56578
56579 2000-07-30  Jim Meyering  <meyering@lucent.com>
56580
56581         * lib/makepath.c (make_path): Quote the other instance, too.
56582
56583         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
56584         (STATIC_BUF_SIZE): Define.
56585         (quotearg_n_options): Use only statically allocated storage when
56586         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
56587         than STATIC_BUF_SIZE.
56588
56589 2000-07-29  Jim Meyering  <meyering@lucent.com>
56590
56591         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
56592         * lib/dirname.c (dir_name): Likewise.
56593
56594         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
56595         `/'.
56596
56597         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
56598         (dir_name): Assert that there are no trailing slashes.
56599
56600 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
56601
56602         * lib/mbswidth.h (mbswidth): Add a flags argument.
56603         (mbswidth): New declaration.
56604         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
56605         * lib/mbswidth.c (mbswidth): Add a flags argument.
56606         (mbsnwidth): New function.
56607
56608 2000-07-24  Jim Meyering  <meyering@lucent.com>
56609
56610         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
56611
56612 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56613
56614         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
56615
56616 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56617
56618         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
56619         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
56620         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
56621         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
56622         invoke multibyte primitives.
56623
56624 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56625
56626         * lib/quotearg.c:
56627         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
56628         so that mbstate_t is always defined.
56629
56630         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
56631         be 1 in at least one GCC installation, and this configuration
56632         error is likely to be common.  Ignoring MB_LEN_MAX hurts
56633         performance on hosts that have mbrtowc but have only unibyte
56634         locales, but I assume these hosts are rare.
56635
56636 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56637
56638         * lib/mbswidth.c (_XOPEN_SOURCE):
56639         Don't define; this causes problems on Solaris 7.
56640         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
56641
56642 2000-07-23  Jim Meyering  <meyering@lucent.com>
56643
56644         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
56645         too: getgrgid, getpwuid, getuid.
56646
56647 2000-07-23  Jim Meyering  <meyering@lucent.com>
56648
56649         * lib/basename.c (base_name): Add an assertion.
56650
56651 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
56652
56653         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
56654         shadow its mbsinit function.
56655
56656 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56657
56658         * lib/mbswidth.h: New file.
56659         * lib/mbswidth.c: New file.
56660         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
56661         (noinst_HEADERS): Add mbswidth.h.
56662
56663 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56664
56665         * lib/config.charset: Add support for FreeBSD. Improve support for
56666         HP-UX and IRIX 6.
56667
56668 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
56669
56670         * m4/mbswidth.m4: New file.
56671         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
56672
56673 2000-07-15  Jim Meyering  <meyering@lucent.com>
56674
56675         * lib/makepath.c: Include quote.h.
56676         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
56677         corresponding argument in a `quote (...)' call.
56678         Give better diagnostics.
56679
56680         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
56681         (noinst_HEADERS): Add quote.h.
56682
56683         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
56684         from tar's src/misc.c.
56685         * lib/quote.h: New file.  Prototypes for same.
56686
56687 2000-07-14  Paul Eggert  <eggert@twinsun.com>
56688
56689         From a suggestion by Bruno Haible.
56690         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
56691         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
56692         to decide whether to define the BeOS workaround macro;
56693         this adjusts to the change to AC_MBSTATE_T.
56694
56695 2000-07-14  Jim Meyering  <meyering@lucent.com>
56696
56697         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
56698         jm_AC_TYPE_UINTMAX_T.
56699
56700 2000-07-13  Paul Eggert  <eggert@twinsun.com>
56701
56702         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
56703
56704         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
56705         quotearg_buffer_restyled): Add support for
56706         clocale_quoting_style.  Undo previous change to
56707         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
56708         and "{RIGHT QUOTATION MARK}" msgids.
56709
56710 2000-07-10  Paul Eggert  <eggert@twinsun.com>
56711
56712         From a suggestion by Bruno Haible.
56713         * m4/mbstate_t.m4 (AC_MBSTATE_T):
56714         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
56715         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
56716         and mbstate_t, to a single-part test that simply defines mbstate_t.
56717         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
56718         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
56719
56720 2000-07-10  Jim Meyering  <meyering@lucent.com>
56721
56722         * m4/strerror_r.m4: Mirror the correction made in autoconf.
56723
56724         * m4/gnu-source.m4: Output to confdefs.h directly.
56725         Suggestion from Akim Demaille.
56726
56727 2000-07-09  Paul Eggert  <eggert@twinsun.com>
56728
56729         The old behavior of quoting `like this' doesn't look good with
56730         newer, ISO-style fonts.  See:
56731         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
56732
56733         Instead, quote "like this" by default.  Let the translator
56734         tailor the locale-specific quoting behavior by providing
56735         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
56736
56737         * lib/quotearg.c (N_): New macro.
56738         (gettext_default): New function.
56739         (quotearg_buffer_restyled): Use
56740         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
56741         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
56742
56743 2000-07-09  Jim Meyering  <meyering@lucent.com>
56744
56745         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
56746         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
56747
56748         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
56749         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
56750
56751 2000-07-09  Jim Meyering  <meyering@lucent.com>
56752
56753         * lib/Most files: Update copyright dates to include 2000.
56754
56755 2000-07-08  Jim Meyering  <meyering@lucent.com>
56756
56757         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
56758         if not defined.
56759         (xgethostname): Remove now-unnecessary #ifdef.
56760         Move declaration of `err' into loop where it's used.
56761
56762 2000-07-05  Paul Eggert  <eggert@twinsun.com>
56763         and Bruno Haible  <haible@clisp.cons.org>
56764
56765         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
56766         only if the test for an object-type mbstate_t fails.  This
56767         prevents us from mistakenly reporting that mbstate_t is a
56768         system object type after we "#define mbstate_t int" to work
56769         around its lack.
56770
56771 2000-07-05  Paul Eggert  <eggert@twinsun.com>
56772         and Bruno Haible  <haible@clisp.cons.org>
56773
56774         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
56775
56776 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56777
56778         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
56779         to strerror_r.
56780         Include <ctype.h> for use of isalpha.
56781
56782 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56783
56784         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
56785         by allocating a larger buffer. Test the gethostname return value for
56786         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
56787         returns an error and ENAMETOOLONG isn't defined.
56788
56789 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56790
56791         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
56792         dimension.
56793
56794 2000-07-04  Jim Meyering  <meyering@lucent.com>
56795
56796         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
56797         of the deprecated AC_CHECKING.
56798
56799 2000-07-04  Jim Meyering  <meyering@lucent.com>
56800
56801         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
56802         Reported by Bruno Haible.
56803
56804 2000-07-04  Jim Meyering  <meyering@lucent.com>
56805
56806         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
56807         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
56808         lacks mbrtowc.
56809
56810 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56811
56812         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
56813         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
56814
56815 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56816         and Bruno Haible  <haible@clisp.cons.org>
56817
56818         * lib/quotearg.c (mbrtowc):
56819         Assign to *pwc, and return 1 only if result is nonzero.
56820         (iswprint): Use ISPRINT when substituting our own mbrtowc.
56821
56822 2000-07-03  Jim Meyering  <meyering@lucent.com>
56823
56824         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
56825
56826 2000-07-03  Jim Meyering  <meyering@lucent.com>
56827
56828         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
56829         This is necessary to get a definition of e.g., UTMP_FILE on
56830         HP-UX 10.20.
56831         From Bob Proulx.
56832
56833 2000-07-02  Jim Meyering  <meyering@lucent.com>
56834
56835         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
56836
56837         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
56838         AC_LIBOBJ(function_name).
56839         * m4/chown.m4: Likewise.
56840         * m4/fnmatch.m4: Likewise.
56841         * m4/ftruncate.m4: Likewise.
56842         * m4/getgroups.m4: Likewise.
56843         * m4/getline.m4: Likewise.
56844         * m4/group-member.m4: Likewise.
56845         * m4/jm-macros.m4: Likewise.
56846         * m4/lstat.m4: Likewise.
56847         * m4/malloc.m4: Likewise.
56848         * m4/memcmp.m4: Likewise.
56849         * m4/nanosleep.m4: Likewise.
56850         * m4/putenv.m4: Likewise.
56851         * m4/realloc.m4: Likewise.
56852         * m4/regex.m4: Likewise.
56853         * m4/stat.m4: Likewise.
56854         * m4/strftime.m4: Likewise.
56855
56856 2000-07-02  Jim Meyering  <meyering@lucent.com>
56857
56858         * lib/quotearg.c (mbstate_t): Don't define here.
56859
56860 2000-07-02  Jim Meyering  <meyering@lucent.com>
56861
56862         * lib/nanosleep.c (SIGCONT): Define if not already defined.
56863
56864 2000-07-01  Jim Meyering  <meyering@lucent.com>
56865
56866         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
56867
56868 2000-07-01  Jim Meyering  <meyering@lucent.com>
56869
56870         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
56871         problem.
56872
56873 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56874
56875         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
56876         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
56877
56878 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56879
56880         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
56881         per change in ../m4/ls-mntd-fs.m4.
56882         (read_filesystem_list): Ignore symbolic links.
56883
56884 2000-06-29  Jim Meyering  <meyering@lucent.com>
56885
56886         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
56887         for declaration of strcmp.
56888
56889         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
56890
56891         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
56892         Avoid warning by casting result to `char *' to remove `const'.
56893
56894 2000-06-28  Jim Meyering  <meyering@lucent.com>
56895
56896         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
56897         included by quotearg.c, for which we perform this test.  From
56898         Bruno Haible.
56899
56900 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56901
56902         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
56903         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
56904         <utmpx.h> exists, put readutmp.o into LIBOBJS.
56905
56906 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56907
56908         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
56909
56910 2000-06-26  Paul Eggert  <eggert@twinsun.com>
56911
56912         savedir now sets errno on failure and invokes xmalloc to get memory.
56913         Fix a couple of other minor bugs while we're at it.
56914
56915         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
56916         (NAMLEN): Remove macro.
56917         (malloc, realloc): Remove decls.
56918         (stpcpy): Likewise.
56919         ("xalloc.h"): Include.
56920         (NAME_SIZE_DEFAULT): New macro.
56921         (savedir): Use xmalloc / xrealloc to allocate memory.
56922         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
56923         Skip "" directory entries.
56924         Use strlen to calculate directory entry length, since the old method
56925         is rarely used these days and isn't worth supporting.
56926         Don't use a pointer after freeing it.
56927         Check for integer overflow when calculating allocation size.
56928         Use memcpy to copy entries, instead of stpcpy.
56929         Set errno properly when returning NULL.
56930         Check for readdir error.
56931
56932 2000-06-26  Jim Meyering  <meyering@lucent.com>
56933
56934         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
56935
56936 2000-06-25  Jim Meyering  <meyering@lucent.com>
56937
56938         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
56939         Linux header bug when _XOPEN_SOURCE is defined to 500.
56940
56941 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56942
56943         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
56944         deficiency.
56945
56946 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56947
56948         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
56949         Include xalloc.h.
56950         Don't include <stdlib.h>.  Don't declare malloc, realloc.
56951
56952 2000-06-24  Jim Meyering  <meyering@lucent.com>
56953
56954         * m4/strerror_r.m4: Revive this file -- to try out an experimental
56955         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
56956         for which strerror does return char*, but which lacks a conveniently
56957         accessible declaration of the function.  If the compile-test says
56958         strerror_r doesn't work, then resort to a `run'-test that works on
56959         BeOS and segfaults on DEC Unix.
56960
56961 2000-06-24  Jim Meyering  <meyering@lucent.com>
56962
56963         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
56964
56965 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56966
56967         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
56968         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
56969
56970 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56971
56972         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
56973         (mbrtowc, mbstate_t): Define substitutes if
56974         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
56975         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
56976         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
56977
56978 2000-06-23  Jim Meyering  <meyering@lucent.com>
56979
56980         * m4/afs.m4: Add missing AC_MSG_RESULT.
56981         Reported by Bruno Haible.
56982
56983         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
56984         Suggestion from Bruno Haible.
56985
56986 2000-06-23  Jim Meyering  <meyering@lucent.com>
56987
56988         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
56989
56990 2000-06-21  Jim Meyering  <meyering@lucent.com>
56991
56992         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
56993
56994 2000-06-21  Jim Meyering  <meyering@lucent.com>
56995
56996         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
56997         (noinst_HEADERS): Add getstr.h.
56998
56999         * lib/getline.c (getstr): Move into a separate file.
57000         * lib/getstr.c (getstr): New file, extracted from getline.c, with
57001         the following changes: new parameter, delim2; both delim[12]
57002         parameters have type `int', not `char'.  The latter would lose
57003         with 8-bit delimiters.
57004         * lib/getstr.h: New file.
57005
57006 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57007
57008         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
57009         than 1024, return a memory chunk of least possible size, instead
57010         of size PATH_MAX + 2. In the loop, increment the size proportionally.
57011         Use free/xmalloc instead of xrealloc to avoid copying for very long
57012         paths.
57013
57014 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57015
57016         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
57017         the empty string.
57018
57019 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57020
57021         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
57022         address, not strdup.  Include <stdlib.h> and don't declare free().
57023
57024 2000-06-19  Jim Meyering  <meyering@lucent.com>
57025
57026         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
57027
57028 2000-06-18  Jim Meyering  <meyering@lucent.com>
57029
57030         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
57031
57032         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
57033         `checking whether...' message to be consistent with that of the
57034         lstat test.
57035
57036 2000-06-18  Jim Meyering  <meyering@lucent.com>
57037
57038         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
57039         Besides, these days every porting target provides a mkdir function.
57040
57041         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
57042         needed. (this snippet comes from src/system.h).
57043
57044 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
57045
57046         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
57047
57048 2000-06-15  Paul Eggert  <eggert@twinsun.com>
57049
57050         * lib/human.c (adjust_value): New function.
57051         (human_readable_inexact): Apply rounding style even when
57052         printing approximate values.
57053
57054 2000-06-14  Paul Eggert  <eggert@twinsun.com>
57055
57056         * lib/human.c (human_readable_inexact): Allow an input block
57057         size that is not a multiple of the output block size, and vice versa.
57058         Reported by Piergiorgio Sartor.
57059
57060 2000-06-14  Paul Eggert  <eggert@twinsun.com>
57061
57062         * lib/getdate.y (get_date): Apply relative times after time
57063         zone indicator, not before.  Reported by Todd A. Jacobs.
57064
57065 2000-06-13  Jim Meyering  <meyering@lucent.com>
57066
57067         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
57068
57069         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
57070
57071 2000-06-12  Paul Eggert  <eggert@twinsun.com>
57072
57073         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
57074
57075 2000-06-12  Jim Meyering  <meyering@lucent.com>
57076
57077         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
57078         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
57079         optional argument.
57080         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
57081         the optional argument, `lib'.
57082
57083 2000-06-08  Jim Meyering  <meyering@lucent.com>
57084
57085         * m4/largefile.m4: Remove file (now that it's part of autoconf).
57086
57087 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57088
57089         Rewrite largefile configuration so that we don't need to run
57090         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
57091         AC_CANONICAL_HOST in configure.in -- jmm]
57092
57093         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
57094         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
57095         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
57096         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
57097         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
57098         All uses changed.
57099         Instead of inspecting the output of getconf, try to compile the
57100         test program without and with the macro definition.
57101         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
57102         for getconf.  Instead, check for the needed flags by compiling
57103         test programs.
57104
57105 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57106
57107         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
57108
57109 2000-06-04  Jim Meyering  <meyering@lucent.com>
57110
57111         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
57112         SunOS 4.1.4 for which gid_t is an unsigned type.
57113
57114 2000-06-03  Jim Meyering  <meyering@lucent.com>
57115
57116         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
57117         now that autoconf requires that.
57118
57119         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
57120         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
57121         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
57122
57123 2000-06-03  Jim Meyering  <meyering@lucent.com>
57124
57125         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
57126
57127 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57128
57129         * m4/glibc21.m4: New file.
57130         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
57131
57132 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57133
57134         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
57135         newer, don't install charset.alias.
57136         * lib/config.charset: Change the Linux/glibc rules so they become empty
57137         on glibc-2.1 or newer.
57138
57139 2000-06-02  Jim Meyering  <meyering@lucent.com>
57140
57141         * lib/mountlist.c: Back out last change.  Instead, do this...
57142         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
57143         me_dummy member using the same `ignore'-testing code.
57144         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
57145         fs_type strings.
57146         From Mark D. Roth.
57147
57148 2000-05-29  Jim Meyering  <meyering@lucent.com>
57149
57150         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
57151         mounts with the `ignore' attribute.  Based on a patch from
57152         Mark D. Roth.
57153
57154 2000-05-28  Jim Meyering  <meyering@lucent.com>
57155
57156         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
57157         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57158         * m4/stat.m4: Likewise.
57159         * m4/lstat.m4: Likewise.
57160         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
57161
57162         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
57163         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
57164
57165 2000-05-26  Jim Meyering  <meyering@lucent.com>
57166
57167         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
57168
57169 2000-05-24  Jim Meyering  <meyering@lucent.com>
57170
57171         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
57172         autoconf requires that.
57173         * m4/lib-check.m4: Likewise.
57174         * m4/jm-macros.m4: Likewise.
57175         * m4/strftime.m4: Likewise.
57176
57177         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
57178         AC_CHECK_DECLS, now that autoconf requires that.
57179
57180 2000-05-22  Jim Meyering  <meyering@lucent.com>
57181
57182         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57183         * m4/lstat.m4: Likewise.
57184
57185 2000-05-22  Jim Meyering  <meyering@lucent.com>
57186
57187         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
57188
57189 2000-05-20  Jim Meyering  <meyering@lucent.com>
57190
57191         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
57192         (jm_PREREQ): Use it.
57193
57194 2000-05-18  Jim Meyering  <meyering@lucent.com>
57195
57196         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
57197         back, too, since it may have been modified by allocate_entry.
57198         (hash_delete): Rewrite to use neither the assignment operator
57199         nor the comma operator in an if-expression.
57200
57201 2000-05-15  Paul Eggert  <eggert@twinsun.com>
57202
57203         * lib/closeout.c:
57204         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
57205         Remove; no longer needed.
57206         "quotearg.h": Add include.
57207         (file_name): Do not bother to explicitly initialize to NULL; it's less
57208         efficient on some hosts.
57209         (close_stdout_status): Remove test as to whether stdout was already
57210         closed; it breaks for the case "echo x | sort >&-".
57211         Quote file name colons.
57212         Do not assume that _("write error") lacks format strings.
57213
57214 2000-05-15  Jim Meyering  <meyering@lucent.com>
57215
57216         * lib/version-etc.c (version_etc_copyright): Update the copyright
57217         string used in all --version output.
57218
57219 2000-05-14  Jim Meyering  <meyering@lucent.com>
57220
57221         * lib/closeout.c (close_stdout_set_file_name): New function.
57222         (close_stdout_status): Use new file-scoped global.
57223         Return right away if fstat says the stdout file descriptor is invalid.
57224         * lib/closeout.h (close_stdout_set_file_name): Declare.
57225
57226 2000-05-10  Jim Meyering  <meyering@lucent.com>
57227
57228         * lib/closeout.c [default_exit_status]: New file-scoped variable.
57229         (close_stdout_set_status): New function.
57230         * lib/closeout.h (close_stdout_set_status): Declare.
57231
57232 2000-05-09  Jim Meyering  <meyering@lucent.com>
57233
57234         * m4/gettext.m4: Rename this...
57235         * m4/libintl.m4: ...to this.
57236
57237 2000-05-08  Jim Meyering  <meyering@lucent.com>
57238
57239         * lib/long-options.c: Don't include closeout.h.
57240         (parse_long_options): Don't call close_stdout for --version.
57241
57242 2000-05-06  Paul Eggert  <eggert@twinsun.com>
57243
57244         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
57245         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
57246         2.1.3 bug.  This avoids a clash when files like regex.c define
57247         _GNU_SOURCE.
57248
57249 2000-05-06  Jim Meyering  <meyering@lucent.com>
57250
57251         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
57252         (AC_REPLACE_FUNCS): Add strnlen.
57253
57254         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
57255         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
57256
57257         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
57258         AC_SEARCH_LIBS call for nanosleep.
57259         (LIB_NANOSLEEP): Set and AC_SUBST.
57260
57261 2000-05-06  Jim Meyering  <meyering@lucent.com>
57262
57263         * lib/strnlen.c: Undefine __strnlen and strnlen.
57264         [!weak_alias]: Define __strnlen to strnlen.
57265
57266         * lib/atexit.c: New file, from libiberty.
57267
57268 2000-05-06  Jim Meyering  <meyering@lucent.com>
57269
57270         * lib/closeout.c (close_stdout_status): Also check for errors on the
57271         stderr stream.
57272
57273 2000-05-05  Jim Meyering  <meyering@lucent.com>
57274
57275         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
57276         AC_SEARCH_LIBS call for clock_gettime.
57277         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
57278
57279         * m4/search-libs.m4: Update from autoconf.
57280
57281         su doesn't work on Solaris 2.6.
57282         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
57283         <shadow.h>.  Reported by Dragos Harabor.
57284
57285 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
57286
57287         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
57288         memcpy instead of xmalloc, xrealloc, path_concat.
57289         (locale_charset): Treat empty environment variables as absent.
57290         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
57291
57292 2000-05-04  Jim Meyering  <meyering@lucent.com>
57293
57294         * lib/getopt.c: Update from glibc.
57295         * lib/obstack.c: Likewise.
57296         * lib/obstack.h: Likewise.
57297         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
57298         file
57299
57300         * lib/regex.h: Likewise.
57301         * lib/strndup.c: Likewise.
57302         * lib/strnlen.c: New file, from glibc.
57303
57304 2000-05-03  Jim Meyering  <meyering@lucent.com>
57305
57306         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
57307
57308 2000-05-02  Paul Eggert  <eggert@twinsun.com>
57309
57310         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
57311         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
57312         compile-time test, rather than inspecting host and OS, to
57313         decide whether to define _LARGEFILE_SOURCE.
57314
57315 2000-05-01  Jim Meyering  <meyering@lucent.com>
57316
57317         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
57318
57319         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
57320         Based on a patch from Bruno Haible.
57321
57322 2000-05-01  Jim Meyering  <meyering@lucent.com>
57323
57324         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
57325
57326 2000-04-29  Jim Meyering  <meyering@lucent.com>
57327
57328         * lib/path-concat.c: Declare strdup only if it's not defined.
57329         * lib/canon-host.c: Likewise.
57330
57331 2000-04-28  Jim Meyering  <meyering@lucent.com>
57332
57333         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
57334         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
57335         is included first, then limits.h is included by locale.h by libintl.h.
57336         From John David Anglin.
57337
57338 2000-04-25  Jim Meyering  <meyering@lucent.com>
57339
57340         * lib/makepath.c (S_IRWXUGO): Define.
57341         (make_path): Always perform explicit chmod if MODE specifies any
57342         of the `special' permission bits.  Prompted by a bug report against
57343         install from Mate Wierdl and Joost van Baal.
57344
57345 2000-04-18  Jim Meyering  <meyering@lucent.com>
57346
57347         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
57348         (jm_PREREQ): Use it.
57349
57350 2000-04-18  Jim Meyering  <meyering@lucent.com>
57351
57352         * lib/README: New file.
57353
57354         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
57355         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
57356
57357 2000-04-17  Jim Meyering  <meyering@lucent.com>
57358
57359         Get it right :-)
57360         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
57361         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
57362         Suggestion from Akim Demaille.
57363
57364 2000-04-17  Jim Meyering  <meyering@lucent.com>
57365
57366         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
57367         the definition of it to rpl_strftime also defined-away the system's
57368         declaration.
57369
57370 2000-04-15  Jim Meyering  <meyering@lucent.com>
57371
57372         Use `C' to denote so-called `contiguous' files, the same way
57373         that tar does.
57374         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
57375         (ftypelet): Use S_ISCTG.
57376         From Michael Deutschmann.
57377
57378 2000-04-14  Jim Meyering  <meyering@lucent.com>
57379
57380         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
57381         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
57382         clobbered.
57383
57384 2000-04-14  Jim Meyering  <meyering@lucent.com>
57385
57386         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
57387
57388 2000-04-13  Jim Meyering  <meyering@lucent.com>
57389
57390         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
57391         AH_VERBATIM to insert required #ifndef into config.h.in.
57392         Suggestion from Akim Demaille.
57393
57394 2000-04-12  Jim Meyering  <meyering@lucent.com>
57395
57396         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
57397         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
57398         Christian Krackowizer.
57399
57400         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
57401         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
57402         (AC_SYS_LARGEFILE): Require.
57403         (AM_C_PROTOTYPES): Require.
57404
57405 2000-04-08  Jim Meyering  <meyering@lucent.com>
57406
57407         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
57408         names don't conflict.  Reported by Eli Zaretskii.
57409
57410 2000-04-07  Jim Meyering  <meyering@lucent.com>
57411
57412         * lib/putenv.c: Move inclusion of errno.h so it follows that of
57413         sys/types.h, to work around system header problems on AIX 3.2.5.
57414         From Bruno Haible.
57415
57416 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
57417
57418         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
57419         bug.  Deal with the different error behavior of Irix iconv.
57420
57421 2000-04-05  Paul Eggert  <eggert@twinsun.com>
57422
57423         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
57424         IRIX if the installer said otherwise.
57425
57426 2000-04-05  Jim Meyering  <meyering@lucent.com>
57427
57428         Portability tweaks required for ultrix4.3.
57429         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
57430         (jm_CHECK_DECLS): Add getutent to the list of functions.
57431         (_jm_DECL_HEADERS): Add utmpx.h.
57432         From John David Anglin.
57433
57434         * m4/strftime.m4: Back out the 2000-04-02 change.
57435         Instead of that change, simply undefine putenv in the test program.
57436
57437 2000-04-05  Jim Meyering  <meyering@lucent.com>
57438
57439         Portability tweaks required for ultrix4.3.
57440         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
57441         getutent.
57442         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
57443         * lib/canon-host.c: Declare strdup.
57444         * lib/path-concat.c: Likewise.
57445         From John David Anglin.
57446
57447 2000-04-04  Jim Meyering  <meyering@lucent.com>
57448
57449         Be more DOS 8.3-friendly.
57450         * lib/ref-add.sin: Renamed from ref-add.sed.in.
57451         * lib/ref-del.sin: Renamed from ref-del.sed.in.
57452         * lib/Makefile.am: Reflect renaming.
57453         Reported by Eli Zaretskii.
57454
57455         Use a temporary file name that won't clash with `charset.alias'
57456         in the DOS 8.3 name space.
57457         * lib/Makefile.am (charset_tmp): Define.
57458         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
57459         (uninstall-local): Likewise.
57460         Reported by Eli Zaretskii.
57461
57462 2000-04-03  Jim Meyering  <meyering@lucent.com>
57463
57464         * m4/gettext.m4: Fix typo in comment.
57465
57466         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
57467         textutils/configure.in).  Suggestion from Paul Eggert.
57468         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
57469
57470 2000-04-02  Paul Eggert  <eggert@twinsun.com>
57471
57472         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
57473         variable in the shell rather than using putenv, which isn't
57474         portable.  This avoids the configure-time inter-test dependency
57475         on the potentially-renamed putenv function.
57476
57477 2000-03-30  Paul Eggert  <eggert@twinsun.com>
57478
57479         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
57480         before checking struct stat.st_blksize, so that
57481         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
57482
57483 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57484
57485         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
57486         since strftime.c uses HAVE_STRFTIME to decide whether to use
57487         the underlying strftime.
57488
57489 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57490
57491         * lib/time/strftime.c (my_strftime): Make sure we call the system
57492         strftime, not ourselves, when invoking the underlying strftime.
57493
57494 2000-03-24  Jim Meyering  <meyering@lucent.com>
57495
57496         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
57497         (charset_alias): Define.
57498         (install-exec-local): Factor out common code.
57499         (uninstall-local): Split lines longer than 80.
57500         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
57501         (SUFFIXES): Define.
57502         (.sed.in.sed): New rule.  Don't redirect directly to $@.
57503         (CLEANFILES): Add ref-add.sed and ref-del.sed.
57504
57505 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
57506
57507         * lib/config.charset: Output a line containing "Packages using this
57508         file".
57509         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
57510         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
57511         ref-del.sed): New rules.
57512
57513 2000-03-17  Jim Meyering  <meyering@lucent.com>
57514
57515         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
57516         Otherwise, include <strings.h>
57517
57518 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
57519
57520         * lib/unicodeio.c (utf8_wctomb): New function.
57521         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
57522         format instead of in UCS-4 with platform dependent endianness.
57523
57524 2000-03-10  Jim Meyering  <meyering@lucent.com>
57525
57526         * m4/lib-check.m4: Look for getspnam in -lgen, too.
57527         From Marco Franzen.
57528
57529 2000-03-07  Paul Eggert  <eggert@twinsun.com>
57530
57531         * lib/savedir.c (savedir): Work even if directory size is
57532         negative; this can happen with some screwy NFS configurations.
57533
57534 2000-03-06  Jim Meyering  <meyering@lucent.com>
57535
57536         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
57537         if it's NULL (because we ran out of memory).  From Bruno Haible.
57538
57539 2000-03-05  Jim Meyering  <meyering@lucent.com>
57540
57541         * lib/localcharset.c ("path-concat.h"): Include.
57542         (get_charset_aliases): Use path_concat instead of ANSI string
57543         concatenation.
57544
57545         * lib/unicodeio.h (PARAMS): Define.
57546         Use it to guard prototype.
57547
57548 2000-03-04  Jim Meyering  <meyering@lucent.com>
57549
57550         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
57551         for lib/localcharset.c.
57552
57553 2000-03-04  Jim Meyering  <meyering@lucent.com>
57554
57555         * lib/Makefile.am (install-exec-local): Create $(libdir) before
57556         installing into it.
57557         (uninstall-local): Uncomment this rule so `make distcheck' works
57558         once again.
57559
57560         * lib/unicodeio.c (<errno.h>): Include it.
57561         (errno): Declare if not defined.
57562
57563         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
57564
57565         * lib/config.charset: New version, incorporating remarks from a linux
57566         i18n mailing list.  From Bruno Haible.
57567
57568 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
57569
57570         * m4/codeset.m4: New file.
57571         * m4/iconv.m4: New file.
57572         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
57573
57574 2000-03-03  Jim Meyering  <meyering@lucent.com>
57575
57576         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
57577
57578 2000-03-02  Jim Meyering  <meyering@lucent.com>
57579
57580         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
57581         the messages come out on separate lines.
57582
57583         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
57584         rather than jm_CHECK_DECLARATIONS.
57585         * m4/decl.m4: Remove now-unused file.
57586
57587         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
57588         geteuid.
57589
57590 2000-03-02  Jim Meyering  <meyering@lucent.com>
57591
57592         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
57593
57594 2000-03-01  Jim Meyering  <meyering@lucent.com>
57595
57596         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
57597         * lib/unicodeio.c: Likewise.
57598
57599 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
57600
57601         * lib/config.charset: New file.
57602         * lib/localcharset.c: New file.
57603         * lib/unicodeio.h, lib/unicodeio.c: New files.
57604         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
57605         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
57606         (noinst_HEADERS): Add unicodeio.h.
57607         (all-local, install-exec-local, charset.alias): New targets.
57608
57609 2000-02-28  Paul Eggert  <eggert@twinsun.com>
57610
57611         * lib/quotearg.c (ALERT_CHAR): New macro.
57612         (quotearg_buffer_restyled): Use it.
57613
57614 2000-02-27  Jim Meyering  <meyering@lucent.com>
57615
57616         * m4/check-decl.m4: Add getenv to the list.
57617
57618 2000-02-27  Jim Meyering  <meyering@lucent.com>
57619
57620         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
57621         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
57622
57623         * lib/backupfile.c: Guard inclusion of stdlib.h with
57624         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
57625         Declare malloc if needed.
57626
57627         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
57628         `#ifndef HAVE_DECL..'
57629         now that autoconf always defines the HAVE_DECL_ symbols.
57630         * lib/human.c: Likewise.
57631         * lib/same.c: Likewise.
57632         * lib/strtoumax.c: Likewise.
57633
57634         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
57635         declaration check was not run.
57636         * lib/hash.c: Likewise.
57637         * lib/human.c: Likewise.
57638         * lib/same.c: Likewise.
57639         * lib/strtoumax.c: Likewise.
57640
57641         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
57642         `.', then first look up the entire `.'-containing string as a login
57643         name.
57644
57645 2000-02-23  Jim Meyering  <meyering@lucent.com>
57646
57647         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
57648         in place of my hack.
57649
57650 2000-02-18  Paul Eggert  <eggert@twinsun.com>
57651
57652         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
57653         (textint): New typedef.
57654         (parser_control): Member year changed from int to textint.
57655         All uses changed.
57656         (YYSTYPE): Removed; replaced by %union with int and textint members.
57657         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
57658         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
57659         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
57660         (tSNUMBER, tUNUMBER): Now of type <textintval>.
57661         (date, number, to_year): Use width of number in digits, not its value,
57662         to determine whether it's a 2-digit year, or a 2-digit time.
57663         (yylex): Store number of digits of numeric tokens.
57664         Reported by John Kendall.
57665
57666         (parser_control): Changed from struct parser_control to typedef (for
57667         consistency).  All uses changed.
57668
57669         (tID): Removed; not used.
57670         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
57671
57672 2000-02-14  Paul Eggert  <eggert@twinsun.com>
57673
57674         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
57675         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
57676
57677 2000-02-12  Jim Meyering  <meyering@lucent.com>
57678
57679         * lib/userspec.c (ISDIGIT): Define it.
57680         (isdigit): Remove definition.
57681         (is_number): Use ISDIGIT, not isdigit.
57682         <libintl.h>: Include.
57683         (_ and N_): Define.
57684         (parse_user_spec): Mark translatable strings.
57685
57686 2000-02-10  Jim Meyering  <meyering@lucent.com>
57687
57688         With these changes, nanosleep.[ch] are finally enough like the other
57689         lib/* replacement files to compile on a few more losing systems.
57690
57691         * lib/nanosleep.h: Don't include config.h.
57692         Remove prototype from declaration of nanosleep.
57693         (PARAMS): Remove now-unneeded definition.
57694         * lib/nanosleep.c: #undef nanosleep.
57695         (rpl_nanosleep): Rename from nanosleep.
57696
57697 2000-02-10  Jim Meyering  <meyering@lucent.com>
57698
57699         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
57700         gnu_nanosleep to rpl_nanosleep.
57701
57702 2000-02-09  Jim Meyering  <meyering@lucent.com>
57703
57704         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
57705         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
57706
57707 2000-02-08  Akim Demaille  <akim@epita.fr>
57708
57709         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
57710         `[' and `]' and remove uses of `changequote'.
57711         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
57712         (AC_SYS_LARGEFILE): Likewise.
57713         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
57714         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
57715         of changequote.
57716         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
57717         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
57718         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
57719         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
57720
57721 2000-02-05  Jim Meyering  <meyering@lucent.com>
57722
57723         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
57724         Remove explicit use of AC_HEADER_TIME.  It is required by
57725         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
57726         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
57727         in autoconf whereby the expansion of the latter ended up preceding
57728         the expansion of its prerequisite, AC_HEADER_TIME.
57729         Reported by Volker Borchert.
57730
57731 2000-02-03  Jim Meyering  <meyering@lucent.com>
57732
57733         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
57734
57735 2000-02-03  Jim Meyering  <meyering@lucent.com>
57736
57737         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
57738         rather than with `#if HAVE_UTMPNAME'.
57739
57740 2000-02-02  Jim Meyering  <meyering@lucent.com>
57741
57742         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
57743         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
57744         Reported by Eli Zaretskii.
57745
57746 2000-02-01  Jim Meyering  <meyering@lucent.com>
57747
57748         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
57749
57750 2000-01-31  Jim Meyering  <meyering@lucent.com>
57751
57752         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
57753         functions.  Add the time.h and sys/time.h headers along with the
57754         AC_REQUIRE'ment of AC_HEADER_TIME.
57755
57756 2000-01-31  Jim Meyering  <meyering@lucent.com>
57757
57758         * lib/nanosleep.h (nanosleep): Guard declaration with
57759         `#if ! HAVE_DECL_NANOSLEEP'.
57760         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
57761         the declaration in that vendor's sys/timers.h.
57762         Reported by Christian Krackowizer.
57763
57764         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
57765         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
57766         (ISPRINT): Likewise.
57767         Reported by Tom Tromey.
57768
57769 2000-01-30  Jim Meyering  <meyering@lucent.com>
57770
57771         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
57772
57773         * m4/prereq.m4 (utmp_includes): Define.
57774         Check for ut_user and ut_name members in both struct utmpx
57775         and struct utmp.
57776
57777 2000-01-30  Jim Meyering  <meyering@lucent.com>
57778
57779         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
57780         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
57781         header files where only utmpx.ut_user is declared.
57782
57783         * lib/readutmp.h (UT_USER): Define.
57784
57785 2000-01-29  Jim Meyering  <meyering@lucent.com>
57786
57787         * m4/lib-check.m4: New file containing library-related checks from
57788         fileutils and sh-utils (textutils had none).
57789
57790 2000-01-28  Jim Meyering  <meyering@lucent.com>
57791
57792         * m4/perl.m4: Change format of warning message to look more like that
57793         from the missing script.  Suggestion from François Pinard.
57794
57795 2000-01-25  Jim Meyering  <meyering@lucent.com>
57796
57797         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
57798         well as time.h in the compile check.
57799         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
57800         Fix typo in cross-compiling case: s/yes/no/.
57801
57802 2000-01-23  Jim Meyering  <meyering@lucent.com>
57803
57804         * m4/jm-macros.m4: Move df-related tests here from
57805         fileutils/configure.in
57806
57807         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
57808         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
57809
57810         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
57811         s/space/ac_fsusage_space/.
57812         (jm_FILE_SYSTEM_USAGE): Take two parameters.
57813
57814         * m4/ftruncate.m4: New file (derived from part of
57815         fileutils/configure.in).
57816         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
57817         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
57818
57819         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
57820         AC_SUBST these here, rather than just in sh-util/configure.in, so
57821         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
57822         all the same.
57823         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
57824         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
57825         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
57826         (AC_SUBST(POW_LIBM)): Likewise.
57827         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
57828
57829 2000-01-23  Jim Meyering  <meyering@lucent.com>
57830
57831         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
57832         obstack.c.
57833
57834 2000-01-22  Jim Meyering  <meyering@lucent.com>
57835
57836         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
57837
57838         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
57839
57840         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
57841         configure.in
57842         (AC_CHECK_HEADERS): Likewise for sh-utils.
57843         (AC_CHECK_HEADERS): Likewise for textutils.
57844         Merge the three lists of headers.
57845
57846         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
57847         from fileutils' configure.in.
57848
57849         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
57850         code. Moved tests into their own function (_jm_DECL_HEADERS) in
57851         check-decl.m4.
57852
57853         * m4/check-decl.m4: Use #if rather than #ifdef.
57854         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
57855         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
57856         (_jm_DECL_HEADERS): Define new function.
57857         (jm_CHECK_DECLARATIONS): Require it.
57858
57859 2000-01-22  Jim Meyering  <meyering@lucent.com>
57860
57861         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
57862         [! HAVE_DECL_STRTOULL]: Declare strtoull.
57863         Required for some AIX systems.  Reported by Christian Krackowizer.
57864         [TESTING] (main): New function.
57865
57866         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
57867         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
57868         letters.
57869
57870         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
57871         iswprint.
57872
57873         * lib/strverscmp.c (ISDIGIT): Define.
57874         (strverscmp): Use ISDIGIT, not isdigit.
57875
57876 2000-01-19  Jim Meyering  <meyering@lucent.com>
57877
57878         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
57879         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
57880         defines `struct timespec' in <sys/time.h>
57881
57882         * m4/c-bs-a.m4: Remove uses of changequote altogether.
57883         Thanks to Akim for explaining.
57884
57885 2000-01-17  Paul Eggert  <eggert@twinsun.com>
57886
57887         * lib/nanosleep.c (nanosleep):
57888         Don't use SA_INTERRUPT to decide whether to call sigaction, as
57889         POSIX.1 doesn't require SA_INTERRUPT and some systems
57890         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
57891         it's been part of POSIX.1 since day 1 (in 1988).
57892
57893 2000-01-17  Jim Meyering  <meyering@lucent.com>
57894
57895         * lib/interlock: Remove unused file.  Reported by François Pinard.
57896
57897 2000-01-16  Paul Eggert  <eggert@twinsun.com>
57898
57899         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
57900         alert, backslash, formfeed, and vertical tab unnecessarily in
57901         shell quoting style.
57902
57903 2000-01-16  Jim Meyering  <meyering@lucent.com>
57904
57905         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
57906         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
57907         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
57908         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
57909
57910 2000-01-16  Jim Meyering  <meyering@lucent.com>
57911
57912         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
57913         because the latter didn't work.
57914
57915 2000-01-15  Jim Meyering  <meyering@lucent.com>
57916
57917         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
57918         (AC_REPLACE_FUNCS): Add memcpy and memset.
57919         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
57920         Add strpbrk.
57921         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
57922
57923 2000-01-12  Jim Meyering  <meyering@lucent.com>
57924
57925         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
57926         (jm_PREREQ): Use it.
57927         (jm_PREREQ_READUTMP): New macro.
57928         (jm_PREREQ): Use it.
57929
57930 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57931
57932         Quote multibyte characters correctly.
57933         * m4/c-bs-a.m4: New file.
57934         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
57935         (jm_PREREQ): Use it.
57936
57937 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57938
57939         * m4/uintmax_t.m4: Port to autoconf 2.13.
57940
57941 2000-01-08  Jim Meyering  <meyering@ascend.com>
57942
57943         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
57944         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
57945
57946 2000-01-04  Jim Meyering  <meyering@ascend.com>
57947
57948         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
57949         jm_STRUCT_DIRENT_D_TYPE.
57950         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
57951         jm_STRUCT_DIRENT_D_INO.
57952         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
57953         jm_STRUCT_UTIMBUF.
57954         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
57955         renamings.
57956         * m4/utime.m4: Likewise.
57957
57958         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
57959         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
57960
57961 2000-01-03  Paul Eggert  <eggert@twinsun.com>
57962
57963         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
57964         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
57965
57966 2000-01-02  Jim Meyering  <meyering@ascend.com>
57967
57968         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
57969         remember if this is necessary.
57970
57971 1999-12-26  Jim Meyering  <meyering@ascend.com>
57972
57973         * m4/jm-macros.m4: Use it here.
57974         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
57975
57976 1999-12-23  Jim Meyering  <meyering@ascend.com>
57977
57978         * m4/jm-macros.m4: Check for clock_gettime (moved from
57979         fileutils/configure.in)
57980         Check for gettimeofday.
57981
57982 1999-12-20  Jim Meyering  <meyering@ascend.com>
57983
57984         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
57985         autoconf-2.14a-1999-12-20.
57986
57987 1999-12-19  Jim Meyering  <meyering@ascend.com>
57988
57989         * m4/lstat-slash.m4: New file.
57990         * m4/jm-macros.m4: Use the new macro:
57991         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57992
57993 1999-12-07  Jim Meyering  <meyering@ascend.com>
57994
57995         * m4/perl.m4: Require that File::Compare be available, too.
57996         Too many systems seem to lack it.
57997
57998         * m4/strftime.m4: Add checks for most of the cpp macros tested in
57999         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
58000
58001 1999-11-18  Paul Eggert  <eggert@twinsun.com>
58002
58003         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
58004         problem with the QNX 4.25 shell, which doesn't propagate exit
58005         status of failed commands inside shell assignments.
58006
58007 1999-11-17  Jim Meyering  <meyering@ascend.com>
58008
58009         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
58010
58011 1999-11-07  Jim Meyering  <meyering@ascend.com>
58012
58013         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
58014
58015 1999-11-06  Jim Meyering  <meyering@ascend.com>
58016
58017         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
58018         * m4/jm-macros.m4 (jm_MACROS): Use it here.
58019
58020 1999-11-05  Jim Meyering  <meyering@ascend.com>
58021
58022         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
58023         configure.in of textutils, fileutils, and sh-utils into this one
58024         (shared between those packages) file.
58025         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
58026         AC_STRUCT_ST_BLKSIZE.
58027
58028 1999-11-03  Jim Meyering  <meyering@ascend.com>
58029
58030         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
58031         of AC_CHECK_TYPE checks includes unistd.h.
58032         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
58033         Suggestion from Akim Demaille.
58034
58035 1999-10-30  Jim Meyering  <meyering@ascend.com>
58036
58037         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
58038         m4-quoted string.
58039         * m4/ls-mntd-fs.m4: Likewise.
58040         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
58041         * m4/jm-winsz1.m4: Likewise.
58042
58043         * m4/const.m4: Remove file, since the fix made it into the experimental
58044         version of autoconf.
58045         * m4/mktime.m4: Likewise.
58046
58047         * m4/check-type.m4: Remove file, now that the latest version of
58048         AC_CHECK_TYPE takes a third arg to specify additional #includes.
58049
58050         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
58051         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
58052         AC_CHECK_TYPE.
58053
58054 1999-10-04  Jim Meyering  <meyering@ascend.com>
58055
58056         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
58057
58058 1999-09-22  Paul Eggert  <eggert@twinsun.com>
58059
58060         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
58061         2.95.1 bug with HP-UX 10.20.
58062
58063 1999-09-17  Jim Meyering  <meyering@ascend.com>
58064
58065         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
58066         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
58067         due to missing strdup (against sh-utils-2.0).
58068
58069 1999-08-29  Jim Meyering  <meyering@ascend.com>
58070
58071         * m4/jm-macros.m4: Require jm_BISON.
58072         * m4/bison.m4: New file.
58073
58074 1999-08-17  Paul Eggert  <eggert@twinsun.com>
58075
58076         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
58077         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
58078
58079 1999-08-05  Jim Meyering  <meyering@ascend.com>
58080
58081         * m4/getline.m4: Rename test file from conftestdata to conftest.data
58082         to avoid conflicts with `conftest' on 8+3 filesystems.
58083         Suggestion from Eli Zaretskii.
58084
58085 1999-08-04  Jim Meyering  <meyering@ascend.com>
58086
58087         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
58088         fileutils and sh-utils (textutils's getline test was inadequate).
58089         (AM_FUNC_GETLINE): Run this test.
58090         (AC_CHECK_FUNCS): Check for getdelim.
58091         Reported by Bob Proulx.
58092
58093 1999-08-02  Jim Meyering  <meyering@ascend.com>
58094
58095         * m4/jm-macros.m4: Add a comment.
58096
58097 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58098
58099         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
58100         <inttypes.h> defines strtoumax as a macro (and not as a
58101         function).
58102
58103 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58104
58105         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
58106         that we can shift, multiply and divide unsigned long long
58107         values; Ultrix cc can't do it.
58108
58109 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58110
58111         * m4/mktime.m4: New file, which is a preview of what should appear
58112         in the next public autoconf release.
58113
58114 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58115
58116         * m4/lfs.m4: Remove this file.
58117         * m4/largefile.m4: New file.  It contains the old contents of
58118         lfs.m4, except that all names with prefix AC_LFS have been
58119         changed to use the prefix AC_SYS_LARGEFILE instead, to be
58120         compatible with future autoconf versions.  Also, some minor m4
58121         quoting problems have been fixed.
58122
58123 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58124
58125         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
58126         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
58127         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
58128         and simplify the shell code.
58129
58130 1999-08-01  Jim Meyering  <meyering@ascend.com>
58131
58132         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
58133         m4.
58134
58135 1999-07-20  Jim Meyering  <meyering@ascend.com>
58136
58137         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
58138
58139 1999-07-15  Jim Meyering  <meyering@ascend.com>
58140
58141         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
58142
58143 1999-05-22  Jim Meyering  <meyering@ascend.com>
58144
58145         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
58146
58147 1999-05-20  Jim Meyering  <meyering@ascend.com>
58148
58149         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
58150         Add a colon after each `then' in case $4 is empty.
58151
58152 1999-05-16  Jim Meyering  <meyering@ascend.com>
58153
58154         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
58155
58156 1999-05-10  Jim Meyering  <meyering@ascend.com>
58157
58158         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
58159
58160         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
58161         AC_FUNC_MKTIME.
58162
58163 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
58164
58165         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
58166
58167 1999-05-04  Paul Eggert  <eggert@twinsun.com>
58168
58169         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
58170         not CPPFLAGS, so that linking works correctly in IRIX.
58171
58172 1999-04-30  Paul Eggert  <eggert@twinsun.com>
58173
58174         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
58175
58176 1999-04-20  Paul Eggert  <eggert@twinsun.com>
58177
58178         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
58179         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
58180         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
58181         jm_AC_TYPE_UNSIGNED_LONG_LONG.
58182         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
58183
58184         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
58185
58186 1999-04-20  Jim Meyering  <meyering@ascend.com>
58187
58188         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
58189         AC_REPLACE xstroull if necessary.  From Paul Eggert.
58190         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
58191
58192 1999-04-18  Jim Meyering  <meyering@ascend.com>
58193
58194         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
58195         * m4/jm-macros.m4: Use it.
58196
58197 1999-04-06  Jim Meyering  <meyering@ascend.com>
58198
58199         * m4/strftime.m4: Remove test for %f.
58200
58201 1999-03-29  Jim Meyering  <meyering@ascend.com>
58202
58203         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
58204         superset of the AC_TYPE_* checks in the textutils, fileutils,
58205         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
58206         AC_TYPE_PID_T.
58207
58208 1999-03-28  Jim Meyering  <meyering@ascend.com>
58209
58210         * m4/jm-macros.m4: Define GNU_PACKAGE here.
58211         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
58212         replaced e.g., in the *.sh files of the sh-utils.
58213
58214 1999-03-20  Jim Meyering  <meyering@ascend.com>
58215
58216         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
58217         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
58218         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
58219
58220 1999-03-19  Jim Meyering  <meyering@ascend.com>
58221
58222         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
58223
58224 1999-03-12  Jim Meyering  <meyering@ascend.com>
58225
58226         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
58227
58228 1999-03-07  Jim Meyering  <meyering@ascend.com>
58229
58230         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
58231         declared.
58232
58233 1999-02-17  Jim Meyering  <meyering@ascend.com>
58234
58235         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
58236         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
58237
58238 1999-02-07  Jim Meyering  <meyering@ascend.com>
58239
58240         * m4/group-member.m4: New file -- extracted from sh-utils'
58241         configure.in.
58242
58243         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
58244         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
58245
58246 1999-02-06  Jim Meyering  <meyering@ascend.com>
58247
58248         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
58249         * m4/fnmatch.m4: Likewise.
58250         * m4/getgroups.m4: Likewise.
58251         * m4/lstat.m4: Likewise.
58252         * m4/malloc.m4: Likewise.
58253         * m4/putenv.m4: Likewise.
58254         * m4/realloc.m4: Likewise.
58255         * m4/regex.m4: Likewise.
58256         * m4/stat.m4: Likewise.
58257         * m4/strftime.m4: Likewise.
58258         Suggestion from Alain Magloire.
58259
58260         * m4/chown.m4: Use `.$ac_objext', not `.o'.
58261         * m4/fnmatch.m4: Likewise.
58262         * m4/getgroups.m4: Likewise.
58263         * m4/getline.m4: Likewise.
58264         * m4/lstat.m4: Likewise.
58265         * m4/malloc.m4: Likewise.
58266         * m4/memcmp.m4: Likewise.
58267         * m4/putenv.m4: Likewise.
58268         * m4/realloc.m4: Likewise.
58269         * m4/regex.m4: Likewise.
58270         * m4/stat.m4: Likewise.
58271         * m4/strftime.m4: Likewise.
58272         Suggestion from Alain Magloire.
58273
58274         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
58275         an argument.
58276
58277         * m4/regex.m4: Add a run-time Test for proper operation of
58278         re_compile_pattern.
58279
58280 1999-01-31  Jim Meyering  <meyering@ascend.com>
58281
58282         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
58283
58284 1999-01-30  Jim Meyering  <meyering@ascend.com>
58285
58286         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
58287
58288         * m4/jm-mktime.m4: Make this a wrapper around the official
58289         AM_FUNC_MKTIME rather than my private copy, now that the official one
58290         is up to date.
58291         * m4/mktime.m4: Remove file.
58292
58293         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
58294         * m4/uptime.m4: Likewise.
58295         * m4/uintmax_t.m4: Likewise.
58296
58297 1999-01-28  Jim Meyering  <meyering@ascend.com>
58298
58299         * m4/jm-macros.m4: Use jm_AFS.
58300         * m4/afs.m4: New file (from fileutils' configure.in).
58301
58302         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
58303         * m4/chown.m4: Likewise.
58304         * m4/d-ino.m4: Likewise.
58305         * m4/d-type.m4: Likewise.
58306         * m4/fnmatch.m4: Likewise.
58307         * m4/getgroups.m4: Likewise.
58308         * m4/gettext.m4: Likewise.
58309         * m4/jm-mktime.m4: Likewise.
58310         * m4/jm-winsz2.m4: Likewise.
58311         * m4/lcmessage.m4: Likewise.
58312         * m4/ls-mntd-fs.m4: Likewise.
58313         * m4/malloc.m4: Likewise.
58314         * m4/memcmp.m4: Likewise.
58315         * m4/putenv.m4: Likewise.
58316         * m4/realloc.m4: Likewise.
58317         * m4/st_mtim.m4: Likewise.
58318         * m4/strftime.m4: Likewise.
58319
58320 1999-01-16  Jim Meyering  <meyering@ascend.com>
58321
58322         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
58323         (ARGMATCH_DIE_DECL): Define.
58324
58325 1999-01-12  Jim Meyering  <meyering@ascend.com>
58326
58327         * m4/Makefile.am.in: Rewrite to avoid using fmt.
58328         Reported by Lars Hecking.
58329
58330 1999-01-10  Jim Meyering  <meyering@ascend.com>
58331
58332         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
58333         gross kludge.
58334         * m4/inttypes_h.m4: Likewise.
58335         * m4/lstat.m4: Likewise.
58336         * m4/malloc.m4: Likewise.
58337         * m4/readdir.m4: Likewise.
58338         * m4/realloc.m4: Likewise.
58339         * m4/st_dm_mode.m4: Likewise.
58340         * m4/stat.m4: Likewise.
58341         * m4/utimbuf.m4: Likewise.
58342         * m4/utimes.m4: Likewise.
58343
58344         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
58345         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
58346         comments in config.h.in are meaningful.
58347
58348         * m4/jm-macros.m4: Require autoconf-2.13 here.
58349
58350         * m4/regex.m4: By default, don't use the included regex.c on systems
58351         with glibc 2.  Suggestion from Uli Drepper.
58352
58353 1999-01-02  Jim Meyering  <meyering@ascend.com>
58354
58355         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
58356
58357 1998-12-18  Jim Meyering  <meyering@ascend.com>
58358
58359         * m4/Makefile.am.in (Makefile.am): Simplify rule.
58360         Based on a suggestion from Lars Hecking.
58361
58362 1998-11-16  Paul Eggert  <eggert@twinsun.com>
58363
58364         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
58365
58366 1998-11-16  Jim Meyering  <meyering@ascend.com>
58367
58368         * m4/lfs.m4: Double-quote the `uname...` expression.
58369
58370 1998-11-14  Jim Meyering  <meyering@ascend.com>
58371
58372         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
58373         * m4/stat.m4: Likewise.
58374
58375 1998-11-03  Jim Meyering  <meyering@ascend.com>
58376
58377         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
58378         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
58379
58380 1998-10-18  Jim Meyering  <meyering@ascend.com>
58381
58382         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
58383
58384 1998-10-17  Jim Meyering  <meyering@ascend.com>
58385
58386         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
58387         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
58388         calls for those previously hard-coded headers.  Instead, take a new
58389         parameter.
58390         (jm_CHECK_DECLARATIONS): Reflect interface change.
58391         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
58392         (jm_CHECK_DECL_LOCALTIME_R): New macro.
58393
58394         * m4/mktime.m4: Test for spring-forward gap before long-running test.
58395
58396 1998-10-14  Jim Meyering  <meyering@ascend.com>
58397
58398         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
58399         instead of "TZ=America/Vancouver".  From Paul Eggert.
58400
58401 1998-10-11  Jim Meyering  <meyering@ascend.com>
58402
58403         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
58404         This adds a test for a recently added compatibility fix for mktime.c.
58405         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
58406
58407 1998-09-27  Jim Meyering  <meyering@ascend.com>
58408
58409         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
58410
58411         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
58412         ../configure.in, including a change from Gordon Matzigkeit to allow
58413         cross-compiling for the Hurd.
58414
58415         * m4/glibc.m4: New file/macro to test for the GNU C Library
58416         versions 1 and 2.  From Gordon Matzigkeit.
58417         Indent.
58418
58419 1998-09-21  Jim Meyering  <meyering@ascend.com>
58420
58421         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
58422
58423 1998-08-18  Paul Eggert  <eggert@twinsun.com>
58424
58425         Port nanosecond-resolution times to UnixWare 2.1.2 and
58426         pedantic Solaris 2.6.
58427
58428         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
58429         AC_STRUCT_ST_MTIM.
58430         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
58431         Generate name of ns member, instead of just 1 or undef.
58432         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
58433
58434 1998-08-15  Jim Meyering  <meyering@ascend.com>
58435
58436         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
58437         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
58438         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
58439         instead of jm_TYPE_SSIZE_T.
58440
58441 1998-08-12  Jim Meyering  <meyering@ascend.com>
58442
58443         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
58444
58445 1998-08-02  Jim Meyering  <meyering@ascend.com>
58446
58447         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
58448         in acconfig.h manually.
58449
58450 1998-07-31  Paul Eggert  <eggert@twinsun.com>
58451
58452         * m4/st_mtim.m4: New file.
58453
58454 1998-07-28  Jim Meyering  <meyering@ascend.com>
58455
58456         * m4/utimes.m4: Undef stat.
58457
58458 1998-07-25  Jim Meyering  <meyering@ascend.com>
58459
58460         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
58461         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
58462
58463 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
58464
58465         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
58466         uid and gid actually remain unchanged.
58467
58468 1998-07-07  Jim Meyering  <meyering@ascend.com>
58469
58470         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
58471
58472 1998-07-04  Jim Meyering  <meyering@ascend.com>
58473
58474         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
58475         to prove that this macro can be used in packages without regex.c.
58476
58477 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
58478
58479         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
58480         is to be used.
58481
58482 1998-07-03  Jim Meyering  <meyering@ascend.com>
58483
58484         * m4/gettext.m4: Add -lintl if it's found to be necessary.
58485
58486         * m4/gettext.m4: New file -- from gettext-0.10.35.
58487         * m4/lcmessage.m4: Likewise.
58488         * m4/progtest.m4: Likewise.
58489
58490         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
58491         * m4/jm-macros.m4: Require the new macro.
58492
58493 1998-06-29  Jim Meyering  <meyering@ascend.com>
58494
58495         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
58496         for the definition of NGROUPS (used in a system header included
58497         by sys/mount.h).
58498
58499 1998-06-28  Jim Meyering  <meyering@ascend.com>
58500
58501         * m4/ls-mntd-fs.m4: New file.
58502         * m4/fstypename.m4: New file.
58503
58504         * m4/jm-macros.m4: Require the new macro.
58505         * m4/jm-glibc-io.m4: New file.
58506
58507 1998-05-19  Jim Meyering  <meyering@ascend.com>
58508
58509         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
58510         * m4/lchown.m4: New file.
58511
58512         * m4/Makefile.am.in: New file.
58513         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
58514
58515 1998-05-14  Jim Meyering  <meyering@ascend.com>
58516
58517         * m4/Makefile.am (EXTRA_DIST): Add them.
58518         * m4/jm-macros.m4: New file.
58519         * m4/utimbuf.m4: New file.
58520
58521 1998-05-12  Jim Meyering  <meyering@ascend.com>
58522
58523         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
58524
58525 1998-05-11  Jim Meyering  <meyering@ascend.com>
58526
58527         * m4/isc-posix.m4: New file.
58528
58529 1998-05-10  Jim Meyering  <meyering@ascend.com>
58530
58531         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
58532
58533 1998-05-09  Jim Meyering  <meyering@ascend.com>
58534
58535         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
58536         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
58537         with automake.
58538
58539         * m4/ssize_t.m4: New file.
58540         * m4/mktime.m4: Remove file -- the new automake has this now.
58541
58542 1998-04-26  Jim Meyering  <meyering@ascend.com>
58543
58544         * m4/assert.m4: New file.
58545         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
58546
58547 1998-04-05  Jim Meyering  <meyering@ascend.com>
58548
58549         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
58550         (jm_PREREQ): Use it here.
58551
58552 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
58553
58554         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
58555         in acconfig.h.
58556
58557 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
58558
58559         * m4/prereq.m4: New file.
58560         * m4/error.m4: New file.
58561         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
58562
58563 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
58564
58565         * m4/getline.m4: Don't set am_cv_func_working_getline before the
58566         cache-check for the same variable -- that defeated the purpose of
58567         the test; the test program was never run.  This was a problem only
58568         on systems with losing getline functions -- HP-UX 10.20 is one.
58569         Reported by Bjorn Helgaas.
58570
58571 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
58572
58573         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
58574
58575 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
58576
58577         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
58578
58579         * m4/const.m4: New file.  Use an initializer in this declaration
58580         typedef int charset[2]; const charset x;
58581         Reported by Bob Glickstein.
58582
58583 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
58584
58585         * m4/chown.m4: Fix reversed types on -1 args to chown.
58586         From Kaveh Ghazi.
58587
58588 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
58589
58590         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
58591         Add lseek and memchr.
58592
58593         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
58594         T.E.Dickey <dickey@clark.net> said that some older preprocessors
58595         have a 20-character limit on names.
58596
58597 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
58598
58599         * m4/inttypes_h.m4: New file.
58600         * m4/uintmax_t.m4: New file.
58601         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
58602
58603
58604         -----
58605
58606         Local Variables:
58607         coding: utf-8
58608         End:
58609
58610         Copyright (C) 1997-2009 Free Software Foundation, Inc.
58611
58612         Copying and distribution of this file, with or without
58613         modification, are permitted provided the copyright notice
58614         and this notice are preserved.