fe1b6f8edc69694f4f6d4b68ae7a0230b31ee908
[gnulib.git] / ChangeLog
1 2009-12-16  Eric Blake  <ebb9@byu.net>
2
3         fflush: avoid compilation error on NetBSD
4         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
5         between off_t and fpos_t, since the latter is sometimes a struct.
6         * lib/fseeko.c (rpl_fseeko): Likewise.
7         Reported by Alexander Nasonov <alnsn@yandex.ru>.
8
9 2009-12-15  Eric Blake  <ebb9@byu.net>
10
11         fcntl-h, stdio, sys_ioctl: fix declarations
12         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
13         function must not take arguments.
14         * lib/sys_ioctl.in.h (ioctl): Likewise.
15         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
16         (open): Add a link warning.
17
18 2009-12-15  Jim Meyering  <meyering@redhat.com>
19
20         areadlink, areadlink-with-size: relax license to LGPLv2+
21         * modules/areadlink (License): Relax to LGPLv2+.
22         * modules/areadlink-with-size (License): Likewise.
23
24 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
25             Bruno Haible  <bruno@clisp.org>
26
27         *printf: Fix memory leak.
28         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
29         * lib/vfprintf.c (vfprintf): Likewise.
30         * lib/dprintf.c (dprintf): Likewise.
31         * lib/vdprintf.c (vdprintf): Likewise.
32
33 2009-12-14  Eric Blake  <ebb9@byu.net>
34
35         accept4: adjust module dependencies
36         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
37
38         utimens: one more try at avoiding compiler warning
39         * lib/utimens.c (lutimens): Lower scope of result.
40
41 2009-12-13  Bruno Haible  <bruno@clisp.org>
42
43         Move the malloc checking from module 'list' to new module 'xlist'.
44         * modules/xlist: New file.
45         * lib/gl_xlist.h: New file.
46         * lib/gl_xlist.c: New file.
47         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
48         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
49         gl_list_add_last, gl_list_add_before, gl_list_add_after,
50         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
51         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
52         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
53         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
54         gl_sortedlist_nx_add): New declarations.
55         (struct gl_list_implementation): Rename and change methods accordingly.
56         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
57         (gl_list_nx_create): Renamed from gl_list_create.
58         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
59         (gl_list_nx_set_at): Renamed from gl_list_set_at.
60         (gl_list_nx_add_first): Renamed from gl_list_add_first.
61         (gl_list_nx_add_last): Renamed from gl_list_add_last.
62         (gl_list_nx_add_before): Renamed from gl_list_add_before.
63         (gl_list_nx_add_after): Renamed from gl_list_add_after.
64         (gl_list_nx_add_at): Renamed from gl_list_add_at.
65         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
66         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
67         gl_list_create_empty.
68         (gl_list_nx_create): Renamed from gl_list_create.
69         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
70         (gl_list_nx_set_at): Renamed from gl_list_set_at.
71         (gl_list_nx_add_first): Renamed from gl_list_add_first.
72         (gl_list_nx_add_last): Renamed from gl_list_add_last.
73         (gl_list_nx_add_before): Renamed from gl_list_add_before.
74         (gl_list_nx_add_after): Renamed from gl_list_add_after.
75         (gl_list_nx_add_at): Renamed from gl_list_add_at.
76         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
77         * lib/gl_array_list.c: Don't include xalloc.h.
78         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
79         NULL upon out-of-memory.
80         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
81         out-of-memory.
82         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
83         Change return type to 'int'.
84         (gl_array_nx_set_at): Renamed from gl_array_set_at.
85         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
86         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
87         upon out-of-memory.
88         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
89         upon out-of-memory.
90         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
91         upon out-of-memory.
92         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
93         upon out-of-memory.
94         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
95         out-of-memory.
96         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
97         Update.
98         (gl_array_list_implementation): Update.
99         * lib/gl_carray_list.c: Don't include xalloc.h.
100         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
101         Return NULL upon out-of-memory.
102         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
103         out-of-memory.
104         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
105         Change return type to 'int'.
106         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
107         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
108         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
109         upon out-of-memory.
110         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
111         upon out-of-memory.
112         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
113         out-of-memory.
114         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
115         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
116         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
117         Update.
118         (gl_carray_list_implementation): Update.
119         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
120         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
121         gl_linked_create_empty. Return NULL upon out-of-memory.
122         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
123         out-of-memory.
124         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
125         Change return type to 'int'. Return -1 upon out-of-memory.
126         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
127         out-of-memory.
128         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
129         upon out-of-memory.
130         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
131         upon out-of-memory.
132         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
133         NULL upon out-of-memory.
134         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
135         upon out-of-memory.
136         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
137         out-of-memory.
138         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
139         Update.
140         * lib/gl_linked_list.c: Don't include xalloc.h.
141         (gl_linked_list_implementation): Update.
142         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
143         (add_to_bucket): Change return type to 'int'.
144         (gl_linkedhash_list_implementation): Update.
145         * lib/gl_anytree_list1.h (free_subtree): New function.
146         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
147         gl_tree_create_empty. Return NULL upon out-of-memory.
148         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
149         Change return type to 'int'. Return -1 upon out-of-memory.
150         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
151         out-of-memory.
152         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
153         (gl_tree_remove_node): New function, moved here from
154         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
155         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
156         Update.
157         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
158         malloc, not xmalloc. Return NULL upon out-of-memory.
159         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
160         out-of-memory.
161         (gl_tree_remove_node_from_tree): New function, extracted from
162         gl_tree_remove_node.
163         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
164         upon out-of-memory.
165         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
166         out-of-memory.
167         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
168         upon out-of-memory.
169         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
170         upon out-of-memory.
171         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
172         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
173         not xmalloc. Return NULL upon out-of-memory.
174         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
175         out-of-memory.
176         (gl_tree_remove_node_from_tree): New function, extracted from
177         gl_tree_remove_node.
178         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
179         upon out-of-memory.
180         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
181         out-of-memory.
182         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
183         upon out-of-memory.
184         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
185         upon out-of-memory.
186         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
187         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
188         gl_anytree_list1.h before gl_anyavltree_list2.h.
189         (gl_avltree_list_implementation): Update.
190         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
191         gl_anytree_list1.h before gl_anyavltree_list2.h.
192         (gl_rbtree_list_implementation): Update.
193         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
194         Change return type to 'int'. Return -1 upon out-of-memory. Use
195         __builtin_expect.
196         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
197         (gl_avltreehash_list_implementation): Update.
198         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
199         (gl_rbtreehash_list_implementation): Update.
200         * modules/array-list (Depends-on): Remove xalloc.
201         * modules/carray-list (Depends-on): Likewise.
202         * modules/linked-list (Depends-on): Likewise.
203         * modules/linkedhash-list (Depends-on): Likewise.
204         * modules/avltree-list (Depends-on): Likewise.
205         * modules/rbtree-list (Depends-on): Likewise.
206         * modules/avltreehash-list (Depends-on): Likewise.
207         * modules/rbtreehash-list (Depends-on): Likewise.
208
209         * modules/xsublist: New file.
210         * lib/gl_xsublist.h: New file.
211         * lib/gl_xsublist.c: New file.
212         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
213         (gl_sublist_nx_create): New declaration.
214         * lib/gl_sublist.c: Don't include xalloc.h.
215         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
216         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
217         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
218         Change return type to 'int'. Return -1 upon out-of-memory.
219         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
220         upon out-of-memory.
221         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
222         NULL upon out-of-memory.
223         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
224         upon out-of-memory.
225         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
226         NULL upon out-of-memory.
227         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
228         NULL upon out-of-memory.
229         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
230         upon out-of-memory.
231         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
232         (gl_sublist_list_implementation): Update.
233         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
234         upon out-of-memory.
235         * modules/sublist (Depends-on): Remove xalloc.
236
237         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
238         * tests/test-carray_list.c: Likewise.
239         * tests/test-linked_list.c: Likewise.
240         * tests/test-linkedhash_list.c: Likewise.
241         * tests/test-avltree_list.c: Likewise.
242         * tests/test-rbtree_list.c: Likewise.
243         * tests/test-avltreehash_list.c: Likewise.
244         * tests/test-rbtreehash_list.c: Likewise.
245         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
246         * modules/carray-list-tests (Makefile.am): Likewise.
247         * modules/linked-list-tests (Makefile.am): Likewise.
248         * modules/linkedhash-list-tests (Makefile.am): Likewise.
249         * modules/avltree-list-tests (Makefile.am): Likewise.
250         * modules/rbtree-list-tests (Makefile.am): Likewise.
251         * modules/avltreehash-list-tests (Makefile.am): Likewise.
252         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
253
254         * NEWS: Mention the changes.
255
256         * lib/clean-temp.c: Include gl_xlist.h.
257         * modules/clean-temp (Depends-on): Add xlist.
258
259         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
260         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
261
262         * tests/test-array_oset.c: Include gl_xlist.h.
263         * modules/array-oset-tests (Depends-on): Add xlist.
264
265         Reported by José E. Marchesi <jemarch@gnu.org>.
266
267 2009-12-13  Bruno Haible  <bruno@clisp.org>
268
269         Move the malloc checking from module 'oset' to new module 'xoset'.
270         * modules/xoset: New file.
271         * lib/gl_xoset.h: New file.
272         * lib/gl_xoset.c: New file.
273         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
274         declarations.
275         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
276         (struct gl_oset_implementation): Rename and change methods accordingly.
277         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
278         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
279         'int'. Mark as __warn_unused_result__.
280         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
281         gl_oset_create_empty.
282         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
283         'int'.
284         * lib/gl_array_oset.c: Don't include xalloc.h.
285         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
286         malloc, not xmalloc.
287         (grow): Change return type to 'int'. Don't call xalloc_die.
288         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
289         to 'int'.
290         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
291         'int'.
292         (gl_array_oset_implementation): Update.
293         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
294         gl_tree_create_empty.
295         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
296         'int'.
297         * lib/gl_avltree_oset.c: Don't include xalloc.h.
298         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
299         xmalloc.
300         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
301         not xmalloc.
302         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
303         xmalloc.
304         (gl_avltree_oset_implementation): Update.
305         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
306         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
307         xmalloc.
308         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
309         not xmalloc.
310         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
311         xmalloc.
312         (gl_rbtree_oset_implementation): Update.
313         * modules/array-oset (Depends-on): Remove xalloc.
314         * modules/avltree-oset (Depends-on): Likewise.
315         * modules/rbtree-oset (Depends-on): Likewise.
316         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
317         * tests/test-avltree_oset.c: Likewise.
318         * tests/test-rbtree_oset.c: Likewise.
319         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
320         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
321         * modules/rbtree-oset-tests (Makefile.am): Likewise.
322         * NEWS: Mention the change.
323
324 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
325
326         maint.mk: allow a project to override release-prep commands
327         * top/maint.mk (alpha, beta, stable): Move release-preparatory
328         commands into a new rule.
329         (release-prep): New rule.
330         (release-prep-hook): New overridable variable.
331
332 2009-12-13  Bruno Haible  <bruno@clisp.org>
333
334         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
335
336 2009-12-13  Jim Meyering  <meyering@redhat.com>
337
338         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
339         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
340
341 2009-12-12  Bruno Haible  <bruno@clisp.org>
342
343         duplocale: Tweak.
344         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
345
346 2009-12-12  Karl Berry  <karl@gnu.org>
347
348         * config/srclist.txt (strtoll.c): tab changes, no more sync.
349
350 2009-12-12  Bruno Haible  <bruno@clisp.org>
351
352         * m4/po.m4: Undo incorrect untabification.
353
354 2009-12-12  Bruno Haible  <bruno@clisp.org>
355
356         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
357         * modules/c-strtod (Depends-on): Add locale.
358         * modules/c-strtold (Depends-on): Likewise.
359
360 2009-12-12  Bruno Haible  <bruno@clisp.org>
361
362         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
363
364 2009-12-11  Eric Blake  <ebb9@byu.net>
365
366         setenv: relax requirement in light of POSIX ruling
367         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
368         not NULL.
369         * tests/test-setenv.c (main): Relax test.
370         * tests/test-unsetenv.c (main): Likewise.
371         * doc/posix-functions/setenv.texi (setenv): Document this.
372         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
373
374 2009-12-11  Bruno Haible  <bruno@clisp.org>
375
376         New module 'fd-safer-flag'.
377         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
378         * lib/dup-safer.c (dup_safer_flag): Remove function.
379         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
380         * lib/fd-safer.c (fd_safer_flag): Remove function.
381         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
382         * modules/cloexec (configure.ac): Drop indicator macro.
383         * modules/fd-safer-flag: New file.
384         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
385         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
386         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
387
388 2009-12-11  Bruno Haible  <bruno@clisp.org>
389
390         Tests for module 'nl_langinfo'.
391         * modules/nl_langinfo-tests: New file.
392         * tests/test-nl_langinfo.sh: New file.
393         * tests/test-nl_langinfo.c: New file.
394
395         New module 'nl_langinfo'.
396         * lib/nl_langinfo.c: New file.
397         * m4/nl_langinfo.m4: New file.
398         * modules/nl_langinfo: New file.
399         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
400
401 2009-12-11  Bruno Haible  <bruno@clisp.org>
402
403         Tests for module 'langinfo'.
404         * modules/langinfo-tests: New file.
405         * tests/test-langinfo.c: New file.
406
407         New module 'langinfo'.
408         * lib/langinfo.in.h: New file.
409         * m4/langinfo_h.m4: New file.
410         * modules/langinfo: New file.
411         * doc/posix-headers/langinfo.texi: Mention the new module.
412
413 2009-12-11  Bruno Haible  <bruno@clisp.org>
414
415         * lib/config.charset: Untabify.
416
417 2009-12-11  Bruno Haible  <bruno@clisp.org>
418
419         * modules/unistd-safer (configure.ac): Drop indicator macro.
420
421 2009-12-11  Bruno Haible  <bruno@clisp.org>
422
423         Move pipe2-safer code to its own file.
424         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
425         * lib/pipe-safer.c (pipe2_safer): Remove function.
426         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
427         (Makefile.am): Add it to lib_SOURCES.
428
429 2009-12-10  Bruno Haible  <bruno@clisp.org>
430
431         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
432
433 2009-12-10  Bruno Haible  <bruno@clisp.org>
434
435         Declare which arguments expect non-NULL values, for GCC and clang.
436         * build-aux/arg-nonnull.h: New file.
437         * modules/arg-nonnull: New file.
438         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
439         (inet_ntop, inet_pton): Use it.
440         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
441         (closedir, dirfd, opendir, scandir, alphasort): Use it.
442         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
443         (open, openat): Use it.
444         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
445         (fnmatch): Use it.
446         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
447         (getopt, getopt_long, getopt_long_only): Use it.
448         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
449         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
450         Use it.
451         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
452         (iconv_open): Use it.
453         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
454         (strtoimax, strtoumax): Use it.
455         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
456         (duplocale): Use it.
457         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
458         (frexp, frexpl): Use it.
459         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
460         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
461         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
462         (tsearch, tfind, tdelete, twalk): Use it.
463         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
464         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
465         sigpending): Use it.
466         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
467         (posix_spawn, posix_spawnp, posix_spawnattr_init,
468         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
469         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
470         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
471         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
472         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
473         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
474         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
475         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
476         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
477         Use it.
478         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
479         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
480         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
481         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
482         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
483         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
484         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
485         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
486         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
487         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
488         strtoull, unsetenv): Use it.
489         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
490         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
491         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
492         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
493         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
494         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
495         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
496         (strcasecmp, strncasecmp): Use it.
497         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
498         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
499         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
500         rpl_setsockopt): Use it.
501         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
502         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
503         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
504         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
505         (gettimeofday): Use it.
506         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
507         (times): Use it.
508         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
509         (uname): Use it.
510         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
511         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
512         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
513         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
514         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
515         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
516         unlinkat, write): Use it.
517         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
518         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
519         * lib/argv-iter.h: Include arg-nonnull.h.
520         (_ATTRIBUTE_NONNULL_): Remove macro.
521         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
522         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
523         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
524         optimization.
525         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
526         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
527         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
528         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
529         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
530         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
531         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
532         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
533         * modules/arpa_inet (Depends-on): Add arg-nonnull.
534         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
535         * modules/dirent (Depends-on): Add arg-nonnull.
536         (Makefile.am): Insert arg-nonnull.h into dirent.h.
537         * modules/fcntl-h (Depends-on): Add arg-nonnull.
538         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
539         * modules/fnmatch (Depends-on): Add arg-nonnull.
540         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
541         * modules/getopt-posix (Depends-on): Add arg-nonnull.
542         (Makefile.am): Insert arg-nonnull.h into getopt.h.
543         * modules/glob (Depends-on): Add arg-nonnull.
544         (Makefile.am): Insert arg-nonnull.h into glob.h.
545         * modules/iconv_open (Depends-on): Add arg-nonnull.
546         (Makefile.am): Insert arg-nonnull.h into iconv.h.
547         * modules/inttypes (Depends-on): Add arg-nonnull.
548         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
549         * modules/locale (Depends-on): Add arg-nonnull.
550         (Makefile.am): Insert arg-nonnull.h into locale.h.
551         * modules/math (Depends-on): Add arg-nonnull.
552         (Makefile.am): Insert arg-nonnull.h into math.h.
553         * modules/netdb (Depends-on): Add arg-nonnull.
554         (Makefile.am): Insert arg-nonnull.h into netdb.h.
555         * modules/search (Depends-on): Add arg-nonnull.
556         (Makefile.am): Insert arg-nonnull.h into search.h.
557         * modules/signal (Depends-on): Add arg-nonnull.
558         (Makefile.am): Insert arg-nonnull.h into signal.h.
559         * modules/spawn (Depends-on): Add arg-nonnull.
560         (Makefile.am): Insert arg-nonnull.h into spawn.h.
561         * modules/stdio (Depends-on): Add arg-nonnull.
562         (Makefile.am): Insert arg-nonnull.h into stdio.h.
563         * modules/stdlib (Depends-on): Add arg-nonnull.
564         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
565         * modules/string (Depends-on): Add arg-nonnull.
566         (Makefile.am): Insert arg-nonnull.h into string.h.
567         * modules/strings (Depends-on): Add arg-nonnull.
568         (Makefile.am): Insert arg-nonnull.h into strings.h.
569         * modules/sys_socket (Depends-on): Add arg-nonnull.
570         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
571         * modules/sys_stat (Depends-on): Add arg-nonnull.
572         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
573         * modules/sys_time (Depends-on): Add arg-nonnull.
574         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
575         * modules/sys_times (Depends-on): Add arg-nonnull.
576         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
577         * modules/sys_utsname (Depends-on): Add arg-nonnull.
578         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
579         * modules/time (Depends-on): Add arg-nonnull.
580         (Makefile.am): Insert arg-nonnull.h into time.h.
581         * modules/unistd (Depends-on): Add arg-nonnull.
582         (Makefile.am): Insert arg-nonnull.h into unistd.h.
583         * modules/wchar (Depends-on): Add arg-nonnull.
584         (Makefile.am): Insert arg-nonnull.h into wchar.h.
585         * modules/argv-iter (Depends-on): Add arg-nonnull.
586         * tests/test-canonicalize.c (null_ptr): New function.
587         (main): Use it.
588         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
589         (main): Use it.
590         * tests/test-memmem.c (null_ptr): New function.
591         (main): Use it.
592         Reported by Jim Meyering.
593
594 2009-12-10  Bruno Haible  <bruno@clisp.org>
595
596         Use spaces for indentation, not tabs.
597         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
598         * m4/*.m4: Untabify.
599         * build-aux/*.h: Untabify.
600         * tests/**/*.[hc]: Untabify.
601         * README: New section "Indent with spaces, not TABs", based on
602         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
603         * NEWS: Mention the change.
604
605 2009-12-10  Bruno Haible  <bruno@clisp.org>
606
607         pty test: Fix link error.
608         * modules/pty-tests (Makefile.am): Add the default LDADD value to
609         test_pty_LDADD.
610
611 2009-12-07  Simon Josefsson  <simon@josefsson.org>
612
613         * modules/pty: New file.
614         * modules/pty-tests: New file.
615         * m4/pty.m4: New file.
616         * tests/test-pty.c: New file.
617         * doc/glibc-headers/pty.texi: Modified.
618         * doc/glibc-functions/forkpty.texi: Modified.
619         * doc/glibc-functions/openpty.texi: Modified.
620
621 2009-12-10  Bruno Haible  <bruno@clisp.org>
622
623         Avoid syntax error in C++ mode.
624         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
625
626 2009-12-10  Bruno Haible  <bruno@clisp.org>
627
628         Use sed with option -e.
629         * gnulib-tool (func_version, func_emit_copyright_notice,
630         func_emit_initmacro_end, func_import, func_create_testdir): Pass
631         option -e to sed.
632         * modules/link-warning (Makefile.am): Likewise.
633
634 2009-12-10  Jim Meyering  <meyering@redhat.com>
635
636         mgetgroups: do not write bytes beyond end of malloc'd buffer
637         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
638         username, we call getgroups with a one-element-shorter buffer,
639         but still told it the length was original, max_n_groups.
640
641 2009-12-09  Eric Blake  <ebb9@byu.net>
642
643         cloexec: relax license
644         * modules/cloexec (Maintainer): Add myself.
645         (License): Use LGPL, not GPL.
646
647         link-warning: optimize generation
648         * modules/link-warning (Makefile.am): Reduce process usage.
649
650 2009-12-09  Bruno Haible  <bruno@clisp.org>
651
652         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
653         workaround was added on 2009-11-17.
654
655 2009-12-09  Jim Meyering  <meyering@redhat.com>
656             Bruno Haible  <bruno@clisp.org>
657
658         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
659         * modules/link-warning (Makefile.am): Make the comment-removing sed
660         command more robust in the face of bootstrap-prepended comment lines.
661
662 2009-12-09  Bruno Haible  <bruno@clisp.org>
663
664         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
665         most one group.
666
667 2009-12-09  Simon Josefsson <simon@josefsson.org>
668             Bruno Haible  <bruno@clisp.org>
669
670         * build-aux/link-warning.h: Add copyright notice.
671         * modules/link-warning (Makefile.am): Generate link-warning.h from
672         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
673         * NEWS: Mention change in link-warning module.
674         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
675         * modules/dirent (Makefile.am): Add dependency to dirent.h.
676         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
677         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
678         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
679         * modules/math (Makefile.am): Add dependency to math.h.
680         * modules/search (Makefile.am): Add dependency to search.h.
681         * modules/signal (Makefile.am): Add dependency to signal.h.
682         * modules/spawn (Makefile.am): Add dependency to spawn.h.
683         * modules/stdio (Makefile.am): Add dependency to stdio.h.
684         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
685         * modules/string (Makefile.am): Add dependency to string.h.
686         * modules/strings (Makefile.am): Add dependency to strings.h.
687         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
688         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
689         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
690         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
691         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
692         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
693         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
694         * modules/unistd (Makefile.am): Add dependency to unistd.h.
695         * modules/wchar (Makefile.am): Add dependency to wchar.h.
696
697 2009-12-09  Bruno Haible  <bruno@clisp.org>
698
699         fchdir: Optimize away rpl_fstat when possible.
700         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
701         REPLACE_OPEN_DIRECTORY.
702         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
703
704 2009-12-09  Bruno Haible  <bruno@clisp.org>
705
706         * lib/fchdir.c: Update comment.
707
708 2009-12-09  Bruno Haible  <bruno@clisp.org>
709
710         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
711
712 2009-12-08  Eric Blake  <ebb9@byu.net>
713
714         fchdir: avoid memory leak on re-registration.
715         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
716
717 2009-12-08  Jim Meyering  <meyering@redhat.com>
718
719         init.sh: avoid Solaris 10 /bin/sh portability problem
720         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
721         sourced script:
722           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
723           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
724           bar
725         tests/init.sh relied on that, accepting a --set-path=DIR argument,
726         and two tests used that idiom.
727         * tests/init.sh: Update suggested usage comments.
728         (path_prepend_): New function, to be used in place
729         of the --src-path=DIR option.
730         (setup_): Move PATH-prepending code into path_prepend_.
731         * tests/test-pread.sh: Adapt to new usage.
732         * tests/test-xalloc-die.sh: Likewise.
733
734 2009-12-08  Simon Josefsson  <simon@josefsson.org>
735
736         * doc/gnulib.texi (Glibc pty.h): Add.
737         * doc/glibc-functions/forkpty.texi: Add.
738         * doc/glibc-functions/openpty.texi: Add.
739         Suggested by Bruno Haible.
740
741 2009-12-08  Eric Blake  <ebb9@byu.net>
742
743         fchdir: fix logic bugs
744         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
745         * tests/test-fchdir.c (main): Enhance test.
746         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
747         is in use.
748
749         dup2: fix logic bugs
750         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
751         REPLACE_DUP2 to decide when rpl_dup2 is needed.
752         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
753         exists.
754         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
755
756 2009-12-07  Eric Blake  <ebb9@byu.net>
757
758         unlink: fix m4 detection
759         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
760
761         unistd-safer: add unit test
762         * modules/unistd-safer-tests: New file.
763         * tests/test-dup-safer.c: Likewise.
764         * tests/test-cloexec.c (setmode): Avoid compiler warning.
765         * tests/test-dup2.c (setmode): Likewise.
766         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
767
768         cloexec: preserve text vs. binary across dup_cloexec
769         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
770         mode.
771         * modules/dup2-tests (Depends-on): Add binary-io.
772         * modules/cloexec-tests (Depends-on): Likewise.
773         * tests/test-dup2.c (setmode, is_mode): New helpers.
774         (main): Add tests that translation mode is preserved.
775         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
776         Reported by Bruno Haible.
777
778         mgetgroups: reduce duplicate listings
779         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
780         resulting array.
781         * tests/test-chown.h (test_chown): Simplify client.
782         * tests/test-lchown.h (test_lchown): Likewise.
783
784 2009-12-06  Bruno Haible  <bruno@clisp.org>
785
786         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
787         value.
788
789 2009-12-06  Bruno Haible  <bruno@clisp.org>
790
791         * lib/progname.c: Include stdio.h, stdlib.h.
792         (set_program_name): Reject a NULL argument.
793
794 2009-12-05  Eric Blake  <ebb9@byu.net>
795
796         pipe2-safer: new module
797         * modules/pipe2-safer: New file.
798         * lib/unistd-safer.h (pipe2_safer): New prototype.
799         * lib/unistd--.h (pipe2): New wrapper.
800         * lib/pipe-safer.c (pipe2_safer): New function.
801         * modules/pipe (Depends-on): Add pipe2-safer.
802         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
803
804         stdlib-safer: preserve cloexec flag for mkostemp[s]
805         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
806         fd_safer_flag.
807
808         unistd-safer: allow preservation of cloexec status via flag
809         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
810         prototypes.
811         * lib/dup-safer.c (dup_safer_flag): New function.
812         * lib/fd-safer.c (fd_safer_flag): Likewise.
813         * modules/cloexec (configure.ac): Set witness.
814
815         test-dup2: enhance test
816         * modules/dup2-tests (Depends-on): Add cloexec.
817         * tests/test-dup2.c (main): Enhance test.
818
819         cloexec: add dup_cloexec
820         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
821         header and comments.
822         * lib/cloexec.c (set_cloexec_flag): Add comments.
823         (dup_cloexec): New function, with mingw implementation borrowed
824         from...
825         * lib/w32spawn.h (dup_noinherit): ...here.
826         * modules/execute (Depends-on): Add cloexec.
827         * modules/pipe (Depends-on): Likewise.
828         * modules/cloexec (Depends-on): Add dup2.
829         * modules/cloexec-tests (Files): New file.
830         * tests/test-cloexec.c: Likewise.
831
832         test-xalloc-die: fix test for mingw
833         * modules/xalloc-die-tests (Files): Add tests/init.sh.
834         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
835         directory and .exe suffix off argv[0] output.
836
837         test-fseeko: fix test for mingw
838         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
839         than undefining fseek, so test will pass on mingw.
840
841 2009-12-05  Bruno Haible  <bruno@clisp.org>
842
843         * lib/progname.h (set_program_name): Clarify specification.
844         * lib/progname.c (set_program_name): Likewise.
845         Reported by Jim Meyering.
846
847 2009-12-05  Jim Meyering  <meyering@redhat.com>
848
849         maint.mk: backslash-escape parens in default regexp
850         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
851         backslash-escape the literal parentheses.
852
853         maint.mk: news-date-check: use grep -E
854         * top/maint.mk (today): Define a Make variable, not a...
855         (news-date-check): ...shell variable.
856         (news-date-regexp): Use the Make variable.
857         Use grep's -E option.  Change the failing diagnostic to mention
858         the variable, $(news-date-regexp).
859
860 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
861
862         maintainer-makefile: allow customization of NEWS entry format
863         * top/maint.mk (news-date-regexp): New overridable variable.
864         (news-date-check): Use it.
865
866 2009-12-04  Eric Blake  <ebb9@byu.net>
867
868         mgetgroups: add xgetgroups, and avoid ENOSYS failures
869         * lib/mgetgroups.h (xgetgroups): New prototype.
870         * lib/mgetgroups.c (xgetgroups): New wrapper.
871         (mgetgroups): Handle ENOSYS.
872         * modules/mgetgroups (Depends-on): Add realloc.
873         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
874
875         mgetgroups: avoid argument promotion issues with -1
876         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
877         for invalid gid_t.
878         * tests/test-chown.h (getegid, test_chown): Likewise.
879         * tests/test-lchown.h (getegid, test_lchown): Likewise.
880
881 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
882
883         exclude: Fix header file problems.
884         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
885
886 2009-12-01  Jim Meyering  <meyering@redhat.com>
887
888         fts: fts_open: do not let an empty string cause immediate failure
889         This is required in support of GNU rm, for which the command
890         "rm A '' B" must process and remove both A and B, in spite of
891         the empty string argument.
892         * lib/fts.c (fts_open): Do not let the presence of an empty string
893         cause fts_open to fail immediately.  Most fts-using tools must be
894         able to process all arguments, in order, and can be expected to
895         diagnose such arguments themselves.
896
897 2009-11-30  Eric Blake  <ebb9@byu.net>
898
899         utimens: fix compilation error
900         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
901         Declare variable at right scope.
902
903 2009-11-29  Jim Meyering  <meyering@redhat.com>
904
905         bootstrap: handle perl-5.11's changed --version output
906         * build-aux/bootstrap (get_version): Handle perl separately,
907         since perl-5.11's --version output is different.
908
909 2009-11-28  Jim Meyering  <meyering@redhat.com>
910
911         userspec: depend on the inttostr module, too
912         * modules/userspec (Depends-on): Add inttostr.
913
914         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
915         * lib/userspec.c (parse_with_separator): Do not accept a user ID
916         number of MAXUID when it evaluates to (uid_t) -1.
917         Likewise for group ID.  Reported by Matt McCutchen in
918         <http://savannah.gnu.org/bugs/?28113>
919
920         userspec: reformat to use spaces, not TABs
921         * lib/userspec.c: Expand TABs to spaces.
922         Add Emacs' "indent-tabs-mode: nil" hint.
923
924 2009-11-27  Eric Blake  <ebb9@byu.net>
925
926         getopt-gnu: flush out another BSD bug
927         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
928         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
929         flush out BSD bug.
930         * tests/test-getopt.h (test_getopt): End lists with NULL.
931         * tests/test-getopt_long.h (test_getopt_long): Likewise.
932         (test_getopt_long_posix): Enhance test.
933         * modules/getopt-posix-tests (Depends-on): Add stdbool.
934         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
935         getopt-gnu.
936         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
937         Likewise.
938
939 2009-11-27  Simon Josefsson  <simon@josefsson.org>
940
941         * modules/idpriv-droptemp-tests (Notice): Fix text.
942
943 2009-11-27  Jim Meyering  <meyering@redhat.com>
944
945         test-xalloc-die: avoid spurious failure due to libtool argv difference
946         In a libtool-enabled project, this test would fail due to a difference
947         in the emitted program name, e.g.,
948         -test-xalloc-die: memory exhausted
949         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
950         Use program to avoid that.
951         * modules/xalloc-die-tests (Depends-on): Add progname.
952         * tests/test-xalloc-die.c: Include progname.h".
953         (program_name): Remove decl.
954         (main): Call set_program_name.
955         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
956
957 2009-11-26  Richard Jones  <rjones@redhat.com>
958
959         w32sock: leave win32 error in place.
960         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
961
962 2009-11-26  Eric Blake  <ebb9@byu.net>
963
964         init.sh: suggest to use skip_ and fail_ functions in comments
965         * tests/init.sh: Add a sentence.
966
967 2009-11-25  Bruno Haible  <bruno@clisp.org>
968
969         init.sh: add documentation in comments
970         * tests/init.sh: Add some developer and user documentation.
971
972 2009-11-26  Jim Meyering  <meyering@redhat.com>
973
974         init.sh: accommodate even those who specify bogus srcdir manually
975         * tests/init.sh: Normally, srcdir is guaranteed by automake and
976         configure-time tests to be sanitized, so that there is no need to
977         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
978         (with no double quotes) suffices.  However, since tests may be
979         invoked manually, and since you may explicitly set srcdir to the
980         name of a directory containing spaces, do quote its uses here.
981         * tests/test-pread.sh: Likewise.
982         Suggested by Bruno Haible.
983
984         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
985         * tests/test-pread.sh: Write no data into the pipe, because
986         test-pread actually reads none.  This avoids a diagnostic,
987         "bash: echo: write error: Broken pipe", that arises in the unusual
988         event something is ignoring SIGPIPE, and might be interpreted
989         as some sort of failure.  Reported by Bruno Haible.
990
991 2009-11-25  Jim Meyering  <meyering@redhat.com>
992
993         test-pread: cover failure with ESPIPE and EINVAL
994         * tests/test-pread.c (main): Test for failure, too.
995         * tests/test-pread.sh: Invoke with stdin on a pipe.
996         Suggested by Eric Blake.
997
998         pread: improvement and fix
999         * modules/pread (Depends-on): Depend on lseek, for portability to
1000         e.g., mingw.  Suggested by Eric Blake.
1001         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
1002
1003         unistd.in.h: correct declaration of pread
1004         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
1005         Reported by Richard W.M. Jones.
1006
1007         test-pread.sh: distribute the test script
1008         * modules/pread-tests (Files): Include test-pread.sh.
1009
1010         test-pread.sh: clean up
1011         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
1012         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
1013         That is unnecessary, since it's always ".".
1014         Suggestion from Eric Blake.
1015
1016         test-pread.sh: make executable
1017         * tests/test-pread.sh: Set executable bit.
1018         Reported by Eric Blake.
1019
1020         correct typo in test-pread.sh
1021         * tests/test-pread.sh: Add #! line.
1022
1023         test pread
1024         * tests/test-pread.c: New file.
1025         * tests/test-pread.sh: Likewise.
1026         * modules/pread-tests: Likewise.
1027
1028         pread: new module
1029         * modules/pread: New file.
1030         * lib/unistd.in.h (pread): Define/declare.
1031         * lib/pread.c (pread): New file.
1032         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
1033         * modules/unistd (Makefile.am): Substitute witnesses.
1034         * doc/posix-functions/pread.texi (pread): Update.
1035         * MODULES.html.sh: Add pread.
1036
1037 2009-11-25  Jim Meyering  <meyering@redhat.com>
1038
1039         tests/init.sh: new file to be used via most *.sh tests
1040         * tests/init.sh: New file.
1041
1042 2009-11-25  Eric Blake  <ebb9@byu.net>
1043
1044         utimens: work around older Linux failure with symlinks
1045         * lib/utimens.c (lutimensat_works_really): New variable.
1046         (fdutimens, lutimens): Use it to manage kernels that support
1047         nanosecond times on files, but not on symlinks.
1048         Reported by OndÅ™ej Vašík.
1049
1050         utimes: fix configure grammar
1051         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
1052
1053 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
1054
1055         regex: Fix fastmap for multibyte character ranges.
1056         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
1057         characters when a multibyte character range is included.
1058
1059 2009-11-22  Andy Wingo  <wingo@pobox.com>
1060
1061         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
1062         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
1063
1064 2009-11-24  Bruno Haible  <bruno@clisp.org>
1065
1066         doc: Most *_l functions exist in MacOS X 10.5.
1067         * doc/posix-functions/duplocale.texi: Update platforms list.
1068         * doc/posix-functions/freelocale.texi: Likewise.
1069         * doc/posix-functions/newlocale.texi: Likewise.
1070         * doc/posix-functions/uselocale.texi: Likewise.
1071         * doc/posix-functions/isalnum_l.texi: Likewise.
1072         * doc/posix-functions/isalpha_l.texi: Likewise.
1073         * doc/posix-functions/isblank_l.texi: Likewise.
1074         * doc/posix-functions/iscntrl_l.texi: Likewise.
1075         * doc/posix-functions/isdigit_l.texi: Likewise.
1076         * doc/posix-functions/isgraph_l.texi: Likewise.
1077         * doc/posix-functions/islower_l.texi: Likewise.
1078         * doc/posix-functions/isprint_l.texi: Likewise.
1079         * doc/posix-functions/ispunct_l.texi: Likewise.
1080         * doc/posix-functions/isspace_l.texi: Likewise.
1081         * doc/posix-functions/isupper_l.texi: Likewise.
1082         * doc/posix-functions/iswalnum_l.texi: Likewise.
1083         * doc/posix-functions/iswalpha_l.texi: Likewise.
1084         * doc/posix-functions/iswblank_l.texi: Likewise.
1085         * doc/posix-functions/iswcntrl_l.texi: Likewise.
1086         * doc/posix-functions/iswctype_l.texi: Likewise.
1087         * doc/posix-functions/iswdigit_l.texi: Likewise.
1088         * doc/posix-functions/iswgraph_l.texi: Likewise.
1089         * doc/posix-functions/iswlower_l.texi: Likewise.
1090         * doc/posix-functions/iswprint_l.texi: Likewise.
1091         * doc/posix-functions/iswpunct_l.texi: Likewise.
1092         * doc/posix-functions/iswspace_l.texi: Likewise.
1093         * doc/posix-functions/iswupper_l.texi: Likewise.
1094         * doc/posix-functions/iswxdigit_l.texi: Likewise.
1095         * doc/posix-functions/isxdigit_l.texi: Likewise.
1096         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
1097         * doc/posix-functions/strcasecmp_l.texi: Likewise.
1098         * doc/posix-functions/strcoll_l.texi: Likewise.
1099         * doc/posix-functions/strfmon_l.texi: Likewise.
1100         * doc/posix-functions/strftime_l.texi: Likewise.
1101         * doc/posix-functions/strncasecmp_l.texi: Likewise.
1102         * doc/posix-functions/strxfrm_l.texi: Likewise.
1103         * doc/posix-functions/tolower_l.texi: Likewise.
1104         * doc/posix-functions/toupper_l.texi: Likewise.
1105         * doc/posix-functions/towctrans_l.texi: Likewise.
1106         * doc/posix-functions/towlower_l.texi: Likewise.
1107         * doc/posix-functions/towupper_l.texi: Likewise.
1108         * doc/posix-functions/wcscoll_l.texi: Likewise.
1109         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
1110         * doc/posix-functions/wctrans_l.texi: Likewise.
1111         * doc/posix-functions/wctype_l.texi: Likewise.
1112         * doc/glibc-functions/strptime_l.texi: Likewise.
1113         * doc/glibc-functions/strtod_l.texi: Likewise.
1114         * doc/glibc-functions/strtof_l.texi: Likewise.
1115         * doc/glibc-functions/strtol_l.texi: Likewise.
1116         * doc/glibc-functions/strtold_l.texi: Likewise.
1117         * doc/glibc-functions/strtoll_l.texi: Likewise.
1118         * doc/glibc-functions/strtoul_l.texi: Likewise.
1119         * doc/glibc-functions/strtoull_l.texi: Likewise.
1120         * doc/glibc-functions/wcsftime_l.texi: Likewise.
1121         * doc/glibc-functions/wcstod_l.texi: Likewise.
1122         * doc/glibc-functions/wcstof_l.texi: Likewise.
1123         * doc/glibc-functions/wcstol_l.texi: Likewise.
1124         * doc/glibc-functions/wcstold_l.texi: Likewise.
1125         * doc/glibc-functions/wcstoll_l.texi: Likewise.
1126         * doc/glibc-functions/wcstoul_l.texi: Likewise.
1127         * doc/glibc-functions/wcstoull_l.texi: Likewise.
1128
1129 2009-11-24  Bruno Haible  <bruno@clisp.org>
1130
1131         duplocale: Fix logic bug.
1132         * lib/duplocale.c: Don't include <langinfo.h>.
1133         (_NL_LOCALE_NAME): Remove macro.
1134         (rpl_duplocale): Use setlocale instead of nl_langinfo.
1135         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
1136
1137 2009-11-23  Jim Meyering  <meyering@redhat.com>
1138
1139         test-update-copyright: don't hard-code /usr/bin/perl
1140         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
1141         perl to print the current year.  Gilles Espinasse reported that
1142         the replaced use of perl was hard-coded as /usr/bin/perl.
1143
1144 2009-11-23  Bruno Haible  <bruno@clisp.org>
1145
1146         duplocale: Add support for glibc 2.3.x.
1147         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
1148
1149 2009-11-22  Bruno Haible  <bruno@clisp.org>
1150
1151         vasnprintf: Tiny optimization.
1152         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
1153         MacOS X.
1154
1155 2009-11-22  Bruno Haible  <bruno@clisp.org>
1156
1157         Tests for module 'duplocale'.
1158         * modules/duplocale-tests: New file.
1159         * tests/test-duplocale.c: New file.
1160
1161         New module 'duplocale'.
1162         * m4/duplocale.m4: New file.
1163         * lib/locale.in.h (duplocale): New declaration.
1164         * lib/duplocale.c: New file.
1165         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
1166         gl_LOCALE_H_DEFAULTS): New macros.
1167         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
1168         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
1169         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
1170         REPLACE_DUPLOCALE.
1171         * modules/duplocale: New file.
1172         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
1173
1174 2009-11-22  Bruno Haible  <bruno@clisp.org>
1175
1176         * modules/locale-tests (configure.ac): Test for newlocale function.
1177         * tests/test-locale.c: When the system has extended locale functions,
1178         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
1179
1180         locale: Make locale_t available when possible.
1181         * lib/locale.in.h: Include <xlocale.h> when it exists.
1182         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
1183         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
1184         * modules/locale (Depends-on): Add extensions.
1185         (Makefile.am): Also substitute HAVE_XLOCALE_H.
1186         * doc/posix-headers/locale.texi: Document the problem with locale_t.
1187
1188 2009-11-22  Bruno Haible  <bruno@clisp.org>
1189
1190         Add comments.
1191         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
1192         invocation.
1193         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
1194         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
1195         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
1196
1197 2009-11-22  Bruno Haible  <bruno@clisp.org>
1198
1199         error: account for the possibility of freopen (stdout).
1200         * lib/error.c: Include <unistd.h>.
1201         (flush_stdout): New function, extracted from error and error_at_line.
1202         Determine stdout's fd dynamically.
1203         (error, error_at_line): Invoke flush_stdout.
1204         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
1205         * modules/error (Depends-on): Add unistd.
1206
1207 2009-11-22  Bruno Haible  <bruno@clisp.org>
1208
1209         diffseq: Add comment.
1210         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
1211
1212 2009-11-22  Jim Meyering  <meyering@redhat.com>
1213
1214         c-stack: avoid defining an unused static function
1215         * lib/c-stack.c (find_stack_direction): Do not define this function
1216         when it will not be used.
1217
1218         diffseq: avoid spurious gcc warnings
1219         * lib/diffseq.h (IF_LINT2): Define.
1220         (compareseq): Use it to initialize two members of "part".
1221         This avoids two used-uninitialized warnings.
1222
1223 2009-11-21  Jim Meyering  <meyering@redhat.com>
1224
1225         c-stack: avoid "ignoring return value of `write'" warning
1226         * lib/c-stack.c: Include "ignore-value.h".
1227         (die): Explicitly ignore each write return value.
1228         * modules/c-stack (Depends-on): Add ignore-value.
1229
1230 2009-11-21  Bruno Haible  <bruno@clisp.org>
1231
1232         diffseq: reduce scope of variable 'best'.
1233         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
1234         variable, earlier used for two different purposes.
1235
1236 2009-11-21  Jim Meyering  <meyering@redhat.com>
1237
1238         diffseq: remove useless assignment to "best"
1239         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
1240         assignment.  At that point "best" is already guaranteed to be zero.
1241
1242 2009-11-20  Eric Blake  <ebb9@byu.net>
1243
1244         build: mention ftp redirector in release announcements
1245         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
1246         values that used to come from cfg.mk; mention FTP redirect URL.
1247         * build-aux/announce-gen: Mention the mirror list.
1248         Suggested by Karl Berry.
1249
1250         nanosleep: improve port to mingw
1251         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
1252         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
1253         LIB_NANOSLEEP, but only when needed.
1254         * modules/select (Link): Document LIBSOCKET.
1255         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
1256         enough.
1257
1258         nanosleep: work around cygwin bug
1259         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
1260         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
1261         bug.
1262         (getnow): Delete, not needed.
1263         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
1264         LIB_CLOCK_GETTIME.
1265         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
1266         clock-time, gettime.
1267         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
1268         bug.
1269         * modules/nanosleep-tests: New test.
1270         * tests/test-nanosleep.c: New file.
1271
1272         sleep: work around cygwin bug
1273         * lib/sleep.c (rpl_sleep): Work around the bug.
1274         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
1275         (gl_PREREQ_SLEEP): Delete unused macro.
1276         * modules/sleep (Depends-on): Add verify.
1277         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1278         * modules/unistd (Makefile.am): Substitute witness.
1279         * lib/unistd.in.h (sleep): Update prototype.
1280         * doc/posix-functions/sleep.texi (sleep): Document the bug.
1281         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
1282         * modules/sleep-tests (Depends-on): Check for alarm.
1283
1284 2009-11-20  Jim Meyering  <meyering@redhat.com>
1285
1286         maint.mk: improve sc_prohibit_magic_number_exit
1287         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
1288         so it does not match uses like System.exit(1).
1289         Add comments showing how to correct all offenders.
1290
1291 2009-11-19  Eric Blake  <ebb9@byu.net>
1292
1293         xalloc-die-tests: add missing library
1294         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
1295
1296         test-xvasprintf: silence compiler warnings
1297         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
1298         empty string from gcc.
1299
1300 2009-11-19  Jim Meyering  <meyering@redhat.com>
1301
1302         xfreopen: new module, from coreutils
1303         * modules/xfreopen: New module.
1304         * lib/xfreopen.c: New file.
1305         * lib/xfreopen.h: New file.
1306         * MODULES.html.sh (File stream based Input/Output"): Add it.
1307
1308 2009-11-19  Eric Blake  <ebb9@byu.net>
1309
1310         manywarnings: depend on warnings
1311         * modules/manywarnings (Depends-on): Add warnings.
1312
1313         build: avoid compiler warnings
1314         * lib/select.c (rpl_select): Delete unused variable.
1315         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
1316
1317 2009-11-18  Eric Blake  <ebb9@byu.net>
1318
1319         tests: avoid false negative with --with-packager
1320         * tests/test-version-etc.sh: Discard packager information.
1321         * tests/test-argp-version-etc-1.sh: Likewise.
1322         Reported by Mike Frysinger.
1323
1324         utimens: fix regression on Solaris
1325         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
1326         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
1327         can only change fd timestamps via futimesat.  Instead, use an
1328         additional witness macro to avoid BSD bug.
1329         Reported by Jim Meyering.
1330
1331 2009-11-17  Eric Blake  <ebb9@byu.net>
1332
1333         usleep: use it to simplify tests
1334         * modules/stat-time-tests (Depends-on): Add usleep.
1335         (configure.ac): Drop usleep check.
1336         * modules/chown-tests (Depends-on, configure.ac): Likewise.
1337         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
1338         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
1339         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
1340         * modules/openat-tests (Depends-on, configure.ac): Likewise.
1341         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
1342         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
1343         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
1344         Likewise.
1345         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
1346         * tests/test-lchown.h (nap): Likewise.
1347         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
1348         * tests/test-stat-time.c (nap): Likewise.
1349         * tests/test-utimens-common.h (nap): Update comments.
1350
1351         usleep: new module
1352         * modules/usleep: New file.
1353         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
1354         * lib/usleep.c (usleep): Likewise.
1355         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
1356         * modules/unistd (Makefile.am): Substitute witnesses.
1357         * lib/unistd.in.h (usleep): Add declaration.
1358         * doc/pastposix-functions/usleep.texi (usleep): Document this.
1359         * MODULES.html.sh (Date and time): Likewise.
1360         * modules/usleep-tests (Depends-on): New test.
1361         * tests/test-usleep.c: New file.
1362
1363         chown: work around OpenBSD bug
1364         * lib/chown.c (rpl_chown): Work around the bug.
1365         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
1366         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
1367         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
1368         * modules/chown (Depends-on): Add stdbool.
1369         * modules/lchown (Depends-on): Likewise.
1370         * doc/posix-functions/chown.texi (chown): Document the bug.
1371         * doc/posix-functions/lchown.texi (lchown): Likewise.
1372         * tests/test-lchown.h (test_chown): Relax test.
1373
1374         mkstemp: avoid conflict with C++ keyword template
1375         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
1376         * lib/mkostemp.c (mkostemp): Likewise.
1377         * lib/mkostemps.c (mkostemps): Likewise.
1378         * lib/mkstemp.c (mkstemp): Likewise.
1379         * lib/mkstemps.c (mkstemps): Likewise.
1380
1381         xalloc-die-tests: optimize
1382         * tests/test-xalloc-die.sh: Reduce number of processes.
1383
1384 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1385
1386         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
1387         patch from ludo@gnu.org (Ludovic Courtès).
1388
1389 2009-11-17  Jim Meyering  <meyering@redhat.com>
1390
1391         version-etc: use proper license string
1392         * modules/version-etc (License): Use LGPL, not LGPLv3+.
1393         * modules/version-etc-fsf: Likewise.
1394
1395 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1396
1397         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
1398         printed to stdout.  Deal with EOL differences.
1399
1400 2009-11-17  Eric Blake  <ebb9@byu.net>
1401
1402         unsetenv: work around Solaris bug
1403         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
1404         * lib/unsetenv.c (rpl_unsetenv): Work around it.
1405         Reported by Jim Meyering.
1406
1407         vasnprintf: avoid compiler warnings
1408         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
1409         variables.
1410         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
1411
1412 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1413
1414         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
1415         settings since xalloc-die is no longer the self test,
1416         xalloc-die.sh is.
1417
1418 2009-11-17  Jim Meyering  <meyering@redhat.com>
1419
1420         test-xalloc-die.sh: make the code agree with the commit log
1421         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
1422         at the end, just in case you happen to have a test-xalloc-die
1423         program in some other PATH directory.
1424
1425         test-xalloc-die.sh: fix a portability bug
1426         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
1427         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
1428         Otherwise, argv[0] (as often seen in diagnostics) would be too
1429         system-dependent, sometimes with, and sometimes without the leading "./".
1430
1431         version-etc-fsf: relax license to LGPLv3+
1432         * modules/version-etc-fsf (License): Relax license.
1433
1434 2009-11-16  Eric Blake  <ebb9@byu.net>
1435
1436         xalloc-die-tests: avoid printing null pointer
1437         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
1438         shell script.
1439         * tests/test-xalloc-die.c (program_name): Declare.
1440         * tests/test-xalloc-die.sh (tmpfiles): New file.
1441
1442         setenv, unsetenv: work around various bugs
1443         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
1444         (setenv) [HAVE_SETENV]: Work around bugs.
1445         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
1446         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
1447         for bugs.
1448         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
1449         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
1450         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
1451         * modules/stdlib (Makefile.am): Update substitutions.
1452         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
1453         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
1454         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
1455         * modules/setenv-tests: New test.
1456         * modules/unsetenv-tests: Likewise.
1457         * tests/test-setenv.c: New file.
1458         * tests/test-unsetenv.c: Likewise.
1459
1460 2009-11-16  Jim Meyering  <meyering@redhat.com>
1461
1462         version-etc: relax license to LGPLv3+
1463         * modules/version-etc (License): Relax license.
1464
1465         better AC_REQUIRE expanded-before-required-warning avoidance
1466         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
1467         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
1468         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
1469         which is no longer needed.
1470
1471 2009-11-16  Eric Blake  <ebb9@byu.net>
1472
1473         test-freading: clean up temporary file
1474         * tests/test-freading.c (main): Remove file on success, and use
1475         ASSERT more liberally.
1476         Reported by Jim Meyering.
1477
1478 2009-11-16  Jim Meyering  <meyering@redhat.com>
1479
1480         avoid new AC_REQUIRE expanded-before-required warnings
1481         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
1482         merely using it.
1483         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
1484         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
1485
1486 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1487
1488         * tests/test-xalloc-die.c: New file.
1489         * modules/xalloc-die-tests: New file.
1490         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
1491         XFAIL_TESTS so it can be appended by modules.
1492
1493 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1494
1495         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
1496         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
1497
1498 2009-11-14  Eric Blake  <ebb9@byu.net>
1499
1500         fnmatch: avoid compiler warning
1501         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
1502         to silence compiler warning about mismatch signedness in ?:.
1503         Reported by Robert Millan.
1504
1505         intprops: add double-inclusion guard
1506         * lib/intprops.h: Allow idempotent includes.
1507         Suggested by Bruce Korb.
1508
1509         openat: detect Solaris fchownat bug
1510         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
1511         penalizing glibc chownat when only lchownat is broken.
1512         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
1513         trailing slash bugs.
1514         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
1515         * modules/openat-tests (Files): Include more files.
1516         (Depends-on): Add mgetgroups, sleep, stat-time.
1517         (configure.ac): Add additional checks.
1518         (Makefile.am): Build new test.
1519         * tests/test-fchownat.c: New file.
1520
1521         lchown: detect Solaris and FreeBSD bug
1522         * lib/lchown.c (rpl_lchown): Work around bug.
1523         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
1524         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1525         * modules/unistd (Makefile.am): Populate it.
1526         * lib/unistd.in.h (lchown): Update declaration.
1527         * doc/posix-functions/lchown.texi (lchown): Document the bug.
1528         * modules/lchown-tests: New file.
1529         * tests/test-lchown.h (test_lchown): Likewise.
1530         * tests/test-lchown.c (main): Likewise.
1531
1532         chown: detect Solaris and FreeBSD bug
1533         * lib/chown.c (rpl_chown): Work around bug.
1534         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
1535         (gl_PREREQ_CHOWN): Delete.
1536         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1537         * modules/unistd (Makefile.am): Populate it.
1538         * lib/unistd.in.h (chown): Update declaration.
1539         * lib/lchown.c (chown): Update client.
1540         * modules/lchown (Depends-on): Add lstat.
1541         * doc/posix-functions/chown.texi (chown): Document the bug.
1542         * doc/posix-functions/getgroups.texi (getgroups): Document
1543         getgroups pitfall.
1544         * modules/chown-tests: New file.
1545         * tests/test-chown.h (test_chown): Likewise.
1546         * tests/test-chown.c (main): Likewise.
1547
1548 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
1549
1550         gnulib-tool: correctly detect absence of m4 directories
1551         * gnulib-tool: Avoid extra newline on data passed to wc -l.
1552
1553 2009-11-14  Jim Meyering  <meyering@redhat.com>
1554
1555         maint.mk: Prohibit inclusion of "xalloc.h" without use.
1556         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1557
1558 2009-11-14  John W. Eaton  <jwe@gnu.org>
1559
1560         strftime.h: wrap funtion declaration in extern "C" block
1561         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
1562
1563 2009-11-13  Eric Blake  <ebb9@byu.net>
1564
1565         getgroups: avoid compiler warning
1566         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
1567
1568         getgroups: work around FreeBSD bug
1569         * lib/getgroups.c (rpl_getgroups): Work around the bug.
1570         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
1571         * doc/posix-functions/getgroups.texi (getgroups): Document it.
1572         * tests/test-getgroups.c (main): Fix buffer overrun.
1573
1574         getgroups: avoid compilation failure
1575         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
1576         * modules/getgroups (Depends-on): Add stdint.
1577
1578 2009-11-13  Jim Meyering  <meyering@redhat.com>
1579
1580         test-getgroups: avoid compilation failure
1581         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
1582
1583 2009-11-13  Eric Blake  <ebb9@byu.net>
1584
1585         mgetgroups: new module, taken from coreutils
1586         * modules/mgetgroups: New file.
1587         * lib/mgetgroups.h: Likewise.
1588         * lib/mgetgroups.c (mgetgroups): Likewise.
1589         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
1590         * MODULES.html.sh (Users and groups): Mention it.
1591
1592         getgroups: don't expose GETGROUPS_T to user
1593         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
1594         an element at a time if GETGROUPS_T is wrong size.
1595         * lib/getugroups.h (getugroups): Change signature.
1596         * lib/unistd.in.h (getgroups): Likewise.
1597         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
1598         signature needs fixing.
1599         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
1600         AC_TYPE_GETGROUPS.
1601         * modules/group-member (Depends-on): Add getgroups.
1602         * lib/group-member.c (group_info, get_group_info): Use gid_t.
1603         (group_member): Rely on getgroups replacement.
1604         * lib/getugroups.c (getugroups): Use gid_t.
1605         * tests/test-getgroups.c (main): Likewise.
1606         * NEWS: Mention the signature change.
1607         * doc/posix-functions/getgroups.texi (getgroups): Mention the
1608         problem with signature.
1609         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
1610         GETGROUPS_T is still useful for setgroups.
1611
1612         getgroups, getugroups: provide stubs for mingw
1613         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
1614         * lib/getugroups.c (getugroups): Likewise.
1615         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
1616         function.  Modernize replacement scheme.
1617         (gl_PREREQ_GETGROUPS): Delete.
1618         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
1619         * modules/getgroups (configure.ac): Declare witness.
1620         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1621         * modules/unistd (Depends-on): Substitute witness.
1622         * lib/unistd.in.h (getgroups): Declare replacement.
1623
1624         getgroups: avoid calling exit
1625         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
1626         drop xalloc.
1627         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
1628         dependencies.
1629         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
1630         exiting, in the rare case of malloc failure.
1631
1632         getgroups: fix logic error
1633         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
1634         has more than 20 groups.
1635         * modules/getgroups-tests: New test.
1636         * tests/test-getgroups.c: New file.
1637
1638 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1639
1640         * tests/test-base64.c: Improve.
1641
1642 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1643
1644         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
1645         Blake <ebb9@byu.net>.
1646
1647 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1648
1649         * tests/test-xvasprintf.c: Add %s%s related checks.
1650
1651 2009-11-12  Eric Blake  <ebb9@byu.net>
1652
1653         version-etc: match standards.texi style
1654         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
1655         and use <> only for URLs.
1656
1657 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
1658
1659         fts: do not fail on a submount during traversal
1660         * lib/fts.c (fts_build): Read the stat info again after opening
1661         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
1662         Original report at http://bugzilla.redhat.com/501848.
1663
1664 2009-11-12  Jim Meyering  <meyering@redhat.com>
1665
1666         bootstrap: sync from coreutils
1667         * build-aux/bootstrap (bootstrap_epilogue): New function.
1668         Use git_modules_config in one more place.  This make bootstrap's
1669         --gnulib-srcdir option more useful for testing.
1670
1671         bootstrap: generalize autoheader check
1672         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
1673         AC_CONFIG_HEADERS.
1674
1675 2009-11-11  Eric Blake  <ebb9@byu.net>
1676
1677         mkfifoat: use new modules for Solaris and BSD bugs
1678         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
1679         * lib/mkfifoat.c (mknodat): Split...
1680         * lib/mknodat.c (mknodat): ...into new file.
1681         * modules/mkfifoat (Files): Ship new file.
1682         (Depends-on): Add mkfifo, mknod.
1683         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
1684         (Depends-on): Add symlink.
1685         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
1686         redundant with test_mkfifo.h.
1687         (do_mkfifoat, do_mknodat): New helpers.
1688
1689         mknod: new module
1690         * modules/mknod: New file.
1691         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
1692         * lib/mknod.c (mknod): Likewise.
1693         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1694         defaults.
1695         * modules/sys_stat (Makefile.am): Substitute them.
1696         * lib/sys_stat.in.h (mknod): Declare replacement.
1697         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1698         Document it.
1699         * doc/posix-functions/mknod.texi (mknod): Likewise.
1700         * modules/mknod-tests: New test.
1701         * tests/test-mknod.c: Likewise.
1702
1703         mkfifo: new module
1704         * modules/mkfifo: New file.
1705         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
1706         * lib/mkfifo.c (mkfifo): Likewise.
1707         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1708         defaults.
1709         * modules/sys_stat (Makefile.am): Substitute them.
1710         * lib/sys_stat.in.h (mkfifo): Declare replacement.
1711         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1712         Document it.
1713         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
1714         * modules/mkfifo-tests: New test.
1715         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
1716         from test-mkfifoat.c.
1717         * tests/test-mkfifo.c: New file.
1718
1719         readlink: detect FreeBSD bug
1720         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
1721         slash on symlink.
1722         * doc/posix-functions/readlink.texi (readlink): Document the bug.
1723         * tests/test-readlink.h (test_readlink): Enhance test.
1724
1725         symlink: detect FreeBSD bug
1726         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
1727         slash on symlink.
1728         * doc/posix-functions/symlink.texi (symlink): Document the bug.
1729         * tests/test-symlink.h (test_symlink): Enhance test.
1730
1731 2009-11-10  Eric Blake  <ebb9@byu.net>
1732
1733         link: detect FreeBSD bug
1734         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
1735         symlink.
1736         * doc/posix-functions/link.texi (link): Document the bug.
1737         * tests/test-link.h (test_link): Enhance test.
1738         * tests/test-linkat.c (main): Update caller.
1739
1740         unlink, remove: detect FreeBSD bug
1741         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
1742         slash on symlink.
1743         * doc/posix-functions/unlink.texi (unlink): Document the bug.
1744         * doc/posix-functions/remove.texi (remove): Likewise.
1745         * tests/test-unlink.h (test_unlink): Enhance test.
1746         * tests/test-remove.c (main): Likewise.
1747
1748 2009-11-09  Eric Blake  <ebb9@byu.net>
1749
1750         rename: detect FreeBSD bug
1751         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
1752         slash on symlink.
1753         * modules/renameat-tests (Depends-on): Add filenamecat.
1754         * tests/test-rename.h (test_rename): Allow one more errno.
1755         * tests/test-renameat.c (main): Likewise.
1756         * doc/posix-functions/rename.texi (rename): Document the bug.
1757
1758         open: detect FreeBSD bug
1759         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
1760         symlink.
1761         * doc/posix-functions/open.texi (open): Document the bug.
1762         * doc/posix-functions/utimes.texi (utimes): Likewise.
1763         * tests/test-open.h (test_open): Add parameters, and test symlink
1764         handling.
1765         * tests/test-open.c (main): Adjust caller.
1766         * tests/test-fcntl-safer.c (main): Likewise.
1767         * modules/open-tests (Depends-on): Add stdbool, symlink.
1768         * modules/fcntl-safer-tests (Depends-on): Likewise.
1769         * tests/test-openat.c (main): Add test-open tests.
1770
1771         stat: detect FreeBSD bug
1772         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
1773         symlink.
1774         * doc/posix-functions/stat.texi (stat): Document the bug.
1775         * tests/test-stat.h (test_stat_func): Add argument.
1776         * tests/test-stat.c (main): Adjust caller.
1777         * tests/test-fstatat.c (main): Likewise.
1778         * modules/stat-tests (Depends-on): Add stdbool, symlink.
1779         Reported by Jim Meyering.
1780
1781 2009-11-09  James Youngman  <jay@gnu.org>
1782
1783         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
1784         * lib/strftime.c: Correct placement of #include "ignore-value.h".
1785
1786 2009-11-08  Jim Meyering  <meyering@redhat.com>
1787
1788         utimens: remove invalid futimesat call
1789         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
1790         It used the file descriptor of the target file as the DIR_FD
1791         parameter and NULL as the file name.  That caused failure with
1792         errno == EFAULT on FreeBSD-8.0-rc2
1793
1794 2009-11-07  Eric Blake  <ebb9@byu.net>
1795
1796         fflush, freadseek: use fseeko, not fseek
1797         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
1798         (clear_ungetc_buffer): Avoid potential problems on large files.
1799         * lib/freadseek.c (freadseek): Likewise.
1800         * modules/freadseek (Depends-on): Add fseeko.
1801         * modules/fseek (configure.ac): Set a witness.
1802         * tests/test-fflush.c (main): Use fseeko.
1803         * tests/test-fpurge.c (fseek): Disable link warning.
1804         * tests/test-freadable.c (fseek): Likewise.
1805         * tests/test-freading.c (fseek): Likewise.
1806         * tests/test-fseeko.c (fseek): Likewise.
1807         * tests/test-ftell.c (fseek): Likewise.
1808         * tests/test-ftello.c (fseek): Likewise.
1809         * tests/test-fwritable.c (fseek): Likewise.
1810         * tests/test-fwriting.c (fseek): Likewise.
1811
1812 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1813
1814         * modules/memchr (Depends-on): Drop getpagesize dependency.
1815
1816 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1817
1818         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
1819         Reported by Ludovic Courtès.
1820         * build-aux/pmccabe2html: Improve example usage.
1821         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
1822
1823 2009-11-06  Jim Meyering  <meyering@redhat.com>
1824
1825         do-release-commit-and-tag: New module.
1826         Automate the release-commit and tag process.
1827         * build-aux/do-release-commit-and-tag: New script, from coreutils.
1828         * modules/do-release-commit-and-tag: New file.
1829         * MODULES.html.sh (Support for maintaining and releasing): Add it.
1830
1831 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1832
1833         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
1834         because test-select.c uses inet_pton.
1835
1836 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1837
1838         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
1839         GETADDRINFO_LIB.  Bump serial number.
1840         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
1841         Suggested by Eric Blake <ebb9@byu.net>.
1842
1843 2009-11-05  Eric Blake  <ebb9@byu.net>
1844
1845         strtod: detect darwin bug
1846         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
1847         Reported by Leo Davis.
1848
1849         freopen-safer: new module
1850         * modules/freopen-safer: New module.
1851         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
1852         * lib/freopen-safer.c (freopen_safer): New file.
1853         * lib/stdio-safer.h (freopen_safer): New declaration.
1854         * lib/stdio--.h (freopen): New override.
1855         * MODULES.html.sh (File stream based Input/Output): Mention it.
1856         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
1857         freopen-safer module.
1858         * doc/posix-functions/stderr.texi (stderr): Likewise.
1859         * doc/posix-functions/stdin.texi (stdin): Likewise.
1860         * doc/posix-functions/stdout.texi (stdout): Likewise.
1861         * modules/freopen-safer-tests: New test.
1862         * tests/test-reopen-safer.c: New file.
1863
1864 2009-11-05  Jim Meyering  <meyering@redhat.com>
1865
1866         maint.mk: Prohibit inclusion of "close-stream.h" without use.
1867         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1868
1869 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1870
1871         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
1872
1873 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1874
1875         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
1876
1877 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1878
1879         Fix link error.
1880         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1881         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1882
1883 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1884
1885         * tests/test-func.c: Also test value of __func__.
1886
1887 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1888
1889         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
1890         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
1891
1892 2009-11-05  Bruno Haible  <bruno@clisp.org>
1893
1894         Fix link error.
1895         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1896         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1897         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
1898
1899 2009-11-05  Bruno Haible  <bruno@clisp.org>
1900
1901         Tests for module 'inet_pton'.
1902         * modules/inet_pton-tests: New file.
1903         * tests/test-inet_pton.c: New file.
1904
1905 2009-11-05  Bruno Haible  <bruno@clisp.org>
1906
1907         Tests for module 'inet_ntop'.
1908         * modules/inet_ntop-tests: New file.
1909         * tests/test-inet_ntop.c: New file.
1910
1911 2009-11-04  Eric Blake  <ebb9@byu.net>
1912
1913         stdlib-safer: wrap all mkstemp variants
1914         * modules/mkostemp (configure.ac): Set witness.
1915         * modules/mkostemps (configure.ac): Likewise.
1916         * modules/mkstemps (configure.ac): Likewise.
1917         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
1918         (mkstemps_safer): Wrap more functions.
1919         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
1920         wrapping.
1921         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
1922         (mkstemps_safer): Implement the wrappers.
1923
1924         mkstemps, mkostemps: new modules
1925         * modules/mkostemps: New module.
1926         * modules/mkstemps: Likewise.
1927         * lib/mkostemps.c (mkostemps): New file.
1928         * lib/mkstemps.c (mkstemps): Likewise.
1929         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
1930         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
1931         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
1932         * modules/stdlib (Makefile.am): Substitute them.
1933         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
1934         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
1935         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
1936         * doc/gnulib.texi (Glibc stdlib.h): Include them.
1937         * MODULES.html.sh (File system functions): Mention them.
1938
1939         tempname: resync from glibc
1940         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
1941         same values for __GT_FILE as glibc.  Abort even when assertions
1942         are disabled.
1943         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
1944         match its value otherwise.  Allow idempotent inclusion.
1945         * lib/mkdtemp.c (mkdtemp): Adjust caller.
1946         * lib/mkostemp.c (mkostemp): Likewise.
1947         * lib/mkstemp.c (mkstemp): Likewise.
1948         * lib/tmpfile.c (tmpfile): Likewise.
1949         * NEWS: Document this.
1950
1951         utimens: fix use of futimens on older Linux
1952         * lib/utimens.c (fdutimens): Use updated, rather than original,
1953         timespec to avoid bug in older Linux kernel.
1954         Reported by Simon Josefsson.
1955
1956 2009-11-04  Bruno Haible  <bruno@clisp.org>
1957
1958         Make num_processors more flexible and consistent.
1959         * lib/nproc.h (enum nproc_query): New type.
1960         (num_processors): Add a 'query' argument.
1961         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
1962         (num_processors): Add a 'query' argument. Test the value of the
1963         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
1964         mingw, count the number of CPUs available for the current process.
1965         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
1966         Check for sched_getaffinity and sched_getaffinity_np.
1967         * modules/nproc (Depends-on): Add c-ctype, extensions.
1968         * NEWS: Mention the change.
1969
1970 2009-11-03  Bruno Haible  <bruno@clisp.org>
1971
1972         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
1973
1974 2009-11-03  Jim Meyering  <meyering@redhat.com>
1975
1976         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
1977         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
1978         if it is defined.
1979
1980 2009-11-02  Eric Blake  <ebb9@byu.net>
1981
1982         mktime, timegm: share common declaration
1983         * lib/mktime-internal.h: New file.
1984         * lib/mktime.c: Use it rather than open-coding a declaration.
1985         * lib/timegm.c: Likewise.
1986         * modules/mktime (Files): Ship it.
1987         * modules/timegm (Files): Likewise.
1988         Suggested by Bruno Haible.
1989
1990         test-update-copyright: update test to match script changes
1991         * tests/test-update-copyright.sh: Avoid hard-coding perl
1992         location.  Don't update *.bak created by earlier runs.
1993
1994 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
1995             Simon Josefsson  <simon@josefsson.org>
1996             Bruno Haible  <bruno@clisp.org>
1997
1998         Fix link error on Solaris 8.
1999         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
2000         also in libnsl. Define also INET_PTON_LIB.
2001         * modules/inet_pton (Link): New section.
2002
2003 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2004             Bruno Haible  <bruno@clisp.org>
2005
2006         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
2007         * modules/inet_ntop (Link): New section.
2008         Reported by Boyan Kasarov <bkasarov@gmail.com>.
2009
2010 2009-11-02  Eric Blake  <ebb9@byu.net>
2011
2012         maint: avoid compiler warnings in m4 macros
2013         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
2014         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
2015
2016 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2017
2018         * m4/pmccabe2html.m4: Remove file.
2019         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
2020         function.  Change maintainer.
2021         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
2022         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
2023         Courtès).
2024
2025 2009-10-31  Eric Blake  <ebb9@byu.net>
2026
2027         fseeko: fix m4 regression
2028         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
2029         regression from 2009-10-27.
2030         Reported by Ralf Wildenhues.
2031
2032 2009-10-31  Jim Meyering  <meyering@redhat.com>
2033
2034         inttostr: aesthetics and improved (compile-time) safety
2035         Define inttype_is_signed rather than inttype_is_unsigned,
2036         since the sole use is via "#if inttype_is_signed".
2037         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
2038         inttype_is_unsigned.
2039         * lib/offtostr.c (inttype_is_signed): Likewise.
2040         * lib/uinttostr.c (inttype_is_signed): Likewise.
2041         * lib/umaxtostr.c (inttype_is_signed): Likewise.
2042         * lib/inttostr.c (inttostr): Use verify to cross-check the
2043         inttype_is_signed value and the signedness of the actual type.
2044         * modules/inttostr (Depends-on): Add verify.
2045
2046 2009-10-30  Eric Blake  <ebb9@byu.net>
2047
2048         build: avoid compiler warnings
2049         * lib/fchmodat.c (lchmod): Mark unused variables.
2050         * lib/getopt.c (_getopt_initialize): Likewise.
2051         * lib/mktime.c (__mktime_internal): Provide prototype.
2052         * lib/inttostr.c (inttostr): Avoid compiler warning even with
2053         older gcc that do not understand #pragma GCC diagnostic.
2054         * lib/uinttostr.c (inttype_is_unsigned): Define.
2055         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
2056
2057 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
2058
2059         stat: fix compilation on AIX
2060         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
2061         only see struct stat64.
2062
2063 2009-10-30  Eric Blake  <ebb9@byu.net>
2064
2065         exclude: make more robust
2066         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
2067         rather than masking a coding bug.
2068         Suggested by Bruno Haible.
2069
2070 2009-10-30  Jim Meyering  <meyering@redhat.com>
2071
2072         perl scripts: remove #!/usr/bin/perl in favor of more portable...
2073         Rather than putting #!/usr/bin/perl on the first line,
2074         start with a variant of what's recommended by "man perlrun" that
2075         invokes the first "perl" program from your shell's search path.
2076         * build-aux/gitlog-to-changelog: Replace #!... as above.
2077         Add a "Local Variables" perl mode setting.
2078         Prompted by a patch from Ludovic Courtès.
2079         Improved by Eric Blake.
2080         * build-aux/useless-if-before-free: Likewise.
2081         * build-aux/announce-gen: Likewise.
2082         * build-aux/update-copyright: Likewise.
2083
2084 2009-10-29  Eric Blake  <ebb9@byu.net>
2085
2086         filenamecat-lgpl: adjust clients
2087         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
2088         filenamecat.
2089         * modules/renameat (Depends-on): Likewise.
2090
2091         filenamecat: split into filenamecat-lgpl
2092         * modules/filenamecat-lgpl: New module.
2093         * modules/filenamecat (Files): Move library-safe files into
2094         filenamecat-lgpl.
2095         (Depends-on): Add filenamecat-lgpl.
2096         (configure.ac): Declare witness.
2097         * lib/filenamecat.h (file_name_concat): Only declare when using
2098         GPL module.
2099         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
2100         Move...
2101         * lib/filenamecat-lgpl.c: ...into new file.
2102         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
2103         (gl_FILE_NAME_CONCAT): Use it.
2104         * MODULES.html.sh (File system functions): Mention new module.
2105
2106         argp: avoid memory leak
2107         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
2108         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
2109         base_name, since the latter malloc()s and can call exit().
2110         Leak introduced 2006-07-03.
2111
2112         dirname-lgpl: adjust clients that don't need full dirname
2113         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
2114         * modules/filenamecat (Depends-on): Likewise.
2115         * modules/linkat (Depends-on): Likewise.
2116         * modules/mkancesdirs (Depends-on): Likewise.
2117         * modules/mkdir (Depends-on): Likewise.
2118         * modules/openat (Depends-on): Likewise.
2119         * modules/savewd (Depends-on): Likewise.
2120         * modules/rename (Depends-on): Likewise.
2121         (License): Relax license.
2122         * modules/mkdir-tests (Depends-on): Drop progname.
2123         (Makefile.am): Delete unneeded LDADD.
2124         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
2125
2126         dirname: split into dirname-lgpl
2127         * modules/dirname-lgpl: New module.
2128         * modules/dirname (Files): Move library-safe files into
2129         dirname-lgpl.
2130         (Depends-on): Add dirname-lgpl.
2131         (configure.ac): Declare witness.
2132         * modules/double-slash-root (License): Relax license.
2133         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
2134         module.
2135         * lib/dirname.c (dir_len, mdir_name): Move...
2136         * lib/dirname-lgpl.c: ...into new file.
2137         * lib/basename.c (last_component, base_len): Move...
2138         * lib/basename-lgpl.c: ...into new file.
2139         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
2140         (gl_DIRNAME): Use it.
2141         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
2142         Mention new module.
2143         * modules/dirname-tests (Depends-on): Add progname.
2144         * tests/test-dirname.c (program_name): Delete.
2145
2146         mkdir: make safe for libraries
2147         * modules/mkdir (Depends-on): Drop xalloc.
2148         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
2149         exit.
2150
2151         tests: avoid some compiler warnings
2152         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
2153         literals.
2154         * tests/test-memchr.c (main): Avoid type mismatch.
2155         * tests/test-arpa_inet.c (main): Avoid unused parameters.
2156         * tests/test-base64.c (main): Likewise.
2157         * tests/test-getdelim.c (main): Likewise.
2158         * tests/test-gethostname.c (main): Likewise.
2159         * tests/test-getline.c (main): Likewise.
2160         * tests/test-netinet_in.c (main): Likewise.
2161         * tests/test-select.c (open_server_socket, main): Likewise.
2162         * tests/test-select-stdin.c (main): Likewise.
2163         * tests/test-sockets.c (main): Likewise.
2164         * tests/test-strsignal.c (main): Likewise.
2165         * tests/test-sys_select.c (main): Likewise.
2166         * tests/test-sys_socket.c (main): Likewise.
2167         * tests/test-u64.c (main): Likewise.
2168         * tests/test-xfprintf-posix.c (main): Likewise.
2169         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
2170
2171         sockets: avoid compiler warning
2172         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
2173
2174         maint: detect usage(1) and other suspicious exits
2175         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
2176
2177 2009-10-29  Jim Meyering  <meyering@redhat.com>
2178
2179         timespec: long-to-int truncation could make timespec_cmp malfunction
2180         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
2181         a multiple of 2^32 nanoseconds as no difference.
2182
2183 2009-10-28  Jim Meyering  <meyering@redhat.com>
2184
2185         fprintftime: wrap macro code argument in "do {...} while(0)"
2186         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
2187         cpy macro must be a statement that can be followed by a semicolon.
2188         Now that the else clause contains a comment and is hence longer
2189         than one line, I require curly braces.  That in turn requires
2190         that we wrap this code block in the standard do...while(0).
2191
2192         fprintftime: remove stray semicolon from previous change
2193         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
2194
2195         fprintftime: avoid a warning about ignored fwrite return value
2196         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
2197         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
2198         that is unsafe.
2199         * modules/fprintftime (Depends-on): Add ignore-value.
2200
2201         exclude: avoid an unwarranted warning
2202         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
2203
2204 2009-10-27  Eric Blake  <ebb9@byu.net>
2205
2206         fseek: avoid compilation failure when fflush is replaced
2207         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
2208         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
2209         module is in use.
2210         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
2211         module is not in use; since REPLACE_FSEEK worked otherwise.
2212         (GNULIB_FTELLO): Likewise for ftell.
2213         Reported by Ian Beckwith and others.
2214
2215 2009-10-27  Bruno Haible  <bruno@clisp.org>
2216
2217         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
2218         Reported by Jim Meyering.
2219
2220 2009-10-27  Jim Meyering  <jim@meyering.net>
2221             Bruno Haible  <bruno@clisp.org>
2222
2223         Avoid warning despite dropping the return value of fwrite.
2224         * lib/unicodeio.c: Include ignore-value.h.
2225         (fwrite_success_callback): Explicitly ignore fwrite's return value.
2226         * modules/unicodeio (Depends-on): Add ignore-value.
2227
2228 2009-10-26  Eric Blake  <ebb9@byu.net>
2229
2230         areadlinkat: fix fallback path
2231         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
2232         pointer and zero.
2233
2234 2009-10-22  Pádraig Brady  <P@draigBrady.com>
2235
2236         Use a better IO block size for modern systems
2237         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
2238         * lib/md2.c: Likewise.
2239         * lib/md4.c: Likewise.
2240         * lib/md5.c: Likewise.
2241         * lib/sha1.c: Likewise.
2242         * lib/sha256.c: Likewise.
2243         * lib/sha512.c: Likewise.
2244
2245 2009-10-22  Eric Blake  <ebb9@byu.net>
2246
2247         tests: avoid several compiler warnings
2248         * tests/test-getcwd.c (main): Avoid buffer underflow.
2249         * tests/test-getdate.c (main): String literals are not safe with
2250         putenv, so use setenv.  Declare unused argument.
2251         * modules/getdate-tests (Depends-on): Add setenv.
2252         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
2253         problems with string literals in char *.
2254         * tests/test-hash.c (main): Avoid shadowing declaration.
2255         (insert_new): Treat string literals as char const *.
2256         * tests/test-getopt.h (test_getopt): Likewise.
2257         (getopt_loop): Alter types to minimize casting elsewhere.
2258         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
2259         (test_getopt_long_posix): Likewise.
2260         (do_getopt_long): Add wrapper to minimize casting.
2261         * tests/test-atexit.c (clear_temp_file): Use void.
2262         * tests/test-areadlink-with-size.c (main): Declare unused
2263         arguments.
2264         * tests/test-areadlink.c (main): Likewise.
2265         * tests/test-areadlinkat-with-size.c (main): Likewise.
2266         * tests/test-areadlinkat.c (main): Likewise.
2267         * tests/test-canonicalize-lgpl.c (main): Likewise.
2268         * tests/test-canonicalize.c (main): Likewise.
2269         * tests/test-dirent-safer.c (main): Likewise.
2270         * tests/test-dirname.c (main): Likewise.
2271         * tests/test-dup2.c (main): Likewise.
2272         * tests/test-fchdir.c (main): Likewise.
2273         * tests/test-fcntl-h.c (main): Likewise.
2274         * tests/test-fcntl-safer.c (main): Likewise.
2275         * tests/test-fdopendir.c (main): Likewise.
2276         * tests/test-fdutimensat.c (main): Likewise.
2277         * tests/test-fflush.c (main): Likewise.
2278         * tests/test-filenamecat.c (main): Likewise.
2279         * tests/test-filevercmp.c (main): Likewise.
2280         * tests/test-fopen-safer.c (main): Likewise.
2281         * tests/test-fopen.c (main): Likewise.
2282         * tests/test-fpending.c (main): Likewise.
2283         * tests/test-fpurge.c (main): Likewise.
2284         * tests/test-freading.c (main): Likewise.
2285         * tests/test-fstatat.c (main): Likewise.
2286         * tests/test-fsync.c (main): Likewise.
2287         * tests/test-futimens.c (main): Likewise.
2288         * tests/test-getndelim2.c (main): Likewise.
2289         * tests/test-gettimeofday.c (main): Likewise.
2290         * tests/test-getopt.c (main): Likewise.
2291         * tests/test-i-ring.c (main): Likewise.
2292         * tests/test-inttypes.c (main): Likewise.
2293         * tests/test-link.c (main): Likewise.
2294         * tests/test-lstat.c (main): Likewise.
2295         * tests/test-math.c (main): Likewise.
2296         * tests/test-md5.c (main): Likewise.
2297         * tests/test-memchr2.c (main): Likewise.
2298         * tests/test-memrchr.c (main): Likewise.
2299         * tests/test-mkdir.c (main): Likewise.
2300         * tests/test-mkdirat.c (main): Likewise.
2301         * tests/test-mkfifoat.c (main): Likewise.
2302         * tests/test-open.c (main): Likewise.
2303         * tests/test-openat-safer.c (main): Likewise.
2304         * tests/test-openat.c (main): Likewise.
2305         * tests/test-quotearg.c (main): Likewise.
2306         * tests/test-rawmemchr.c (main): Likewise.
2307         * tests/test-readlink.c (main): Likewise.
2308         * tests/test-remove.c (main): Likewise.
2309         * tests/test-rename.c (main): Likewise.
2310         * tests/test-renameat.c (main): Likewise.
2311         * tests/test-rmdir.c (main): Likewise.
2312         * tests/test-sha1.c (main): Likewise.
2313         * tests/test-signal.c (main): Likewise.
2314         * tests/test-sigaction.c (main): Likewise.
2315         * tests/test-stat.c (main): Likewise.
2316         * tests/test-stat-time.c (main): Likewise.
2317         * tests/test-stddef.c (main): Likewise.
2318         * tests/test-stdint.c (main): Likewise.
2319         * tests/test-stdio.c (main): Likewise.
2320         * tests/test-stdlib.c (main): Likewise.
2321         * tests/test-strchrnul.c (main): Likewise.
2322         * tests/test-strerror.c (main): Likewise.
2323         * tests/test-string.c (main): Likewise.
2324         * tests/test-strtod.c (main): Likewise.
2325         * tests/test-strverscmp.c (main): Likewise.
2326         * tests/test-symlink.c (main): Likewise.
2327         * tests/test-symlinkat.c (main): Likewise.
2328         * tests/test-sys_stat.c (main): Likewise.
2329         * tests/test-sys_time.c (main): Likewise.
2330         * tests/test-time.c (main): Likewise.
2331         * tests/test-unistd.c (main): Likewise.
2332         * tests/test-unlink.c (main): Likewise.
2333         * tests/test-unlinkat.c (main): Likewise.
2334         * tests/test-utimens.c (main): Likewise.
2335         * tests/test-utimensat.c (main): Likewise.
2336         * tests/test-version-etc.c (main): Likewise.
2337         * tests/test-wchar.c (main): Likewise.
2338         * tests/test-wctype.c (main): Likewise.
2339         * tests/test-xprintf-posix.c (main): Likewise.
2340         * tests/test-posixtm.c (main): Likewise.
2341         (STREQ): Delete unused macro.
2342         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
2343         shadowed variables.
2344         * tests/test-memchr.c (main): Likewise.
2345
2346 2009-10-21  Eric Blake  <ebb9@byu.net>
2347
2348         areadlinkat: avoid failure on older glibc
2349         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
2350         rather than mis-comparing 0 against FUNC_RESULT of char*.
2351
2352 2009-10-21  Bruno Haible  <bruno@clisp.org>
2353
2354         * modules/stpncpy (License): Relicense under LGPLv2+.
2355         Reported by David Lutterkort <lutter@redhat.com>.
2356
2357 2009-10-20  Eric Blake  <ebb9@byu.net>
2358
2359         utimensat: work around Solaris 9 bug
2360         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
2361         has trailing slash bugs.
2362         * tests/test-lutimens.h (test_lutimens): Enhance test.
2363         * tests/test-utimens.h (test_utimens): Likewise.
2364         * doc/posix-functions/utime.texi (utime): Enhance documentation.
2365         * doc/posix-functions/utimes.texi (utimes): Likewise.
2366         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2367         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
2368         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
2369         * doc/posix-functions/futimens.texi (futimens): Likewise.
2370
2371         fdutimensat: new module
2372         * modules/fdutimensat: New file.
2373         * lib/fdutimensat.c (fdutimensat): Likewise.
2374         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
2375         * MODULES.html.sh (File system functions): Mention module.
2376         * modules/fdutimensat-tests: New test.
2377         * tests/test-fdutimensat.c: Likewise.
2378
2379         doc: regenerate INSTALL
2380         * doc/INSTALL: Reflect recent autoconf update.
2381         * doc/INSTALL.ISO: Likewise.
2382         * doc/INSTALL.UTF-8: Likewise.
2383
2384 2009-10-20  Pádraig Brady  <P@draigBrady.com>
2385
2386         acl: warn if ACL support is not detected
2387         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
2388
2389 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
2390
2391         * lib/nproc.h: Add extern "C" block for C++.
2392
2393 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
2394             Bruno Haible  <bruno@clisp.org>
2395
2396         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
2397         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
2398         * doc/posix-functions/isalpha.texi: Likewise.
2399         * doc/posix-functions/isblank.texi: Likewise.
2400         * doc/posix-functions/iscntrl.texi: Likewise.
2401         * doc/posix-functions/isdigit.texi: Likewise.
2402         * doc/posix-functions/isgraph.texi: Likewise.
2403         * doc/posix-functions/islower.texi: Likewise.
2404         * doc/posix-functions/isprint.texi: Likewise.
2405         * doc/posix-functions/ispunct.texi: Likewise.
2406         * doc/posix-functions/isspace.texi: Likewise.
2407         * doc/posix-functions/isupper.texi: Likewise.
2408         * doc/posix-functions/isxdigit.texi: Likewise.
2409
2410 2009-10-18  Bruno Haible  <bruno@clisp.org>
2411
2412         Tests for module 'isblank'.
2413         * modules/isblank-tests: New file.
2414         * tests/test-isblank.c: New file.
2415
2416         New module 'isblank'.
2417         * lib/isblank.c: New file.
2418         * m4/isblank.m4: New file.
2419         * modules/isblank: New file.
2420         * doc/posix-functions/isblank.texi: Mention the new module.
2421
2422 2009-10-18  Bruno Haible  <bruno@clisp.org>
2423
2424         New module 'ctype'.
2425         * lib/ctype.in.h: New file.
2426         * m4/ctype.m4: New file.
2427         * modules/ctype: New file.
2428         * doc/posix-headers/ctype.texi: Mention the new module.
2429
2430 2009-10-18  Jim Meyering  <meyering@redhat.com>
2431
2432         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
2433         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
2434         right after its initialization, rather than farther down.
2435         Keeping these in close proximity makes it easier to ensure
2436         that each such variable is initialized.  E.g.,
2437
2438             LIB_CLOCK_GETTIME=
2439             AC_SUBST([LIB_CLOCK_GETTIME])
2440
2441         This change also increments these serial numbers.
2442         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
2443         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2444         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2445
2446 2009-10-18  Bruno Haible  <bruno@clisp.org>
2447
2448         Don't let environment variables perturb build.
2449         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
2450         (gl_PREREQ_GETHRXTIME): ... not here.
2451
2452 2009-10-18  Bruno Haible  <bruno@clisp.org>
2453
2454         Avoid symlink attack in localcharset module.
2455         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
2456         (O_NOFOLLOW): Define fallback.
2457         (get_charset_aliases): Don't open the file if it is a symbolic link.
2458         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
2459         gl_FCNTL_H.
2460         (gl_FCNTL_H): Require it.
2461         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
2462         * modules/localcharset (Files): Add m4/fcntl_h.m4.
2463         Reported by Fergal Glynn <fglynn@veracode.com>.
2464
2465 2009-10-18  Bruno Haible  <bruno@clisp.org>
2466
2467         Implement nproc for mingw.
2468         * lib/nproc.c: Include <windows.h>
2469         (num_processors): On native Windows platforms, try GetSystemInfo.
2470
2471 2009-10-18  Bruno Haible  <bruno@clisp.org>
2472
2473         Implement nproc for IRIX.
2474         * lib/nproc.c: Include <sys/sysmp.h>.
2475         (num_processors): On IRIX systems, try sysmp.
2476         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
2477
2478 2009-10-18  Bruno Haible  <bruno@clisp.org>
2479
2480         Implement nproc for HP-UX.
2481         * lib/nproc.c: Include <sys/pstat.h>
2482         (num_processors): On HP-UX systems, try pstat_getdynamic.
2483         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
2484         pstat_getdynamic.
2485
2486 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
2487             Bruno Haible  <bruno@clisp.org>
2488
2489         Implement nproc for NetBSD, OpenBSD.
2490         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
2491         (ARRAY_SIZE): New macro.
2492         (num_processors): On BSD systems, try sysctl of HW_NCPU.
2493         * m4/nproc.m4: New file.
2494         * modules/nproc (Files): Add m4/nproc.m4.
2495         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
2496         (Makefile.am): Instead, augment lib_SOURCES.
2497
2498 2009-10-18  Bruno Haible  <bruno@clisp.org>
2499
2500         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
2501         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
2502         sys/param.h.
2503
2504 2009-10-16  Eric Blake  <ebb9@byu.net>
2505
2506         utimensat: new module
2507         * modules/utimensat: New file.
2508         * lib/utimensat.c (utimensat): Likewise.
2509         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
2510         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
2511         so we can work around Linux bugs.
2512         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2513         * modules/sys_stat (Makefile.am): Substitute them.
2514         * lib/sys_stat.in.h (utimensat): Declare it.
2515         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2516         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2517         * modules/utimensat-tests: New test.
2518         * tests/test-utimensat.c: Likewise.
2519
2520         utimens: let lutimens work on non-symlinks
2521         * lib/utimens.c (lutimens): Fall back to utimens rather than
2522         failing with ENOSYS, when file is not a symlink.
2523         (utimens): Reduce redirection.
2524         * tests/test-lutimens.h (test_lutimens): Update test to cover
2525         non-symlinks.
2526         * tests/test-utimens.h (test_utimens): Update test to cover
2527         symlinks.
2528         * tests/test-utimens.c (main): Update caller.
2529
2530         utimens: cache whether utimensat syscall works
2531         * lib/utimens.c (utimensat_works_really): New cache variable.
2532         (fdutimens, lutimens): Use it to avoid failing syscall.
2533
2534         test-stat-time, test-utimens: improve portability
2535         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
2536         ext4 on alpha, and for cygwin.
2537         * tests/test-utimens-common.h: New file.
2538         (nap): Factor delays into single function.
2539         * tests/test-lutimens.h (test_lutimens): Use new header.
2540         * tests/test-futimens.h (test_futimens): Likewise.
2541         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
2542         timestamps to occur from same machine, as was done previously for
2543         test_utimens.
2544         * modules/utimens-tests (Files): Ship new file.
2545         * modules/futimens-tests (Files): Likewise.
2546         Reported in part by Jim Meyering.
2547
2548         sys_stat: sort replacement declarations
2549         * lib/sys_stat.in.h: Sort declarations.
2550         * lib/futimens.c (futimens): Fix typo.
2551
2552 2009-10-15  Jim Meyering  <meyering@redhat.com>
2553
2554         don't let environment settings perturb build
2555         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
2556         could cause a configure-time and/or build-time malfunction.
2557         Typically, a configure-time function-in-library test is performed
2558         via code like this:
2559
2560           LIB_VAR=
2561           AC_SUBST([LIB_VAR])
2562           prefix_saved_LIBS=$LIBS
2563             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
2564                        [test "$ac_cv_search_FUNC" = "none required" ||
2565                         LIB_VAR=$ac_cv_search_FUNC])
2566           LIBS=$prefix_saved_LIBS
2567
2568         However, in each of the files affected by this change, the LIB_VAR=
2569         initialization was omitted.  Thus, when set in the environment, its
2570         value would propagate into generated Makefiles when FUNC is not found
2571         in LIB_NAME.
2572         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
2573         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2574         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2575
2576 2009-10-14  Eric Blake  <ebb9@byu.net>
2577
2578         fchdir: avoid infinite recursion in mingw
2579         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
2580         recursing.
2581
2582         test-stat-time: port to mingw
2583         * tests/test-stat-time.c (force_unlink): Return a value.
2584         (test_ctime) [W32]: Fix compilation error.
2585         (nap): Don't call usleep with too large an argument.  Use
2586         force_unlink.
2587         * doc/pastposix-functions/usleep.texi (usleep): Document the
2588         portability issue.
2589
2590 2009-10-13  Jim Meyering  <meyering@redhat.com>
2591
2592         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
2593         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
2594         * modules/pipe-filter-ii: Likewise.
2595         * modules/sys_socket-tests: Likewise.
2596         * modules/tsearch-tests: Likewise.
2597         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
2598         (check): Depend on it.
2599
2600 2009-10-12  Eric Blake  <ebb9@byu.net>
2601
2602         utimens-tests: port to NFS file systems
2603         * tests/test-utimens.h (test_utimens): Refactor utimecmp
2604         comparisons to avoid spurious failures from timestamp drift
2605         between NFS machines.
2606
2607 2009-10-12  Eric Blake  <ebb9@byu.net>
2608
2609         stat-time-tests: minor cleanups
2610         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
2611         * tests/test-stat-time.c (nap): Separate assignment from call.
2612         Suggested by Paolo Bonzini and Bruno Haible.
2613
2614         sys_stat: guarantee struct timespec
2615         * lib/sys_stat.in.h (includes): Always include <time.h>
2616         * modules/sys_stat (Depends-on): Add time.
2617         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
2618         mode_t permission values.
2619         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
2620         get at subsecond timestamps.
2621
2622 2009-10-10  Eric Blake  <ebb9@byu.net>
2623
2624         futimens: new module
2625         * modules/futimens: New file.
2626         * lib/futimens.c (futimens): Likewise.
2627         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
2628         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
2629         we can work around Linux bugs.
2630         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2631         * modules/sys_stat (Makefile.am): Substitute them.
2632         * lib/sys_stat.in.h (futimens): Declare it.
2633         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2634         * doc/posix-functions/futimens.texi (futimens): Likewise.
2635         * modules/futimens-tests: New test.
2636         * tests/test-futimens.c: Likewise.
2637
2638         utimens: introduce fdutimens
2639         * lib/utimens.h (fdutimens): New prototype.
2640         * lib/utimens.c (gl_futimens): Move guts...
2641         (fdutimens): ...to new interface.
2642         * tests/test-utimens.c (do_fdutimens): Use it.
2643
2644         utimens: add UTIME_NOW and UTIME_OMIT support
2645         * lib/utimens.c (validate_timespec, update_timespec): New helper
2646         functions.
2647         (gl_futimens, lutimens): Use them.
2648         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
2649         stdbool, sys_stat.
2650         (Link): Mention resulting library dependency.
2651         * modules/utimecmp (Link): Likewise.
2652         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
2653         (Makefile.am): Pick up library dependency.
2654         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
2655         definition.
2656         * tests/test-sys_stat.c: Test the definitions.
2657         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
2658         * NEWS: Document library dependency.
2659
2660         utimecmp: support symlink timestamps
2661         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
2662         hashing when possible.  Use pathconf when available.
2663         (SYSCALL_RESOLUTION): Recognize tighter resolution.
2664         * modules/utimecmp (Depends-on): Add lstat.
2665
2666         utimens: add lutimens interface
2667         * lib/utimens.c (lutimens): New function.
2668         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
2669         * lib/utimens.h (lutimens): Declare new interface.
2670         * tests/test-utimens.c (main): Enhance test.
2671         * tests/test-lutimens.h (test_lutimens): New file.
2672         * modules/utimens-tests (Files): Distribute it.
2673         (Depends-on): Add symlink.
2674         (configure.ac): Check for usleep.
2675
2676         utimens: validate futimens usage
2677         * lib/utimens.c (gl_futimens): Require valid fd up front, using
2678         fewer syscalls on failure later on.  Avoid compiler warning on
2679         mingw.
2680         * modules/utimens (Depends-on): Add dup2.
2681
2682         utimens: add test
2683         * modules/utimens-tests: New test.
2684         * tests/test-utimens.h: New file.
2685         * tests/test-futimens.h: Likewise.
2686         * tests/test-utimens.c: Likewise.
2687
2688         doc: mention timestamp portability issues
2689         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
2690         instead.
2691         * doc/posix-functions/utime.texi (utime): Likewise.
2692         * doc/posix-functions/utimes.texi (utimes): Likewise.
2693         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
2694         instead.
2695         * doc/posix-functions/futimens.texi (futimens): Mention utimens
2696         module.
2697         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2698         Mention weakness with symlink timestamps.
2699         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
2700         to utimensat/futimens instead.
2701         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
2702
2703         test-dup2: enhance test
2704         * tests/test-dup2.c (main): Also check AT_FDCWD.
2705
2706         test-stat-time: avoid more spurious failures
2707         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
2708         xfs; and avoid race if the two timestamps cross quantization edge.
2709
2710         relocatable: prefer 'file system' over 'filesystem'
2711         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
2712         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
2713         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
2714         * doc/relocatable.texi (Enabling Relocatability): Likewise.
2715         * lib/relocatable.c (compute_curr_prefix): Likewise.
2716
2717 2009-10-10  Jim Meyering  <meyering@redhat.com>
2718
2719         stat-time-tests: check for the usleep function
2720         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
2721
2722 2009-10-10  Bruno Haible  <bruno@clisp.org>
2723
2724         * modules/xnanosleep: Put the Link section after the Include section.
2725
2726 2009-10-09  Eric Blake  <ebb9@byu.net>
2727
2728         dup2: work around FreeBSD 6.1 bug
2729         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
2730         * doc/posix-functions/dup2.texi (dup2): Document it.
2731         Reported by Nelson H. F. Beebe and Jim Meyering.
2732
2733         test-stat-time: port to buggy NFS clients
2734         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
2735         (test_ctime): Also skip test if mtime and ctime are skewed.
2736
2737         maint: prefer 'file system' over 'filesystem'
2738         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
2739         * doc/posix-functions/lstat.texi (lstat): Likewise.
2740         * lib/file-has-acl.c (file_has_acl): Likewise.
2741         * lib/fwriteerror.c [TEST]: Likewise.
2742         * tests/test-areadlink.h (test_areadlink): Likewise.
2743         * tests/test-areadlinkat-with-size.c (main): Likewise.
2744         * tests/test-areadlinkat.c (main): Likewise.
2745         * tests/test-canonicalize-lgpl.c (main): Likewise.
2746         * tests/test-canonicalize.c (main): Likewise.
2747         * tests/test-fstatat.c (main): Likewise.
2748         * tests/test-linkat.c (main): Likewise.
2749         * tests/test-lstat.h (test_lstat_func): Likewise.
2750         * tests/test-mkdir.h (test_mkdir): Likewise.
2751         * tests/test-readlink.h (test_readlink): Likewise.
2752         * tests/test-remove.c (main): Likewise.
2753         * tests/test-rename.h (test_rename): Likewise.
2754         * tests/test-renameat.c (main): Likewise.
2755         * tests/test-rmdir.h (test_rmdir_func): Likewise.
2756         * tests/test-symlink.h (test_symlink): Likewise.
2757         * tests/test-symlinkat.c (main): Likewise.
2758         * tests/test-unlink.h (test_unlink_func): Likewise.
2759         * tests/test-unlinkat.c (main): Likewise.
2760
2761         maint: make realtime library usage explicit
2762         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
2763         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
2764         * modules/settime (Link): Likewise.
2765         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
2766
2767         test-stat-time: speed up execution
2768         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
2769         warning on mingw.
2770         (nap): New helper function.
2771         (prepare_test): Use it to reduce sleep time.
2772         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
2773         execution.
2774         * modules/stat-time-tests (configure.ac): Check for usleep.
2775
2776 2009-10-09  Jim Meyering  <meyering@redhat.com>
2777
2778         selinux-h: always use getfilecon wrappers
2779         * lib/getfilecon.c: New file.
2780         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
2781         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
2782         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
2783         (fgetfilecon): Provide a stub.
2784         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
2785         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
2786         file unconditionally.
2787         When <selinux/selinux.h> is found, arrange to use wrappers.
2788         * modules/selinux-h (Files): Add getfilecon.c.
2789         (Makefile.am): Substitute include-next-related bits
2790         into the now-always-generated selinux/selinux.h file.
2791         * doc/glibc-functions/lgetfilecon.texi: New file.
2792         * doc/glibc-functions/fgetfilecon.texi: New file.
2793         * doc/glibc-functions/getfilecon.texi: New file.
2794         * doc/glibc-functions/getfilecon-desc.texi: New file.
2795         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
2796         which to pull in the new files.
2797         * MODULES.html.sh (Misc): Add selinux-h.
2798
2799 2009-10-08  Jim Meyering  <meyering@redhat.com>
2800
2801         unistd: fix comment typo
2802         * lib/unistd.in.h (euidaccess): Fix a comment typo.
2803
2804 2009-10-08  Eric Blake  <ebb9@byu.net>
2805
2806         areadlink: use SIZE_MAX consistently
2807         * modules/areadlink (Depends-on): Add stdint.
2808         * modules/areadlink-with-size (Depends-on): Likewise.
2809         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
2810         gives NULL; drop sys/types, since unistd gives size_t; and add
2811         stdint for SIZE_MAX.
2812         (SIZE_MAX): Rely on headers.
2813         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
2814         and add stdint.
2815         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
2816         (SIZE_MAX): Likewise.
2817         (INITIAL_BUF_SIZE): Turn into enum.
2818         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
2819
2820 2009-10-08  Jim Meyering  <meyering@redhat.com>
2821
2822         areadlinkat: avoid compilation failure
2823         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
2824         Fix typo in comment.
2825
2826 2009-10-07  Eric Blake  <ebb9@byu.net>
2827
2828         areadlinkat-with-size: new module
2829         * modules/areadlinkat-with-size: New module.
2830         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
2831         * lib/areadlink.h (areadlinkat): Declare it.
2832         * MODULES.html.sh (File system functions): Mention it.
2833         * modules/areadlinkat-with-size-tests: New test.
2834         * tests/test-areadlinkat-with-size.c: New file.
2835
2836         xreadlinkat: new module
2837         * modules/xreadlinkat: New module.
2838         * lib/xreadlinkat.c (xreadlinkat): New file.
2839         * lib/xreadlink.h (xreadlinkat): Declare it.
2840         * MODULES.html.sh (File system functions): Mention it.
2841
2842         areadlinkat: new module
2843         * lib/at-func.c (FUNC_FAIL): New define.
2844         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
2845         * modules/areadlinkat: New module.
2846         * lib/linkat.c (areadlinkat): Move...
2847         * lib/areadlinkat.c (areadlinkat): ...to new file.
2848         * lib/areadlink.h (areadlinkat): Declare it.
2849         * modules/linkat (Depends-on): Add areadlinkat.
2850         * MODULES.html.sh (File system functions): Mention it.
2851         * modules/areadlinkat-tests: New test.
2852         * tests/test-areadlinkat.c: New file.
2853
2854         areadlink, areadlink-with-size: add tests
2855         * modules/areadlink-tests: New test.
2856         * modules/areadlink-with-size-tests: Likewise.
2857         * tests/test-areadlink.h: New file.
2858         * tests/test-areadlink.c: Likewise.
2859         * tests/test-areadlink-with-size.c: Likewise.
2860
2861         maint: minor cleanups
2862         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
2863         _UNUSED_PARAMETER_ instead.
2864         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
2865         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
2866         * modules/linkat-tests (Files): Distribute test-link.h.
2867
2868         openat, utimens: whitespace cleanup
2869         * lib/openat.c: Prefer space throughout, rather than mix of 8
2870         spaces vs. tabs.
2871         * lib/at-func.c: Likewise.
2872         * lib/utimens.c: Likewise.
2873
2874         openat: avoid using wrong fd
2875         * lib/openat.c (openat_permissive): Reject user's fd if saving the
2876         working directory chooses same fd.
2877         * lib/at-func.c (AT_FUNC_NAME): Likewise.
2878
2879         mkdir, mkdirat: fix cygwin 1.5.x bug
2880         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
2881         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
2882         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
2883         bug.
2884         (gl_PREREQ_MKDIR): Delete unused macro.
2885         * modules/mkdir (Files): Track file rename.
2886         (configure.ac): Update macro name.
2887         * modules/openat (Depends-on): Add mkdir.
2888         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
2889
2890         mkdir, mkdirat: add tests
2891         * modules/mkdir-tests: New test.
2892         * tests/test-mkdir.h: New file.
2893         * tests/test-mkdir.c: Likewise.
2894         * tests/test-mkdirat.c: Likewise.
2895         * modules/openat-tests (Files): Add new files.
2896         (Makefile.am): Run new test.
2897
2898 2009-10-06  Eric Blake  <ebb9@byu.net>
2899
2900         doc: tweak *at function documentation
2901         * doc/posix-functions/faccessat.texi (faccessat): Mention
2902         known issue with replacement.
2903         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
2904         * doc/posix-functions/linkat.texi (linkat): Likewise.
2905         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
2906         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
2907         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
2908         * doc/posix-functions/renameat.texi (renameat): Likewise.
2909         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
2910
2911         openat: fix GNU/Hurd bug in unlinkat
2912         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
2913         broken.
2914         * doc/posix-functions/unlink.texi (unlink): Document this.
2915         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
2916
2917         fdopendir: fix GNU/Hurd bug
2918         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
2919         allowing non-directory fds.
2920         * lib/fdopendir.c (rpl_fdopendir): Work around it.
2921         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
2922         * modules/dirent (Makefile.am): Substitute it.
2923         * lib/dirent.in.h (fdopendir): Declare replacement.
2924         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
2925         * tests/test-fdopendir.c (main): Test something other than
2926         /dev/null, since on Hurd that behaves like a directory.
2927
2928         test-symlink: port to GNU/Hurd
2929         * tests/test-symlink.h (test_symlink): Relax expected errno.
2930
2931         doc: tweak more cygwin information
2932         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
2933         now compatible with glibc.
2934         * doc/posix-functions/getopt.texi (getopt): Likewise.
2935
2936         getopt-gnu: add another test
2937         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
2938         guarantee behavior relied on by m4.
2939         * tests/test-getopt.c (main): Use it.
2940         * modules/getopt-posix-tests (Depends-on): Add setenv.
2941         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
2942
2943         getopt: fix compilation on darwin
2944         * lib/getopt.in.h (includes): Leave breadcrumbs during system
2945         include.
2946         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
2947         Reported by Ludovic Courtès.
2948
2949 2009-10-06  Bruno Haible  <bruno@clisp.org>
2950
2951         * modules/size_max (Description): Discourage its use.
2952         Reported by Simon Josefsson.
2953
2954 2009-10-06  Jim Meyering  <meyering@redhat.com>
2955
2956         linkat: avoid compilation failure
2957         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
2958
2959 2009-10-05  Eric Blake  <ebb9@byu.net>
2960
2961         linkat: support Linux 2.6.17
2962         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
2963         linkat on Linux, but allow cache variable override.
2964         * lib/linkat.c (rpl_linkat): Define override.
2965         * modules/linkat (Depends-on): Add symlinkat.
2966         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
2967         * modules/unistd (Makefile.am): Substitute it.
2968         * lib/unistd.in.h (linkat): Declare replacement.
2969         Reported by Pádraig Brady.
2970
2971         quotearg: port test to systems with C.UTF-8 locale
2972         * tests/test-quotearg.c (struct result_strings): Add another
2973         member, differentiating between C.ASCII and C.UTF-8 handling.
2974         (compare_strings): Add parameter.
2975         (main): Adjust all callers.
2976
2977         getopt: avoid clash with FreeBSD _getopt_internal
2978         * lib/getopt.in.h (_getopt_internal): Override the name.
2979         * lib/getopt_int.h (includes): Pick up any overrides.
2980         Reported by Reuben Thomas.
2981
2982         hash: allow C89 compilation
2983         * lib/hash.c (check_tuning): Move declaration before statement.
2984         Reported by Reuben Thomas.
2985
2986 2009-10-05  Karl Berry  <karl@gnu.org>
2987
2988         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
2989
2990 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
2991             Bruno Haible  <bruno@clisp.org>
2992
2993         * lib/uname.c (uname): Use a table-driven algorithm to compute
2994         Windows NT versions.
2995
2996 2009-10-04  Bruno Haible  <bruno@clisp.org>
2997
2998         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
2999         program_invocation_short_name.
3000         * modules/progname (configure.ac): Test for presence of
3001         program_invocation_short_name.
3002         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
3003
3004 2009-10-04  Bruno Haible  <bruno@clisp.org>
3005
3006         * lib/progname.c (set_program_name): Fix comment.
3007         Reported by Jim Meyering.
3008
3009 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3010             Bruno Haible  <bruno@clisp.org>
3011
3012         * lib/uname.c: Include <string.h>.
3013         (uname): Do only one call to GetVersionEx in the common case.
3014
3015 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3016             Bruno Haible  <bruno@clisp.org>
3017
3018         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
3019         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
3020         (uname): Add support for Windows CE and various non-x86 CPU types.
3021
3022 2009-10-03  Bruno Haible  <bruno@clisp.org>
3023
3024         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
3025         invocation to tests/configure.ac.
3026         Reported by Ian Beckwith <ianb@erislabs.net>.
3027
3028 2009-10-02  Eric Blake  <ebb9@byu.net>
3029
3030         fchdir: avoid compiler warning
3031         * lib/fchdir.c (canonicalize_file_name)
3032         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
3033
3034         test-open: support mingw errno values
3035         * tests/test-open.h (test_open): Relax test.
3036         * tests/test-fopen.h (test_fopen): Likewise.
3037         * tests/test-openat-safer.c (main): Likewise.
3038
3039         open: fix opening directory on mingw
3040         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
3041
3042         test-open: on GNU/Hurd, /dev/null is a directory
3043         * tests/test-fopen.h (main): Rename...
3044         (test_fopen): ...to this.  Use a guaranteed non-directory when
3045         confirming open behavior on trailing slash.
3046         * tests/test-openat-safer.c (main): Likewise.
3047         * tests/test-open.h (main): Likewise....
3048         (test_open): ...to this.
3049         * tests/test-fopen.c (main): Adjust caller.
3050         * tests/test-fopen-safer.c (main): Likewise.
3051         * tests/test-open.c (main): Likewise.
3052         * tests/test-fcntl-safer.c (main): Likewise.
3053         Reported by Samuel Thibault.
3054
3055         rename, fchdir: don't ignore chdir failure
3056         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
3057         * lib/rename.c (rpl_rename) [W32]: Likewise.
3058         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
3059         an empty destination directory if source cannot be renamed,
3060         although there is still possibility for failure.
3061         * doc/posix-functions/rename.texi (rename): Document the race.
3062         Reported by Jim Meyering.
3063
3064         maint: cleanup whitespace in recent commits
3065         * lib/rename.c (rpl_rename): Remove tabs.
3066         * tests/test-link.h (test_link): Likewise.
3067         * lib/fchdir.c (get_name): Likewise.
3068         Reported by Jim Meyering.
3069
3070 2009-10-02  Ben Pfaff  <blp@gnu.org>
3071
3072         relocatable-prog-wrapper: Add missing dependency on
3073         double-slash-root.
3074         * modules/relocatable-prog-wrapper: Add dependency.
3075         Reported by Ian Beckwith <ianb@erislabs.net>.
3076
3077 2009-10-02  Eric Blake  <ebb9@byu.net>
3078
3079         renameat: fix Solaris bugs
3080         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
3081         needed fixing.
3082         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
3083         * modules/stdio (Makefile.am): Substitute it.
3084         * lib/stdio.in.h (renameat): Declare replacement.
3085         * lib/renameat.c (rpl_renameat): Implement fix.
3086
3087         renameat: new module
3088         * modules/renameat: New file.
3089         * lib/renameat.c (renameat): Likewise.
3090         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
3091         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3092         * modules/stdio (Makefile.am): Substitute them.
3093         * lib/stdio.in.h (renameat): Declare it.
3094         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3095         * doc/posix-functions/renameat.texi (renameat): Likewise.
3096         * modules/renameat-tests: New test.
3097         * tests/test-renameat.c: Likewise.
3098
3099         rename: fix mingw bugs
3100         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
3101         directory overwrite bugs.
3102
3103         rename: fix another cygwin 1.5 bug
3104         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
3105         checks.
3106         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
3107         unnecessary cygwin workarounds.  Also work around bug with moving
3108         full directory onto an empty one.
3109         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
3110
3111         rename-dest-slash: merge into rename module
3112         * modules/rename-dest-slash (Status): Mark obsolete.
3113         (Depends-on): Add rename.
3114         (Files): Let rename do it all.
3115         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
3116         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
3117         * m4/rename-dest-slash.m4: ...so this file can be deleted.
3118         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
3119         * lib/rename.c (rpl_rename): Update comments.
3120
3121         rename: fix cygwin 1.5.x bugs
3122         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
3123         * lib/rename.c (rpl_rename): Work around them.
3124         * modules/rename (Depends-on): Add same-inode.
3125
3126         rename: fix Solaris 10 bug
3127         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3128         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
3129         was the only bug.
3130
3131         rename: fix Solaris 9 bug
3132         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
3133         on non-directory.  Avoid calling exit.
3134         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
3135         strdup.
3136         * modules/rename-tests (Depends-on): Drop lstat.
3137         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3138         (gl_PREREQ_RENAME): Delete unused macro.
3139
3140         rename-dest-slash: fix NetBSD bug
3141         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
3142         links.
3143         * modules/rename-dest-slash (Depends-on): Add same-inode.
3144
3145         rename-tests: new test, exposes several platform bugs
3146         * modules/rename-tests: New file.
3147         * tests/test-rename.h: Likewise.
3148         * tests/test-rename.c: Likewise.
3149         * doc/posix-functions/rename.texi (rename): Improve documentation,
3150         including bugs that will eventually be fixed in gnulib.
3151
3152 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
3153
3154         * lib/uname.c: Include <stdlib.h>
3155         (uname): Assume version info is available.
3156
3157 2009-10-02  Jim Meyering  <meyering@redhat.com>
3158
3159         gnu-web-doc-update: correct --help output
3160         * build-aux/gnu-web-doc-update: Make --help output relevant.
3161
3162         gnu-web-doc-update: add standard options
3163         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
3164
3165         gnu-web-doc-update: New module.
3166         Use this script to automatically update the on-line web documentation
3167         for your GNU project at http://www.gnu.org/software/$pkg/manual/
3168         * modules/gnu-web-doc-update: New file, from coreutils.
3169         * build-aux/gnu-web-doc-update: New script.
3170
3171 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
3172
3173         link: LoadLibrary is not needed.
3174         * lib/link.c: Use GetModuleHandle.
3175
3176 2009-10-01  Eric Blake  <ebb9@byu.net>
3177
3178         getopt: bump serial number
3179         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
3180         change.
3181
3182         tests: tighten link, rmdir, and remove tests
3183         * tests/test-link.h (includes): No need to use <config.h> here.
3184         Clean up if directory hard link was created, otherwise test for
3185         trailing '.'.
3186         * tests/test-linkat.c (main): Simplify.
3187         * tests/test-remove.c (main): Enhance test for trailing '.'.
3188         * tests/test-rmdir.h (test_rmdir_func): Likewise.
3189
3190 2009-10-01  Jim Meyering  <meyering@redhat.com>
3191
3192         maint.mk: requiring "make major" was annoying, for a "minor" release.
3193         What is intended is "stable", to contrast with alpha and beta,
3194         so require "make stable", not "make major".
3195         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
3196         (get_tool_versions): Likewise.
3197         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
3198
3199 2009-09-30  Ben Pfaff  <blp@gnu.org>
3200
3201         Fix broken build of replacement for Windows tmpfile().
3202         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
3203         flags argument added along with the 'mkostemp' module.
3204
3205 2009-09-28  Bruno Haible  <bruno@clisp.org>
3206
3207         Avoid identifier clash with POSIX function 'remove' defined as a macro.
3208         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
3209         to 'remove_elt'.
3210         (gl_list_remove): Update.
3211         * lib/gl_list.c (gl_list_remove): Update.
3212         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
3213         to 'remove_elt'.
3214         (gl_oset_remove): Update.
3215         * lib/gl_list.c (gl_oset_remove): Update.
3216         Reported by Eric Blake.
3217
3218 2009-09-28  Eric Blake  <ebb9@byu.net>
3219
3220         doc: mention yet more cygwin 1.7 status
3221         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
3222         cygwin.
3223         * doc/glibc-functions/execvpe.texi (execvpe): New file.
3224         * doc/gnulib.texi (Glibc unistd.h): Mention it.
3225
3226         argp: fix test failure
3227         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
3228         that are not upper-case.  Pass correct range to tolower.
3229
3230 2009-09-27  Jim Meyering  <meyering@redhat.com>
3231
3232         test-yesno: work around sparc-dash here-document infelicity
3233         Without this change, the literal \177 byte in a here document
3234         would make dash 0.5.5.1-3 access uninitialized memory.
3235         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
3236         Instead, use a marker, "@", and filter through tr to create the desired
3237         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
3238
3239 2009-09-27  Bruno Haible  <bruno@clisp.org>
3240
3241         Disable untested support for new flavours of ACLs on AIX.
3242         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
3243         progress.
3244         * lib/set-mode-acl.c (qset_acl): Likewise.
3245
3246 2008-12-07  Bruno Haible  <bruno@clisp.org>
3247
3248         Add support for new flavours of ACLs on AIX. (Untested.)
3249         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
3250         (file_has_acl): Add support for newer AIX.
3251         * lib/set-mode-acl.c (qset_acl): Likewise.
3252         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
3253         Rainer Tammer <tammer@tammer.net>.
3254
3255 2009-09-26  Eric Blake  <ebb9@byu.net>
3256
3257         argp: fix compilation of getopt
3258         * lib/getopt.in.h (includes): Use different guard than glibc.
3259         Reported by Sergey Poznyakoff.
3260
3261         doc: mention more cygwin 1.7 status
3262         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
3263         bug.
3264         * doc/posix-functions/execl.texi (execl): Likewise.
3265         * doc/posix-functions/execle.texi (execle): Likewise.
3266         * doc/posix-functions/execlp.texi (execlp): Likewise.
3267         * doc/posix-functions/execv.texi (execv): Likewise.
3268         * doc/posix-functions/execve.texi (execve): Likewise.
3269         * doc/posix-functions/execvp.texi (execvp): Likewise.
3270         * doc/glibc-functions/canonicalize_file_name.texi
3271         (canonicalize_file_name): Cygwin 1.7 now provides this.
3272         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
3273         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
3274         on AT_SYMLINK_NOFOLLOW.
3275
3276 2009-09-24  Eric Blake  <ebb9@byu.net>
3277
3278         test-linkat: make test more robust
3279         * tests/test-linkat.c (main): Avoid collision with EEXIST.
3280
3281         getopt: fix inclusion guards for cygwin
3282         * modules/getopt-posix (Depends-on): Add include-next.
3283         (Makefile.am): Substitute more items in replacement header.
3284         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
3285         <getopt.h>.
3286         * lib/getopt.in.h (includes): Use split inclusion guard, and
3287         prefer <getopt.h> over include <unistd.h> when one is present.
3288         (option): Also override name of 'struct option'.
3289
3290         same-inode: revert prior change; it is not yet ready
3291         * NEWS: Undo mention of this change.
3292         * lib/same-inode.h (same-inode.h): Undo tri-state change.
3293         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3294         * lib/cycle-check.c (cycle_check): Likewise.
3295         * lib/same.c (same_name): Likewise.
3296         * lib/at-func2.c (at_func2): Likewise.
3297
3298 2009-09-23  Eric Blake  <ebb9@byu.net>
3299
3300         linkat: new module
3301         * modules/linkat: New file.
3302         * lib/at-func2.c (at_func2): Likewise.
3303         * lib/linkat.c (linkat): Likewise.
3304         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
3305         * lib/openat-priv.h (at_func2): Add declaration.
3306         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3307         * modules/unistd (Makefile.am): Substitute them.
3308         * lib/unistd.in.h (linkat): Declare it.
3309         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3310         * doc/posix-functions/linkat.texi (linkat): Likewise.
3311         * doc/posix-functions/link.texi (link): Tweak wording.
3312         * tests/test-link.c (main): Move guts...
3313         * tests/test-link.h (test_link): ...into new file.
3314         * modules/linkat-tests: New test.
3315         * tests/test-linkat.c: Likewise.
3316         * modules/link-tests (Files): Ship new file.
3317         (Depends-on): Add stdbool.
3318
3319         dirname: add library-safe mdir_name
3320         * lib/dirname.h (mdir_name): New prototype.
3321         * lib/dirname.c (dir_name): Move guts...
3322         (mdir_name): ...to new function that avoids xalloc_die.
3323
3324         fchdir: another mingw fix
3325         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
3326         * lib/fchdir.c (get_name): New helper method; skips canonicalize
3327         on mingw (where it has not yet been ported), and make it optional
3328         elsewhere.
3329         (_gl_register_fd): Use it.
3330
3331         same-inode: make SAME_INODE tri-state, to port to mingw
3332         * NEWS: Mention this change.
3333         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
3334         st_ino always being 0.
3335         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3336         * lib/cycle-check.c (cycle_check): Likewise.
3337         * lib/same.c (same_name): Likewise.
3338
3339         lstat: avoid mingw compilation error
3340         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
3341         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
3342         lstat ourselves.
3343         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
3344         was adequate.
3345         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
3346         the checks for lstat.
3347         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
3348
3349         link: fix test failure on Solaris 9
3350         * lib/link.c (rpl_link): Don't assume link will catch bogus
3351         trailing slash on source.
3352
3353         test-symlinkat: enhance test
3354         * tests/test-readlink.c (main): Move guts...
3355         * tests/test-readlink.h (test_readlink): ...into new file.
3356         * tests/test-symlink.c (main): Move guts...
3357         * tests/test-symlink.h (test_symlink): ...into new file.
3358         * tests/test-symlinkat.c (main): Use new files for further
3359         coverage.
3360         (do_symlink, do_readlink): New helper functions.
3361         * modules/symlink-tests (Files): Ship new file.
3362         (Depends-on): Add stdbool.
3363         * modules/readlink-tests (Files): Ship new file.
3364         (Depends-on): Add stdbool.
3365         * modules/symlinkat-tests (Files): Use new files.
3366
3367 2009-09-23  Eric Blake  <ebb9@byu.net>
3368
3369         readlink: document portability issue with symlink length
3370         * doc/posix-functions/lstat.texi (lstat): Mention that some file
3371         systems have bogus st_size on symlinks, and mention the
3372         areadlink-with-size module.
3373         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
3374         * doc/posix-functions/readlink.texi (readlink): Mention the
3375         areadlink module, and ERANGE failure.
3376         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3377         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
3378
3379         readlink: fix Solaris 9 bug with trailing slash
3380         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
3381         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
3382         * doc/posix-functions/readlink.texi (readlink): Document this.
3383         * modules/readlink-tests: New test.
3384         * tests/test-readlink.c: Likewise.
3385
3386         readlink: fix cygwin 1.5.x bug with return type
3387         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
3388         * lib/unistd.in.h (readlink): Use ssize_t.
3389         * lib/readlink.c (readlink): Likewise.
3390         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3391         * modules/unistd (Makefile.am): Substitute it.
3392         * lib/unistd.in.h (readlink): Declare replacement.
3393         * doc/posix-functions/readlink.texi (readlink): Document this.
3394
3395         symlink: use throughout gnulib
3396         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
3397         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
3398         symlink is not used.
3399         * modules/symlinkat (Depends-on): Add symlink.
3400         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3401         * modules/canonicalize-tests (Depends-on): Likewise.
3402         * modules/lstat-tests (Depends-on): Likewise.
3403         * modules/openat-tests (Depends-on): Likewise.
3404         * modules/remove-tests (Depends-on): Likewise.
3405         * modules/rmdir-tests (Depends-on): Likewise.
3406         * modules/unlink-tests (Depends-on): Likewise.
3407         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
3408         * tests/test-canonicalize.c (symlink): Likewise.
3409         * tests/test-fstatat.c (symlink): Likewise.
3410         * tests/test-lstat.c (symlink): Likewise.
3411         * tests/test-remove.c (symlink): Likewise.
3412         * tests/test-rmdir.c (symlink): Likewise.
3413         * tests/test-unlink.c (symlink): Likewise.
3414         * tests/test-unlinkat.c (symlink): Likewise.
3415
3416         symlink: new module, for Solaris 9 bug
3417         * modules/symlink: New file.
3418         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
3419         * lib/symlink.c: Likewise.
3420         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
3421         * modules/unistd (Makefile.am): Substitute them.
3422         * lib/unistd.in.h (symlink): Declare replacement.
3423         * MODULES.html.sh (File system functions): Mention it.
3424         * doc/posix-functions/symlink.texi (symlink): Likewise.
3425         * modules/symlink-tests: New test.
3426         * tests/test-symlink.c: Likewise.
3427
3428 2009-09-23  Bruno Haible  <bruno@clisp.org>
3429
3430         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
3431         when needed.
3432         Test case: gnulib-tool --import --with-tests atexit inttypes.
3433         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
3434
3435 2009-09-23  Bruno Haible  <bruno@clisp.org>
3436
3437         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
3438         subcommand, not in a subshell.
3439
3440 2009-09-22  Eric Blake  <ebb9@byu.net>
3441
3442         unistd: sort replacement declarations
3443         * lib/unistd.in.h: Sort declarations.
3444
3445         open, openat: minor optimization
3446         * lib/open.c (open): If open succeeded, len is non-zero.
3447         * lib/openat.c (rpl_openat): Likewise.
3448
3449         link-follow: ensure correct result
3450         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
3451         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
3452         distinguish between possible failures.
3453
3454 2009-09-21  Eric Blake  <ebb9@byu.net>
3455
3456         fts: avoid compiler warning
3457         * lib/fts.c (dirent_inode_sort_may_be_useful)
3458         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
3459
3460 2009-09-19  Bruno Haible  <bruno@clisp.org>
3461
3462         * lib/progreloc.c (canonicalize_file_name): New declaration.
3463
3464 2009-09-19  Eric Blake  <ebb9@byu.net>
3465
3466         link: fix quoting
3467         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
3468
3469         openat: fix openat bugs on Solaris 9
3470         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
3471         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
3472         * modules/openat (Depends-on): Add open.
3473         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
3474         * modules/fcntl-h (Makefile.am): Substitute it.
3475         * lib/fcntl.in.h (openat): Declare replacement.
3476         * doc/posix-functions/openat.texi (openat): Document this.
3477
3478         openat: move fstatat and unlinkat into correct files
3479         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
3480         compiled.
3481         * lib/openat.c (fstatat, unlinkat): Move...
3482         * lib/fstatat.c (fstatat): ...into correct files.
3483         * lib/unlinkat.c (unlinkat): Likewise.
3484
3485         openat: fix unlinkat bugs on Solaris 9
3486         * lib/unlinkat.c (unlinkat): New file.
3487         * modules/openat (Depends-on): Add unlink.
3488         (Files): Distribute it.
3489         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
3490         trailing slash behavior is broken.
3491         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3492         * modules/unistd (Makefile.am): Substitute it.
3493         * lib/unistd.in.h (unlinkat): Declare replacement.
3494         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
3495
3496         openat: fix fstatat bugs on Solaris 9
3497         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
3498         stat.
3499         * doc/posix-functions/fstatat.texi (fstatat): Document this.
3500
3501         test-unlinkat: enhance test, to expose Solaris 9 bug
3502         * tests/test-unlink.c (main): Factor guts...
3503         * tests/test-unlink.h (test_rmdir_func): ...into new file.
3504         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
3505         * tests/test-rmdir.c (main): Adjust caller.
3506         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
3507         (unlinker): New helper function.
3508         (rmdirat): Enhance check.
3509         * modules/rmdir-tests (Depends-on): Add stdbool.
3510         * modules/unlink-tests (Depends-on): Likewise.
3511         (Files): Add test-unlink.h.
3512         * modules/openat-tests (Files): Likewise.
3513         (Depends-on): Add unlinkdir.
3514
3515         test-fstatat: new test, to expose Solaris 9 bugs
3516         * tests/test-stat.c (main): Factor guts...
3517         * tests/test-stat.h (test_stat_func): ...into new file.
3518         * tests/test-lstat.c (main): Factor guts...
3519         * tests/test-lstat.h (test_lstat_func): ...into new file.
3520         * tests/test-fstatat.c: New file.
3521         * modules/stat-tests (Files): Add test-stat.h.
3522         * modules/lstat-tests (Files): Add test-lstat.h.
3523         (Depends-on): Add stdbool.
3524         * modules/openat-tests (Depends-on): Add pathmax.
3525         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
3526         (Makefile.am): Run new test.
3527
3528         remove: new module, for mingw and Solaris 9 bugs
3529         * modules/remove: New file.
3530         * lib/remove.c: Likewise.
3531         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
3532         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3533         * modules/stdio (Makefile.am): Use them.
3534         * lib/stdio.in.h (remove): Declare replacement.
3535         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3536         * doc/posix-functions/remove.texi (remove): Likewise.
3537         * modules/remove-tests: New test.
3538         * tests/test-remove.c: Likewise.
3539
3540         unlink: new module, for Solaris 9 bug
3541         * modules/unlink: New file.
3542         * lib/unlink.c: Likewise.
3543         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
3544         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3545         * modules/unistd (Makefile.am): Use them.
3546         * lib/unistd.in.h (stat): Declare replacement.
3547         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3548         * doc/posix-functions/unlink.texi (unlink): Likewise.
3549         * modules/unlink-tests: New test.
3550         * tests/test-unlink.c: Likewise.
3551
3552         lstat: fix Solaris 9 bug
3553         * lib/lstat.c (lstat): Also check for trailing slash on
3554         non-symlink, non-directories.  Use stat module to simplify logic.
3555         * doc/posix-functions/lstat.texi (lstat): Document it.
3556         * modules/lstat-tests (Depends-on): Add errno, same-inode.
3557         (configure.ac): Check for symlink.
3558         * tests/test-lstat.c (main): Add more tests.
3559
3560         stat: add as dependency to other modules
3561         * modules/chown (Depends-on): Add stat.
3562         * modules/euidaccess (Depends-on): Likewise.
3563         * modules/fchdir (Depends-on): Likewise.
3564         * modules/isdir (Depends-on): Likewise.
3565         * modules/link (Depends-on): Likewise.
3566         * modules/lstat (Depends-on): Likewise.
3567         * modules/mkdir-p (Depends-on): Likewise.
3568         * modules/modechange (Depends-on): Likewise.
3569         * modules/open (Depends-on): Likewise.
3570         * modules/readlink (Depends-on): Likewise.
3571         * modules/same (Depends-on): Likewise.
3572
3573         stat: fix Solaris 9 bug
3574         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
3575         slash.
3576         * lib/stat.c (rpl_stat): Work around it.
3577         * doc/posix-functions/stat.texi (stat): Update documentation.
3578
3579         stat: new module, for mingw bug
3580         * modules/stat: New file.
3581         * lib/stat.c: Likewise.
3582         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
3583         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
3584         * modules/sys_stat (Makefile.am): Use them.
3585         * lib/sys_stat.in.h (stat): Declare replacement.
3586         * lib/openat.c (fstatat): Deal with lstat and stat being function
3587         macros.
3588         * modules/openat (Depends-on): Add inline.
3589         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3590         * doc/posix-functions/stat.texi (stat): Likewise.
3591         * modules/stat-tests: New test.
3592         * tests/test-stat.c: Likewise.
3593
3594 2009-09-19  Jim Meyering  <meyering@redhat.com>
3595
3596         syntax-check: detect unnecessary inclusion of canonicalize.h
3597         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
3598
3599 2009-09-19  Eric Blake  <ebb9@byu.net>
3600
3601         canonicalize-lgpl: adjust clients to use correct header
3602         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3603         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
3604         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
3605         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
3606         * lib/progreloc.c (includes): Likewise.
3607
3608 2009-09-19  Jim Meyering  <meyering@redhat.com>
3609
3610         test-posixtm.c: correct a comment
3611         * tests/test-posixtm.c: Correct first-line comment.
3612         Spotted by Eric Blake.
3613
3614 2009-09-16  Jim Meyering  <meyering@redhat.com>
3615
3616         posixtm-tests: make T const-correct; add a test case
3617         * tests/test-posixtm.c (T): Declare const.
3618         Add a test for -(2^31+1).
3619         Remove useless can-succeed-only-in-2002 test.
3620
3621         posixtm-tests: adjust the sole failing test
3622         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
3623         expected output matches what mktime now produces.  Cross-checked via
3624         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
3625
3626         posixtm: move #ifdef'd tests into a new module
3627         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
3628         * tests/test-posixtm.c: ... this new file.
3629         * modules/posixtm-tests: New module.
3630
3631 2009-09-19  Eric Blake  <ebb9@byu.net>
3632
3633         openat: simplify use of at-func.c
3634         * lib/at-func.c (includes): Include prerequisites here, to
3635         simplify requirements on client files.
3636         * lib/openat-priv.h: Add double-inclusion guard.
3637         * lib/faccessat.c (includes): Simplify.
3638         * lib/fchmodat.c (includes): Likewise.
3639         * lib/fchownat.c (includes): Likewise.
3640         * lib/mkdirat.c (includes): Likewise.
3641         * lib/mkfifoat.c (includes): Likewise.
3642         * lib/symlinkat.c (includes): Likewise.
3643
3644         openat: allow return of fd 0
3645         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
3646         * modules/save-cwd (Depends-on): Replace fcntl-safer with
3647         unistd-safer.
3648         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
3649         <fcntl.h>; this module does not leak fds.
3650         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
3651         must be allowed to return 0, leaving openat_safer to add the
3652         safety.
3653         (openat_permissive): Avoid writing to just-opened fd 2 if
3654         restoring the current directory fails.
3655         * lib/openat-die.c (openat_restore_fail): Add comment.
3656         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
3657         (save_cwd): Guarantee safe fd, but without use of open_safer.
3658         * tests/test-openat.c: New test.
3659         * modules/openat-tests (Files, Makefile.am): Distribute and build
3660         new file.
3661
3662         relocatable-prog-wrapper: fix build
3663         * modules/relocatable-prog-wrapper (Files): Update name of
3664         canonicalize m4 file, broken on 2009-09-17.
3665         Reported by emad hajjar <aleppos@hotmail.com>.
3666
3667 2009-09-19  Bruno Haible  <bruno@clisp.org>
3668
3669         * lib/safe-alloc.h: Use the standard header with GPL copyright.
3670         * lib/safe-alloc.c: Likewise.
3671         Reported by Ian Beckwith <ianb@erislabs.net>.
3672
3673 2009-09-18  Bruno Haible  <bruno@clisp.org>
3674
3675         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
3676         Reported by <erobles@sensacd.com.mx>.
3677
3678 2009-09-17  Eric Blake  <ebb9@byu.net>
3679
3680         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
3681         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
3682         slashes when checking if last component is missing.
3683         * tests/test-canonicalize.c (main): Test this.
3684
3685         canonicalize, canonicalize-lgpl: honor // if distinct from /
3686         * modules/canonicalize (Files): Add double-slash-root.m4.
3687         * modules/canonicalize-lgpl (Files): Likewise.
3688         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3689         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
3690         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
3691         fallback definition.
3692         (canonicalize_filename_mode): Use it to protect //.
3693         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
3694         (__realpath): Likewise.
3695         * tests/test-canonicalize.c (main): Test this.
3696         * tests/test-canonicalize-lgpl.c (main): Likewise.
3697         * modules/canonicalize-tests (Depends-on): Add same-inode.
3698         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3699
3700         canonicalize-lgpl: fix glibc bug with trailing slash
3701         * m4/canonicalize-lgpl.m4: Move contents...
3702         * m4/canonicalize.m4: ...here.
3703         (gl_CANONICALIZE_LGPL): Factor realpath check...
3704         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
3705         glibc 2.3.5 bug, fixed 2005-04-27.
3706         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
3707         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
3708         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
3709         * modules/canonicalize-lgpl (Files): Manage file rename.
3710         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3711         * modules/stdlib (Makefile.am): Substitute witness.
3712         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
3713         is needed.
3714         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
3715         replacement is required.
3716         * lib/canonicalize.c (canonicalize_file_name): Likewise.
3717         * doc/glibc-functions/canonicalize_file_name.texi
3718         (canonicalize_file_name): Document this.
3719         * doc/posix-functions/realpath.texi (realpath): Likewise.
3720
3721         canonicalize-lgpl: reject non-directory with trailing slash
3722         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
3723         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
3724         catches failures in glibc 2.3.5.
3725         * tests/test-canonicalize.c (main): Likewise.
3726
3727         canonicalize-lgpl: use native realpath if it works
3728         * lib/canonicalize-lgpl.c (realpath): Guard with
3729         FUNC_REALPATH_WORKS.
3730         * lib/stdlib.in.h (realpath): Make declaration optional based on
3731         HAVE_REALPATH.
3732         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
3733         native realpath works.
3734         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3735         * modules/stdlib (Makefile.am): Substitute witness.
3736
3737         canonicalize, canonicalize-lgpl: use <stdlib.h>
3738         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
3739         (Include): Mention <stdlib.h>.
3740         (configure.ac): Mention functions we provide.
3741         * modules/canonicalize (configure.ac): Likewise.
3742         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
3743         realpath if canonicalize_file_name is missing.
3744         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
3745         * modules/stdlib (Makefile.am): Substitute witnesses.
3746         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
3747         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
3748         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
3749         * NEWS: Document this.
3750         * doc/glibc-functions/canonicalize_file_name.texi
3751         (canonicalize_file_name): Likewise.
3752         * doc/posix-functions/realpath.texi (realpath): Likewise.
3753         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
3754
3755         test-canonicalize: consolidate into single C program
3756         * tests/test-canonicalize.sh: Delete; move setup into...
3757         * tests/test-canonicalize.c (main): ...the program, making it
3758         easier to run in debugger.  Add some tests.
3759         * modules/canonicalize-tests (Files): Remove unused file.
3760         (Depends-on): Add progname.
3761         (configure.ac, Makefile.am): Simplify.
3762
3763         test-canonicalize-lgpl: consolidate into single C program
3764         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
3765         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
3766         easier to run in debugger.  Add some tests.
3767         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
3768         (configure.ac, Makefile.am): Simplify.
3769
3770         canonicalize: avoid resolvepath
3771         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
3772         unnecessary checks.
3773         * lib/canonicalize.c (includes): Simplify.
3774         (canonicalize_file_name): Drop resolvepath implementation.
3775         * modules/canonicalize (Depends-on): Drop filenamecat.
3776
3777         canonicalize: don't lose errno
3778         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
3779         over calls to free.
3780
3781         canonicalize: simplify errno handling
3782         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
3783         assignment.
3784
3785         canonicalize, canonicalize-lgpl: update module dependencies
3786         * modules/canonicalize (Depends-on): Add extensions, lstat,
3787         pathmax, stdlib.
3788         (Files): Drop pathmax.h.
3789         (configure.ac): Adjust macro name.
3790         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
3791         lstat, stdlib, sys_stat.
3792         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
3793         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
3794         extensions.
3795         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
3796         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
3797         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
3798         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
3799         declaration, if available.
3800         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
3801         we can rely on the readlink module.
3802         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
3803         (includes): Use <unistd.h> unconditionally.
3804
3805 2009-09-17  Eric Blake  <ebb9@byu.net>
3806
3807         maint: make Include sections of modules consistent
3808         * modules/alloca: Use only header name; no need to list #include.
3809         * modules/alloca-opt: Likewise.
3810         * modules/arpa_inet: Likewise.
3811         * modules/canon-host: Likewise.
3812         * modules/configmake: Likewise.
3813         * modules/dirent: Likewise.
3814         * modules/eealloc: Likewise.
3815         * modules/environ: Likewise.
3816         * modules/fchdir: Likewise.
3817         * modules/fcntl: Likewise.
3818         * modules/fcntl-h: Likewise.
3819         * modules/gethrxtime: Likewise.
3820         * modules/gettime: Likewise.
3821         * modules/ignore-value: Likewise.
3822         * modules/inet_ntop: Likewise.
3823         * modules/inet_pton: Likewise.
3824         * modules/inttypes: Likewise.
3825         * modules/isnand-nolibm: Likewise.
3826         * modules/isnanf-nolibm: Likewise.
3827         * modules/mbchar: Likewise.
3828         * modules/mbfile: Likewise.
3829         * modules/mbiter: Likewise.
3830         * modules/mbuiter: Likewise.
3831         * modules/netdb: Likewise.
3832         * modules/netinet_in: Likewise.
3833         * modules/nproc: Likewise.
3834         * modules/pagealign_alloc: Likewise.
3835         * modules/poll: Likewise.
3836         * modules/printf-frexp: Likewise.
3837         * modules/pthread: Likewise.
3838         * modules/putenv: Likewise.
3839         * modules/random_r: Likewise.
3840         * modules/relocatable-prog: Likewise.
3841         * modules/search: Likewise.
3842         * modules/select: Likewise.
3843         * modules/selinux-h: Likewise.
3844         * modules/settime: Likewise.
3845         * modules/signal: Likewise.
3846         * modules/size_max: Likewise.
3847         * modules/socklen: Likewise.
3848         * modules/ssize_t: Likewise.
3849         * modules/stdarg: Likewise.
3850         * modules/stdbool: Likewise.
3851         * modules/stddef: Likewise.
3852         * modules/stdint: Likewise.
3853         * modules/stdio: Likewise.
3854         * modules/stdlib: Likewise.
3855         * modules/string: Likewise.
3856         * modules/strings: Likewise.
3857         * modules/sys_file: Likewise.
3858         * modules/sys_ioctl: Likewise.
3859         * modules/sys_select: Likewise.
3860         * modules/sys_socket: Likewise.
3861         * modules/sys_stat: Likewise.
3862         * modules/sys_time: Likewise.
3863         * modules/sys_times: Likewise.
3864         * modules/sys_utsname: Likewise.
3865         * modules/sys_wait: Likewise.
3866         * modules/sysexits: Likewise.
3867         * modules/time: Likewise.
3868         * modules/times: Likewise.
3869         * modules/tmpfile: Likewise.
3870         * modules/trim: Likewise.
3871         * modules/unistd: Likewise.
3872         * modules/wchar: Likewise.
3873         * modules/wctype: Likewise.
3874
3875 2009-09-17  Bruno Haible  <bruno@clisp.org>
3876
3877         Make getdate.y compile on QNX and NetBSD 5 / i386.
3878         * m4/getdate.m4 (gl_GETDATE): Conditionally define
3879         TIME_T_FITS_IN_LONG_INT.
3880         * lib/getdate.y (long_time_t): New type.
3881         (relative_time): Change type of 'seconds' field to long_time_t.
3882         (get_date): Update types of local variables. Check against overflow
3883         during conversion from long_time_t to time_t.
3884         Reported by Matt Kraai <kraai@ftbfs.org>
3885         and Hasso Tepper <hasso@netbsd.org>.
3886
3887 2009-09-17  Bruno Haible  <bruno@clisp.org>
3888
3889         * modules/COPYING: Update copyright years.
3890         * modules/README: Likeiwse.
3891         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
3892         Reported by Ian Beckwith <ianb@erislabs.net>.
3893
3894 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3895
3896         * users.txt: Update references for gnuit package.
3897
3898 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3899
3900         * m4/getdelim.m4: Fix typo in copyright line.
3901
3902 2009-09-17  Bruno Haible  <bruno@clisp.org>
3903
3904         * lib/atoll.c: Use the standard header with GPL copyright.
3905         * lib/argz.in.h: Likewise.
3906         * lib/glob.c: Likewise.
3907         * lib/glob-libc.h: Likewise.
3908         * lib/random_r.c: Likewise.
3909         * lib/siglist.h: Likewise.
3910         * lib/strsignal.c: Likewise.
3911         Reported by Ian Beckwith <ianb@erislabs.net>.
3912
3913 2009-09-17  Eric Blake  <ebb9@byu.net>
3914
3915         rmdir: ensure correct dependency order
3916         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
3917
3918 2009-09-17  Bruno Haible  <bruno@clisp.org>
3919
3920         Disable assertion that fails on NetBSD 5 / i386.
3921         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
3922         Reported by Sam Steingold <sds@gnu.org>
3923         and Hasso Tepper <hasso@netbsd.org>.
3924
3925 2009-09-16  Eric Blake  <ebb9@byu.net>
3926
3927         unlinkdir: port to mingw
3928         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
3929         on which no one can unlink a directory.
3930
3931         stdlib: sort witness names
3932         * modules/stdlib (Makefile.am): Sort replacements.
3933         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
3934         * lib/stdlib.in.h: Likewise.
3935
3936         parse-duration-tests: avoid link failure
3937         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
3938         LIBINTL.
3939         Reported by Tom G. Christensen.
3940
3941         openat-tests: ensure unlinkat behaves like rmdir
3942         * tests/test-rmdir.c (main): Factor guts...
3943         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
3944         * modules/rmdir-tests (Files): Ship new file.
3945         * modules/openat-tests: New test.
3946         * tests/test-unlinkat.c: Likewise.
3947
3948         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
3949         * modules/rmdir-errno (Status, Notice): Now obsolete.
3950
3951         rmdir: work around cygwin 1.5.x and mingw bugs
3952         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
3953         * lib/rmdir.c (rmdir): Work around it.
3954         * modules/rmdir (Status, Notice): No longer obsolete.
3955         (Files): Add dos.m4.
3956         (Depends-on): Add unistd.
3957         (configure.ac): Set witnesses.
3958         (License): Relax to LGPLv2+.
3959         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
3960         * modules/unistd (Makefile.am): Substitute witnesses.
3961         * lib/unistd.in.h (rmdir): Declare replacement.
3962         * doc/posix-functions/rmdir.texi (rmdir): Document this.
3963         * modules/rmdir-tests: New tests.
3964         * tests/test-rmdir.c: Likewise.
3965
3966 2009-09-15  Eric Blake  <ebb9@byu.net>
3967
3968         fchdir: improve use of replacement functions
3969         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
3970         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
3971         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
3972         REPLACE_CLOSEDIR.
3973         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
3974         * modules/sys_stat (Makefile.am): Substitute correct witness.
3975         * modules/dirent (Makefile.am): Likewise.
3976         * modules/unistd (Makefile.am): Likewise.
3977         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
3978         * lib/unistd.in.h (dup): Likewise.
3979         * lib/sys_stat.in.h (fstat): Likewise.
3980
3981         maint: ignore gnulib-tool temp files
3982         * .gitignore: Ignore files created during gnulib-tool --test.
3983
3984 2009-09-13  Jim Meyering  <meyering@redhat.com>
3985
3986         posixtm: don't reject a time that specify "60" as the number of seconds
3987         * lib/posixtm.c (posixtime): The code to reject invalid dates
3988         would also reject a time specified with the .60 suffix.
3989         But POSIX allows that, in order to accommodate leap seconds.
3990         So don't reject it.
3991         (main): Adjust tests accordingly.
3992         * modules/posixtm (Depends-on): Add stpcpy.
3993
3994 2009-09-11  Jim Meyering  <meyering@redhat.com>
3995
3996         announce-gen: include [$release_type] in emitted Subject:
3997         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
3998         e.g., [stable] in the emitted Subject: line.
3999
4000 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4001
4002         Remove obsolete macros from several modules.
4003         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
4004         obsolete Autoconf macros with their modern counterparts.
4005         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
4006         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
4007         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
4008         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4009         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
4010         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
4011         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
4012         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
4013         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
4014         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
4015         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
4016         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
4017         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
4018         * m4/sockets.m4 (gl_SOCKETS): Likewise.
4019         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
4020         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
4021         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
4022         * m4/time_r.m4 (gl_TIME_R): Likewise.
4023         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
4024         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
4025         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
4026
4027         Fix copyright header in build-aux scripts.
4028         * build-aux/git-version-gen: Fix copyright header to match GPLv3
4029         recommendation.
4030         * build-aux/ncftpput-ftp: Likewise.
4031         * build-aux/update-copyright: Likewise.
4032
4033 2009-09-09  Eric Blake  <ebb9@byu.net>
4034
4035         test-link: allow Linux choice of errno
4036         * tests/test-link.c (main): Relax test for alternate error.
4037
4038         strndup: fix improper m4 caching
4039         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
4040         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
4041         (gl_PREREQ_STRNDUP): Delete.
4042         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
4043         * modules/string (Makefile.am): Substitute it.
4044         * lib/string.in.h (strndup): Modernize prototype.
4045
4046         getcwd: port to mingw
4047         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
4048         different from the POSIX assumptions made throughout the getcwd
4049         module; fortunately, the mingw getcwd does not need replacement.
4050         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
4051         * modules/getcwd-tests: New test.
4052         * tests/test-getcwd.c: Likewise.
4053
4054         link: fix platform bugs
4055         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
4056         * lib/link.c (link): Work around them.  Fix related mingw bug.
4057         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
4058         * modules/unistd (Makefile.am): Substitute it.
4059         * lib/unistd.in.h (link): Declare replacement.
4060         * doc/posix-functions/link.texi (link): Document this.
4061         * modules/link (Depends-on): Add strdup-posix, sys_stat.
4062
4063         test-link: consolidate into single C program, test more cases
4064         * tests/test-link.sh: Delete.
4065         * tests/test-link.c: Test more error conditions.  Exposes bugs on
4066         at least Cygwin and Solaris.
4067         * modules/link-tests (Files): Remove unused file.
4068         (Depends-on): Add errno, sys_stat.
4069         (Makefile.am): Simplify.
4070
4071 2009-09-08  Bruno Haible  <bruno@clisp.org>
4072
4073         Work around towlower, towupper bug on mingw.
4074         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
4075         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
4076         * doc/posix-functions/towlower.texi: Mention the mingw bug.
4077         * doc/posix-functions/towupper.texi: Likewise.
4078         Reported by Eric Blake.
4079
4080 2009-09-08  Jim Meyering  <meyering@redhat.com>
4081
4082         build: don't try to run autoheader if we don't use it
4083         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
4084         is not used in configure.ac.
4085
4086 2009-09-08  Eric Blake  <ebb9@byu.net>
4087
4088         euidaccess: fix compilation error
4089         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
4090
4091         rawmemchr: relax license
4092         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
4093         okay.
4094         Reported by Jim Meyering.
4095
4096         mkfifoat: new module
4097         * modules/mkfifoat: New file.
4098         * lib/mkfifoat.c: Likewise.
4099         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
4100         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
4101         * modules/sys_stat (Makefile.am): Use them.
4102         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
4103         * MODULES.html.sh (File system functions): Mention module.
4104         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
4105         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
4106         * modules/mkfifoat-tests: New test.
4107         * tests/test-mkfifoat.c: Likewise.
4108
4109         strchrnul: relax license
4110         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
4111         okay.
4112         Reported by Jim Meyering.
4113
4114 2009-09-08  Eric Blake  <ebb9@byu.net>
4115
4116         fstatat: fix compilation on Solaris
4117         * lib/fstatat.c (includes): Add fcntl.h.
4118         Reported by Pádraig Brady.
4119
4120 2009-09-07  Eric Blake  <ebb9@byu.net>
4121
4122         rename: modernize replacement
4123         * modules/rename (Depends-on): Add stdio.
4124         (configure.ac): Declare witness.
4125         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
4126         stdio take care of replacement.
4127         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
4128         * modules/stdio (Makefile.am): Substitute them.
4129         * lib/stdio.in.h (rename): Declare replacement.
4130         * lib/rename.c (includes): Allow cross-compilation to non-windows
4131         machines.
4132         * doc/posix-functions/rename.texi (rename): Improve
4133         documentation.
4134
4135         stdio: sort witness names
4136         * modules/stdio (Makefile.am): Sort replacements.
4137         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
4138         * lib/stdio.in.h: Likewise.
4139
4140         getcwd: minor cleanups
4141         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
4142         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
4143
4144         openat: provide more convenience names
4145         * modules/faccessat (configure.ac): Add C witness.
4146         * lib/unistd.in.h (readlinkat): Fix typo.
4147         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
4148         convenience wrappers.
4149         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
4150         wrappers in syntax checks.
4151
4152 2009-09-06  Eric Blake  <ebb9@byu.net>
4153
4154         doc: fix comments in recent patches
4155         * lib/faccessat.c: Mention correct function.
4156         * lib/fchmodat.c: Likewise.
4157         * lib/fchownat.c: Likewise.
4158         * lib/symlinkat.c: Likewise.
4159         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
4160         constants.
4161
4162         faccessat, symlinkat: continue cleanup of previous patch
4163         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
4164         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4165         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
4166         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
4167         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
4168         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
4169         set.
4170
4171 2009-09-06  Bruno Haible  <bruno@clisp.org>
4172
4173         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
4174         (fstatat): Declare if GNULIB_FSTATAT is set.
4175         (mkdirat): Declare if GNULIB_MKDIRAT is set.
4176         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
4177         (unlinkat): Declare if GNULIB_UNLINKAT is set.
4178         * modules/fcntl-h (Files): Remove m4/openat.m4.
4179         * modules/sys_stat (Files): Remove m4/openat.m4.
4180         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
4181         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
4182         * modules/unistd (Files): Remove m4/openat.m4.
4183         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
4184         GNULIB_OPENAT.
4185         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
4186         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
4187         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
4188         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
4189         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
4190         gl_OPENAT_DEFAULTS.
4191         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
4192         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
4193         Don't require gl_OPENAT_DEFAULTS.
4194         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
4195         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
4196         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
4197         (gl_OPENAT_DEFAULTS): Remove macro.
4198
4199 2009-09-06  Bruno Haible  <bruno@clisp.org>
4200
4201         * modules/openat (configure.ac): Remove unneeded witness.
4202
4203 2009-09-06  Bruno Haible  <bruno@clisp.org>
4204
4205         Set errno to ENOSYS when a function is entirely unsupported.
4206         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
4207         EOPNOTSUPP.
4208         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4209         * modules/chown (Depends-on): Remove errno.
4210
4211 2009-09-06  Bruno Haible  <bruno@clisp.org>
4212
4213         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
4214
4215 2009-09-06  Bruno Haible  <bruno@clisp.org>
4216
4217         * lib/sys_stat.in.h: Fix preprocessor command indentation.
4218
4219 2009-09-06  Ben Pfaff  <blp@gnu.org>
4220             Bruno Haible  <bruno@clisp.org>
4221
4222         Work around a glibc bug in strtok_r.
4223         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
4224         Undefine if UNDEFINE_STRTOK_R is set.
4225         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
4226         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4227         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
4228         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
4229         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
4230         UNDEFINE_STRTOK_R.
4231         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
4232
4233 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
4234
4235         exclude: minor fix
4236         * lib/exclude.c: Include wctype.h
4237
4238 2009-09-06  Akim Demaille  <demaille@gostai.com>
4239
4240         bootstrap: improve error message
4241         * build-aux/bootstrap (find_tool): Upon failure, report the list
4242         of candidates.
4243         Honor the initial value of the envvar.
4244
4245 2009-09-05  Eric Blake  <ebb9@byu.net>
4246
4247         symlinkat: new module
4248         * modules/symlinkat: New file.
4249         * lib/symlinkat.c: Likewise.
4250         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
4251         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
4252         * modules/unistd (Makefile.am): Use them.
4253         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
4254         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
4255         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
4256         * MODULES.html.sh (File system functions): Mention module.
4257         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
4258         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
4259         * modules/symlinkat-tests: New test.
4260         * tests/test-symlinkat.c: Likewise.
4261
4262         test-openat-safer: add more checks
4263         * tests/test-openat-safer.c (main): Check more code paths.
4264
4265 2009-09-05  Jim Meyering  <meyering@redhat.com>
4266
4267         syntax-check: detect unnecessary inclusion of openat.h
4268         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
4269
4270 2009-09-05  Bruno Haible  <bruno@clisp.org>
4271
4272         Support towlower, towupper.
4273         * doc/posix-functions/towlower.texi: Mention module wctype.
4274         * doc/posix-functions/towupper.texi: Likewise.
4275         * lib/wctype.in.h (towlower, towupper): New functions.
4276         * tests/test-wctype.c: Include stdio.h, stdlib.h.
4277         (ASSERT): New macro.
4278         (e): New variable.
4279         (main): Test also towlower, towupper. Test WEOF argument.
4280         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
4281
4282 2009-09-05  Bruno Haible  <bruno@clisp.org>
4283
4284         Fix conversion behaviour when the input is invalid.
4285         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
4286         mark occurring in first pass of indirect conversion.
4287         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
4288         input.
4289         Found by clang's static analyzer.
4290
4291 2009-09-05  Bruno Haible  <bruno@clisp.org>
4292
4293         * tests/test-striconveh.c (main): Test indirect conversion on platforms
4294         where direct conversion is possible.
4295
4296 2009-09-04  Eric Blake  <ebb9@byu.net>
4297
4298         openat: fail with ENOENT on empty name
4299         * lib/openat-proc.c (openat_proc_name): Special-case the empty
4300         buffer.
4301
4302         link-follow: fix logic bug in prior patch
4303         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
4304         reversed sense of yes and no in prior patch.  Avoid confusing
4305         compilation failure with desired semantics.
4306
4307         link-follow: accomodate mingw and cross-compilation
4308         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
4309         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
4310         cross-compilation results to -1, to make linkat easier to
4311         implement when cross-compiling.  Trivially support mingw.
4312         * modules/link-follow (configure.ac): Call new name.
4313         * NEWS: Mention this.
4314
4315 2009-09-03  Eric Blake  <ebb9@byu.net>
4316
4317         faccessat: compile replacement
4318         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
4319         needed.
4320
4321         fts: fix compilation error
4322         * lib/fts.c (includes): Re-add "openat.h", for
4323         openat_needs_fchdir.
4324
4325         faccessat: new module
4326         * modules/faccessat: New file.
4327         * lib/faccessat.c: Likewise.
4328         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4329         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
4330         * modules/unistd (Makefile.am): Use it.
4331         * lib/unistd.in.h (faccessat): Declare it.
4332         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
4333         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
4334         * MODULES.html.sh (File system functions): Mention it.
4335         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
4336         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
4337
4338         euidaccess: prefer POSIX over non-standard implementation
4339         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
4340         * lib/euidaccess.c (euidaccess): Use it if available.
4341
4342         openat: make template easier to use
4343         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
4344         AT_FUNC_F2 to be undefined.
4345         (VALIDATE_FLAG): New macro; use it to reject bad flags.
4346         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
4347         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
4348         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
4349         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
4350         Likewise.
4351         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
4352         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
4353         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
4354         Likewise.
4355
4356         openat: declare in POSIX headers
4357         * NEWS: Mention this.
4358         * modules/openat (configure.ac): Declare witnesses.
4359         (Depends-on): Add fcntl-h, sys_stat, unistd.
4360         (Include): Mention correct headers.
4361         * modules/fcntl-h (Depends-on): Add link-warning.
4362         (Files): Add openat.m4.
4363         (Makefile.am): Substitute witnesses.
4364         * modules/sys_stat (Files, Makefile.am): Likewise.
4365         * modules/unistd (Files, Makefile.am): Likewise.
4366         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
4367         (gl_OPENAT_DEFAULTS): New macro.
4368         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
4369         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
4370         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
4371         (SYS_STAT_H): Remove unused variable.
4372         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
4373         * lib/fcntl--.h (includes): Remove unneeded header.
4374         * lib/openat-safer.c (includes): Likewise.
4375         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
4376         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
4377         appropriate headers.
4378         (__OPENAT_PREFIX): Delete.
4379         * lib/fcntl.in.h (openat): Provide declaration.
4380         (AT_FDCWD): Fix Solaris bug.
4381         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
4382         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
4383         * lib/fchmodat.c (includes):  Adjust to find declaration.
4384         * lib/fchownat.c (includes): Likewise.
4385         * lib/mkdirat.c (includes): Likewise.
4386         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
4387         still visible.
4388
4389 2009-09-02  Eric Blake  <ebb9@byu.net>
4390
4391         errno: use consistently
4392         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
4393         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
4394         * lib/canonicalize.c (ELOOP): Likewise.
4395         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
4396         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
4397         * lib/lchown.c (EOPNOTSUPP): Likewise.
4398         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
4399         * lib/savewd.c (ESTALE): Likewise.
4400         * lib/settime.c (ENOSYS): Likewise.
4401         * lib/utimens.c (ENOSYS): Likewise.
4402         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
4403         * lib/chdir-safer.c (ELOOP): Likewise.
4404         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
4405         * modules/c-stack (Depends-on): Add errno.
4406         * modules/canonicalize (Depends-on): Likewise.
4407         * modules/chdir-safer (Depends-on): Likewise.
4408         * modules/fdopendir (Depends-on): Likewise.
4409         * modules/inet_ntop (Depends-on): Likewise.
4410         * modules/inet_pton (Depends-on): Likewise.
4411         * modules/lchown (Depends-on): Likewise.
4412         * modules/openat (Depends-on): Likewise.
4413         * modules/savewd (Depends-on): Likewise.
4414         * modules/settime (Depends-on): Likewise.
4415         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
4416
4417         fts: avoid leaking fds
4418         * modules/fts (Depends-on): Add cloexec.
4419         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
4420         flag.
4421
4422         fts: make directory fds more robust
4423         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
4424         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
4425
4426         backupfile, chdir-long, fts, savedir: make safer
4427         * lib/backupfile.c (includes): Use "dirent--.h", since
4428         numbered_backup can write to stderr during readdir.
4429         * lib/savedir.c (includes): Likewise.
4430         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
4431         emulation can write to stderr on failure.
4432         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
4433         * lib/getcwd.c: Document why opendir_safer is unused.
4434         * lib/glob.c: Likewise.
4435         * lib/scandir.c: Likewise.
4436         * lib/openat-proc.c: Likewise, for open_safer.
4437         * modules/backupfile (Depends-on): Add dirent-safer.
4438         * modules/savedir (Depends-on): Likewise.
4439         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
4440         * modules/chdir-long (Depends-on): Add openat-safer.
4441
4442         openat-safer: new module
4443         * modules/openat-safer: New file.
4444         * lib/openat-safer.c: Likewise.
4445         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
4446         * lib/fcntl-safer.h (openat_safer): Declare.
4447         * lib/fcntl--.h (openat): Override.
4448         * MODULES.html.sh (File descriptor based I/O): Mention it.
4449         * lib/openat.h: Add double-inclusion guards.
4450         * lib/openat.c (includes): Only include "fcntl-safer.h", not
4451         "fcntl--.h", so we can implement openat.
4452         * modules/openat-safer-tests: New test.
4453         * tests/test-openat-safer.c: New file.
4454
4455         dirent-safer: new module
4456         * modules/dirent-safer: New file.
4457         * lib/dirent--.h: Likewise.
4458         * lib/dirent-safer.h: Likewise.
4459         * lib/opendir-safer.c: Likewise.
4460         * m4/dirent-safer.m4: Likewise.
4461         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
4462         * modules/dirent-safer-tests: New test.
4463         * tests/test-dirent-safer.c: New file.
4464         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
4465
4466         fdopendir: optimize on mingw
4467         * lib/unistd.in.h (_gl_directory_name): New prototype.
4468         * lib/fchdir.c (_gl_directory_name): Implement it.
4469         (fchdir): Use it to simplify implementation.
4470         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
4471         fchdir, when available, to avoid calling [f]chdir().
4472
4473         fdopendir: split into its own module
4474         * lib/openat.c (fdopendir): Move...
4475         * lib/fdopendir.c: ...into new file.
4476         * modules/fdopendir: New module.
4477         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
4478         * modules/openat (Depends-on): Add fdopendir.
4479         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
4480         fdopendir here.
4481         * modules/savedir (Depends-on): Only need fdopendir, not full
4482         openat.
4483         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
4484         * lib/openat.h (fdopendir): Drop prototype.
4485         * lib/dirent.in.h (fdopendir): Provide prototype.
4486         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
4487         * modules/dirent (Makefile.am): Substitute them.
4488         * MODULES.html.sh (File system functions): Mention it.
4489         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
4490         * modules/fdopendir-tests: New file.
4491         * tests/test-fdopendir.c: Likewise.
4492
4493         fchdir: use more consistent macro convention
4494         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
4495         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
4496         REPLACE_FCHDIR, rather than relying on config.h macros.
4497         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
4498         inside a single make-time REPLACE_FCHDIR block, rather than using
4499         the config.h FCHDIR_REPLACEMENT.
4500         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
4501         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
4502         Manage fstat replacement.
4503         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
4504         REPLACE_FCHDIR.
4505         * modules/sys_stat (Files): Add m4/unistd_h.m4.
4506         (Makefile.am): Substitute REPLACE_FCHDIR.
4507         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
4508         FCHDIR_REPLACEMENT.
4509         * lib/dup-safer.c (dup_safer): Likewise.
4510         * lib/dup2.c (rpl_dup2): Likewise.
4511         * lib/dup3.c (rpl_dup3): Likewise.
4512         * lib/open.c (rpl_open): Likewise.
4513
4514         fchdir: simplify error handling, and support dup3
4515         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
4516         stdbool, malloc-posix, realloc-posix.
4517         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
4518         (ensure_dirs_slot): Return false on allocation failure.
4519         (rpl_dup2): Delete.
4520         (_gl_register_dup): New function.
4521         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
4522         (_gl_register_fd): Close fd on allocation failure.
4523         * lib/fcntl.in.h (_gl_register_fd): Update signature.
4524         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
4525         prototype.
4526         (rpl_dup2_fchdir): Delete prototype.
4527         * lib/open.c (open): Update caller.
4528         * lib/dup2.c (dup2): Track fchdir metadata.
4529         * lib/dup3.c (dup3): Likewise.
4530         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
4531         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
4532
4533 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4534
4535         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
4536         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
4537         don't pass arguments to AC_OUTPUT.
4538
4539 2009-09-02  Bruno Haible  <bruno@clisp.org>
4540
4541         * modules/mkdtemp (License): Relicense under LGPLv2+.
4542         Reported by Paolo Bonzini.
4543
4544 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4545
4546         Replace uses of obsolete autoconf macros in Jim's modules.
4547         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
4548         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
4549         can evoke a warning from autoconf when run with -Wobsolete
4550         enabled.  They were declared obsolete for good reasons (see
4551         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
4552         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
4553         should not continue using the deprecated macros.
4554         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
4555         obsolete Autoconf macros with modern counterparts.
4556         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
4557         * m4/dos.m4 (gl_AC_DOS): Likewise.
4558         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
4559         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
4560         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
4561         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
4562         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
4563         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
4564         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
4565         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
4566         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4567         Likewise.
4568         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
4569         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
4570         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
4571         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
4572         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
4573         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
4574
4575 2009-09-01  Eric Blake  <ebb9@byu.net>
4576
4577         fchdir: fix off-by-one bug in previous patch
4578         * lib/fchdir.c (rpl_fstat): Use correct bounds.
4579         (_gl_unregister_fd): Delete useless if.
4580
4581 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
4582
4583         maint.mk: sort the list of syntax-check rules
4584         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
4585         easier to get a sense of progress when the rules are run sequentially
4586         and take a long time.
4587
4588 2009-09-01  Simon Josefsson  <simon@josefsson.org>
4589
4590         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
4591         * modules/netinet_in: Likewise.
4592         * modules/sys_file: Likewise.
4593         * modules/sys_ioctl: Likewise.
4594         * modules/sys_select: Likewise.
4595         * modules/sys_socket: Likewise.
4596         * modules/sys_stat: Likewise.
4597         * modules/sys_time: Likewise.
4598         * modules/sys_times: Likewise.
4599         * modules/sys_utsname: Likewise.
4600         * modules/sys_wait: Likewise.
4601
4602 2009-09-01  Jim Meyering  <meyering@redhat.com>
4603
4604         fts: help ensure that return values are not ignored
4605         * lib/fts_.h (__GNUC_PREREQ): Define.
4606         (__attribute_warn_unused_result__): Define.
4607         (fts_children, fts_close, fts_open, fts_read): Declare with
4608         __attribute_warn_unused_result__.
4609
4610         fts: fts_close now fails also when closing a dir file descriptor fails
4611         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
4612         and propagate to caller, along with errno.
4613
4614         announce-gen: correct formatting in --help output
4615         * build-aux/announce-gen (usage): Move the one-line description in
4616         --help output "up", to where it belongs, just after Usage:.
4617
4618 2009-08-31  Eric Blake  <ebb9@byu.net>
4619
4620         fchdir: port to mingw
4621         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
4622         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
4623         opened, then use a substitute.
4624         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
4625         replacement.
4626         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
4627         (_gl_register_fd): No need to check stat if open already filters
4628         all directories.
4629         (fchdir): Fix error condition to match POSIX.
4630         * modules/fchdir (Depends-on): Add sys_stat.
4631         * doc/posix-functions/open.texi (open): Document the limitation.
4632         * modules/fchdir-tests: New file.
4633         * tests/test-fchdir.c: Likewise.
4634
4635         canonicalize: allow cross-testing from cygwin to mingw
4636         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
4637         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
4638         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
4639         Likewise.
4640         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
4641         target does not support symlinks.
4642         * tests/test-canonicalize-lgpl.sh: Likewise.
4643
4644         chown: avoid compilation warning on mingw
4645         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
4646         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
4647         mingw.
4648         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4649         * modules/chown (Depends-on): Add errno.
4650
4651 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
4652
4653         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
4654         command.
4655
4656 2009-08-31  Jim Meyering  <meyering@redhat.com>
4657
4658         canonicalize: remove useless initialization
4659         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
4660         initialization of local, "end".
4661
4662 2009-08-30  Bruno Haible  <bruno@clisp.org>
4663
4664         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
4665         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
4666         ENOSYS.
4667
4668 2009-08-30  Bruno Haible  <bruno@clisp.org>
4669
4670         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
4671         /usr/xpg4/bin/tr when it exists.
4672         * tests/test-pipe-filter-gi1.sh: Likewise.
4673
4674 2009-08-30  Bruno Haible  <bruno@clisp.org>
4675
4676         Work around deficient /usr/bin/id program on Solaris.
4677         * tests/test-file-has-acl.sh (ID): New variable.
4678         * tests/test-set-mode-acl.sh (ID): Likewise.
4679         * tests/test-copy-acl.sh (ID): Likewise.
4680         * tests/test-copy-file.sh (ID): Likewise.
4681
4682 2009-08-30  Bruno Haible  <bruno@clisp.org>
4683
4684         New module 'xstriconveh'.
4685         * lib/xstriconveh.h: New file.
4686         * lib/xstriconveh.c: New file.
4687         * modules/xstriconveh: New file.
4688
4689 2009-08-30  Bruno Haible  <bruno@clisp.org>
4690
4691         Make it easier to use mem_cd_iconveh.
4692         * lib/striconveh.h (iconveh_t): New type.
4693         (iconveh_open, iconveh_close): New declarations.
4694         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
4695         with a single 'const iconveh_t *' argument.
4696         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
4697         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
4698         with a single 'const iconveh_t *' argument.
4699         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
4700         * tests/test-striconveh.c (main): Update.
4701         * NEWS: Mention the change.
4702
4703 2009-08-30  Bruno Haible  <bruno@clisp.org>
4704
4705         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
4706         problem.
4707
4708 2009-08-30  Bruno Haible  <bruno@clisp.org>
4709
4710         Work around iconv_open problem on Solaris.
4711         * lib/iconv_open-solaris.gperf: New file.
4712         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
4713         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
4714         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
4715         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
4716         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
4717         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
4718
4719 2009-08-29  Jim Meyering  <meyering@redhat.com>
4720
4721         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
4722         * top/maint.mk (cvs-check): Remove target; it was just an alias
4723         to the better-named vc-diff-check.
4724         (maintainer-distcheck): Remove rule.  It was used only from
4725         the (alpha/beta/major) target, and all of its commands but one
4726         were coreutils-specific.
4727         (vc-dist): Remove rule.
4728         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
4729         Run vc-diff-check, not vc-dist.
4730         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
4731
4732 2009-08-27  Bruno Haible  <bruno@clisp.org>
4733
4734         * tests/test-bitrotate.c (main): Remove test that uses a shift count
4735         of 0.
4736
4737 2009-08-27  Bruno Haible  <bruno@clisp.org>
4738
4739         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
4740         compilers.
4741         * doc/func.texi: Document the SunPRO C bug.
4742
4743 2009-08-27  Bruno Haible  <bruno@clisp.org>
4744
4745         Fix link error on Solaris.
4746         * tests/test-parse-duration.c (xstrdup): Remove function.
4747
4748 2009-08-26  Pádraig Brady  <P@draigbrady.com>
4749
4750         ignore-value: handle pointer types, too
4751         * lib/ignore-value.h (__attribute__): Remove definition.
4752         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
4753         of a more concise and more-often effective "(void) i" statement.
4754         (ignore_ptr): New function to suppress warnings from functions that
4755         return pointers, and to make it explicit that one function doesn't
4756         handle all cases.
4757
4758 2009-08-25  Bruno Haible  <bruno@clisp.org>
4759
4760         dup2: work around a Linux bug.
4761         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
4762         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
4763         * doc/posix-functions/dup2.texi: Mention the Linux bug.
4764         Reported by Simon Josefsson.
4765
4766 2009-08-25  Jim Meyering  <meyering@redhat.com>
4767
4768         libguestfs uses gnulib
4769         * users.txt: Add libguestfs.
4770
4771 2009-08-24  Eric Blake  <ebb9@byu.net>
4772
4773         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
4774         * lib/pipe2.c (includes): Add binary-io.h.
4775         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
4776
4777 2009-08-24  Bruno Haible  <bruno@clisp.org>
4778
4779         Tolerate declared but missing accept4 syscall.
4780         * lib/accept4.c (accept4): Invoke original accept4 function first, if
4781         available.
4782         * lib/sys_socket.in.h (accept4): If the function is already present,
4783         override it.
4784         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
4785         * modules/accept4 (Makefile.am): Compile accept4.c always.
4786         Reported by Paolo Bonzini and Eric Blake.
4787
4788 2009-08-23  Bruno Haible  <bruno@clisp.org>
4789
4790         New module 'accept4'.
4791         * lib/sys_socket.in.h (accept4): New declaration.
4792         * lib/accept4.c: New file.
4793         * m4/accept4.m4: New file.
4794         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
4795         GNULIB_ACCEPT4, HAVE_ACCEPT4.
4796         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
4797         HAVE_ACCEPT4.
4798         * modules/accept4: New file.
4799         * doc/glibc-functions/accept4.texi: Mention the new module.
4800
4801 2009-08-24  Jim Meyering  <meyering@redhat.com>
4802
4803         progname: also set global program_invocation_name, when possible
4804         Before this change, a libtool-enabled program that calls glibc's
4805         error function would report the program name as
4806         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
4807         * modules/progname (configure.ac): Check for a declaration of
4808         program_invocation_name.
4809         * lib/progname.c:  Include <errno.h>.
4810         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
4811         Set program_invocation_name.
4812
4813 2009-08-23  Bruno Haible  <bruno@clisp.org>
4814
4815         * lib/dup3.c: Include <string.h>.
4816
4817 2009-08-23  Bruno Haible  <bruno@clisp.org>
4818
4819         * lib/dup3.c (dup3): Test only once whether the system actually exists.
4820         * lib/pipe2.c (pipe2): Likewise.
4821         Suggested by Eric Blake.
4822
4823 2009-08-23  Bruno Haible  <bruno@clisp.org>
4824
4825         Tolerate declared but missing dup3 syscall.
4826         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
4827         * lib/unistd.in.h (dup3): If the function is already present,
4828         override it.
4829         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
4830         * modules/dup3 (Makefile.am): Compile dup3.c always.
4831         Reported by Paolo Bonzini.
4832
4833 2009-08-23  Bruno Haible  <bruno@clisp.org>
4834
4835         Tolerate declared but missing pipe2 syscall.
4836         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
4837         available.
4838         * lib/unistd.in.h (pipe2): If the function is already present,
4839         override it.
4840         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
4841         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
4842         Reported by Paolo Bonzini.
4843
4844 2009-08-23  Bruno Haible  <bruno@clisp.org>
4845
4846         * lib/pipe2.c (pipe2): Move #ifs inside function.
4847
4848 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4849
4850         quotearg: document limitations of quote_these_too
4851         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
4852         those limitations are created.
4853         * lib/quotearg.h (set_char_quoting): Document that digits and
4854         letters that are special after backslash are not permitted.
4855         (quotearg_char): Cross-reference set_char_quoting documentation.
4856
4857 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
4858
4859         quotearg: implement custom_quoting_style
4860         * lib/quotearg.c: (struct quoting_options): Add left_quote and
4861         right_quote fields.
4862         (set_custom_quoting): New public function.
4863         (quotearg_buffer_restyled): Add left_quote and right_quote
4864         arguments, handle them very much like locale quoting, and update
4865         all uses.
4866         (quotearg_n_custom): New public function.
4867         (quotearg_n_custom_mem): New public function.
4868         (quotearg_custom): New public function.
4869         (quotearg_custom_mem): New public function.
4870         * lib/quotearg.h: Prototype and document new public functions.
4871         (enum quoting_style): For escape_quoting_style and
4872         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
4873         ignored even though they're otherwise like c_quoting_style.
4874         Add custom_quoting_style member and document with comparison to
4875         clocale_quoting_style.
4876         * tests/test-quotearg.c (custom_quotes): New array.
4877         (custom_results): New array.
4878         (main): Extend to test custom quoting.
4879
4880 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4881
4882         quotearg: fix right quote escaping when it's in quote_these_too
4883         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
4884         quote, be sure to prepend only one backslash.
4885         * tests/test-quotearg.c (use_quote_double_quotes): New function.
4886         (main): Test it.
4887
4888 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4889
4890         quotearg-tests: test escaping of embedded locale quotes
4891         * tests/test-quotearg.c (struct result_strings): Add member for
4892         new input.
4893         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
4894         (inputs): Add new input.
4895         (results_g): Add expected results.
4896         (flag_results): Likewise.
4897         (locale_results): Likewise.
4898         (compare_strings): Check those.
4899
4900 2009-08-23  Bruno Haible  <bruno@clisp.org>
4901
4902         Tests for module 'dup3'.
4903         * modules/dup3-tests: New file.
4904         * tests/test-dup3.c: New file.
4905
4906         New module 'dup3'.
4907         * lib/unistd.in.h (dup3): New declaration.
4908         * lib/dup3.c: New file.
4909         * m4/dup3.m4: New file.
4910         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
4911         HAVE_DUP3.
4912         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
4913         * modules/dup3: New file.
4914         * doc/glibc-functions/dup3.texi: Mention the new module.
4915
4916 2009-08-23  Bruno Haible  <bruno@clisp.org>
4917
4918         Tweak the dup2 test.
4919         * tests/test-dup2.c (main): Create the test file empty. Verify that an
4920         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
4921         the test file is still empty. Fix argument order of lseek.
4922
4923 2009-08-23  Bruno Haible  <bruno@clisp.org>
4924
4925         Avoid test link errors when the modules getopt-gnu, gettext are used.
4926         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
4927         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
4928
4929 2009-08-23  Bruno Haible  <bruno@clisp.org>
4930
4931         Fix getdtablesize() on mingw.
4932         * lib/getdtablesize.c (getdtablesize): Implement differently.
4933         * lib/unistd.in.h (getdtablesize): Improve comment.
4934
4935 2009-08-23  Bruno Haible  <bruno@clisp.org>
4936
4937         New module 'mkostemp'.
4938         Based on Ulrich Drepper's 2007-08-10 change in glibc.
4939         * lib/stdlib.in.h (mksotemp): New declaration.
4940         * lib/mkostemp.c: New file, from glibc with modifications.
4941         * lib/tempname.h (GT_FILE): Remove outdated comment.
4942         (gen_tempname): Add flags argument.
4943         * lib/tempname.c (__GT_BIGFILE): Remove macro.
4944         (__GT_FILE): Map to 1.
4945         (small_open, large_open): Remove macros.
4946         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
4947         * lib/mkstemp.c (mkstemp): Update.
4948         * lib/mkdtemp.c (mkdtemp): Likewise.
4949         * m4/mkostemp.m4: New file.
4950         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
4951         HAVE_MKOSTEMP.
4952         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
4953         HAVE_MKOSTEMP.
4954         * modules/mkostemp: New file, based on modules/mkstemp.
4955         * doc/glibc-functions/mkostemp.texi: Mention the new module.
4956         * NEWS: Mention the change.
4957
4958 2009-08-23  Bruno Haible  <bruno@clisp.org>
4959
4960         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
4961         Reported by Eric Blake.
4962
4963 2009-08-23  Bruno Haible  <bruno@clisp.org>
4964
4965         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
4966         Reported by Eric Blake.
4967
4968 2009-08-23  Bruno Haible  <bruno@clisp.org>
4969
4970         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
4971         * modules/pipe2 (Depends-on): Likewise.
4972
4973 2009-08-23  Eric Blake  <ebb9@byu.net>
4974
4975         fcntl-h: add O_TTY_INIT support
4976         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
4977         * tests/test-fcntl-h.c (o): Test it.
4978         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
4979
4980         fcntl-h: rename from fcntl, in preparation for fcntl(2)
4981         * modules/fcntl: Move <fcntl.h> header replacement...
4982         * modules/fcntl-h: ...to new name, so as not to collide with
4983         like-named function.
4984         * tests/test-fcntl.c: Rename...
4985         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
4986         * modules/fcntl-tests: Rename...
4987         * modules/fcntl-h-tests: ...to this.  Update test file name.
4988         * modules/chdir-long (Depends-on): Update clients.
4989         * modules/chdir-safer (Depends-on): Likewise.
4990         * modules/fcntl-safer (Depends-on): Likewise.
4991         * modules/fts (Depends-on): Likewise.
4992         * modules/mkancesdirs (Depends-on): Likewise.
4993         * modules/mkdir-p (Depends-on): Likewise.
4994         * modules/open (Depends-on): Likewise.
4995         * modules/savewd (Depends-on): Likewise.
4996         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
4997         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
4998
4999 2009-08-22  Bruno Haible  <bruno@clisp.org>
5000
5001         * modules/binary-io (License): Relicense under LGPL.
5002         * modules/pipe2 (License): Likewise.
5003
5004 2009-08-22  Bruno Haible  <bruno@clisp.org>
5005
5006         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
5007         return value.
5008         * lib/pipe-filter-gi.c (filter_init): Likewise.
5009         Reported by Eric Blake.
5010
5011 2009-08-22  Bruno Haible  <bruno@clisp.org>
5012
5013         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
5014         * modules/pipe (Depends-on): Add pipe2.
5015
5016 2009-08-22  Bruno Haible  <bruno@clisp.org>
5017
5018         Tests for module 'pipe2'.
5019         * modules/pipe2-tests: New file.
5020         * tests/test-pipe2.c: New file.
5021
5022         New module 'pipe2'.
5023         * lib/unistd.in.h (pipe2): New declaration.
5024         * lib/pipe2.c: New file.
5025         * m4/pipe2.m4: New file.
5026         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
5027         HAVE_PIPE2.
5028         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
5029         * modules/pipe2: New file.
5030         * doc/glibc-functions/pipe2.texi: Mention the new module.
5031
5032 2009-08-22  Bruno Haible  <bruno@clisp.org>
5033
5034         Reference some new glibc functions.
5035         * doc/glibc-functions/accept4.texi: New file.
5036         * doc/glibc-functions/dup3.texi: New file.
5037         * doc/glibc-functions/mkostemp.texi: New file.
5038         * doc/glibc-functions/pipe2.texi: New file.
5039         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
5040         (Glibc sys/socket.h): Refer to accept4.
5041         (Glibc unistd.h): Refer to dup3, pipe2.
5042         Reported by Eric Blake.
5043
5044 2009-08-22  Jim Meyering  <meyering@redhat.com>
5045             Bruno Haible  <bruno@clisp.org>
5046
5047         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
5048         This makes it so packages using automake-1.11's silent-rules option
5049         can print e.g., a single "GEN    configmake.h" line, rather than
5050         the 30+ statements that perform the job.  If you want to see the
5051         actual commands, you can still run "make V=1".
5052         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
5053         so that make output is abbreviated when those variables are defined
5054         appropriately.
5055         * modules/argz: Likewise.
5056         * modules/arpa_inet: Likewise.
5057         * modules/byteswap: Likewise.
5058         * modules/configmake: Likewise.
5059         * modules/dirent: Likewise.
5060         * modules/errno: Likewise.
5061         * modules/fcntl: Likewise.
5062         * modules/float: Likewise.
5063         * modules/fnmatch: Likewise.
5064         * modules/getopt-posix: Likewise.
5065         * modules/glob: Likewise.
5066         * modules/iconv_open: Likewise.
5067         * modules/inttypes: Likewise.
5068         * modules/localcharset: Likewise.
5069         * modules/locale: Likewise.
5070         * modules/math: Likewise.
5071         * modules/netdb: Likewise.
5072         * modules/netinet_in: Likewise.
5073         * modules/poll: Likewise.
5074         * modules/posix_spawnp-tests: Likewise.
5075         * modules/sched: Likewise.
5076         * modules/search: Likewise.
5077         * modules/selinux-h: Likewise.
5078         * modules/signal: Likewise.
5079         * modules/spawn: Likewise.
5080         * modules/stdarg: Likewise.
5081         * modules/stdbool: Likewise.
5082         * modules/stddef: Likewise.
5083         * modules/stdint: Likewise.
5084         * modules/stdio: Likewise.
5085         * modules/stdlib: Likewise.
5086         * modules/string: Likewise.
5087         * modules/strings: Likewise.
5088         * modules/sys_file: Likewise.
5089         * modules/sys_ioctl: Likewise.
5090         * modules/sys_select: Likewise.
5091         * modules/sys_socket: Likewise.
5092         * modules/sys_stat: Likewise.
5093         * modules/sys_time: Likewise.
5094         * modules/sys_times: Likewise.
5095         * modules/sys_utsname: Likewise.
5096         * modules/sys_wait: Likewise.
5097         * modules/sysexits: Likewise.
5098         * modules/time: Likewise.
5099         * modules/unistd: Likewise.
5100         * modules/wchar: Likewise.
5101         * modules/wctype: Likewise.
5102
5103 2009-08-22  Jim Meyering  <meyering@redhat.com>
5104
5105         announce-gen: detect write failure
5106         * build-aux/announce-gen: Add Coda at end.
5107         Remove equivalent-but-more-verbose block at top.
5108
5109 2009-08-19  Akim Demaille  <demaille@gostai.com>
5110
5111         bootstrap: --help to stdout.
5112         * bootstrap (usage): Don't send --help to stderr.
5113         Use a here doc instead of a long string.
5114
5115 2009-08-21  Eric Blake  <ebb9@byu.net>
5116
5117         test-popen-safer: split from test-popen
5118         * tests/test-popen.c (main): Move...
5119         * tests/test-popen.h: ...into new file.
5120         * tests/test-popen-safer2.c: New file.
5121         * modules/popen-tests (Files): Add test-popen.h.
5122         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
5123         Suggested by Bruno Haible.
5124
5125         test-fcntl-safer: split from test-open
5126         * tests/test-open.c (main): Move...
5127         * tests/test-open.h: ...into new file.
5128         * tests/test-fcntl-safer.c: New file.
5129         * modules/open-tests (Files): Add test-open.h.
5130         * modules/fcntl-safer-tests: New file.
5131         Suggested by Bruno Haible.
5132
5133         test-fopen-safer: split from test-fopen
5134         * tests/test-fopen.c (main): Move...
5135         * tests/test-fopen.h: ...into new file.
5136         * tests/test-fopen-safer.c: New file.
5137         * modules/fopen-tests (Files): Add test-fopen.h.
5138         * modules/fopen-safer-tests: New file.
5139         Suggested by Bruno Haible.
5140
5141 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5142
5143         popen-safer: test O_CLOEXEC at run-time.
5144         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
5145
5146 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5147
5148         fcntl: move more flags to the header
5149         * lib/cloexec.c: Do not define FD_CLOEXEC here.
5150         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
5151         * lib/fcntl.in.h: Do both things here.
5152
5153 2009-08-21  Jim Meyering  <meyering@redhat.com>
5154
5155         consistently remove $@-t before redirecting to it
5156         * modules/argz: Remove $@-t and $@ before redirecting to the former.
5157         * modules/alloca-opt: Likewise.
5158         * modules/byteswap: Likewise.
5159         * modules/fnmatch: Likewise.
5160         * modules/getopt-posix: Likewise.
5161         * modules/glob: Likewise.
5162         * modules/poll: Likewise.
5163         * modules/posix_spawnp-tests: Likewise.
5164         * modules/sys_socket: Likewise.
5165         * modules/sysexits: Likewise.
5166
5167 2009-08-21  Eric Blake  <ebb9@byu.net>
5168
5169         popen: simplify access to original popen
5170         * lib/popen.c (rpl_popen): No need to worry about popen being a
5171         macro.
5172         Reported by Bruno Haible.
5173
5174 2009-08-20  Eric Blake  <ebb9@byu.net>
5175
5176         build: avoid some compiler warnings
5177         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
5178         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
5179         type.
5180         (new_exclude_segment, excluded_file_pattern_p)
5181         (excluded_file_name_p): Reduce scope.
5182         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
5183         old-style declaration.
5184
5185 2009-08-20  Simon Josefsson  <simon@josefsson.org>
5186
5187         * tests/test-exclude1.sh: Handle Windows EOL.
5188         * tests/test-exclude2.sh: Likewise.
5189         * tests/test-exclude3.sh: Likewise.
5190         * tests/test-exclude4.sh: Likewise.
5191         * tests/test-exclude5.sh: Likewise.
5192         * tests/test-exclude6.sh: Likewise.
5193         * tests/test-exclude7.sh: Likewise.
5194
5195 2009-08-19  Akim Demaille  <demaille@gostai.com>
5196
5197         bootstrap: find sha1sum when named gsha1sum.
5198         * bootstrap (find_tool): New.
5199         ($SHA1SUM): New.
5200         Use it.
5201
5202 2009-08-20  Jim Meyering  <meyering@redhat.com>
5203
5204         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
5205         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
5206         expression that converts "." in a file name to "\." in the resulting
5207         regexp.  Start with a dummy statement, so that prior shell variable
5208         definitions are expanded portably.  Reported by Simon Josefsson.
5209
5210 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
5211
5212         Fix polling for writeability of a screen buffer.
5213         * lib/poll.c: Distinguish input and screen buffers for the
5214         Win32 implementation.
5215         * lib/select.c: Likewise.
5216
5217 2009-08-19  Eric Blake  <ebb9@byu.net>
5218
5219         popen-safer: prevent popen from clobbering std descriptors
5220         * modules/popen-safer: New file.
5221         * lib/popen-safer.c: Likewise.
5222         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
5223         * lib/stdio--.h (popen): Provide override.
5224         * lib/stdio-safer.h (popen_safer): Provide declaration.
5225         * tests/test-popen.c (includes): Partially test this.
5226         * modules/popen-safer-tests: New file, for more tests.
5227         * tests/test-popen-safer.c: Likewise.
5228         * MODULES.html.sh (file stream based Input/Output): Mention it.
5229
5230         tests: test some of the *-safer modules
5231         * modules/fopen-safer (Depends-on): Add fopen.
5232         * modules/fcntl-safer (Depends-on): Add fcntl.
5233         * modules/stdlib-safer (Depends-on): Add stdlib.
5234         (configure.ac): Set indicator.
5235         * modules/unistd-safer (configure.ac): Likewise.
5236         * modules/tmpfile-safer (configure.ac): Likewise.
5237         (Depends-on): Add tmpfile.
5238         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
5239         active.
5240         * tests/test-fopen.c (includes): Test safer versions when they are
5241         in use.
5242         * tests/test-open.c (includes): Likewise.
5243
5244         popen: fix cygwin 1.5 bug when stdin closed
5245         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
5246         * modules/popen: New file.
5247         * modules/popen-tests: Likewise.
5248         * tests/test-popen.c: Likewise.
5249         * m4/popen.m4: Likewise.
5250         * lib/popen.c: Likewise.
5251         * lib/stdio.in.h (popen): New declaration.
5252         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
5253         * modules/stdio (Makefile.am): Likewise.
5254         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
5255
5256 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
5257
5258         maint.mk: give full control over update-copyright exclusions
5259         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
5260         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
5261         (update-copyright): Don't force inclusion of top-level
5262         ChangeLog.  Don't force exclusion of all COPYING files, but make
5263         them the default exclusion instead.
5264
5265 2009-08-16  Bruno Haible  <bruno@clisp.org>
5266
5267         Fix test failures on Solaris 10.
5268         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
5269         tests when Solaris iconv() is used.
5270         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
5271         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
5272         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
5273         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
5274         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
5275
5276 2009-08-16  Bruno Haible  <bruno@clisp.org>
5277
5278         Fix test failures on Solaris 10.
5279         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
5280         'tr' program and pass it as first argument.
5281         * tests/test-pipe-filter-gi1.sh: Likewise.
5282         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
5283         program as first argument.
5284         * tests/test-pipe-filter-gi1.c (main): Likewise.
5285
5286 2009-08-16  Eric Blake  <ebb9@byu.net>
5287
5288         fpurge: fix previous commits
5289         * modules/fpurge (Makefile.am): Make replacement conditional,
5290         partially reverting 2007-04-29 change; missed in previous
5291         attempt.
5292         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
5293         is missing.
5294
5295 2009-08-16  Bruno Haible  <bruno@clisp.org>
5296
5297         Clarify fpurge's effect on the file position.
5298         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
5299         * tests/test-fpurge.c (main): Make a second pass for checking the file
5300         position.
5301
5302 2009-08-16  Bruno Haible  <bruno@clisp.org>
5303
5304         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
5305         declaration of fpurge is missing.
5306         * tests/test-fpurge.c (main): Check that the file has not more contents
5307         than expected. Close the file before removing it.
5308
5309 2009-08-15  Eric Blake  <ebb9@byu.net>
5310
5311         fpurge: don't wrap working cygwin implementation
5312         * lib/fpurge.c (fpurge): Fix comment typo.
5313         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
5314         1.7 to avoid replacement.
5315         * tests/test-fpurge.c (main): Enhance test.
5316
5317 2009-08-15  Eric Blake  <ebb9@byu.net>
5318         and Jim Meyering  <meyering@redhat.com>
5319
5320         test-update-copyright: skip if perl is insufficient
5321         * tests/test-update-copyright.sh: Failure to run maintainer tool
5322         should not cause testsuite failure on cygwin 1.5.
5323
5324 2009-08-14  Eric Blake  <ebb9@byu.net>
5325
5326         doc: mention more functions added in cygwin 1.7.0
5327         * doc/posix-headers/limits.texi (limits.h): Update for recent
5328         cygwin additions.
5329         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
5330         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
5331         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
5332         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
5333         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
5334
5335 2009-08-14  Eric Blake  <ebb9@byu.net>
5336
5337         maint.mk: simplify update-copyright rule
5338         * top/maint.mk (update-copyright-local): Delete, and document how
5339         to do it in cfg.mk instead.
5340         (update-copyright-exclude-regexp): Delete, and document how to do
5341         it in .x-update-copyright instead.
5342         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
5343         exclude ChangeLog.
5344
5345 2009-08-14  Bruno Haible  <bruno@clisp.org>
5346
5347         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
5348
5349 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5350
5351         maint.mk: support update-copyright-env
5352         * top/maint.mk (update-copyright-env): Define place-holder.
5353         (update-copyright): Expand $(update-copyright-env) before
5354         invoking update-copyright.
5355
5356 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5357
5358         update-copyright: implement forced reformatting
5359         * build-aux/update-copyright: Implement and document
5360         UPDATE_COPYRIGHT_FORCE.
5361         * tests/test-update-copyright.sh: Test it.
5362
5363 2009-08-14  Eric Blake  <ebb9@byu.net>
5364         and Bruno Haible  <bruno@clisp.org>
5365
5366         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
5367         * tests/test-locale.c: Revert previous patch related to NULL.
5368         * tests/test-stdio.c: Likewise.
5369         * tests/test-stdlib.c: Likewise.
5370         * tests/test-string.c: Likewise.
5371         * tests/test-unistd.c: Likewise.
5372         * modules/time-tests (Depends-on): Add verify.
5373         * modules/wchar-tests (Depends-on): Likewise.
5374         * tests/test-time.c: Test for NULL compliance.
5375         * tests/test-wchar.c: Likewise.
5376         * modules/locale (Depends-on): Add stddef.
5377         * modules/stdio (Depends-on): Likewise.
5378         * modules/stdlib (Depends-on): Likewise.
5379         * modules/string (Depends-on): Likewise.
5380         * modules/time (Depends-on): Likewise.
5381         * modules/unistd (Depends-on): Likewise.
5382         * modules/wchar (Depends-on): Likewise.
5383         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
5384         * lib/stdlib.in.h (includes): Likewise.
5385         * lib/string.in.h (includes): Likewise.
5386         * lib/time.in.h (includes): Likewise.
5387         * lib/unistd.in.h (includes): Likewise.
5388         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
5389         replaced.
5390         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
5391         * m4/stddef_h.m4: New file.
5392         * modules/stddef: Likewise.
5393         * lib/stddef.in.h: Likewise.
5394         * modules/stddef-tests: Likewise.
5395         * tests/test-stddef.c: Likewise.
5396         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
5397         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
5398         * doc/posix-headers/locale.texi (locale.h): Likewise.
5399         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
5400         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
5401         * doc/posix-headers/string.texi (string.h): Likewise.
5402         * doc/posix-headers/time.texi (time.h): Likewise.
5403         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
5404         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
5405
5406 2009-08-14  Eric Blake  <ebb9@byu.net>
5407
5408         doc: improve git diff of texinfo files
5409         * .gitattributes: Add rule for *.texi files, with hint on how to
5410         use it.
5411         Copied from m4, and based on a report by Bruno Haible.
5412
5413 2009-08-14  Bruno Haible  <bruno@clisp.org>
5414
5415         Disable multithread support by default on Cygwin 1.5.x for real.
5416         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
5417
5418 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5419
5420         update-copyright: much ado about intervals
5421         * build-aux/update-copyright: Implement and document
5422         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
5423         of copyright year intervals.
5424         Also, document UPDATE_COPYRIGHT_YEAR.
5425         * tests/test-update-copyright.sh: Test it.
5426
5427         update-copyright: convert 2-digit to 4-digit years
5428         * build-aux/update-copyright: Implement and document.
5429         * tests/test-update-copyright.sh: Update.
5430
5431 2009-08-14  Jim Meyering  <meyering@redhat.com>
5432
5433         test-exclude: avoid coreutils "make check" failure
5434         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
5435         just as in test-argmatch.c.
5436
5437 2009-08-13  Eric Blake  <ebb9@byu.net>
5438
5439         test-dup2: fix bad assumption
5440         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
5441         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
5442
5443         test-version-etc: fix CRLF portability issue
5444         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
5445         recognize \r.
5446         * tests/test-argp-version-etc-1.sh: Likewise.
5447
5448         getopt: update client modules
5449         * modules/argp (Depends-on): Use getopt-gnu.
5450         * modules/git-merge-changelog (Depends-on): Likewise.
5451         * modules/long-options (Depends-on): Likewise.
5452         * modules/xstrtol (Depends-on): Likewise.
5453
5454 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5455
5456         * tests/test-version-etc.sh: Don't fail on different
5457         project/version.  Don't fail on CRLF differences.  Rewrite to use
5458         multiple -e instead of multiple sed forks, suggested by Eric Blake
5459         <ebb9@byu.net>.
5460         * tests/test-argp-version-etc-1.sh: Likewise.
5461
5462 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5463
5464         * tests/test-version-etc.sh: Don't fail on different
5465         project/version.
5466
5467 2009-08-12  Bruno Haible  <bruno@clisp.org>
5468
5469         Tests for modules 'getopt-posix', 'getopt-gnu'.
5470         * modules/getopt-posix-tests: New file.
5471         * tests/test-getopt.c: New file.
5472         * tests/test-getopt.h: New file.
5473         * tests/test-getopt_long.h: New file.
5474
5475         New modules 'getopt-posix', 'getopt-gnu'.
5476         * modules/getopt-gnu: New file, renamed from modules/getopt.
5477         * modules/getopt-posix: New file.
5478         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
5479         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
5480         (gl_GETOPT): Remove macro.
5481         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
5482         Disable the test against BSD systems that declare optreset. Test
5483         against mingw bug. Test against lack of support of optional arguments
5484         on many platforms.
5485         * doc/glibc-headers/getopt.texi: Update module name and list of
5486         relevant platforms.
5487         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
5488         'getopt-gnu' and more portability problems.
5489         * NEWS: Mention the changes.
5490
5491 2009-08-12  Bruno Haible  <bruno@clisp.org>
5492
5493         Ensure that optarg etc. get declared by <unistd.h>.
5494         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
5495         AC_USE_SYSTEM_EXTENSIONS.
5496         * modules/getopt (Depends-on): Add 'extensions'.
5497
5498 2009-08-12  Bruno Haible  <bruno@clisp.org>
5499
5500         Avoid test link errors.
5501         * modules/pipe-filter-ii-tests (Makefile.am): Define
5502         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
5503         * modules/pipe-filter-gi-tests (Makefile.am): Define
5504         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
5505         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5506
5507 2009-08-12  Bruno Haible  <bruno@clisp.org>
5508
5509         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
5510         gl_GETOPT_SUBSTITUTE before.
5511         (gl_GETOPT): Use it.
5512         * m4/argp.m4 (gl_ARGP): Update.
5513         Reported by Sergey Poznyakoff.
5514
5515         * m4/getopt.m4: Reorder macros.
5516         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
5517         (gl_GETOPT_SUBSTITUTE): Remove macro.
5518
5519 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5520
5521         Minor improvement in gitlog-to-changelog
5522
5523         * build-aux/gitlog-to-changelog: New option `--format' makes
5524         output format string configurable.
5525
5526 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5527
5528         Optimize exclude: use hash tables for non-wildcard patterns.
5529
5530         * lib/exclude.c: Include hash.h and mbuiter.h
5531         (struct exclude_pattern, exclude_segment): New data types.
5532         (struct exclude): Rewrite.
5533         (fnmatch_pattern_has_wildcards): New function.
5534         (new_exclude_segment, free_exclude_segment): New functions.
5535         (excluded_file_pattern_p, excluded_file_name_p): New functions.
5536         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
5537         * lib/exclude.h (is_fnmatch_pattern): New prototype.
5538         * modules/exclude: Depend on hash and mbuiter.
5539
5540         * modules/exclude-tests: New file.
5541         * tests/test-exclude.c: New file.
5542         * tests/test-exclude1.sh: New file.
5543         * tests/test-exclude2.sh: New file.
5544         * tests/test-exclude3.sh: New file.
5545         * tests/test-exclude4.sh: New file.
5546         * tests/test-exclude5.sh: New file.
5547         * tests/test-exclude6.sh: New file.
5548         * tests/test-exclude7.sh: New file.
5549
5550 2009-08-12  Bruno Haible  <bruno@clisp.org>
5551
5552         Ensure that getopt() gets declared by <unistd.h>.
5553         * lib/unistd.in.h: Conditionally include getopt.h.
5554         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
5555         Set GNULIB_UNISTD_H_GETOPT.
5556         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5557         GNULIB_UNISTD_H_GETOPT.
5558         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
5559
5560 2009-08-12  Bruno Haible  <bruno@clisp.org>
5561
5562         Clarify logic.
5563         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
5564         gl_replace_getopt instead of GETOPT_H.
5565
5566 2009-08-12  Bruno Haible  <bruno@clisp.org>
5567
5568         * m4/getopt.m4: Add comments.
5569
5570 2009-08-12  Bruno Haible  <bruno@clisp.org>
5571
5572         Disable multithread support by default on Cygwin 1.5.x.
5573         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
5574         set gl_use_threads=no if not specified otherwise.
5575
5576 2009-08-11  Bruno Haible  <bruno@clisp.org>
5577
5578         Avoid compilation error on NetBSD 5.0.
5579         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
5580         * tests/test-stdio.c: Likewise.
5581         * tests/test-stdlib.c: Likewise.
5582         * tests/test-string.c: Likewise.
5583         * tests/test-unistd.c: Likewise.
5584         Reported by Greg Troxel <gdt@ir.bbn.com>
5585         at <https://savannah.gnu.org/support/?106973>.
5586
5587 2009-08-11  Bruno Haible  <bruno@clisp.org>
5588
5589         * modules/dup2-tests (Depends-on): Remove close.
5590
5591         Undo 2009-07-19 commit.
5592         * modules/acl-tests (Depends-on): Remove close.
5593         * modules/binary-io-tests (Depends-on): Likewise.
5594         * modules/closein-tests (Depends-on): Likewise.
5595         * modules/flock-tests (Depends-on): Likewise.
5596         * modules/fsync-tests (Depends-on): Likewise.
5597         * modules/lseek-tests (Depends-on): Likewise.
5598         * modules/pipe-tests (Depends-on): Likewise.
5599         * modules/posix_spawn-tests (Depends-on): Likewise.
5600         * modules/posix_spawnp-tests (Depends-on): Likewise.
5601         * modules/stat-time-tests (Depends-on): Likewise.
5602         * modules/yesno-tests (Depends-on): Likewise.
5603
5604 2009-08-10  Bruno Haible  <bruno@clisp.org>
5605
5606         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
5607
5608 2009-08-10  Bruno Haible  <bruno@clisp.org>
5609
5610         Fix a gcc warning.
5611         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
5612
5613 2009-08-10  Bruno Haible  <bruno@clisp.org>
5614
5615         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
5616         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
5617         not only the first time.
5618         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
5619         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
5620         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
5621         is 1, not only the the first time.
5622
5623 2009-08-10  Bruno Haible  <bruno@clisp.org>
5624
5625         Make it possible to use module 'gethostname' without module 'close'.
5626         * lib/unistd.in.h (close): Evoke a link error only if
5627         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5628         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5629         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5630         * modules/unistd (Makefile.am): Substitute
5631         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5632         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
5633         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5634         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
5635         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5636         * modules/sys_ioctl (Makefile.am): Substitute
5637         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5638         * modules/socket (configure.ac): On native Windows, set
5639         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
5640         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5641         Reported by Sam Steingold <sds@gnu.org>.
5642
5643 2009-08-10  Bruno Haible  <bruno@clisp.org>
5644
5645         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
5646         * modules/ioctl (configure.ac): Likewise.
5647
5648 2009-08-10  Bruno Haible  <bruno@clisp.org>
5649
5650         Avoid collision between gnulib wrapper and libintl wrapper.
5651         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
5652         already defined in intl/printf.c.
5653         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
5654         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
5655
5656 2009-08-09  Bruno Haible  <bruno@clisp.org>
5657
5658         Make <sys/select.h> really self-contained, also on Solaris 10.
5659         * lib/sys_select.in.h: Include <string.h>.
5660         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
5661         Solaris 10 problem.
5662         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
5663         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
5664         Reported by Jim Meyering.
5665
5666 2009-08-09  Bruno Haible  <bruno@clisp.org>
5667
5668         Avoid warnings from 'aclocal' that are due to a use of macro name
5669         AM_XGETTEXT_OPTION that is not defined in automake.
5670         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
5671         automake.
5672         * modules/error (configure.ac): Likewise.
5673         * modules/propername (configure.ac): Likewise.
5674         * modules/vasprintf (configure.ac): Likewise.
5675         * modules/verror (configure.ac): Likewise.
5676         * modules/xprintf (configure.ac): Likewise.
5677         * modules/xvasprintf (configure.ac): Likewise.
5678
5679 2009-08-08  Bruno Haible  <bruno@clisp.org>
5680
5681         Avoid compilation error in C++ mode.
5682         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
5683         Reported by Sam Steingold <sds@gnu.org>.
5684
5685 2009-08-08  Bruno Haible  <bruno@clisp.org>
5686
5687         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
5688         for the various Unix platforms.
5689         * doc/posix-headers/limits.texi: Update platforms list regarding
5690         HOST_NAME_MAX.
5691         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5692
5693 2009-08-07  Jim Meyering  <meyering@redhat.com>
5694
5695         selinux-at: fix typo in a comment
5696         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
5697         Spotted by Paolo Bonzini.
5698
5699         selinux-at: remove redundant m4 code, add documentation
5700         * modules/selinux-at (configure.ac): Remove redundant code.
5701         LIB_SELINUX is already set via the dependent module, selinux-h.
5702         (Include): Add quotes around selinux-at.h.
5703         * lib/selinux-at.h: Add documentation.
5704         Reported by Bruno Haible in
5705         http://marc.info/?l=gnulib-bug&m=124958988300749
5706
5707 2009-08-07  Bruno Haible  <bruno@clisp.org>
5708
5709         Avoid link error on MacOS X 10.3 and 10.4.
5710         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
5711         on non-ELF systems.
5712         * lib/argp-pv.c (argp_program_version): Likewise.
5713         Reported by Simon Josefsson.
5714
5715 2009-08-07  Simon Josefsson  <simon@josefsson.org>
5716
5717         * tests/test-version-etc.sh: Use $EXEEXT.
5718
5719 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
5720
5721         update-copyright: update documentation to point to maint.mk
5722         * build-aux/update-copyright: Here.
5723
5724 2009-08-06  Jim Meyering  <meyering@redhat.com>
5725
5726         maint.mk: support update-copyright-local
5727         * top/maint.mk (update-copyright-local): Define place-holder.
5728         (update-copyright): Depend on $(update-copyright-local).
5729
5730 2009-08-06  Jim Meyering  <meyering@redhat.com>
5731
5732         selinux-at: new module
5733         Initially written for coreutils, this module will soon be
5734         used by findutils, too.
5735         * MODULES.html.sh [Misc]: Add selinux-at.
5736         * lib/selinux-at.h: New file, from coreutils.
5737         * lib/selinux-at.c: Likewise.
5738         * modules/selinux-at: Likewise.
5739         (License): Change from LGPL to GPL, since it depends
5740         on the GPL'd openat module.
5741
5742         doc: update README
5743         * README: Remove references to cogito.
5744         Remove cvs-repo-updating instructions from 2007.
5745         Don't imply that CVS is better if you have limited disk space.
5746
5747 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5748
5749         update-copyright: support C-style comments
5750         * build-aux/update-copyright: Implement and document.
5751         * tests/test-update-copyright.sh: Test.
5752
5753 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5754
5755         update-copyright: support omitted "(C)"
5756         * build-aux/update-copyright: Implement and document.  Also,
5757         allow variable whitespace before "(C)".
5758         * tests/test-update-copyright.sh: Test.
5759
5760 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5761
5762         update-copyright: don't trip on non-FSF copyright statements
5763         * build-aux/update-copyright: Fix so that the first correctly
5764         formatted FSF copyright statement is recognized no matter what
5765         appears before it.  Update documentation.
5766         * tests/test-update-copyright.sh: Test that.
5767
5768 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5769
5770         update-copyright: clean up code a little
5771         * build-aux/update-copyright: Append "_re" to the name of any
5772         variable holding a regular expression.
5773         Replace "old" and "new" with "stmt" in variable names.
5774         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
5775         handled correctly.
5776         Format code more consistently.
5777
5778 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5779
5780         update-copyright-tests: improve portability
5781         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
5782         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
5783
5784 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5785
5786         update-copyright: support @copyright{} and &copy;
5787         * build-aux/update-copyright: Implement and document.
5788         * tests/test-update-copyright.sh: Test.
5789
5790 2009-08-04  Jim Meyering  <meyering@redhat.com>
5791
5792         update-copyright-tests: correctly test EOL=\r\n handling
5793         * tests/test-update-copyright.sh: Put \r at the end of some lines
5794         for the dos-eol tests.  Based on a patch by Joel E. Denny.
5795
5796         maint.mk: make update-copyright exclusion list more configurable
5797         * top/maint.mk (update-copyright): Default to excluding COPYING,
5798         but allow an override, in case someone does want to update that file.
5799
5800         maint.mk: don't update copyright date in COPYING
5801         * top/maint.mk (update-copyright): Exclude COPYING.
5802
5803         maint.mk: add a copyright-updating rule
5804         * top/maint.mk (update-copyright): New rule.
5805         Derived from coreutils/Makefile.am.
5806
5807         update-copyright: rename some variables
5808         * build-aux/update-copyright: Rename a few variables for clarity.
5809         Tweak syntax.  List Joel E. Denny as coauthor.
5810
5811 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5812
5813         update-copyright: fix bug for 2-digit last year and add tests
5814         * build-aux/update-copyright: Fix bug.
5815         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
5816         specified.
5817         * modules/update-copyright-tests: New
5818         * tests/test-update-copyright.sh: New.
5819
5820 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5821
5822         update-copyright: handle leading tabs in line prefix
5823         * build-aux/update-copyright: Count leading tabs as 8 spaces
5824         when computing margin.  This helps with the formatting of
5825         ChangeLogs, for example.
5826         Fix documentation a little.
5827
5828 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5829
5830         update-copyright: support EOL=\r\n
5831         * build-aux/update-copyright: Implement that.
5832
5833 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5834
5835         update-copyright: automatically format copyright statements
5836         * build-aux/update-copyright: Implement that.
5837         Also, be a little more predictable and safer by always failing
5838         when the full copyright format is not perfectly recognized as an
5839         unbroken whole.  Discussed at
5840         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
5841         Rewrite documentation.
5842
5843 2009-08-03  Bruno Haible  <bruno@clisp.org>
5844
5845         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
5846
5847 2009-08-02  Bruno Haible  <bruno@clisp.org>
5848
5849         Tests for module 'uname'.
5850         * modules/uname-tests: New file.
5851         * tests/test-uname.c: New file.
5852
5853         New module 'uname'.
5854         * lib/uname.c: New file.
5855         * m4/uname.m4: New file.
5856         * modules/uname: New file.
5857         * doc/posix-functions/uname.texi: Mention the new module.
5858
5859 2009-08-02  Bruno Haible  <bruno@clisp.org>
5860
5861         Tests for module 'sys_utsname'.
5862         * modules/sys_utsname-tests: New file.
5863         * tests/test-sys_utsname.c: New file.
5864
5865         New module 'sys_utsname'.
5866         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
5867         * m4/sys_utsname_h.m4: New file.
5868         * modules/sys_utsname: New file.
5869         * doc/posix-headers/sys_utsname.texi: Mention the new module.
5870
5871 2009-08-02  Bruno Haible  <bruno@clisp.org>
5872
5873         Implicitly initialize the sockets library.
5874         * lib/gethostname.c: Include sockets.h.
5875         (rpl_gethostname): Invoke gl_sockets_startup.
5876         * lib/socket.c: Include sockets.h.
5877         (rpl_socket): Invoke gl_sockets_startup.
5878         * modules/gethostname (Depends-on): Add sockets.
5879         * modules/socket (Depends-on): Likewise.
5880         * tests/test-poll.c: Don't include sockets.h.
5881         (main): Don't invoke gl_sockets_startup.
5882         * tests/test-select.c: Don't include sockets.h.
5883         (main): Don't invoke gl_sockets_startup.
5884
5885 2009-08-02  Bruno Haible  <bruno@clisp.org>
5886
5887         Allow multiple calls to gl_sockets_startup.
5888         * lib/sockets.c (initialized_sockets_version): New variable.
5889         (gl_sockets_startup): Do nothing if already called for this or a higher
5890         version.
5891         (gl_sockets_cleanup): Reset initialized_sockets_version.
5892
5893 2009-08-03  Simon Josefsson  <simon@josefsson.org>
5894
5895         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
5896         different project/version.
5897
5898 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
5899             Bruno Haible  <bruno@clisp.org>
5900
5901         Tests for module 'pipe-filter-gi'.
5902         * modules/pipe-filter-gi-tests: New file.
5903         * tests/test-pipe-filter-gi1.sh: New file.
5904         * tests/test-pipe-filter-gi1.c: New file.
5905         * tests/test-pipe-filter-gi2.sh: New file.
5906         * tests/test-pipe-filter-gi2-main.c: New file.
5907         * tests/test-pipe-filter-gi2-child.c: New file.
5908
5909         New module 'pipe-filter-gi'.
5910         * lib/pipe-filter-gi.c: New file.
5911         * modules/pipe-filter-gi: New file.
5912
5913 2009-08-02  Bruno Haible  <bruno@clisp.org>
5914             Paolo Bonzini  <bonzini@gnu.org>
5915
5916         Tests for module 'pipe-filter-ii'.
5917         * modules/pipe-filter-ii-tests: New file.
5918         * tests/test-pipe-filter-ii1.sh: New file.
5919         * tests/test-pipe-filter-ii1.c: New file.
5920         * tests/test-pipe-filter-ii2.sh: New file.
5921         * tests/test-pipe-filter-ii2-main.c: New file.
5922         * tests/test-pipe-filter-ii2-child.c: New file.
5923
5924         New module 'pipe-filter-ii'.
5925         * lib/pipe-filter.h: New file.
5926         * lib/pipe-filter-ii.c: New file.
5927         * lib/pipe-filter-aux.h: New file.
5928         * modules/pipe-filter-ii: New file.
5929
5930 2009-08-02  Simon Josefsson  <simon@josefsson.org>
5931
5932         * lib/gc-libgcrypt.c: Change copyright to FSF.
5933         * lib/gc-gnulib.c: Likewise.
5934
5935 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
5936
5937         * lib/gethostname.c: Include limits.h.
5938
5939 2009-08-02  Simon Josefsson  <simon@josefsson.org>
5940             Bruno Haible  <bruno@clisp.org>
5941
5942         Ensure HOST_NAME_MAX as part of the gethostname module.
5943         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
5944         define also HOST_NAME_MAX.
5945         * tests/test-gethostname.c: Include <limits.h>.
5946         (main): Check also HOST_NAME_MAX.
5947         * doc/posix-headers/limits.texi: Document the mingw problem.
5948
5949 2009-08-02  Bruno Haible  <bruno@clisp.org>
5950
5951         * lib/gethostname.c (gethostname): Fix handling of large len argument.
5952         Add comments.
5953
5954 2009-03-31  Simon Josefsson  <simon@josefsson.org>
5955
5956         * lib/gethostname.c: Add Windows wrapper.
5957         * m4/gethostname.m4: Look for gethostname in -lws2_32.
5958         * modules/gethostname: Depend on sys_socket & errno, for also
5959         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
5960         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
5961
5962 2009-07-31  Jim Meyering  <meyering@redhat.com>
5963
5964         getloadavg: fix symbol name in comment
5965         * lib/getloadavg.c: Correct a typo I introduced when adding
5966         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
5967         Matt Kraai spotted the problem.
5968
5969 2009-07-29  Matt Kraai  <mkraai@beckman.com>
5970
5971         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
5972         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
5973         code also if ! defined N_NAME_POINTER.
5974         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
5975         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
5976         but the n_name member is a 12-byte array.
5977
5978 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
5979
5980         update-copyright: generalize comment handling
5981         * build-aux/update-copyright: Handle copyright statements
5982         within more comment styles.
5983         Document usage.
5984         Report any file with an external copyright holder or parse failure.
5985
5986 2009-07-29  Jim Meyering  <meyering@redhat.com>
5987
5988         mktime: correct setting of REPLACE_MKTIME
5989         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
5990
5991         update-copyright: new module
5992         * modules/update-copyright: New file.
5993         * build-aux/update-copyright: New file.
5994         * MODULES.html.sh (maint+release support): Add update-copyright.
5995
5996 2009-07-27  Bruno Haible  <bruno@clisp.org>
5997
5998         Fix compilation error when <ctime> is used and mktime is replaced.
5999         * lib/time.in.h (mktime): New declaration.
6000         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
6001         REPLACE_MKTIME instead of defining mktime in config.h.
6002         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
6003         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
6004         Reported by Ross McFarland <rwmcfa1@neces.com>.
6005
6006 2009-07-27  Bruno Haible  <bruno@clisp.org>
6007
6008         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
6009         Reported by Matt Kraai <mkraai@beckman.com>.
6010
6011 2009-07-25  Jim Meyering  <meyering@redhat.com>
6012
6013         maint.mk: avoid warnings about missing files
6014         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
6015         diagnostic when .prev-version does not exist.
6016         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
6017         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
6018         nonexistent cfg.mk.
6019         Suggestions from Simon Josefsson.
6020
6021 2009-07-25  Bruno Haible  <bruno@clisp.org>
6022
6023         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
6024         defined as macros. Needed on QNX 6.4.1.
6025         Reported by Matt Kraai <mkraai@beckman.com>.
6026
6027 2009-07-23  Jim Meyering  <meyering@redhat.com>
6028
6029         maint.mk: invoke "make dist" with a working value of XZ_OPT
6030         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
6031
6032 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
6033
6034         Make fseeko.c compile on QNX.
6035         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
6036
6037 2009-07-22  Peter Simons  <simons@cryp.to>
6038
6039         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
6040         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
6041         * lib/md4.h: Likewise.
6042         * lib/md5.h: Likewise.
6043         * lib/sha1.h: Likewise.
6044         * lib/sha256.h: Likewise.
6045         * lib/sha512.h: Likewise.
6046
6047         tests-sha1: don't assign literal string to 'char *' variable
6048         * tests/test-sha1.c (main): Declare locals with "const" to match
6049         attributes of the right hand side.
6050
6051 2009-07-21  Eric Blake  <ebb9@byu.net>
6052
6053         dup2: fix more mingw problems
6054         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
6055         fd to itself.
6056         * doc/posix-functions/dup2.texi (dup2): Document the bug.
6057         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
6058         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
6059         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
6060         care of mingw bugs.
6061
6062 2009-07-21  Jim Meyering  <meyering@redhat.com>
6063
6064         vc-list-files: avoid failure when /bin/sh is dash
6065         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
6066         On some Debian based systems, /bin/sh is a symlink to dash, and running
6067         this command would omit the "/" following each 'tests' prefix:
6068           dash -x build-aux/vc-list-files -C . tests
6069         That is because bash and dash work differently:
6070           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
6071           bash ok
6072           dash odd
6073
6074 2009-07-21  Eric Blake  <ebb9@byu.net>
6075
6076         dup2-tests: test previous patch
6077         * modules/dup2-tests: New file.
6078         * tests/test-dup2.c: Likewise.
6079         * tests/test-open.c (main): Avoid unspecified behavior.
6080         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
6081         test.
6082
6083         dup2: work around mingw and cygwin 1.5 bug
6084         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
6085         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6086         * modules/unistd (Makefile.am): Substitute it.
6087         * lib/unistd.in.h (dup2): Declare the replacement.
6088         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
6089         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
6090         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
6091         * modules/execute (Depends-on): Add dup2.
6092         * modules/fseterr (Depends-on): Likewise.
6093         * modules/pipe (Depends-on): Likewise.
6094         * modules/posix_spawn-internal (Depends-on): Likewise.
6095
6096 2009-07-21  Bruno Haible  <bruno@clisp.org>
6097
6098         * modules/.gitattributes: New file.
6099
6100 2009-07-20  Bruno Haible  <bruno@clisp.org>
6101
6102         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
6103         (main): Use it.
6104
6105 2009-07-20  Eric Blake  <ebb9@byu.net>
6106
6107         test-pipe: make a bit more robust.
6108         * tests/test-pipe.c (myerr): Allow error messages regardless of
6109         what we do to stderr.
6110         (test_pipe): Rearrange to avoid deadlock.
6111         (child_main): Try a larger read, to ensure we avoided deadlock.
6112         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
6113         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
6114         if misused.
6115
6116 2009-07-19  Jim Meyering  <meyering@redhat.com>
6117
6118         fts: avoid false-positive cycle-detection
6119         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
6120         for each new command line argument.
6121
6122 2009-07-19  Bruno Haible  <bruno@clisp.org>
6123
6124         Fix build error on mingw with the modules sys_select and unistd.
6125         * modules/acl-tests (Depends-on): Add close.
6126         * modules/binary-io-tests (Depends-on): Likewise.
6127         * modules/closein-tests (Depends-on): Likewise.
6128         * modules/flock-tests (Depends-on): Likewise.
6129         * modules/fsync-tests (Depends-on): Likewise.
6130         * modules/lseek-tests (Depends-on): Likewise.
6131         * modules/pipe-tests (Depends-on): Likewise.
6132         * modules/posix_spawn-tests (Depends-on): Likewise.
6133         * modules/posix_spawnp-tests (Depends-on): Likewise.
6134         * modules/stat-time-tests (Depends-on): Likewise.
6135         * modules/yesno-tests (Depends-on): Likewise.
6136
6137 2009-07-19  Bruno Haible  <bruno@clisp.org>
6138
6139         Unify conditionals.
6140         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
6141         macros, not at the compiler macros.
6142         * lib/pipe.c: Likewise.
6143         * lib/execute.c: Likewise.
6144         * lib/spawni.c: Likewise.
6145
6146 2009-07-19  Bruno Haible  <bruno@clisp.org>
6147
6148         Fix handling of closed stdin/stdout/stderr on mingw.
6149         * lib/w32spawn.h: Include unistd.h.
6150         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
6151         file descriptor with O_NOINHERIT flag.
6152         (fd_safer_noinherit): New function, based on fd-safer.c.
6153         (dup_safer_noinherit): New function, based on dup-safer.c.
6154         (undup_safer_noinherit): New function.
6155         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
6156         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
6157         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
6158         instead of fd_safer.
6159         * tests/test-pipe.c: Include <windows.h>.
6160         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
6161
6162         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
6163         from main.
6164         (test_pipe): Pass an extra argument for disambiguation.
6165         (main): Invoke parent_main or child_main.
6166
6167         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
6168         consistently.
6169
6170 2009-07-18  Eric Blake  <ebb9@byu.net>
6171
6172         test-pipe: fix mingw build
6173         * tests/test-pipe.c (main): Avoid fcntl on mingw.
6174
6175 2009-07-18  Bruno Haible  <bruno@clisp.org>
6176
6177         * modules/pipe-tests (Makefile.am): Fix typo.
6178
6179 2009-07-18  Eric Blake  <ebb9@byu.net>
6180
6181         error: fix mingw build
6182         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
6183         Reported by Bruno Haible.
6184
6185         error: avoid undefined use of stdout
6186         * lib/error.c (error, error_at_line): Check that fd 1 is open
6187         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
6188         is handling faults and the close_stdout module wants to report the
6189         detection of closed stdout as an error.
6190
6191 2009-07-17  Eric Blake  <ebb9@byu.net>
6192
6193         pipe: be robust in face of closed fds
6194         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
6195         should cause child to misbehave.
6196         * modules/pipe-tests: New module.
6197         * tests/test-pipe.c: New file.
6198         * tests/test-pipe.sh: New file.
6199         Reported by Akim Demaille.
6200
6201 2009-07-14  Bruno Haible  <bruno@clisp.org>
6202
6203         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
6204         Reported by anonymous kc.
6205
6206 2009-07-07  Jim Meyering  <meyering@redhat.com>
6207
6208         maint.mk: don't look for translatable strings in *.m4 or *.mk
6209         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
6210         when searching for translatable strings.
6211
6212 2009-07-05  Jim Meyering  <meyering@redhat.com>
6213
6214         remove superfluous parentheses in STREQ definition
6215         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
6216         * lib/getugroups.c (STREQ): Likewise.
6217         * lib/fnmatch.c (STREQ): Likewise.
6218         Spotted by Bruno Haible.
6219
6220 2009-07-04  Jim Meyering  <meyering@redhat.com>
6221
6222         argv-iter: new module
6223         * MODULES.html.sh: Add argv-iter.
6224         * lib/argv-iter.c, lib/argv-iter.h: New files.
6225         * modules/argv-iter: New file.
6226         * modules/argv-iter-tests: New file.
6227         * tests/test-argv-iter.c: Test it.
6228
6229 2009-07-04  Bruno Haible  <bruno@clisp.org>
6230
6231         Fix assertion.
6232         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
6233         contains more exact copies of a given entry than file2, leave the extra
6234         copies unpaired rather than aborting.
6235         Reported by Eric Blake.
6236
6237 2009-07-02  Bruno Haible  <bruno@clisp.org>
6238
6239         Speedup git-merge-changelog for git cherry-pick.
6240         * lib/git-merge-changelog.c (struct entries_mapping): New type.
6241         (entries_mapping_get): New function, extracted from compute_mapping.
6242         (entries_mapping_reverse_get): New function.
6243         (compute_mapping): Add a 'full' argument. Return the result in a
6244         'struct entries_mapping'.
6245         (main): Update. Access the mappings through entries_mapping_get.
6246         Reported by Eric Blake.
6247
6248 2009-07-02  Bruno Haible  <bruno@clisp.org>
6249
6250         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
6251         best_i.
6252
6253 2009-07-02  Bruno Haible  <bruno@clisp.org>
6254
6255         Speed up approximate search for matching ChangeLog entries.
6256         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
6257         argument. Call fstrcmp_bounded instead of fstrcmp.
6258         (compute_mapping, try_split_merged_entry, main): Update callers.
6259
6260 2009-07-02  Bruno Haible  <bruno@clisp.org>
6261
6262         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
6263
6264 2009-06-30  Bruno Haible  <bruno@clisp.org>
6265
6266         Reduce the number of uc_is_cased calls.
6267         * lib/unicase.h (casing_suffix_context_t): Add
6268         'first_char_except_ignorable' field.
6269         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
6270         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
6271         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
6272         Update initializer.
6273         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
6274         case-ignorable characters.
6275         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
6276         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
6277         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
6278         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
6279         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
6280
6281 2009-06-30  Bruno Haible  <bruno@clisp.org>
6282
6283         Tests for module 'unicase/ignorable'.
6284         * modules/unicase/ignorable-tests: New file.
6285         * tests/unicase/test-ignorable.c: New file, generated by
6286         gen-uni-tables.
6287
6288         Tests for module 'unicase/cased'.
6289         * modules/unicase/cased-tests: New file.
6290         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
6291         * tests/unicase/test-predicate-part1.h: New file, derived from
6292         tests/unictype/test-predicate-part1.h.
6293         * tests/unicase/test-predicate-part2.h: New file, same as
6294         tests/unictype/test-predicate-part2.h.
6295
6296         Fix evaluation of "Before C" condition of FINAL_SIGMA.
6297         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
6298         (output_casing_properties): New function.
6299         (main): Call it.
6300         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
6301         * lib/unicase/cased.c: Include unictype/bitmap.h.
6302         (uc_is_cased): Define through a bitmap lookup.
6303         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
6304         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
6305         (uc_is_case_ignorable): Define through a bitmap lookup.
6306         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
6307         lib/unictype/bitmap.h.
6308         (Depends-on): Add inline. Clean up.
6309         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
6310         lib/unictype/bitmap.h.
6311         (Depends-on): Add inline. Clean up.
6312         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
6313         recognition.
6314         * tests/unicase/test-u16-tolower.c (main): Likewise.
6315         * tests/unicase/test-u32-tolower.c (main): Likewise.
6316
6317 2009-06-30  Bruno Haible  <bruno@clisp.org>
6318
6319         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
6320         * lib/unicase/u16-casemap.c: Likewise.
6321         * lib/unicase/u32-casemap.c: Likewise.
6322
6323 2009-06-29  Bruno Haible  <bruno@clisp.org>
6324
6325         Define u32_casefold as a wrapper around u32_ct_casefold.
6326         * lib/unicase/u32-casefold.c: Update.
6327         * modules/unicase/u32-casefold (Depends-on): Add
6328         unicase/u32-ct-casefold, unicase/empty-prefix-context,
6329         unicase/empty-suffix-context. Clean up.
6330
6331         Define u16_casefold as a wrapper around u16_ct_casefold.
6332         * lib/unicase/u16-casefold.c: Update.
6333         * modules/unicase/u16-casefold (Depends-on): Add
6334         unicase/u16-ct-casefold, unicase/empty-prefix-context,
6335         unicase/empty-suffix-context. Clean up.
6336
6337         Define u8_casefold as a wrapper around u8_ct_casefold.
6338         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
6339         * lib/unicase/u8-casefold.c: Update.
6340         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
6341         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6342
6343         Define u32_totitle as a wrapper around u32_ct_totitle.
6344         * lib/unicase/u32-totitle.c: Update.
6345         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
6346         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6347
6348         Define u16_totitle as a wrapper around u16_ct_totitle.
6349         * lib/unicase/u16-totitle.c: Update.
6350         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
6351         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6352
6353         Define u8_totitle as a wrapper around u8_ct_totitle.
6354         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
6355         functions.
6356         (FUNC): Delegate to U_CT_TOTITLE.
6357         * lib/unicase/u8-totitle.c: Update.
6358         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
6359         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6360
6361         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
6362         invocation.
6363         * modules/unicase/u32-tolower (Depends-on): Add
6364         unicase/empty-prefix-context, unicase/empty-suffix-context.
6365
6366         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
6367         invocation.
6368         * modules/unicase/u16-tolower (Depends-on): Add
6369         unicase/empty-prefix-context, unicase/empty-suffix-context.
6370
6371         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
6372         * modules/unicase/u8-tolower (Depends-on): Add
6373         unicase/empty-prefix-context, unicase/empty-suffix-context.
6374
6375         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
6376         invocation.
6377         * modules/unicase/u32-toupper (Depends-on): Add
6378         unicase/empty-prefix-context, unicase/empty-suffix-context.
6379
6380         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
6381         invocation.
6382         * modules/unicase/u16-toupper (Depends-on): Add
6383         unicase/empty-prefix-context, unicase/empty-suffix-context.
6384
6385         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
6386         * modules/unicase/u8-toupper (Depends-on): Add
6387         unicase/empty-prefix-context, unicase/empty-suffix-context.
6388
6389         New module 'unicase/u32-ct-casefold'.
6390         * lib/unicase/u32-ct-casefold.c: New file.
6391         * modules/unicase/u32-ct-casefold: New file.
6392
6393         New module 'unicase/u16-ct-casefold'.
6394         * lib/unicase/u16-ct-casefold.c: New file.
6395         * modules/unicase/u16-ct-casefold: New file.
6396
6397         New module 'unicase/u8-ct-casefold'.
6398         * lib/unicase/u8-ct-casefold.c: New file.
6399         * lib/unicase/u-ct-casefold.h: New file, derived from
6400         lib/unicase/u-casefold.h.
6401         * modules/unicase/u8-ct-casefold: New file.
6402
6403         New module 'unicase/u32-ct-totitle'.
6404         * lib/unicase/u32-ct-totitle.c: New file.
6405         * modules/unicase/u32-ct-totitle: New file.
6406
6407         New module 'unicase/u16-ct-totitle'.
6408         * lib/unicase/u16-ct-totitle.c: New file.
6409         * modules/unicase/u16-ct-totitle: New file.
6410
6411         New module 'unicase/u8-ct-totitle'.
6412         * lib/unicase/u8-ct-totitle.c: New file.
6413         * lib/unicase/u-ct-totitle.h: New file, derived from
6414         lib/unicase/u-totitle.h.
6415         * modules/unicase/u8-ct-totitle: New file.
6416
6417         New module 'unicase/u32-ct-tolower'.
6418         * lib/unicase/u32-ct-tolower.c: New file.
6419         * modules/unicase/u32-ct-tolower: New file.
6420
6421         New module 'unicase/u16-ct-tolower'.
6422         * lib/unicase/u16-ct-tolower.c: New file.
6423         * modules/unicase/u16-ct-tolower: New file.
6424
6425         New module 'unicase/u8-ct-tolower'.
6426         * lib/unicase/u8-ct-tolower.c: New file.
6427         * modules/unicase/u8-ct-tolower: New file.
6428
6429         New module 'unicase/u32-ct-toupper'.
6430         * lib/unicase/u32-ct-toupper.c: New file.
6431         * modules/unicase/u32-ct-toupper: New file.
6432
6433         New module 'unicase/u16-ct-toupper'.
6434         * lib/unicase/u16-ct-toupper.c: New file.
6435         * modules/unicase/u16-ct-toupper: New file.
6436
6437         New module 'unicase/u8-ct-toupper'.
6438         * lib/unicase/u8-ct-toupper.c: New file.
6439         * modules/unicase/u8-ct-toupper: New file.
6440
6441         Add context arguments to u*_casemap functions.
6442         * lib/unicase/unicasemap.h: Include unicase.h.
6443         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
6444         suffix_context arguments.
6445         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
6446         functions.
6447         (FUNC): Add prefix_context and suffix_context arguments. Use
6448         uc_is_cased and uc_is_case_ignorable.
6449         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
6450         * lib/unicase/u16-casemap.c: Likewise.
6451         * lib/unicase/u32-casemap.c: Likewise.
6452         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
6453         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6454         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
6455         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6456         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
6457         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6458
6459         New module 'unicase/u32-suffix-context'.
6460         * lib/unicase/u32-suffix-context.c: New file.
6461         * modules/unicase/u32-suffix-context: New file.
6462
6463         New module 'unicase/u16-suffix-context'.
6464         * lib/unicase/u16-suffix-context.c: New file.
6465         * modules/unicase/u16-suffix-context: New file.
6466
6467         New module 'unicase/u8-suffix-context'.
6468         * lib/unicase/u8-suffix-context.c: New file.
6469         * lib/unicase/u-suffix-context.h: New file.
6470         * modules/unicase/u8-suffix-context: New file.
6471
6472         New module 'unicase/empty-suffix-context'.
6473         * lib/unicase/empty-suffix-context.c: New file.
6474         * modules/unicase/empty-suffix-context: New file.
6475
6476         New module 'unicase/u32-prefix-context'.
6477         * lib/unicase/u32-prefix-context.c: New file.
6478         * modules/unicase/u32-prefix-context: New file.
6479
6480         New module 'unicase/u16-prefix-context'.
6481         * lib/unicase/u16-prefix-context.c: New file.
6482         * modules/unicase/u16-prefix-context: New file.
6483
6484         New module 'unicase/u8-prefix-context'.
6485         * lib/unicase/u8-prefix-context.c: New file.
6486         * lib/unicase/u-prefix-context.h: New file.
6487         * lib/unicase/context.h: New file.
6488         * modules/unicase/u8-prefix-context: New file.
6489
6490         New module 'unicase/empty-prefix-context'.
6491         * lib/unicase/empty-prefix-context.c: New file.
6492         * modules/unicase/empty-prefix-context: New file.
6493
6494         New module 'unicase/ignorable'.
6495         * lib/unicase/ignorable.c: New file.
6496         * modules/unicase/ignorable: New file.
6497
6498         New module 'unicase/cased'.
6499         * lib/unicase/caseprop.h: New file.
6500         * lib/unicase/cased.c: New file.
6501         * modules/unicase/cased: New file.
6502
6503         New functions for case mapping of substrings.
6504         * lib/unicase.h (casing_prefix_context_t): New type.
6505         (unicase_empty_prefix_context): New variable.
6506         (u8_casing_prefix_context, u16_casing_prefix_context,
6507         u32_casing_prefix_context, u8_casing_prefixes_context,
6508         u16_casing_prefixes_context, u32_casing_prefixes_context): New
6509         declarations.
6510         (casing_suffix_context_t): New type.
6511         (unicase_empty_suffix_context): New variable.
6512         (u8_casing_suffix_context, u16_casing_suffix_context,
6513         u32_casing_suffix_context, u8_casing_suffixes_context,
6514         u16_casing_suffixes_context, u32_casing_suffixes_context,
6515         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
6516         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
6517         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
6518         declarations.
6519
6520 2009-06-28  Jim Meyering  <meyering@redhat.com>
6521
6522         boostrap: indent only with spaces
6523         * build-aux/bootstrap: Indent only with spaces, never TABs.
6524
6525         bootstrap: split long lines
6526         * build-aux/bootstrap: Keep line length < 80.
6527
6528         bootstrap: sync from coreutils
6529         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
6530         just as autoreconf does.  Verify a list of prerequisite
6531         package-name,version-number pairs if defined in bootstrap.conf.
6532         Refer to README-prereq, if prerequisites are not satisfied.
6533
6534 2009-06-27  Eric Blake  <ebb9@byu.net>
6535
6536         tests: add test for bogus NULL definition
6537         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
6538         * tests/test-stdlib.c: Likewise.
6539         * tests/test-string.c: Likewise.
6540         * tests/test-locale.c: Likewise.
6541         * tests/test-unistd.c: Likewise.
6542         * modules/stdio-tests (Depends-on): Add verify.
6543         * modules/stdlib-tests (Depends-on): Likewise.
6544         * modules/string-tests (Depends-on): Likewise.
6545         * modules/locale-tests (Depends-on): Likewise.
6546         * modules/unistd-tests (Depends-on): Likewise.
6547
6548 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
6549
6550         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
6551         self-explaining comment.
6552         * m4/selinux-selinux-h: Update serial.
6553         (gl_LIBSELINUX): New macro, adding a warning for missing development
6554         packages to code extracted from...
6555         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
6556         Add warning for missing development packages here, too.
6557
6558 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
6559
6560         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
6561
6562 2009-06-25  Eric Blake  <ebb9@byu.net>
6563
6564         version-etc: fix regression
6565         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
6566         gcc.
6567         (version_etc): Use it, to catch bugs with trailing NULL.
6568         * lib/version-etc.c (version_etc_arn): Delete unused argument.
6569         (version_etc_va): Fix logic bug.
6570         * modules/version-etc-tests: Add test.
6571         * tests/test-version-etc.c: New file.
6572         * tests/test-version-etc.sh: Likewise.
6573
6574 2009-06-25  Sam Steingold  <sds@gnu.org>
6575
6576         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
6577         mbtowc declaration.
6578
6579 2009-06-25  Eric Blake  <ebb9@byu.net>
6580
6581         fpurge: migrate into <stdio.h>
6582         * lib/fpurge.h: Delete...
6583         * lib/stdio.in.h (fpurge): ...and declare here, instead.
6584         * lib/fpurge.c (fpurge): Change declaring header.
6585         * modules/fpurge (Files): Drop deleted file.
6586         (Depends-on): Add stdio.
6587         (configure.ac): Set witness.
6588         * modules/stdio (Makefile.am): Support fpurge macros.
6589         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
6590         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
6591         * lib/fflush.c: Update client.
6592         * tests/test-fpurge.c: Likewise.
6593         * NEWS: Mention the change.
6594
6595 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6596
6597         * lib/argp-version-etc.c (program_authors): Add const
6598         qualifier.
6599         * lib/version-etc.c: Fix typos in the comments.
6600         * modules/argp-version-etc: Depends on version-etc.
6601
6602 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6603
6604         argp-version-etc: new module.
6605
6606         * lib/argp-version-etc.c: New file.
6607         * lib/argp-version-etc.h: New file.
6608         * modules/argp-version-etc: New file.
6609         * modules/argp-version-etc-tests: New file.
6610         * tests/test-argp-version-etc.c: New test.
6611         * tests/test-argp-version-etc-1.sh: New test.
6612
6613 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6614
6615         Provide additional interfaces and documentation for version-etc
6616         module.
6617
6618         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
6619         interfaces.
6620         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
6621         prototypes.
6622
6623 2009-06-24  Bruno Haible  <bruno@clisp.org>
6624
6625         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
6626         HAVE_LIB${NAME} macro.
6627         Reported by Sam Steingold <sds@gnu.org>.
6628
6629 2009-06-23  Simon Josefsson  <simon@josefsson.org>
6630
6631         * modules/hash-tests (test_hash_LDADD): Link to libintl when
6632         needed.
6633
6634 2009-06-21  Bruno Haible  <bruno@clisp.org>
6635
6636         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
6637         work.
6638         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
6639         together with LIB${NAME}, LTLIB${NAME}.
6640         Reported by Sam Steingold <sds@gnu.org>.
6641
6642 2009-06-20  Jim Meyering  <meyering@redhat.com>
6643
6644         tests: make sc_require_test_exit_idiom more generic
6645         * top/maint.mk (Exit_witness_file): New overridable variable.
6646         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
6647         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
6648
6649 2009-06-19  Jim Meyering  <meyering@redhat.com>
6650
6651         hash: reverse order of src/dst parameters in an internal interface
6652         * lib/hash.c (transfer_entries): Reverse order of parameters to
6653         put DST before SRC.  Adjust callers.
6654
6655         tests: test-hash: avoid wholesale duplication
6656         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
6657         Instead, use a loop and add a single conditional.
6658
6659         tests: test-hash: allow seed selection via a command line argument
6660         * tests/test-hash.c (get_seed): New function.
6661         (main): Use it.
6662
6663 2009-06-19  Eric Blake  <ebb9@byu.net>
6664
6665         hash: avoid memory leak on allocation failure
6666         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
6667         failure.  Factor repeated algorithm...
6668         (transfer_entries): ...into new helper routine.
6669         (hash_delete): React to hash_rehash return value.
6670
6671         hash: reduce memory pressure in hash_rehash no-op case
6672         * lib/hash.c (next_prime): Avoid overflow.
6673         (hash_initialize): Factor bucket size computation...
6674         (compute_bucket_size): ...into new helper function.
6675         (hash_rehash): Use new function and open coding to reduce memory
6676         pressure, and avoid a memory leak in USE_OBSTACK code.
6677         Reported by Jim Meyering.
6678
6679 2009-06-18  Eric Blake  <ebb9@byu.net>
6680
6681         hash: make rotation more obvious
6682         * modules/hash (Depends-on): Add bitrotate and stdint.
6683         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
6684         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
6685         (SIZE_MAX): Rely on headers for definition.
6686         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
6687         (raw_hasher): Use rotr_sz.
6688         Suggested by Jim Meyering.
6689
6690         hash: fix memory leak in last patch
6691         * lib/hash.c (hash_rehash): Avoid memory leak.
6692
6693         hash: avoid no-op rehashing
6694         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
6695
6696         hash: provide default callback functions
6697         * lib/hash.c (raw_hasher, raw_comparator): New functions.
6698         (hash_initialize): Use them as defaults.
6699         * tests/test-hash.c (main): Test this.
6700
6701         hash: minor optimization
6702         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
6703         when possible.
6704         (hash_initialize): Document this promise.
6705         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
6706         * tests/test-hash.c (hash_compare_strings): Test this.
6707
6708 2009-06-18  Bruno Haible  <bruno@clisp.org>
6709
6710         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
6711         going to be replaced anyway.
6712
6713 2009-06-18  Bruno Haible  <bruno@clisp.org>
6714
6715         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
6716         in one place.
6717         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
6718         be replaced anyway.
6719
6720 2009-06-18  Eric Blake  <ebb9@byu.net>
6721
6722         hash: check for resize before insertion
6723         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
6724         threshold before insertion, so that a pathological hash_rehash
6725         that fills every bucket can still trigger another rehash.
6726
6727 2009-06-18  Jim Meyering  <meyering@redhat.com>
6728
6729         hash-tests: add a loop around the small tests
6730         * tests/test-hash.c (main): Repeat small tests with selected
6731         small initial table sizes.
6732
6733 2009-06-17  Eric Blake  <ebb9@byu.net>
6734
6735         hash: minor cleanups
6736         * lib/hash.h (hash_entry): Make opaque, by moving...
6737         * lib/hash.c (hash_entry): ...here.
6738         (hash_insert): Clarify restrictions on what can be inserted.
6739         (hash_get_next): Clarify when it is safe to remove an element
6740         during traversal.
6741         (check_tuning): Skip verification when tuning is known safe.
6742         (hash_initialize): Clarify restrictions on tuning.
6743
6744 2009-06-17  Jim Meyering  <jim@meyering.net>
6745         and Eric Blake  <ebb9@byu.net>
6746
6747         hash-tests: new module
6748         * modules/hash-tests: New file.
6749         * tests/test-hash.c: New file.
6750
6751 2009-06-17  Eric Blake  <ebb9@byu.net>
6752
6753         strstr-simple: document new module
6754         * MODULES.html.sh: Document new module.
6755
6756         strstr, strcasestr: replace on platforms with broken memchr
6757         * modules/strstr: Split into...
6758         * modules/strstr-simple: ...new module that does not care about
6759         performance, but does care about glibc bug.
6760         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
6761         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
6762         if platform memchr is broken, per Debian bug 521737.
6763         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
6764         memchr.
6765         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
6766         * doc/posix-functions/strstr.texi (strstr): Document the fix.
6767         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
6768         * modules/mountlist (Depends-on): Add strstr-simple.
6769         * modules/gen-uni-tables (Depends-on): Likewise.
6770         * modules/argz (Depends-on): Add strstr.
6771
6772 2009-06-17  Bruno Haible  <bruno@clisp.org>
6773
6774         * modules/posix_spawn-internal (Depends-on): Add errno.
6775
6776 2009-06-17  Bruno Haible  <bruno@clisp.org>
6777
6778         Define missing ESTALE on Interix 3.5.
6779         * lib/errno.in.h (ESTALE): Assign a value if missing.
6780         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
6781         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
6782         missing.
6783         * doc/posix-headers/errno.texi: Mention the Interix bug.
6784         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
6785
6786 2009-06-15  Eric Blake  <ebb9@byu.net>
6787
6788         memchr, memchr2: add valgrind exception
6789         * lib/memchr.valgrind: New file.
6790         * lib/memchr2.valgrind: New file.
6791         * modules/memchr (Files): Distribute valgrind file.
6792         * modules/memchr2 (Files): Likewise.
6793
6794         docs: memchr is no longer obsolete
6795         * MODULES.html.sh: Move memchr from obsolete to string.h section.
6796         * lib/string.in.h (memchr): Simplify logic.
6797
6798 2009-06-14  Jim Meyering  <meyering@redhat.com>
6799
6800         link-follow: fix the "checking..." message to not mention trailing slash
6801         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
6802         never considered trailing slashes.
6803
6804 2009-06-14  Bruno Haible  <bruno@clisp.org>
6805
6806         * m4/memchr.m4: Mention also the bug on IA-64.
6807         * doc/posix-functions/memchr.texi: Likewise.
6808
6809 2009-06-12  Eric Blake  <ebb9@byu.net>
6810
6811         memchr: detect broken x86_64 and alpha implementations
6812         * modules/memchr-tests (Depends-on): Move mmap detection...
6813         * modules/memchr (Depends-on): ...here.
6814         (configure.ac): Set indicator.
6815         * lib/string.in.h (memchr): Declare replacement.
6816         * modules/string (Makefile.am): Trigger replacement.
6817         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
6818         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
6819         bugs.
6820         * doc/posix-functions/memchr.texi (memchr): Document the bug.
6821         * modules/getpagesize (License): Relax license.
6822
6823 2009-06-11  Bruno Haible  <bruno@clisp.org>
6824
6825         * lib/idpriv.h: Add more references.
6826
6827 2009-06-08  Bruno Haible  <bruno@clisp.org>
6828
6829         Tests for module 'idpriv-droptemp'.
6830         * modules/idpriv-droptemp-tests: New file.
6831         * tests/test-idpriv-droptemp.sh: New file.
6832         * tests/test-idpriv-droptemp.su.sh: New file.
6833         * tests/test-idpriv-droptemp.c: New file.
6834
6835         New module 'idpriv-droptemp'.
6836         * lib/idpriv-droptemp.c: New file.
6837         * modules/idpriv-droptemp: New file.
6838
6839 2009-06-08  Bruno Haible  <bruno@clisp.org>
6840
6841         Tests for module 'idpriv-drop'.
6842         * modules/idpriv-drop-tests: New file.
6843         * tests/test-idpriv-drop.sh: New file.
6844         * tests/test-idpriv-drop.su.sh: New file.
6845         * tests/test-idpriv-drop.c: New file.
6846
6847         New module 'idpriv-drop'.
6848         * lib/idpriv.h: New file.
6849         * lib-idpriv-drop.c: New file.
6850         * m4/idpriv.m4: New file.
6851         * modules/idpriv-drop: New file.
6852
6853 2009-06-08  Bruno Haible  <bruno@clisp.org>
6854
6855         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
6856         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
6857         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
6858         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
6859         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
6860         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
6861         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
6862
6863 2009-06-08  Eric Blake  <ebb9@byu.net>
6864
6865         test-strstr: use memory fence, when possible
6866         * tests/test-strstr.c (main): Use memory fence, in order to be
6867         more likely to trigger Debian bug 521737.
6868         * modules/strstr-tests (Files): Pull in additional files.
6869
6870         memchr: no longer obsolete, for wider field testing
6871         * modules/memchr (Status, Notice): Delete, this module is no
6872         longer obsolete.
6873         * modules/vasnprintf (Depends-on): Add memchr.
6874
6875 2009-06-07  Jim Meyering  <meyering@redhat.com>
6876
6877         hash: declare some functions with the warn_unused_result attribute
6878         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
6879
6880 2009-06-07  Bruno Haible  <bruno@clisp.org>
6881
6882         * tests/test-alignof.c: Don't test int64_t if it does not exist.
6883         Reported by Eric Blake.
6884
6885 2009-06-06  Eric Blake  <ebb9@byu.net>
6886
6887         test-alignof: fix typo with long double
6888         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
6889         compiler error.
6890
6891 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
6892
6893         Escape non-texinfo { and }s.
6894         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
6895         markup error.
6896
6897 2009-06-04  Jim Meyering  <meyering@redhat.com>
6898
6899         gitlog-to-changelog: don't infloop on an empty commit log
6900         * build-aux/gitlog-to-changelog: Warn about an empty log message.
6901         Reported by Boris Petersen <transacid@centerim.org>.
6902
6903 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
6904
6905         version-etc: extend for packagers
6906         Add three new configure options, intended for packagers:
6907           --with-packager="packager name"
6908           --with-packager-version="packager-specific version"
6909           --with-packager-bug-reports="packager bug reporting"
6910         An example with coreutils:
6911           $ ./configure \
6912             --with-packager=Gentoo \
6913             --with-packager-bug-report=http://bugs.gentoo.org/ \
6914             --with-packager-version="patchset 1.6"
6915           $ ./src/ls --version | head -n3
6916           ls (GNU coreutils) 7.1-dirty
6917           Packaged by Gentoo (patchset 1.6)
6918           Copyright (C) 2009 Free Software Foundation, Inc.
6919         Note that the bug reporting info via --help doesn't show up because
6920         coreutils uses its own custom emit_bug_reporting_address() implementation
6921         in src/system.h.  If it didn't, it'd look like:
6922           $ ./src/ls --help | tail -n4
6923           Report bugs to <bug-coreutils@gnu.org>.
6924           Report Gentoo bugs to <http://bugs.gentoo.org/>.
6925           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
6926           General help using GNU software: <http://www.gnu.org/gethelp/>.
6927         * lib/version-etc.c: Print new information, if provided.
6928         * m4/version-etc.m4: New file.
6929         * modules/version-etc (Files): Add m4/version-etc.m4.
6930         (configure.ac): Add gl_VERSION_ETC.
6931
6932 2009-05-31  Bruno Haible  <bruno@clisp.org>
6933
6934         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
6935         and 'int64_t'.
6936         * modules/alignof-tests (Dependencies): Add stdint.
6937         Reported by Eric Blake.
6938
6939 2009-05-31  Bruno Haible  <bruno@clisp.org>
6940
6941         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
6942         restriction due to compiler bugs.
6943         Reported by Eric Blake.
6944
6945 2009-05-31  Simon Josefsson  <simon@josefsson.org>
6946             Bruno Haible  <bruno@clisp.org>
6947
6948         Fix test-alignof failure.
6949         * lib/alignof.h (alignof_slot): New macro.
6950         (alignof_type): New macro, with the same semantics as the previous
6951         'alignof'.
6952         (alignof): Alias to alignof_slot.
6953         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
6954         check that the results are usable as constant expressions.
6955
6956 2009-05-31  Bruno Haible  <bruno@clisp.org>
6957
6958         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
6959         * tests/test-memchr.c (main): Check that memchr does not read past the
6960         first occurrence of the byte.
6961         * tests/test-strstr.c (main): Update comment.
6962         Suggested by Eric Blake.
6963
6964 2009-05-30  Bruno Haible  <bruno@clisp.org>
6965
6966         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
6967         detail how to use dumpbin.
6968         Reported by David Byron <dbyron@dbyron.com>.
6969
6970 2009-06-02  Simon Josefsson  <simon@josefsson.org>
6971
6972         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
6973
6974 2009-06-02  Simon Josefsson  <simon@josefsson.org>
6975
6976         * m4/manywarnings.m4: Add GCC 4.4 warnings.
6977
6978 2009-05-28  Bruno Haible  <bruno@clisp.org>
6979
6980         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
6981         build-aux/ files.
6982
6983 2009-05-28  Simon Josefsson  <simon@josefsson.org>
6984
6985         * gnulib-tool (func_import): Transform license on build-aux/ files too.
6986
6987 2009-05-27  Simon Josefsson  <simon@josefsson.org>
6988
6989         * gnulib-tool (sed_transform_main_lib_file)
6990         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
6991         regexps.
6992
6993 2009-05-26  Simon Josefsson  <simon@josefsson.org>
6994
6995         * tests/test-strstr.c: Add another self-test.
6996         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
6997         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
6998
6999 2009-05-23  Bruno Haible  <bruno@clisp.org>
7000
7001         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
7002         change.
7003
7004 2009-05-21  Bruno Haible  <bruno@clisp.org>
7005
7006         Simplify use of mode_t varargs.
7007         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
7008         uses 'mode_t' or 'int'.
7009         * lib/openat.c (openat): Likewise.
7010         * lib/open-safer.c (open_safer): Likewise.
7011         * m4/mode_t.m4: New file.
7012         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
7013         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
7014         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
7015         * modules/open (Files): Add m4/mode_t.m4.
7016         * modules/openat (Files): Likewise.
7017         * modules/fcntl-safer (Files): Likewise.
7018         Suggested by Eric Blake.
7019
7020 2009-05-21  Pádraig Brady  <P@draigbrady.com>
7021
7022         * doc/glibc-functions/fallocate.texi: New file.
7023         * doc/gnulib.texi: Include it.
7024
7025 2009-05-21  Eric Blake  <ebb9@byu.net>
7026             Bruno Haible  <bruno@clisp.org>
7027
7028         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
7029         invocations.
7030         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
7031
7032 2009-05-21  Eric Blake  <ebb9@byu.net>
7033             Bruno Haible  <bruno@clisp.org>
7034
7035         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
7036         include_next. Fix of 2008-11-20 commit.
7037         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
7038         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
7039         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
7040         NEXT_MATH_H.
7041         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
7042         instead of NEXT_MATH_H.
7043
7044 2009-05-21  Bruno Haible  <bruno@clisp.org>
7045
7046         Avoid redefinition warnings for SIZE_MAX.
7047         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
7048         Reported by Simon Josefsson.
7049
7050 2009-05-21  Bruno Haible  <bruno@clisp.org>
7051
7052         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
7053         AC_CACHE_VAL.
7054
7055 2009-05-20  Bruno Haible  <bruno@clisp.org>
7056
7057         Make zeroptr.h work on mingw.
7058         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
7059         mprotect.
7060         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
7061         * modules/memchr2-tests (configure.ac): Likewise.
7062         * modules/memcmp-tests (configure.ac): Likewise.
7063         * modules/memmem-tests (configure.ac): Likewise.
7064         * modules/memrchr-tests (configure.ac): Likewise.
7065         Reported by Simon Josefsson.
7066
7067 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7068
7069         * tests/test-glob.c: Include string.h for strcmp prototype.
7070
7071 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7072
7073         * modules/getdelim (Depends-on): Add explicit stdint, although it
7074         was implicitly already pulled in via realloc-posix.
7075         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
7076
7077 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7078
7079         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
7080         G. Christensen" <tgc@jupiterrise.com>.
7081         * m4/sys_socket_h.m4: Check for sa_family_t.
7082         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
7083         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
7084         * tests/test-sys_socket.c: Check that sa_family_t works.
7085
7086 2009-05-18  Eric Blake  <ebb9@byu.net>
7087
7088         maint.mk: allow gnulib_dir in VPATH build
7089         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
7090
7091 2009-05-15  Jim Meyering  <meyering@redhat.com>
7092
7093         maint.mk: Give gnulib_dir a default definition.
7094         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
7095         Thus, most packages no longer need to specify this variable in cfg.mk
7096
7097 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
7098
7099         rename.m4: fix typos that would make non-mingw cross-configure fail
7100         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
7101
7102 2009-05-13  Eric Blake  <ebb9@byu.net>
7103
7104         mmap-anon: avoid out-of-order autoconf expansion
7105         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
7106         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
7107         * modules/memchr-tests (Depends-on): Add extensions.
7108         * modules/memchr2-tests (Depends-on): Add extensions.
7109         * modules/memcmp-tests (Depends-on): Add extensions.
7110         * modules/memmem-tests (Depends-on): Add extensions.
7111         * modules/memrchr-tests (Depends-on): Add extensions.
7112
7113 2009-05-13  Bruno Haible  <bruno@clisp.org>
7114
7115         Make some tests ISO C 99 compliant.
7116         * tests/zerosize-ptr.h: New file.
7117         * tests/test-memchr.c: Include zerosize-ptr.h.
7118         (main): Use a zero-size object pointer instead of NULL.
7119         * tests/test-memchr2.c: Include zerosize-ptr.h.
7120         (main): Use a zero-size object pointer instead of NULL.
7121         * tests/test-memcmp.c: Include zerosize-ptr.h.
7122         (main): Use a zero-size object pointer instead of NULL.
7123         * tests/test-memmem.c: Include zerosize-ptr.h.
7124         (main): Use a zero-size object pointer instead of NULL.
7125         * tests/test-memrchr.c: Include zerosize-ptr.h.
7126         (main): Use a zero-size object pointer instead of NULL.
7127         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
7128         m4/mmap-anon.m4.
7129         (Depends-on): Add getpagesize.
7130         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7131         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
7132         m4/mmap-anon.m4.
7133         (Depends-on): Add getpagesize.
7134         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7135         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
7136         m4/mmap-anon.m4.
7137         (Depends-on): Add getpagesize.
7138         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7139         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
7140         m4/mmap-anon.m4.
7141         (Depends-on): Add getpagesize.
7142         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7143         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
7144         m4/mmap-anon.m4.
7145         (Depends-on): Add getpagesize.
7146         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7147
7148 2009-05-12  Bruno Haible  <bruno@clisp.org>
7149
7150         Tests for module 'alignof'.
7151         * modules/alignof-tests: New file.
7152         * tests/test-alignof.c: New file.
7153
7154 2009-05-12  Bruno Haible  <bruno@clisp.org>
7155
7156         Fix alignof macro.
7157         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
7158         vendor compilers that are always correct.
7159
7160 2009-05-12  Bruno Haible  <bruno@clisp.org>
7161
7162         Make the MAP_ANONYMOUS detection work on HP-UX 11.
7163         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
7164         not whether its fully works.
7165
7166 2009-05-12  Bruno Haible  <bruno@clisp.org>
7167
7168         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
7169
7170 2009-05-12  Jim Meyering  <meyering@redhat.com>
7171
7172         * top/maint.mk: Adjust backslash alignment.
7173
7174 2009-05-11  Simon Josefsson  <simon@josefsson.org>
7175
7176         * top/maint.mk: Make $(srcdir)/build-aux configurable.
7177
7178 2009-05-11  Eric Blake  <ebb9@byu.net>
7179
7180         argp: avoid undefined behavior
7181         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
7182         macros.
7183
7184 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7185
7186         * tests/test-vc-list-files-git.sh: Do git config of user.email and
7187         user.name to prevent git commit from complaining.
7188
7189 2009-05-10  Bruno Haible  <bruno@clisp.org>
7190
7191         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
7192         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
7193         it rewrites every file name only once.
7194         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
7195
7196 2009-05-08  Bruno Haible  <bruno@clisp.org>
7197
7198         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
7199         instead of 'max'.
7200
7201 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7202
7203         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
7204         sockaddr_storage test.
7205
7206 2009-05-07  Simon Josefsson  <simon@josefsson.org>
7207
7208         * modules/sys_socket (Makefile.am): Substitute
7209         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
7210         * m4/sys_socket_h.m4: Check for sockaddr_storage.
7211         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
7212         * tests/test-sys_socket.c: Check sockaddr_storage.
7213
7214 2009-05-08  Bruno Haible  <bruno@clisp.org>
7215
7216         New module 'alignof'.
7217         * lib/alignof.h: New file.
7218         * modules/alignof: New file.
7219
7220 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7221             Bruno Haible  <bruno@clisp.org>
7222
7223         Fix test-file-has-acl on FreeBSD.
7224         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
7225         mask is implicitly added.
7226         * tests/test-file-has-acl.c: Include <signal.h>.
7227         (main): Terminate the test after 5 seconds.
7228         * modules/acl-tests (configure.ac): Check for alarm function.
7229
7230 2009-05-04  Bruno Haible  <bruno@clisp.org>
7231
7232         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
7233         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
7234         * modules/errno (configure.ac): Drop AC_REQUIRE.
7235         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
7236         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
7237
7238 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7239
7240         * modules/glob-tests: New module.
7241         * tests/test-glob.c: Add.
7242
7243 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7244
7245         * modules/fnmatch-tests: New module.
7246         * tests/test-fnmatch.c: Add.
7247
7248 2009-05-04  Eric Blake  <ebb9@byu.net>
7249
7250         maint: make the new no-submodule-changes rule VPATH-safe
7251         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
7252
7253 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7254             Bruno Haible  <bruno@clisp.org>
7255
7256         acl: Fix infinite loop on FreeBSD.
7257         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
7258         of return value from acl_get_entry.
7259         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
7260         Likewise.
7261
7262 2009-05-03  Bruno Haible  <bruno@clisp.org>
7263
7264         * lib/acl-internal.h (acl_entries): Clarify return value.
7265         * lib/acl_entries.c (acl_entries): Likewise.
7266
7267 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7268
7269         Bug fix in acl module.
7270         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
7271
7272 2009-05-03  Bruno Haible  <bruno@clisp.org>
7273
7274         Create gperf-generated file in the source dir, not in the build dir.
7275         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
7276         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
7277         * modules/unicase/locale-language (unicase/locale-languages.h):
7278         Likewise.
7279         * modules/unicase/special-casing (unicase/special-casing-table.h):
7280         Likewise.
7281         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
7282         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
7283         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
7284         Reported by Ralf Wildenhues.
7285
7286 2009-05-03  Bruno Haible  <bruno@clisp.org>
7287
7288         * modules/fnmatch (Description, configure.ac): Taken from
7289         fnmatch-posix.
7290         * modules/fnmatch-posix: Turn into a symbolic reference to the
7291         'fnmatch' module, and deprecate.
7292         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
7293
7294 2009-05-03  Bruno Haible  <bruno@clisp.org>
7295
7296         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
7297         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
7298         Reported by Ralf Wildenhues.
7299
7300 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7301
7302         * m4/fnmatch.m4: Fix fnmatch re-define.
7303
7304 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7305
7306         priv-set: new module and tests; adapt write-any-file
7307         * lib/priv-set.c: New file.
7308         * lib/priv-set.h: New file.
7309         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
7310         * lib/write-any-file.c: Simplify by using priv-set module.
7311         * m4/priv-set.m4: New file.
7312         * modules/priv-set: New file.
7313         * modules/unlinkdir: Add dependency on priv-set module.
7314         * modules/write-any-file: Likewise.
7315
7316         Tests for module 'priv-set'.
7317         * modules/priv-set-tests: New file.
7318         * tests/test-priv-set.c: New file.
7319
7320 2009-05-03  Jim Meyering  <meyering@redhat.com>
7321             Bruno Haible  <bruno@clisp.org>
7322
7323         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
7324         use the converted UTF-8 variant of the name instead.
7325
7326 2009-05-03  Jim Meyering  <meyering@redhat.com>
7327
7328         tests: tighten some getdate tests
7329         * tests/test-getdate.c (main): Tighten tests: require equality,
7330         not just greater than.  Set TZ envvar to UTC0.
7331
7332 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
7333
7334         getdate: correctly interpret "next monday" when run on a Monday
7335         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
7336         that e.g., "next tues" (when run on a tuesday) results in a date
7337         that is one week in the future, and not today's date.
7338         I.e., add a week when the wday is the same as the current one.
7339         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
7340         and earlier by Martin Bernreuther and Jan Minář.
7341         * tests/test-getdate.c (main): Check that "next DAY" is always in
7342         the future and that "last DAY" is always in the past.
7343
7344 2009-05-02  Jim Meyering  <meyering@redhat.com>
7345
7346         build: ensure that a release build fails when a submodule is unclean
7347         * top/maint.mk (no-submodule-changes): New rule.
7348         (alpha beta major): Depend on it.
7349
7350 2009-05-02  Bruno Haible  <bruno@clisp.org>
7351
7352         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
7353         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
7354         shell variable gl_fnmatch_required to detect which variant is
7355         requested.
7356         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
7357         gl_FUNC_FNMATCH_POSIX.
7358         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
7359         exclude fnmatch-posix.
7360
7361 2009-05-02  Bruno Haible  <bruno@clisp.org>
7362
7363         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
7364         * modules/mbsrtowcs (License): Change to LGPLv2+.
7365         * modules/strnlen1 (License): Likewise.
7366         Reported by Simon Josefsson.
7367
7368 2009-05-02  Bruno Haible  <bruno@clisp.org>
7369
7370         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
7371         "cross".
7372         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
7373         gnulib-tool was called with option --source-base=lib.
7374
7375 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7376
7377         Use automake *-local hooks without commands, for extensibility.
7378         * modules/localcharset (Makefile.am): Rename install-exec-local
7379         rule to install-exec-localcharset, and make it a prerequisite of
7380         install-exec-local.  Likewise, rename the uninstall-local rule to
7381         uninstall-localcharset, and make it a prerequisite of the former.
7382
7383 2009-05-01  Bruno Haible  <bruno@clisp.org>
7384
7385         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
7386         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7387         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
7388         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
7389         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
7390         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7391         m4/locale-zh.m4, m4/codeset.m4.
7392
7393         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7394         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
7395         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7396         m4/locale-zh.m4.
7397
7398         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
7399         REPLACE_WCRTOMB if mbstate_t must be replaced.
7400         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
7401         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
7402
7403 2009-05-01  Bruno Haible  <bruno@clisp.org>
7404
7405         Avoid compiler warnings when redefining macros defined by <libintl.h>.
7406         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
7407         dngettext, dcngettext, textdomain, bindtextdomain,
7408         bind_textdomain_codeset): Undefine before redefining.
7409
7410 2009-04-30  Bruno Haible  <bruno@clisp.org>
7411
7412         Fix bug introduced on 2009-04-25.
7413         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
7414         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
7415         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
7416         is defined.
7417         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
7418         is defined.
7419         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
7420         is defined.
7421         Reported by Elbert_Pol <elbert.pol@gmail.com>.
7422
7423 2009-04-28  Bruno Haible  <bruno@clisp.org>
7424
7425         Comment tweaks.
7426         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
7427         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
7428         * lib/unicase.h (u*_casexfrm): Likewise.
7429         Reported by Paolo Bonzini.
7430
7431 2009-04-28  Bruno Haible  <bruno@clisp.org>
7432
7433         Fix a compilation error.
7434         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
7435         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
7436         Reported by Jim Meyering.
7437
7438 2009-04-27  Bruno Haible  <bruno@clisp.org>
7439
7440         New module 'libunistring'.
7441         * modules/libunistring: New file.
7442         * m4/libunistring.m4: New file.
7443         * MODULES.html.sh (Unicode string functions): Add it.
7444
7445 2009-04-27  Eric Blake  <ebb9@byu.net>
7446
7447         maint.mk: allow package-specific header to provide <config.h>
7448         * top/maint.mk (sc_require_config_h): New variable.
7449         (sc_require_config_h, sc_require_config_h_first): Use it.
7450
7451 2009-04-27  Simon Josefsson  <simon@josefsson.org>
7452
7453         * top/maint.mk (sc_avoid_if_before_free): Except
7454         useless-if-before-free script.
7455
7456 2009-04-27  Eric Blake  <ebb9@byu.net>
7457
7458         maintainer-makefile: depend on all required helper scripts
7459         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
7460         useless-if-before-free.
7461         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
7462         version, rather than assuming gnulib checkout is available.
7463         Reported by Simen Josefsson.
7464
7465 2009-04-26  Bruno Haible  <bruno@clisp.org>
7466
7467         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
7468         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
7469         "../" or "..".
7470
7471 2009-04-26  Bruno Haible  <bruno@clisp.org>
7472
7473         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
7474         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
7475         AC_LIB_HAVE_LINKFLAGS.
7476
7477 2009-04-26  Bruno Haible  <bruno@clisp.org>
7478
7479         Simplify calling convention of u*_conv_from_encoding.
7480         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
7481         u32_conv_from_encoding): Expect a resultbuf argument and return the
7482         result directly as a pointer.
7483         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
7484         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
7485         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
7486         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
7487         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
7488         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7489         Update.
7490         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
7491         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
7492         * lib/vasnprintf.c (VASNPRINTF): Update.
7493         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
7494         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
7495         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
7496         * NEWS: Mention the change.
7497
7498 2009-04-26  Bruno Haible  <bruno@clisp.org>
7499
7500         Simplify calling convention of u*_conv_to_encoding.
7501         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
7502         u32_conv_to_encoding): Expect a resultbuf argument and return the
7503         result directly as a pointer.
7504         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7505         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
7506         freeing scaled_offsets if mem_iconveha failed.
7507         * lib/unicase/u-casexfrm.h (FUNC): Update.
7508         * lib/uninorm/u-normxfrm.h (FUNC): Update.
7509         * lib/vasnprintf.c (VASNPRINTF): Update.
7510         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
7511         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
7512         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
7513         * NEWS: Mention the change.
7514
7515 2009-04-26  Bruno Haible  <bruno@clisp.org>
7516
7517         Avoid test failures on AIX and OSF/1.
7518         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
7519         malloc(0).
7520         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7521         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7522         Likewise.
7523         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
7524         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
7525         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
7526         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
7527         * doc/posix-functions/malloc.texi: Document the portability problem
7528         related to malloc(0).
7529
7530 2009-04-26  Bruno Haible  <bruno@clisp.org>
7531
7532         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
7533         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
7534         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
7535
7536 2009-04-25  Bruno Haible  <bruno@clisp.org>
7537
7538         Avoid link error when creating a namespace clean library.
7539         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
7540         as macro with arguments if already defined as an alias.
7541         * lib/signbitf.c (gl_signbitf): Don't undefine.
7542         * lib/signbitd.c (gl_signbitd): Don't undefine.
7543         * lib/signbitl.c (gl_signbitl): Don't undefine.
7544
7545 2009-04-25  Jim Meyering  <meyering@redhat.com>
7546
7547         vc-list-files: fix another quoting bug
7548         * build-aux/vc-list-files: Avoid sed backslash expansion
7549         of pathological directory names.
7550
7551 2009-04-25  Eric Blake  <ebb9@byu.net>
7552
7553         vc-list-files: fix shell quoting error
7554         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
7555         timestamp.
7556
7557 2009-04-25  Jim Meyering  <meyering@redhat.com>
7558
7559         vc-list-files: restore lost functionality with subdir argument
7560         * build-aux/vc-list-files: When given a non-"." sub-directory
7561         argument, substitute the $dir/ prefix back onto each resulting name.
7562         Otherwise, coreutils' root_tests check would fail.
7563
7564 2009-04-24  Eric Blake  <ebb9@byu.net>
7565
7566         vc-list-files: ignore git symlinks
7567         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
7568         than ls-files, to ignore git symlinks.
7569
7570         maint.mk: import improvements from m4
7571         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
7572         (move_if_change): Delete unused macro.
7573         (news-date-check, vc-diff-check): Support VPATH builds.
7574         (announcement): Likewise.  Split --bootstrap-tools list...
7575         (boostrap-tools): ...into separate list, which can be overridden
7576         in cfg.mk.
7577         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
7578         requiring dependency on useless-if-before-free module.
7579         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
7580         Support VPATH builds.
7581
7582 2009-04-24  Jim Meyering  <meyering@redhat.com>
7583
7584         maint.mk: remove coreutils-specific rules and variables
7585         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
7586         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
7587         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
7588
7589         maint.mk: remove obsolete rule
7590         * top/maint.mk (rel-check): Remove rule.
7591         (WGET, WGETFLAGS): Remove now-unused variables.
7592
7593 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7594
7595         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
7596         consistency.
7597
7598         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
7599         '$(PATH_SEPARATOR)' instead of ':'.
7600
7601 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7602
7603         * lib/getopt1.c (main): Use 'const' for static array.
7604
7605 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7606
7607         * top/maint.mk: Sync with coreutils.
7608         * NEWS: Explain incompatibilities.
7609
7610 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7611             Bruno Haible  <bruno@clisp.org>
7612
7613         Fix cross-compilation results.
7614         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
7615         statement, as third argument of AC_TRY_RUN.
7616         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
7617         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
7618         Likewise.
7619         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
7620         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
7621         Likewise.
7622         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
7623         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
7624         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
7625
7626 2009-04-20  Bruno Haible  <bruno@clisp.org>
7627
7628         Avoid test failure on mingw.
7629         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
7630
7631 2009-04-20  Bruno Haible  <bruno@clisp.org>
7632
7633         Avoid compilation error on mingw.
7634         * modules/localename-tests (Depends-on): Add locale.
7635
7636 2009-04-19  Bruno Haible  <bruno@clisp.org>
7637
7638         Support for building a shared library on Windows platforms.
7639         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
7640         (main): Test the presence of UNINORM_NFC here.
7641         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
7642         (main): Test the presence of UNINORM_NFD here.
7643         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
7644         (main): Test the presence of UNINORM_NFKC here.
7645         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
7646         (main): Test the presence of UNINORM_NFKD here.
7647
7648 2009-04-19  Bruno Haible  <bruno@clisp.org>
7649
7650         Avoid a compiler warning.
7651         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
7652         Change type of variable 'sequence'.
7653
7654 2009-04-19  Bruno Haible  <bruno@clisp.org>
7655
7656         * modules/configmake (Makefile.am): When the contents of configmake.h
7657         does not change, arrange to preserve its modification time.
7658
7659 2009-04-17  Simon Josefsson  <simon@josefsson.org>
7660
7661         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
7662         gettext domain.
7663
7664 2009-04-16  Jim Meyering  <meyering@redhat.com>
7665
7666         useless-if-before-free: improve conversion code
7667         * build-aux/useless-if-before-free: Adjust code-in-comment to match
7668         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
7669
7670 2009-04-14  Bruno Haible  <bruno@clisp.org>
7671
7672         * modules/fcntl (Depends-on): Add extensions.
7673         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
7674
7675 2009-04-12  Ben Pfaff  <blp@gnu.org>
7676
7677         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
7678         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
7679
7680 2009-03-20  Ben Pfaff  <blp@gnu.org>
7681
7682         Make rename replace existing destinations on Windows.
7683         * m4/rename.m4: Add test for Mingw.
7684         * lib/rename.c: Add rename replacement that uses MoveFileEx with
7685         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
7686         * doc/posix-functions/rename.texi: Document.
7687
7688 2009-04-10  Bruno Haible  <bruno@clisp.org>
7689
7690         New include file "iconveh.h".
7691         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
7692         * lib/striconveh.h: Include it.
7693         (enum iconv_ilseq_handler): Remove definition.
7694         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
7695         striconveh.h.
7696         * lib/striconveha.c: Include striconveh.h.
7697         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
7698         * modules/striconveh (Files): Add lib/iconveh.h.
7699         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
7700         lib/striconveh.h.
7701
7702 2009-04-10  Bruno Haible  <bruno@clisp.org>
7703
7704         * lib/uniconv.h: Update comment.
7705
7706 2009-04-10  Bruno Haible  <bruno@clisp.org>
7707
7708         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
7709         always.
7710         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
7711         * lib/unistr/u16-mbtouc-aux.c: Likewise.
7712         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
7713         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
7714         "unistring-notinline.h", so that the function gets defined always.
7715         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
7716         * lib/unistr/u8-uctomb.c: Likewise.
7717         * lib/unistr/u16-mbtouc.c: Likewise.
7718         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
7719         * lib/unistr/u16-uctomb.c: Likewise.
7720         * lib/unistr/u32-mbtouc.c: Likewise.
7721         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
7722         * lib/unistr/u32-uctomb.c: Likewise.
7723
7724 2009-04-10  Bruno Haible  <bruno@clisp.org>
7725
7726         Mark 'utime' obsolete.
7727         * modules/utime (Status, Notice): New sections.
7728         Suggested by Jim Meyering.
7729
7730         Fix cross-compile guess for utime test.
7731         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
7732         autoconf.
7733         * doc/posix-functions/utime.texi: Give more precisions.
7734         Reported by Jan <ipif@ymail.com>.
7735
7736 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
7737
7738         filevercmp: correct today's change
7739         * lib/filevercmp.c: Also handle coreutils' test inputs.
7740         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
7741
7742         Fix regression in 'filevercmp' module. Thanks Sven Joachim
7743         for reporting it.
7744         * lib/filevercmp.c: Special handle for "", "." and "..".
7745         * tests/test-filevercmp.c: Enlarge the set suite.
7746
7747 2009-04-07  Jim Meyering  <meyering@redhat.com>
7748
7749         useless-if-before-free: show how to remove braced useless free, too
7750         * build-aux/useless-if-before-free: still only in a comment, though.
7751
7752 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
7753
7754         maint.mk: import changes to syntax-check macros from coreutils
7755         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
7756         Use them in the relevant macros.
7757
7758 2009-04-06  Bruno Haible  <bruno@clisp.org>
7759
7760         Fix unportable use of bit-fields.
7761         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
7762         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
7763         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
7764
7765 2009-04-06  Bruno Haible  <bruno@clisp.org>
7766
7767         Avoid test failures on AIX and OSF/1.
7768         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
7769         that malloc(0) = NULL.
7770         * tests/unicase/test-u8-tolower.c (check): Likewise.
7771         * tests/unicase/test-u8-totitle.c (check): Likewise.
7772         * tests/unicase/test-u8-toupper.c (check): Likewise.
7773         * tests/unicase/test-u16-casefold.c (check): Likewise.
7774         * tests/unicase/test-u16-tolower.c (check): Likewise.
7775         * tests/unicase/test-u16-totitle.c (check): Likewise.
7776         * tests/unicase/test-u16-toupper.c (check): Likewise.
7777         * tests/unicase/test-u32-casefold.c (check): Likewise.
7778         * tests/unicase/test-u32-tolower.c (check): Likewise.
7779         * tests/unicase/test-u32-totitle.c (check): Likewise.
7780         * tests/unicase/test-u32-toupper.c (check): Likewise.
7781         * tests/uninorm/test-u8-nfc.c (check): Likewise.
7782         * tests/uninorm/test-u8-nfd.c (check): Likewise.
7783         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
7784         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
7785         * tests/uninorm/test-u16-nfc.c (check): Likewise.
7786         * tests/uninorm/test-u16-nfd.c (check): Likewise.
7787         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
7788         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
7789         * tests/uninorm/test-u32-nfc.c (check): Likewise.
7790         * tests/uninorm/test-u32-nfd.c (check): Likewise.
7791         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
7792         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
7793
7794 2009-04-05  Bruno Haible  <bruno@clisp.org>
7795
7796         Work around an autoconf limitation.
7797         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
7798         comment line if it would be longer than 3 KB.
7799
7800 2009-04-05  Bruno Haible  <bruno@clisp.org>
7801
7802         Avoid test failure with libiconv-1.13.
7803         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
7804         of the expected test results.
7805
7806 2009-04-05  Bruno Haible  <bruno@clisp.org>
7807
7808         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
7809         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
7810         that it should be installed.
7811
7812 2009-04-05  Bruno Haible  <bruno@clisp.org>
7813
7814         * gnulib-tool: New option --copy-file.
7815         (func_usage): Document it.
7816         (func_dest_tmpfilename): Moved out of func_import.
7817         (func_add_file, func_update_file): New functions, extracted from
7818         func_import.
7819         (func_import): Update.
7820
7821 2009-04-05  Karl Berry  <karl@gnu.org>
7822
7823         * README: prominently mention gnulib-tool.
7824         Rearrange sections so getting the code is near the top.
7825
7826 2009-04-05  Bruno Haible  <bruno@clisp.org>
7827
7828         * lib/unicase.h: Mention u*_cmp2.
7829         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7830         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
7831         * lib/unicase/ulc-casecmp.c: Likewise.
7832         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
7833         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
7834         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
7835         unistr/u8-cmp.
7836         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
7837         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
7838         unistr/u16-cmp.
7839         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
7840         unistr/u32-cmp.
7841
7842         * lib/uninorm.h: Mention u*_cmp2.
7843         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7844         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
7845         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
7846         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
7847         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
7848         unistr/u8-cmp.
7849         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
7850         unistr/u16-cmp.
7851         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
7852         unistr/u32-cmp.
7853
7854         New module 'unistr/u32-cmp2'.
7855         * lib/unistr/u32-cmp2.c: New file.
7856         * modules/unistr/u32-cmp2: New file.
7857
7858         New module 'unistr/u16-cmp2'.
7859         * lib/unistr/u16-cmp2.c: New file.
7860         * modules/unistr/u16-cmp2: New file.
7861
7862         New module 'unistr/u8-cmp2'.
7863         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
7864         * lib/unistr/u8-cmp2.c: New file.
7865         * lib/unistr/u-cmp2.h: New file.
7866         * modules/unistr/u8-cmp2: New file.
7867
7868 2009-04-05  Bruno Haible  <bruno@clisp.org>
7869
7870         * lib/unictype.h (uc_property_is_valid): New macro.
7871         * tests/unictype/test-pr_byname.c (main): Use it.
7872
7873         * lib/unistr.h: Doc fixes.
7874         * lib/uniconv.h: Doc fixes.
7875         * lib/unictype.h: Doc fixes.
7876
7877 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
7878
7879         Port coreutils 7.2 to Solaris 8.
7880
7881         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
7882         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
7883         for Solaris 8.  This is a bit of a hack, as it means it's the
7884         caller's responsibility to add -lnsl if needed, but most likely it
7885         won't be needed since only getaddrinfo uses this and getaddrinfo
7886         isn't needed on Solaris 8.
7887
7888         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
7889         problem to Solaris 8 encountered with coreutils 7.2, which
7890         resulted in a message "fnmatch.c:292: warning: passing argument 4
7891         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
7892         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
7893
7894 2009-04-03  Simon Josefsson  <simon@josefsson.org>
7895
7896         * m4/ld-version-script.m4: Add FIXME comment.
7897
7898 2009-04-02  Simon Josefsson  <simon@josefsson.org>
7899
7900         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
7901         SOVERSION variable.
7902
7903 2009-04-02  Bruno Haible  <bruno@clisp.org>
7904
7905         * Makefile (info, html, dvi, pdf): Combine the rules.
7906         Suggested by Jim Meyering.
7907
7908 2009-04-01  Bruno Haible  <bruno@clisp.org>
7909
7910         * Makefile (info, html, dvi, pdf): New targets.
7911         Reported by Reuben Thomas <rrt@sc3d.org>.
7912
7913 2009-04-01  Bruno Haible  <bruno@clisp.org>
7914
7915         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
7916         can be put into PATH.
7917         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
7918
7919 2009-04-01  Bruno Haible  <bruno@clisp.org>
7920
7921         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
7922
7923 2009-04-01  Bruno Haible  <bruno@clisp.org>
7924
7925         Rename module 'visibility'.
7926         * modules/lib-symbol-visibility: Renamed from modules/visibility.
7927         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
7928         * doc/gnulib.texi: Update.
7929         * MODULES.html.sh (Misc): Update.
7930         * NEWS: Mention the change.
7931
7932 2009-04-01  Simon Josefsson  <simon@josefsson.org>
7933
7934         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
7935         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
7936         Eric Blake <ebb9@byu.net> for review.
7937         * MODULES.html.sh: Add lib-msvc-compat.
7938         * doc/gnulib.texi: Link to new section.
7939         * m4/ld-output-def.m4: New file.
7940         * doc/ld-output-def.texi: New file.
7941
7942 2009-04-01  Simon Josefsson  <simon@josefsson.org>
7943
7944         Rename ld-version-script to lib-symbol-versions.  Suggested by
7945         Bruno Haible <bruno@clisp.org>.
7946         * modules/ld-version-script: Renamed to lib-symbol-versions.
7947         * doc/ld-version-script.texi: Fix module name.
7948         * MODULES.html.sh: Add lib-symbol-versions.
7949
7950 2009-03-31  Simon Josefsson  <simon@josefsson.org>
7951
7952         * modules/u64-tests: New file.
7953         * tests/test-u64.c: New file.
7954
7955 2009-03-04  Simon Josefsson  <simon@josefsson.org>
7956
7957         * MODULES.html.sh: Mention u64.
7958         * modules/u64: New module.
7959         * modules/crypto/sha512: Depend on u64 module instead of providing
7960         u64.h.
7961
7962 2009-03-27  Eric Blake  <ebb9@byu.net>
7963
7964         test-strerror: make debugging EAI_SYSTEM easier
7965         * modules/getaddrinfo-tests (Depends-on): Add strerror.
7966         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
7967         failure was EAI_SYSTEM.
7968
7969 2009-03-25  Bruno Haible  <bruno@clisp.org>
7970
7971         Fix a problem with --enable-relocatable on Solaris 7.
7972         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
7973         since 2008-02-24.
7974
7975 2009-03-25  Eric Blake  <ebb9@byu.net>
7976
7977         test-sockets: avoid gcc warning
7978         * tests/test-sockets.c (main): Silence compiler warning.
7979
7980 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
7981
7982         New modules nproc, pthread, contributed by Glen Lenker.
7983
7984         * MODULES.html.sh: Add pthread, nproc.
7985         * lib/nproc.c: New file.
7986         * lib/nproc.h: New file.
7987         * lib/pthread.in.h: New file.
7988         * m4/pthread.m4: New file.
7989         * modules/nproc: New file.
7990         * modules/pthread: New file.
7991
7992 2009-03-24  Simon Josefsson  <simon@josefsson.org>
7993
7994         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
7995         New variable.
7996
7997 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
7998
7999         filevercmp: handle simple~ and numbered.~3~ backup suffixes
8000         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
8001         * tests/test-filevercmp.c: Add tests for backup suffixes.
8002
8003 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8004
8005         * modules/stdlib (Depends-on): Add stdint, needed when defining
8006         struct random_data on, for example, HP-UX 10.20.  Reported by
8007         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8008
8009 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8010
8011         * lib/readline.c (readline): Call fflush on stdout after printing
8012         prompt.
8013
8014 2009-03-20  Bruno Haible  <bruno@clisp.org>
8015
8016         Remove dependency from 'close' module to -lws2_32 on native Windows.
8017         * lib/close-hook.h: New file.
8018         * lib/close-hook.c: New file.
8019         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
8020         w32sock.h.
8021         (_gl_close_fd_maybe_socket): Remove function.
8022         (rpl_close): Invoke execute_all_close_hooks instead of
8023         _gl_close_fd_maybe_socket.
8024         * lib/sockets.c: Include close-hook.h, w32sock.h.
8025         (close_fd_maybe_socket): New function, essentially from lib/close.c.
8026         (close_sockets_hook): New variable.
8027         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
8028         (gl_sockets_cleanup): Unregister it.
8029         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
8030         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
8031         * modules/close-hook: New file.
8032         * modules/close (Files): Remove lib/w32sock.h.
8033         (Depends-on): Add close-hook.
8034         (Link): Remove section.
8035         * modules/sockets (Files): Add lib/w32sock.h.
8036         (Depends-on): Add close-hook.
8037         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
8038         invocation.
8039         * NEWS: Mention that LIB_CLOSE is gone.
8040
8041 2009-03-23  Eric Blake  <ebb9@byu.net>
8042
8043         signal-tests: test previous patch
8044         * tests/test-signal.c: New file.
8045         * modules/signal-tests: Likewise.
8046
8047         signal.h: always support 'volatile sig_atomic_t'
8048         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
8049         (gl_SIGNAL_H_DEFAULTS): Add a default.
8050         * modules/signal (Makefile.am): Substitute if needed.
8051         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
8052         users can blindly add volatile.
8053         * doc/posix-headers/signal.texi (signal.h): Document it.
8054         Reported by Matthew Woehlke.
8055
8056 2009-03-23  Jim Meyering  <meyering@redhat.com>
8057
8058         pathmax: PATH_MAX: use pathconf only when available
8059         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
8060         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
8061         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
8062         This avoids a link failure in a PSP cross-compilation environment
8063         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
8064
8065         * lib/vasnprintf.c (divide): Fix typo in comment.
8066
8067 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8068
8069         * gnulib-tool (func_filter_filelist): Fix comment.
8070
8071 2009-03-20  Bruno Haible  <bruno@clisp.org>
8072
8073         Make sockets.h self-contained.
8074         * lib/sockets.c: Include sockets.h first.
8075         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
8076
8077 2009-03-19  Eric Blake  <ebb9@byu.net>
8078
8079         doc: mention more functions added in cygwin 1.7.0
8080         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
8081         addition.
8082         * doc/posix-functions/log2f.texi: Likewise.
8083
8084 2009-03-19  Jim Meyering  <meyering@redhat.com>
8085
8086         fsusage: avoid syntax error due to statement-before-declaration
8087         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
8088         after all declarations.  Reported by Matthew Woehlke in
8089         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
8090
8091 2009-03-18  Eric Blake  <ebb9@byu.net>
8092
8093         build-aux/compile: sync from automake
8094         * build-aux/compile: New file, from automake.
8095         * config/srclist.txt: Mention build-aux/compile.
8096
8097 2009-03-17  Bruno Haible  <bruno@clisp.org>
8098
8099         * lib/git-merge-changelog.c: Fix typo in comment.
8100         Reported by Reuben Thomas <rrt@sc3d.org>.
8101
8102 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
8103
8104         * m4/regex.m4: update and improve help for
8105         --without-included-regex.
8106
8107 2009-03-17  Simon Josefsson  <simon@josefsson.org>
8108
8109         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
8110         failure on missing include files.
8111
8112 2009-03-17  Eric Blake  <ebb9@byu.net>
8113
8114         doc: mention more functions added in cygwin 1.7.0
8115         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
8116         addition.
8117         * doc/posix-functions/fwscanf.texi: Likewise.
8118         * doc/posix-functions/swprintf.texi: Likewise.
8119         * doc/posix-functions/swscanf.texi: Likewise.
8120         * doc/posix-functions/vfwprintf.texi: Likewise.
8121         * doc/posix-functions/vfwscanf.texi: Likewise.
8122         * doc/posix-functions/vswprintf.texi: Likewise.
8123         * doc/posix-functions/vswscanf.texi: Likewise.
8124         * doc/posix-functions/vwprintf.texi: Likewise.
8125         * doc/posix-functions/vwscanf.texi: Likewise.
8126         * doc/posix-functions/wcscasecmp.texi: Likewise.
8127         * doc/posix-functions/wcsdup.texi: Likewise.
8128         * doc/posix-functions/wcsftime.texi: Likewise.
8129         * doc/posix-functions/wcsncasecmp.texi: Likewise.
8130         * doc/posix-functions/wprintf.texi: Likewise.
8131         * doc/posix-functions/wscanf.texi: Likewise.
8132         * doc/glibc-functions/gethostbyname2.texi: Likewise.
8133
8134 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8135
8136         maint.mk: really add $(AM_MAKEFLAGS)
8137         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
8138         was inadvertently omitted in the last commit.
8139         Spotted by Bruno Haible.
8140
8141         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
8142         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
8143         $(AM_MAKEFLAGS)' rather than plain `make'.
8144
8145         gnulib-tool: execute $MAKE not make
8146         * gnulib-tool: Default $MAKE to 'make'.
8147         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
8148         than make.  Initialize $MAKE in the do-autobuild script.
8149
8150         gnulib-tool: use $MAKE not make in generated files
8151         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
8152         make, in generated files.  Initialize $MAKE in the do-autobuild
8153         script.
8154
8155         * top/GNUmakefile (_have-git-version-gen): Fix typo.
8156
8157         GNUmakefile: disable parallelism only for multiple, recursive targets
8158         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
8159         additions in the Makefile.
8160         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
8161         by Automake.
8162         (.NOTPARALLEL): Only disable parallel builds if multiple targets
8163         are listed on the command line and at least one of them is
8164         listed in $(ALL_RECURSIVE_TARGETS).
8165
8166 2009-03-14  Bruno Haible  <bruno@clisp.org>
8167
8168         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
8169         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
8170         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
8171         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
8172         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
8173         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
8174         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
8175         unistr/u8-uctomb.
8176         * modules/unistr/u8-strchr (Depends-on): Likewise.
8177         * modules/unistr/u8-strrchr (Depends-on): Likewise.
8178         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
8179         unistr/u16-uctomb.
8180         * modules/unistr/u16-strchr (Depends-on): Likewise.
8181         * modules/unistr/u16-strrchr (Depends-on): Likewise.
8182
8183 2009-03-12  Bruno Haible  <bruno@clisp.org>
8184
8185         Work around select() bug on Interix 3.5.
8186         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
8187         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
8188         * m4/select.m4: New file.
8189         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
8190         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
8191         * modules/select (Files): Add m4/select.m4.
8192         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
8193         * modules/nanosleep (Depends-on): Add select.
8194         * modules/poll (Depends-on): Likewise.
8195         * doc/posix-functions/select.texi: Mention the Interix bug.
8196         Reported by Markus Duft <mduft@gentoo.org>.
8197
8198         * lib/select.c: Renamed from lib/winsock-select.c.
8199         * modules/select (Files): Add lib/select.c, remove
8200         lib/winsock-select.c.
8201         (configure.ac): Update.
8202
8203 2009-03-12  Jim Meyering  <meyering@redhat.com>
8204
8205         avoid gcc warnings about unused macro definitions
8206         * lib/readtokens.c (STREQ): Remove unused definition.
8207         * lib/xmalloc.c (SIZE_MAX): Likewise.
8208         * lib/openat-die.c (N_): Likewise.
8209         * lib/mountlist.c (SIZE_MAX): Remove definition.
8210         Instead, include <stdint.h>.
8211         * lib/readutmp.c: Likewise.
8212         * modules/readutmp (Depends-on): Add stdint.
8213         * modules/mountlist (Depends-on): Add stdint.
8214         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
8215
8216 2009-03-10  Bruno Haible  <bruno@clisp.org>
8217
8218         Tests for module 'mbmemcasecoll'.
8219         * modules/mbmemcasecoll-tests: New file.
8220         * tests/test-mbmemcasecoll1.sh: New file.
8221         * tests/test-mbmemcasecoll2.sh: New file.
8222         * tests/test-mbmemcasecoll3.sh: New file.
8223         * tests/test-mbmemcasecoll.c: New file.
8224
8225         New module 'mbmemcasecoll'.
8226         * lib/mbmemcasecoll.h: New file.
8227         * lib/mbmemcasecoll.c: New file.
8228         * modules/mbmemcasecoll: New file.
8229
8230         * tests/test-mbmemcasecmp.h: New file, extracted from
8231         tests/test-mbmemcasecmp.c.
8232         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
8233         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
8234         (main): Update.
8235         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
8236
8237 2009-03-09  Bruno Haible  <bruno@clisp.org>
8238
8239         Tests for module 'mbmemcasecmp'.
8240         * modules/mbmemcasecmp-tests: New file.
8241         * tests/test-mbmemcasecmp1.sh: New file.
8242         * tests/test-mbmemcasecmp2.sh: New file.
8243         * tests/test-mbmemcasecmp3.sh: New file.
8244         * tests/test-mbmemcasecmp.c: New file.
8245
8246         New module 'mbmemcasecmp'.
8247         * lib/mbmemcasecmp.h: New file.
8248         * lib/mbmemcasecmp.c: New file.
8249         * modules/mbmemcasecmp: New file.
8250
8251 2009-03-09  Bruno Haible  <bruno@clisp.org>
8252
8253         Tests for module 'unicase/ulc-casecoll'.
8254         * modules/unicase/ulc-casecoll-tests: New file.
8255         * tests/unicase/test-ulc-casecoll1.sh: New file.
8256         * tests/unicase/test-ulc-casecoll2.sh: New file.
8257         * tests/unicase/test-ulc-casecoll.c: New file.
8258
8259         New module 'unicase/ulc-casecoll'.
8260         * lib/unicase.h (ulc_casecoll): New declaration.
8261         * lib/unicase/ulc-casecoll.c: New file.
8262         * modules/unicase/ulc-casecoll: New file.
8263
8264         New module 'unicase/ulc-casexfrm'.
8265         * lib/unicase.h (ulc_casexfrm): New declaration.
8266         * lib/unicase/ulc-casexfrm.c: New file.
8267         * modules/unicase/ulc-casexfrm: New file.
8268
8269 2009-03-09  Bruno Haible  <bruno@clisp.org>
8270
8271         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
8272         invocations.
8273
8274         * m4/mbscasecmp.m4: Remove file.
8275         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
8276         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
8277
8278         * m4/mbscasestr.m4: Remove file.
8279         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
8280         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
8281
8282         * m4/mbschr.m4: Remove file.
8283         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
8284         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
8285
8286         * m4/mbscspn.m4: Remove file.
8287         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
8288         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
8289
8290         * m4/mbslen.m4: Remove file.
8291         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
8292         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
8293
8294         * m4/mbsncasecmp.m4: Remove file.
8295         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
8296         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
8297
8298         * m4/mbsnlen.m4: Remove file.
8299         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
8300         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
8301
8302         * m4/mbspbrk.m4: Remove file.
8303         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
8304         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
8305
8306         * m4/mbspcasecmp.m4: Remove file.
8307         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
8308         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
8309
8310         * m4/mbsrchr.m4: Remove file.
8311         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
8312         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
8313
8314         * m4/mbssep.m4: Remove file.
8315         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
8316         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
8317
8318         * m4/mbsspn.m4: Remove file.
8319         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
8320         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
8321
8322         * m4/mbsstr.m4: Remove file.
8323         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
8324         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
8325
8326         * m4/mbstok_r.m4: Remove file.
8327         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
8328         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
8329
8330         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
8331
8332         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
8333         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
8334
8335         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
8336
8337 2009-03-08  Bruno Haible  <bruno@clisp.org>
8338
8339         Tests for module 'unicase/ulc-casecmp'.
8340         * modules/unicase/ulc-casecmp-tests: New file.
8341         * tests/unicase/test-ulc-casecmp1.sh: New file.
8342         * tests/unicase/test-ulc-casecmp2.sh: New file.
8343         * tests/unicase/test-ulc-casecmp.c: New file.
8344
8345         New module 'unicase/ulc-casecmp'.
8346         * lib/unicase.h (ulc_casecmp): New declaration.
8347         * lib/unicase/ulc-casecmp.c: New file.
8348         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
8349         'const SRC_UNIT *'.
8350         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
8351         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
8352         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
8353         * modules/unicase/ulc-casecmp: New file.
8354
8355         Tests for module 'unicase/u32-is-cased'.
8356         * modules/unicase/u32-is-cased-tests: New file.
8357         * tests/unicase/test-u32-is-cased.c: New file.
8358
8359         Tests for module 'unicase/u16-is-cased'.
8360         * modules/unicase/u16-is-cased-tests: New file.
8361         * tests/unicase/test-u16-is-cased.c: New file.
8362
8363         Tests for module 'unicase/u8-is-cased'.
8364         * modules/unicase/u8-is-cased-tests: New file.
8365         * tests/unicase/test-u8-is-cased.c: New file.
8366         * tests/unicase/test-is-cased.h: New file.
8367
8368         New module 'unicase/u32-is-cased'.
8369         * lib/unicase/u32-is-cased.c: New file.
8370         * modules/unicase/u32-is-cased: New file.
8371
8372         New module 'unicase/u16-is-cased'.
8373         * lib/unicase/u16-is-cased.c: New file.
8374         * modules/unicase/u16-is-cased: New file.
8375
8376         New module 'unicase/u8-is-cased'.
8377         * lib/unicase/u8-is-cased.c: New file.
8378         * lib/unicase/u-is-cased.h: New file.
8379         * modules/unicase/u8-is-cased: New file.
8380
8381         Tests for module 'unicase/u32-is-casefolded'.
8382         * modules/unicase/u32-is-casefolded-tests: New file.
8383         * tests/unicase/test-u32-is-casefolded.c: New file.
8384
8385         Tests for module 'unicase/u16-is-casefolded'.
8386         * modules/unicase/u16-is-casefolded-tests: New file.
8387         * tests/unicase/test-u16-is-casefolded.c: New file.
8388
8389         Tests for module 'unicase/u8-is-casefolded'.
8390         * modules/unicase/u8-is-casefolded-tests: New file.
8391         * tests/unicase/test-u8-is-casefolded.c: New file.
8392         * tests/unicase/test-is-casefolded.h: New file.
8393
8394         New module 'unicase/u32-is-casefolded'.
8395         * lib/unicase/u32-is-casefolded.c: New file.
8396         * modules/unicase/u32-is-casefolded: New file.
8397
8398         New module 'unicase/u16-is-casefolded'.
8399         * lib/unicase/u16-is-casefolded.c: New file.
8400         * modules/unicase/u16-is-casefolded: New file.
8401
8402         New module 'unicase/u8-is-casefolded'.
8403         * lib/unicase/u8-is-casefolded.c: New file.
8404         * modules/unicase/u8-is-casefolded: New file.
8405
8406         Tests for module 'unicase/u32-is-titlecase'.
8407         * modules/unicase/u32-is-titlecase-tests: New file.
8408         * tests/unicase/test-u32-is-titlecase.c: New file.
8409
8410         Tests for module 'unicase/u16-is-titlecase'.
8411         * modules/unicase/u16-is-titlecase-tests: New file.
8412         * tests/unicase/test-u16-is-titlecase.c: New file.
8413
8414         Tests for module 'unicase/u8-is-titlecase'.
8415         * modules/unicase/u8-is-titlecase-tests: New file.
8416         * tests/unicase/test-u8-is-titlecase.c: New file.
8417         * tests/unicase/test-is-titlecase.h: New file.
8418
8419         New module 'unicase/u32-is-titlecase'.
8420         * lib/unicase/u32-is-titlecase.c: New file.
8421         * modules/unicase/u32-is-titlecase: New file.
8422
8423         New module 'unicase/u16-is-titlecase'.
8424         * lib/unicase/u16-is-titlecase.c: New file.
8425         * modules/unicase/u16-is-titlecase: New file.
8426
8427         New module 'unicase/u8-is-titlecase'.
8428         * lib/unicase/u8-is-titlecase.c: New file.
8429         * modules/unicase/u8-is-titlecase: New file.
8430
8431         Tests for module 'unicase/u32-is-lowercase'.
8432         * modules/unicase/u32-is-lowercase-tests: New file.
8433         * tests/unicase/test-u32-is-lowercase.c: New file.
8434
8435         Tests for module 'unicase/u16-is-lowercase'.
8436         * modules/unicase/u16-is-lowercase-tests: New file.
8437         * tests/unicase/test-u16-is-lowercase.c: New file.
8438
8439         Tests for module 'unicase/u8-is-lowercase'.
8440         * modules/unicase/u8-is-lowercase-tests: New file.
8441         * tests/unicase/test-u8-is-lowercase.c: New file.
8442         * tests/unicase/test-is-lowercase.h: New file.
8443
8444         New module 'unicase/u32-is-lowercase'.
8445         * lib/unicase/u32-is-lowercase.c: New file.
8446         * modules/unicase/u32-is-lowercase: New file.
8447
8448         New module 'unicase/u16-is-lowercase'.
8449         * lib/unicase/u16-is-lowercase.c: New file.
8450         * modules/unicase/u16-is-lowercase: New file.
8451
8452         New module 'unicase/u8-is-lowercase'.
8453         * lib/unicase/u8-is-lowercase.c: New file.
8454         * modules/unicase/u8-is-lowercase: New file.
8455
8456         Tests for module 'unicase/u32-is-uppercase'.
8457         * modules/unicase/u32-is-uppercase-tests: New file.
8458         * tests/unicase/test-u32-is-uppercase.c: New file.
8459
8460         Tests for module 'unicase/u16-is-uppercase'.
8461         * modules/unicase/u16-is-uppercase-tests: New file.
8462         * tests/unicase/test-u16-is-uppercase.c: New file.
8463
8464         Tests for module 'unicase/u8-is-uppercase'.
8465         * modules/unicase/u8-is-uppercase-tests: New file.
8466         * tests/unicase/test-u8-is-uppercase.c: New file.
8467         * tests/unicase/test-is-uppercase.h: New file.
8468
8469         New module 'unicase/u32-is-uppercase'.
8470         * lib/unicase/u32-is-uppercase.c: New file.
8471         * modules/unicase/u32-is-uppercase: New file.
8472
8473         New module 'unicase/u16-is-uppercase'.
8474         * lib/unicase/u16-is-uppercase.c: New file.
8475         * modules/unicase/u16-is-uppercase: New file.
8476
8477         New module 'unicase/u8-is-uppercase'.
8478         * lib/unicase/u8-is-uppercase.c: New file.
8479         * modules/unicase/u8-is-uppercase: New file.
8480
8481         New module 'unicase/u32-is-invariant'.
8482         * lib/unicase/u32-is-invariant.c: New file.
8483         * modules/unicase/u32-is-invariant: New file.
8484
8485         New module 'unicase/u16-is-invariant'.
8486         * lib/unicase/u16-is-invariant.c: New file.
8487         * modules/unicase/u16-is-invariant: New file.
8488
8489         New module 'unicase/u8-is-invariant'.
8490         * lib/unicase/u8-is-invariant.c: New file.
8491         * lib/unicase/invariant.h: New file.
8492         * lib/unicase/u-is-invariant.h: New file.
8493         * modules/unicase/u8-is-invariant: New file.
8494
8495         Tests for module 'unicase/u32-casecoll'.
8496         * modules/unicase/u32-casecoll-tests: New file.
8497         * tests/unicase/test-u32-casecoll.c: New file.
8498
8499         Tests for module 'unicase/u16-casecoll'.
8500         * modules/unicase/u16-casecoll-tests: New file.
8501         * tests/unicase/test-u16-casecoll.c: New file.
8502
8503         Tests for module 'unicase/u8-casecoll'.
8504         * modules/unicase/u8-casecoll-tests: New file.
8505         * tests/unicase/test-u8-casecoll.c: New file.
8506
8507         New module 'unicase/u32-casecoll'.
8508         * lib/unicase/u32-casecoll.c: New file.
8509         * modules/unicase/u32-casecoll: New file.
8510
8511         New module 'unicase/u16-casecoll'.
8512         * lib/unicase/u16-casecoll.c: New file.
8513         * modules/unicase/u16-casecoll: New file.
8514
8515         New module 'unicase/u8-casecoll'.
8516         * lib/unicase/u8-casecoll.c: New file.
8517         * lib/unicase/u-casecoll.h: New file.
8518         * modules/unicase/u8-casecoll: New file.
8519
8520         New module 'unicase/u32-casexfrm'.
8521         * lib/unicase/u32-casexfrm.c: New file.
8522         * modules/unicase/u32-casexfrm: New file.
8523
8524         New module 'unicase/u16-casexfrm'.
8525         * lib/unicase/u16-casexfrm.c: New file.
8526         * modules/unicase/u16-casexfrm: New file.
8527
8528         New module 'unicase/u8-casexfrm'.
8529         * lib/unicase/u8-casexfrm.c: New file.
8530         * lib/unicase/u-casexfrm.h: New file.
8531         * modules/unicase/u8-casexfrm: New file.
8532
8533         Tests for module 'unicase/u32-casecmp'.
8534         * modules/unicase/u32-casecmp-tests: New file.
8535         * tests/unicase/test-u32-casecmp.c: New file.
8536
8537         Tests for module 'unicase/u16-casecmp'.
8538         * modules/unicase/u16-casecmp-tests: New file.
8539         * tests/unicase/test-u16-casecmp.c: New file.
8540
8541         Tests for module 'unicase/u8-casecmp'.
8542         * modules/unicase/u8-casecmp-tests: New file.
8543         * tests/unicase/test-u8-casecmp.c: New file.
8544         * tests/unicase/test-casecmp.h: New file.
8545
8546         New module 'unicase/u32-casecmp'.
8547         * lib/unicase/u32-casecmp.c: New file.
8548         * modules/unicase/u32-casecmp: New file.
8549
8550         New module 'unicase/u16-casecmp'.
8551         * lib/unicase/u16-casecmp.c: New file.
8552         * modules/unicase/u16-casecmp: New file.
8553
8554         New module 'unicase/u8-casecmp'.
8555         * lib/unicase/u8-casecmp.c: New file.
8556         * lib/unicase/u-casecmp.h: New file.
8557         * modules/unicase/u8-casecmp: New file.
8558
8559         Tests for module 'unicase/u32-casefold'.
8560         * modules/unicase/u32-casefold-tests: New file.
8561         * tests/unicase/test-u32-casefold.c: New file.
8562
8563         Tests for module 'unicase/u16-casefold'.
8564         * modules/unicase/u16-casefold-tests: New file.
8565         * tests/unicase/test-u16-casefold.c: New file.
8566
8567         Tests for module 'unicase/u8-casefold'.
8568         * modules/unicase/u8-casefold-tests: New file.
8569         * tests/unicase/test-u8-casefold.c: New file.
8570
8571         New module 'unicase/u32-casefold'.
8572         * lib/unicase/u32-casefold.c: New file.
8573         * modules/unicase/u32-casefold: New file.
8574
8575         New module 'unicase/u16-casefold'.
8576         * lib/unicase/u16-casefold.c: New file.
8577         * modules/unicase/u16-casefold: New file.
8578
8579         New module 'unicase/u8-casefold'.
8580         * lib/unicase/u8-casefold.c: New file.
8581         * lib/unicase/u-casefold.h: New file.
8582         * modules/unicase/u8-casefold: New file.
8583
8584         New module 'unicase/tocasefold'.
8585         * lib/unicase/casefold.h: New file.
8586         * lib/unicase/tocasefold.c: New file.
8587         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
8588         * modules/unicase/tocasefold: New file.
8589
8590         Tests for module 'unicase/u32-totitle'.
8591         * modules/unicase/u32-totitle-tests: New file.
8592         * tests/unicase/test-u32-totitle.c: New file.
8593
8594         Tests for module 'unicase/u16-totitle'.
8595         * modules/unicase/u16-totitle-tests: New file.
8596         * tests/unicase/test-u16-totitle.c: New file.
8597
8598         Tests for module 'unicase/u8-totitle'.
8599         * modules/unicase/u8-totitle-tests: New file.
8600         * tests/unicase/test-u8-totitle.c: New file.
8601
8602         New module 'unicase/u32-totitle'.
8603         * lib/unicase/u32-totitle.c: New file.
8604         * modules/unicase/u32-totitle: New file.
8605
8606         New module 'unicase/u16-totitle'.
8607         * lib/unicase/u16-totitle.c: New file.
8608         * modules/unicase/u16-totitle: New file.
8609
8610         New module 'unicase/u8-totitle'.
8611         * lib/unicase/u8-totitle.c: New file.
8612         * lib/unicase/u-totitle.h: New file.
8613         * modules/unicase/u8-totitle: New file.
8614
8615         Tests for module 'unicase/u32-tolower'.
8616         * modules/unicase/u32-tolower-tests: New file.
8617         * tests/unicase/test-u32-tolower.c: New file.
8618
8619         Tests for module 'unicase/u16-tolower'.
8620         * modules/unicase/u16-tolower-tests: New file.
8621         * tests/unicase/test-u16-tolower.c: New file.
8622
8623         Tests for module 'unicase/u8-tolower'.
8624         * modules/unicase/u8-tolower-tests: New file.
8625         * tests/unicase/test-u8-tolower.c: New file.
8626
8627         New module 'unicase/u32-tolower'.
8628         * lib/unicase/u32-tolower.c: New file.
8629         * modules/unicase/u32-tolower: New file.
8630
8631         New module 'unicase/u16-tolower'.
8632         * lib/unicase/u16-tolower.c: New file.
8633         * modules/unicase/u16-tolower: New file.
8634
8635         New module 'unicase/u8-tolower'.
8636         * lib/unicase/u8-tolower.c: New file.
8637         * modules/unicase/u8-tolower: New file.
8638
8639         Tests for module 'unicase/u32-toupper'.
8640         * modules/unicase/u32-toupper-tests: New file.
8641         * tests/unicase/test-u32-toupper.c: New file.
8642
8643         Tests for module 'unicase/u16-toupper'.
8644         * modules/unicase/u16-toupper-tests: New file.
8645         * tests/unicase/test-u16-toupper.c: New file.
8646
8647         Tests for module 'unicase/u8-toupper'.
8648         * modules/unicase/u8-toupper-tests: New file.
8649         * tests/unicase/test-u8-toupper.c: New file.
8650
8651         New module 'unicase/u32-toupper'.
8652         * lib/unicase/u32-toupper.c: New file.
8653         * modules/unicase/u32-toupper: New file.
8654
8655         New module 'unicase/u16-toupper'.
8656         * lib/unicase/u16-toupper.c: New file.
8657         * modules/unicase/u16-toupper: New file.
8658
8659         New module 'unicase/u8-toupper'.
8660         * lib/unicase/u8-toupper.c: New file.
8661         * modules/unicase/u8-toupper: New file.
8662
8663         New module 'unicase/u32-casemap'.
8664         * lib/unicase/u32-casemap.c: New file.
8665         * modules/unicase/u32-casemap: New file.
8666
8667         New module 'unicase/u16-casemap'.
8668         * lib/unicase/u16-casemap.c: New file.
8669         * modules/unicase/u16-casemap: New file.
8670
8671         New module 'unicase/u8-casemap'.
8672         * lib/unicase/unicasemap.h: New file.
8673         * lib/unicase/u8-casemap.c: New file.
8674         * lib/unicase/u-casemap.h: New file.
8675         * modules/unicase/u8-casemap: New file.
8676
8677         New module 'unicase/special-casing'.
8678         * lib/unicase/special-casing.h: New file.
8679         * lib/unicase/special-casing.c: New file.
8680         * lib/unicase/special-casing-table.gperf: New file, generated by
8681         gen-uni-tables.c.
8682         * modules/unicase/special-casing: New file.
8683
8684         Tests for module 'unicase/locale-language'.
8685         * modules/unicase/locale-language-tests: New file.
8686         * tests/unicase/test-locale-language.sh: New file.
8687         * tests/unicase/test-locale-language.c: New file.
8688
8689         New module 'unicase/locale-language'.
8690         * lib/unicase/locale-language.c: New file.
8691         * lib/unicase/locale-languages.gperf: New file.
8692         * modules/unicase/locale-language: New file.
8693
8694         Generate more tables for case conversion and case folding.
8695         * lib/gen-uni-tables.c (SCC_*): New enum items.
8696         (struct special_casing_rule): New type.
8697         (casing_rules, num_casing_rules, allocated_casing_rules): New
8698         variables.
8699         (add_casing_rule, fill_casing_rules): New functions.
8700         (struct casefold_rule): New type.
8701         (casefolding_rules, num_casefolding_rules,
8702         allocated_casefolding_rules): New variables.
8703         (fill_casefolding_rules): New function.
8704         (unicode_casefold): New variable.
8705         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
8706         sort_casing_rules, output_casing_rules): New functions.
8707         (main): Accept to more arguments: SpecialCasing.txt and
8708         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
8709         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
8710         Output mapping for casefolding.
8711
8712         * lib/unicase.h: Include stdbool.h, uninorm.h.
8713         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
8714         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
8715         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
8716         arguments.
8717         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
8718         resultp arguments.
8719         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
8720         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
8721         resultp arguments.
8722         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
8723         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
8724         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
8725         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
8726         declarations.
8727         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
8728
8729 2009-03-08  Bruno Haible  <bruno@clisp.org>
8730
8731         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8732         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
8733         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
8734         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8735
8736 2009-03-07  Bruno Haible  <bruno@clisp.org>
8737
8738         Adjust u*_normcmp, u*_normcoll API.
8739         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8740         u16_normcoll, u32_normcoll): Change failure conventions.
8741         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
8742         errno and return -1.
8743         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8744
8745 2009-03-07  Bruno Haible  <bruno@clisp.org>
8746
8747         Tests for module 'uninorm/u32-normcoll'.
8748         * modules/uninorm/u32-normcoll-tests: New file.
8749         * tests/uninorm/test-u32-normcoll.c: New file.
8750
8751         Tests for module 'uninorm/u16-normcoll'.
8752         * modules/uninorm/u16-normcoll-tests: New file.
8753         * tests/uninorm/test-u16-normcoll.c: New file.
8754
8755         Tests for module 'uninorm/u8-normcoll'.
8756         * modules/uninorm/u8-normcoll-tests: New file.
8757         * tests/uninorm/test-u8-normcoll.c: New file.
8758
8759 2009-03-07  Bruno Haible  <bruno@clisp.org>
8760
8761         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
8762         tests/uninorm/test-u32-normcmp.c.
8763         * tests/uninorm/test-u32-normcmp.c: Include it.
8764         (test_nonascii): New function, extracted from main. Add some more
8765         tests.
8766         (main): Invoke test_ascii and test_nonascii.
8767         * modules/uninorm/u32-normcmp-tests (Files): Add
8768         tests/uninorm/test-u32-normcmp.h.
8769         (Depends-on): Remove uninorm/u32-normcmp.
8770
8771         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
8772         tests/uninorm/test-u16-normcmp.c.
8773         * tests/uninorm/test-u16-normcmp.c: Include it.
8774         (test_nonascii): New function, extracted from main. Add some more
8775         tests.
8776         (main): Invoke test_ascii and test_nonascii.
8777         * modules/uninorm/u16-normcmp-tests (Files): Add
8778         tests/uninorm/test-u16-normcmp.h.
8779         (Depends-on): Remove uninorm/u16-normcmp.
8780
8781         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
8782         tests/uninorm/test-u8-normcmp.c.
8783         * tests/uninorm/test-u8-normcmp.c: Include it.
8784         (test_nonascii): New function, extracted from main. Add some more
8785         tests.
8786         (main): Invoke test_ascii and test_nonascii.
8787         * modules/uninorm/u8-normcmp-tests (Files): Add
8788         tests/uninorm/test-u8-normcmp.h.
8789         (Depends-on): Remove uninorm/u8-normcmp.
8790
8791 2009-03-07  Bruno Haible  <bruno@clisp.org>
8792
8793         New module 'uninorm/u32-normcoll'.
8794         * lib/uninorm/u32-normcoll.c: New file.
8795         * modules/uninorm/u32-normcoll: New file.
8796
8797         New module 'uninorm/u16-normcoll'.
8798         * lib/uninorm/u16-normcoll.c: New file.
8799         * modules/uninorm/u16-normcoll: New file.
8800
8801         New module 'uninorm/u8-normcoll'.
8802         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
8803         declarations.
8804         * lib/uninorm/u8-normcoll.c: New file.
8805         * lib/uninorm/u-normcoll.h: New file.
8806         * modules/uninorm/u8-normcoll: New file.
8807
8808         New module 'uninorm/u32-normxfrm'.
8809         * lib/uninorm/u32-normxfrm.c: New file.
8810         * modules/uninorm/u32-normxfrm: New file.
8811
8812         New module 'uninorm/u16-normxfrm'.
8813         * lib/uninorm/u16-normxfrm.c: New file.
8814         * modules/uninorm/u16-normxfrm: New file.
8815
8816         New module 'uninorm/u8-normxfrm'.
8817         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
8818         declarations.
8819         * lib/uninorm/u8-normxfrm.c: New file.
8820         * lib/uninorm/u-normxfrm.h: New file.
8821         * modules/uninorm/u8-normxfrm: New file.
8822
8823 2009-03-07  Bruno Haible  <bruno@clisp.org>
8824
8825         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
8826         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
8827         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
8828
8829 2009-03-07  Bruno Haible  <bruno@clisp.org>
8830
8831         New module 'memxfrm'.
8832         * lib/memxfrm.h: New file.
8833         * lib/memxfrm.c: New file.
8834         * modules/memxfrm: New file.
8835
8836 2009-03-07  Bruno Haible  <bruno@clisp.org>
8837
8838         New module 'memcmp2'.
8839         * lib/memcmp2.h: New file.
8840         * lib/memcmp2.c: New file.
8841         * modules/memcmp2: New file.
8842
8843 2009-03-07  Bruno Haible  <bruno@clisp.org>
8844
8845         Tests for module 'uninorm/decomposing-form'.
8846         * modules/uninorm/decomposing-form-tests: New file.
8847         * tests/uninorm/test-decomposing-form.c: New file.
8848
8849         New module 'uninorm/decomposing-form'.
8850         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
8851         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
8852         Add 'decomposing_variant' field.
8853         * lib/uninorm/decomposing-form.c: New file.
8854         * lib/uninorm/nfc.c (uninorm_nfc): Update.
8855         * lib/uninorm/nfd.c (uninorm_nfd): Update.
8856         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
8857         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
8858         * modules/uninorm/decomposing-form: New file.
8859         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
8860         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
8861
8862 2009-03-07  Bruno Haible  <bruno@clisp.org>
8863
8864         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
8865         strings.
8866
8867 2009-03-06  Bruno Haible  <bruno@clisp.org>
8868
8869         Tests for module 'uninorm/u32-normcmp'.
8870         * tests/uninorm/test-u32-normcmp.c: New file.
8871         * modules/uninorm/u32-normcmp-tests: New file.
8872
8873         Tests for module 'uninorm/u16-normcmp'.
8874         * tests/uninorm/test-u16-normcmp.c: New file.
8875         * modules/uninorm/u16-normcmp-tests: New file.
8876
8877         Tests for module 'uninorm/u8-normcmp'.
8878         * tests/uninorm/test-u8-normcmp.c: New file.
8879         * modules/uninorm/u8-normcmp-tests: New file.
8880
8881         New module 'uninorm/u32-normcmp'.
8882         * lib/uninorm/u32-normcmp.c: New file.
8883         * modules/uninorm/u32-normcmp: New file.
8884
8885         New module 'uninorm/u16-normcmp'.
8886         * lib/uninorm/u16-normcmp.c: New file.
8887         * modules/uninorm/u16-normcmp: New file.
8888
8889         New module 'uninorm/u8-normcmp'.
8890         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
8891         declarations.
8892         * lib/uninorm/u8-normcmp.c: New file.
8893         * lib/uninorm/u-normcmp.h: New file.
8894         * modules/uninorm/u8-normcmp: New file.
8895
8896 2009-03-06  Bruno Haible  <bruno@clisp.org>
8897
8898         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
8899         Reported by Eric Blake.
8900
8901 2009-03-06  Eric Blake  <ebb9@byu.net>
8902             Bruno Haible  <bruno@clisp.org>
8903
8904         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
8905         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
8906         condition.
8907         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
8908         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
8909         condition.
8910         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
8911
8912 2009-03-06  Eric Blake  <ebb9@byu.net>
8913
8914         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
8915         to avoid compiler warnings.
8916         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
8917
8918 2009-03-05  Bruno Haible  <bruno@clisp.org>
8919
8920         * tests/test-ftell.c (main): Disable test beyond end of file on
8921         FreeMiNT.
8922         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
8923
8924 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
8925
8926         * lib/filevercmp.c: Move hidden files up in ordering.
8927         * tests/test-filevercmp.c: Add tests for hidden files.
8928
8929 2009-03-04  Bruno Haible  <bruno@clisp.org>
8930
8931         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
8932         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
8933         AM_CFLAGS.
8934         Reported by Simon Josefsson.
8935
8936 2009-03-03  Bruno Haible  <bruno@clisp.org>
8937
8938         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
8939         Reported by Simon Josefsson.
8940
8941         * doc/ld-version-script.texi: Update node reference.
8942
8943 2009-03-03  Bruno Haible  <bruno@clisp.org>
8944
8945         * modules/visibility (License): Change to 'unlimited'.
8946         Suggested by Simon Josefsson.
8947
8948 2009-03-03  Jim Meyering  <meyering@redhat.com>
8949
8950         unlinkdir: cannot_unlink_dir may modify process state
8951         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
8952         it's neither thread-safe nor appropriate for use in a library.
8953
8954 2009-03-03  Eric Blake  <ebb9@byu.net>
8955
8956         test-closein: silence test under Darwin
8957         * tests/test-closein.sh: Ignore stderr from cat, since we don't
8958         care if it dies from EPIPE or EBADF.
8959
8960 2009-03-03  Bruno Haible  <bruno@clisp.org>
8961
8962         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
8963         earlier.
8964         * doc/visibility.texi: Fix @node and @section.
8965
8966 2009-03-03  Simon Josefsson  <simon@josefsson.org>
8967
8968         * doc/gnulib.texi: Link to sections for ld version script and
8969         visibility.
8970         * doc/visibility.texi: Add @node and @section.
8971         * modules/ld-version-script: New module.
8972         * m4/ld-version-script.m4: New file.
8973         * doc/ld-version-script.texi: New file.
8974
8975 2009-03-02  David Lutterkort  <lutter@redhat.com>
8976
8977         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
8978         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
8979
8980 2009-03-02  Bruno Haible  <bruno@clisp.org>
8981
8982         * doc/visibility.texi: Mention libtool's -export-symbols option.
8983
8984 2009-03-02  Jim Meyering  <meyering@redhat.com>
8985
8986         announce-gen: new option: --no-print-checksums
8987         * build-aux/announce-gen (usage): Describe it.
8988         (print_checksums): Print a newline here, not in the [*] footnote.
8989         (main): Honor it.
8990
8991 2009-03-01  Bruno Haible  <bruno@clisp.org>
8992
8993         Use socklen_t in the native Windows replacements prototypes.
8994         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
8995         instead of 'int'.
8996         * lib/getsockopt.c (rpl_getsockopt): Likewise.
8997         * lib/setsockopt.c (rpl_setsockopt): Likewise.
8998         * modules/getsockopt (Depends-on): Add socklen.
8999         * modules/setsockopt (Depends-on): Add socklen.
9000
9001 2009-03-01  Bruno Haible  <bruno@clisp.org>
9002
9003         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
9004         least 4.2.
9005
9006 2009-03-01  Eric Blake  <ebb9@byu.net>
9007             Bruno Haible  <bruno@clisp.org>
9008
9009         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
9010         error messages.
9011         * lib/wait-process.c (wait_subprocess): Omit error message about
9012         deadly signal sent to the child of termsigp != NULL.
9013
9014 2009-03-01  Eric Blake  <ebb9@byu.net>
9015
9016         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
9017
9018 2009-03-01  Bruno Haible  <bruno@clisp.org>
9019
9020         Avoid a gcc warning.
9021         * tests/test-sched.c (b): Make global.
9022         Reported by Eric Blake.
9023
9024 2009-01-19  Martin Lambers  <marlam@marlam.de>
9025
9026         Provide POSIX semantics for socket timeout options on W32.
9027         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
9028         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
9029         * modules/setsockopt: Depend on sys_time module for struct timeval.
9030         * modules/getsockopt: Depend on sys_time module for struct timeval.
9031
9032 2009-03-01  Simon Josefsson  <simon@josefsson.org>
9033
9034         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
9035         __USE_GNU, for consistency with netdb.in.h.
9036         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9037
9038 2009-03-01  Bruno Haible  <bruno@clisp.org>
9039
9040         More support for FreeMiNT.
9041         * lib/fseeko.c (rpl_fseeko): Complete last commit.
9042         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9043
9044 2009-03-01  Bruno Haible  <bruno@clisp.org>
9045
9046         More support for FreeMiNT.
9047         * lib/fpurge.c (fpurge): Correct last commit.
9048         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9049
9050 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9051
9052         Fix unportable awk script in vc-list-files.
9053         * build-aux/vc-list-files: In the replacement awk script, use
9054         substr with a second argument of 1, not zero.
9055         Report by Simon Josefsson.
9056
9057 2009-02-28  Bruno Haible  <bruno@clisp.org>
9058
9059         More support for FreeMiNT.
9060         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
9061         to FreeMiNT today.
9062         * lib/fwriting.c (fwriting): Likewise.
9063         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
9064
9065 2009-02-28  Bruno Haible  <bruno@clisp.org>
9066
9067         * tests/test-freadseek.c (main): Disable test beyond end of file on
9068         FreeMiNT.
9069         * tests/test-ftello.c (main): Likewise.
9070         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9071
9072 2009-02-28  Bruno Haible  <bruno@clisp.org>
9073
9074         Add tentative support for FreeMiNT.
9075         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
9076         * lib/fpurge.c (fpurge): Likewise.
9077         * lib/freadable.c (freadable): Likewise.
9078         * lib/freading.c (freading): Likewise.
9079         * lib/freadptr.c (freadptr): Likewise.
9080         * lib/freadseek.c (freadptrinc): Likewise.
9081         * lib/fseeko.c (rpl_fseeko): Likewise.
9082         * lib/fseterr.c (fseterr): Likewise.
9083         * lib/fwritable.c (fwritable): Likewise.
9084         * lib/fwriting.c (fwriting): Likewise.
9085         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
9086         Hourihane.
9087         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9088
9089 2009-02-28  Bruno Haible  <bruno@clisp.org>
9090
9091         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
9092         SIGCHLD.
9093         Reported by Jim Meyering.
9094
9095 2009-02-28  Bruno Haible  <bruno@clisp.org>
9096
9097         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
9098         Mention the results of these tests on various platforms.
9099         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
9100         order.
9101         * doc/posix-functions/printf.texi: Likewise.
9102         * doc/posix-functions/snprintf.texi: Likewise.
9103         * doc/posix-functions/sprintf.texi: Likewise.
9104         * doc/posix-functions/vfprintf.texi: Likewise.
9105         * doc/posix-functions/vprintf.texi: Likewise.
9106         * doc/posix-functions/vsnprintf.texi: Likewise.
9107         * doc/posix-functions/vsprintf.texi: Likewise.
9108         * doc/glibc-functions/obstack_printf.texi: Likewise.
9109         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
9110
9111 2009-02-28  Bruno Haible  <bruno@clisp.org>
9112
9113         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
9114         Reported by Loïc Minier <lool@dooz.org>.
9115
9116 2009-02-27  Bruno Haible  <bruno@clisp.org>
9117
9118         * gnulib-tool (func_import): Make the sed expression used to create the
9119         sed script for updating the .gitignore file POSIX compliant.
9120         Reported by Eric Blake.
9121
9122 2009-02-27  Bruno Haible  <bruno@clisp.org>
9123
9124         * gnulib-tool (sed): Don't alias as "sed --posix".
9125         Reported by Eric Blake.
9126
9127 2009-02-27  Bruno Haible  <bruno@clisp.org>
9128
9129         Avoid test link errors.
9130         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
9131         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
9132         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
9133         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
9134         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9135
9136 2009-02-27  Bruno Haible  <bruno@clisp.org>
9137
9138         Avoid spurious "(cached)" in configure output.
9139         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
9140         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
9141         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
9142         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
9143         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
9144         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
9145         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
9146         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
9147         Reported by Eric Blake.
9148
9149 2009-02-27  Eric Blake  <ebb9@byu.net>
9150
9151         printf: fix regression in previous patch
9152         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
9153
9154 2009-02-27  Bruno Haible  <bruno@clisp.org>
9155
9156         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
9157         value.
9158         * lib/stdint.in.h: Likewise.
9159         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
9160
9161 2009-02-27  Eric Blake  <ebb9@byu.net>
9162
9163         doc: mention more functions added in cygwin 1.7.0
9164         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
9165         addition.
9166         * doc/posix-functions/open_wmemstream.texi: Likewise.
9167         * doc/posix-functions/wcsnlen.texi: Likewise.
9168         * doc/posix-functions/wcsnrtombs.texi: Likewise.
9169         * doc/posix-functions/wcstod.texi: Likewise.
9170         * doc/posix-functions/wcstof.texi: Likewise.
9171         * doc/posix-functions/wcstoimax.texi: Likewise.
9172         * doc/posix-functions/wcstok.texi: Likewise.
9173         * doc/posix-functions/wcstoumax.texi: Likewise.
9174
9175         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
9176         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
9177         * doc/posix-functions/fprintf.texi: Update.
9178         * doc/posix-functions/printf.texi: Update.
9179         * doc/posix-functions/snprintf.texi: Update.
9180         * doc/posix-functions/sprintf.texi: Update.
9181         * doc/posix-functions/vfprintf.texi: Update.
9182         * doc/posix-functions/vprintf.texi: Update.
9183         * doc/posix-functions/vsnprintf.texi: Update.
9184         * doc/posix-functions/vsprintf.texi: Update.
9185         * doc/glibc-functions/obstack_printf.texi: Update.
9186         * doc/glibc-functions/obstack_vprintf.texi: Update.
9187
9188 2009-02-26  Eric Blake  <ebb9@byu.net>
9189
9190         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
9191         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
9192         compilation bug by using runtime conversion.
9193         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
9194         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
9195         * modules/ceill-tests (Files): Use nan.h.
9196         * modules/floorl-tests (Files): Likewise.
9197         * modules/frexpl-tests (Files): Likewise.
9198         * modules/isnanl-tests (Files): Likewise.
9199         * modules/ldexpl-tests (Files): Likewise.
9200         * modules/roundl-tests (Files): Likewise.
9201         * modules/truncl-tests (Files): Likewise.
9202         * tests/test-ceill.c (main): Use a working NaN.
9203         * tests/test-floorl.c (main): Likewise.
9204         * tests/test-frexpl.c (main): Likewise.
9205         * tests/test-isnan.c (test_long_double): Likewise.
9206         * tests/test-isnanl.h (main): Likewise.
9207         * tests/test-ldexpl.h (main): Likewise.
9208         * tests/test-roundl.h (main): Likewise.
9209         * tests/test-truncl.h (main): Likewise.
9210         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
9211
9212 2009-02-26  Eric Blake  <ebb9@byu.net>
9213             Bruno Haible  <bruno@clisp.org>
9214
9215         Work around a *printf bug with %ls on Solaris.
9216         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
9217         precision is specified, sprintf stops converting the wide string
9218         argument when the number of bytes that have been produced by this
9219         conversion equals or exceeds the precision.
9220         * doc/posix-functions/fprintf.texi: Update.
9221         * doc/posix-functions/printf.texi: Update.
9222         * doc/posix-functions/snprintf.texi: Update.
9223         * doc/posix-functions/sprintf.texi: Update.
9224         * doc/posix-functions/vfprintf.texi: Update.
9225         * doc/posix-functions/vprintf.texi: Update.
9226         * doc/posix-functions/vsnprintf.texi: Update.
9227         * doc/posix-functions/vsprintf.texi: Update.
9228         * doc/glibc-functions/obstack_printf.texi: Update.
9229         * doc/glibc-functions/obstack_vprintf.texi: Update.
9230
9231 2009-02-26  Eric Blake  <ebb9@byu.net>
9232
9233         stdlib: favor compiler check of random.h
9234         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
9235         to avoid an ObjC random.h installed by Swarm.
9236
9237 2009-02-26  Bruno Haible  <bruno@clisp.org>
9238
9239         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
9240         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
9241         Reported by Gary V. Vaughan <gary@gnu.org>.
9242
9243 2009-02-26  Bruno Haible  <bruno@clisp.org>
9244
9245         Fix *printf behaviour regarding the %ls directive.
9246         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
9247         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
9248         NEED_PRINTF_DIRECTIVE_LS.
9249         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
9250         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
9251         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9252         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
9253         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
9254         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
9255         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
9256         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9257         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9258         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9259         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9260         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
9261         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9262         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9263         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9264         * doc/posix-functions/fprintf.texi: Update.
9265         * doc/posix-functions/printf.texi: Update.
9266         * doc/posix-functions/snprintf.texi: Update.
9267         * doc/posix-functions/sprintf.texi: Update.
9268         * doc/posix-functions/vfprintf.texi: Update.
9269         * doc/posix-functions/vprintf.texi: Update.
9270         * doc/posix-functions/vsnprintf.texi: Update.
9271         * doc/posix-functions/vsprintf.texi: Update.
9272         * doc/glibc-functions/obstack_printf.texi: Update.
9273         * doc/glibc-functions/obstack_vprintf.texi: Update.
9274         Reported by Eric Blake.
9275
9276 2009-02-25  Bruno Haible  <bruno@clisp.org>
9277
9278         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
9279         with known value.
9280         Reported by Gary V. Vaughan <gary@gnu.org>.
9281
9282 2009-02-25  Bruno Haible  <bruno@clisp.org>
9283
9284         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
9285         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
9286         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
9287         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
9288         Reported by Gary V. Vaughan <gary@gnu.org>.
9289
9290 2009-02-25  Bruno Haible  <bruno@clisp.org>
9291
9292         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
9293         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
9294         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
9295         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
9296         Reported by Gary V. Vaughan <gary@gnu.org>.
9297
9298 2009-02-25  Eric Blake  <ebb9@byu.net>
9299
9300         tests: skip fseek/ftell tests if ungetc is broken
9301         * m4/ungetc.m4: New file.
9302         * modules/fseek-tests: Split test, so ungetc dependency is
9303         separate from rest of test.
9304         * modules/fseeko-tests: Likewise.
9305         * modules/ftell-tests: Likewise.
9306         * modules/ftello-tests: Likewise.
9307         * tests/test-fseek.c (main): Isolate ungetc dependency.
9308         * tests/test-fseeko.c (main): Likewise.
9309         * tests/test-ftell.c (main): Likewise.
9310         * tests/test-ftello.c (main): Likewise.
9311         * tests/test-fseek2.sh: New file.
9312         * tests/test-fseeko2.sh: Likewise.
9313         * tests/test-ftell2.sh: Likewise.
9314         * tests/test-ftello2.sh: Likewise.
9315
9316 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
9317
9318         test-getaddrinfo: fix usage of skip return code 77
9319         * tests/test-gettaddrinfo.c: Return skip code 77 only
9320         for first occurance of skip (4x77 is not 77)
9321
9322 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
9323
9324         strtod: avoid C99 decl-after-statement
9325         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
9326
9327 2009-02-24  Eric Blake  <ebb9@byu.net>
9328
9329         strtod: detect HP-UX 11.31 bug
9330         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
9331         Reported by Gary V. Vaughan.
9332
9333 2009-02-23  Bruno Haible  <bruno@clisp.org>
9334
9335         Fix invalid read past end of memory block.
9336         * lib/vasnprintf.c (DCHAR_SET): Define.
9337         (local_wcslen): Define only when needed.
9338         (local_strnlen, local_wcsnlen): New functions.
9339         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
9340         directives that involve a conversion ourselves.
9341         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
9342         wcsnlen, mbrtowc, wcrtomb.
9343         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
9344         * tests/test-vasprintf-posix.c (test_function): Likewise.
9345         * tests/test-snprintf-posix.h (test_function): Likewise.
9346         * tests/test-sprintf-posix.h (test_function): Likewise.
9347         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9348
9349 2009-02-22  Bruno Haible  <bruno@clisp.org>
9350
9351         Implement new clarified decomposition of Hangul syllables.
9352         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
9353         of type LTV, return only a pairwise decomposition.
9354         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
9355         Likewise.
9356         * tests/uninorm/test-decomposition.c (main): Updated expected result.
9357         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
9358         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
9359
9360 2009-02-22  Bruno Haible  <bruno@clisp.org>
9361
9362         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
9363         zero-length results and shrink excess allocated memory.
9364         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
9365         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
9366         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
9367         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
9368         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
9369         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
9370         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
9371         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
9372         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
9373         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
9374         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
9375         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
9376
9377 2009-02-21  Bruno Haible  <bruno@clisp.org>
9378
9379         * doc/gnulib.texi: Include safe-alloc.texi earlier.
9380         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
9381         spaces after a period. Put a space between a macro name and its
9382         argument list. Trivial rewordings.
9383         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
9384         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
9385         (main): Return 0 explicitly.
9386
9387 2009-02-21  Bruno Haible  <bruno@clisp.org>
9388
9389         Tests for module 'uninorm/filter'.
9390         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
9391         * modules/uninorm/filter-tests: New file.
9392
9393         New module 'uninorm/filter'.
9394         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
9395         uninorm_filter_flush, uninorm_filter_free): New declarations.
9396         * lib/uninorm/uninorm-filter.c: New file.
9397         * modules/uninorm/filter: New file.
9398
9399 2009-02-21  Bruno Haible  <bruno@clisp.org>
9400
9401         Tests for module 'uninorm/nfkc'.
9402         * tests/uninorm/test-nfkc.c: New file.
9403         * tests/uninorm/test-u8-nfkc.c: New file.
9404         * tests/uninorm/test-u16-nfkc.c: New file.
9405         * tests/uninorm/test-u32-nfkc.c: New file.
9406         * tests/uninorm/test-u32-nfkc-big.sh: New file.
9407         * tests/uninorm/test-u32-nfkc-big.c: New file.
9408         * modules/uninorm/nfkc-tests: New file.
9409
9410         New module 'uninorm/nfkc'.
9411         * lib/uninorm/nfkc.c: New file.
9412         * modules/uninorm/nfkc: New file.
9413
9414         Tests for module 'uninorm/nfkd'.
9415         * tests/uninorm/test-nfkd.c: New file.
9416         * tests/uninorm/test-u8-nfkd.c: New file.
9417         * tests/uninorm/test-u16-nfkd.c: New file.
9418         * tests/uninorm/test-u32-nfkd.c: New file.
9419         * tests/uninorm/test-u32-nfkd-big.sh: New file.
9420         * tests/uninorm/test-u32-nfkd-big.c: New file.
9421         * modules/uninorm/nfkd-tests: New file.
9422
9423         New module 'uninorm/nfkd'.
9424         * lib/uninorm/nfkd.c: New file.
9425         * modules/uninorm/nfkd: New file.
9426
9427         Tests for module 'uninorm/nfc'.
9428         * tests/uninorm/test-nfc.c: New file.
9429         * tests/uninorm/test-u8-nfc.c: New file.
9430         * tests/uninorm/test-u16-nfc.c: New file.
9431         * tests/uninorm/test-u32-nfc.c: New file.
9432         * tests/uninorm/test-u32-nfc-big.sh: New file.
9433         * tests/uninorm/test-u32-nfc-big.c: New file.
9434         * modules/uninorm/nfc-tests: New file.
9435
9436         New module 'uninorm/nfc'.
9437         * lib/uninorm/nfc.c: New file.
9438         * modules/uninorm/nfc: New file.
9439
9440         Tests for module 'uninorm/nfd'.
9441         * tests/uninorm/test-nfd.c: New file.
9442         * tests/uninorm/test-u8-nfd.c: New file.
9443         * tests/uninorm/test-u16-nfd.c: New file.
9444         * tests/uninorm/test-u32-nfd.c: New file.
9445         * tests/uninorm/test-u32-nfd-big.sh: New file.
9446         * tests/uninorm/test-u32-nfd-big.c: New file.
9447         * tests/uninorm/test-u32-normalize-big.h: New file.
9448         * tests/uninorm/test-u32-normalize-big.c: New file.
9449         * tests/uninorm/NormalizationTest.txt: New file, created from
9450         Unicode 5.1.0 NormalizationTest.txt.
9451         * modules/uninorm/nfd-tests: New file.
9452
9453         New module 'uninorm/nfd'.
9454         * lib/uninorm/nfd.c: New file.
9455         * modules/uninorm/nfd: New file.
9456
9457         New module 'uninorm/u32-normalize'.
9458         * lib/uninorm/u32-normalize.c: New file.
9459         * modules/uninorm/u32-normalize: New file.
9460
9461         New module 'uninorm/u16-normalize'.
9462         * lib/uninorm/u16-normalize.c: New file.
9463         * modules/uninorm/u16-normalize: New file.
9464
9465         New module 'uninorm/u8-normalize'.
9466         * lib/uninorm/u8-normalize.c: New file.
9467         * lib/uninorm/normalize-internal.h: New file.
9468         * lib/uninorm/u-normalize-internal.h: New file.
9469         * modules/uninorm/u8-normalize: New file.
9470
9471         New module 'uninorm/decompose-internal'.
9472         * lib/uninorm/decompose-internal.c: New file.
9473         * modules/uninorm/decompose-internal: New file.
9474
9475         Tests for module 'uninorm/composition'.
9476         * tests/uninorm/test-composition.c: New file.
9477         * modules/uninorm/composition-tests: New file.
9478
9479         New module 'uninorm/composition'.
9480         * lib/uninorm/composition.c: New file.
9481         * lib/uninorm/composition-table.gperf: New file, generated by
9482         gen-uni-tables.
9483         * modules/uninorm/composition: New file.
9484
9485         Tests for module 'uninorm/compat-decomposition'.
9486         * tests/uninorm/test-compat-decomposition.c: New file.
9487         * modules/uninorm/compat-decomposition-tests: New file.
9488
9489         New module 'uninorm/compat-decomposition'.
9490         * lib/uninorm/decompose-internal.h: New file.
9491         * lib/uninorm/compat-decomposition.c: New file.
9492         * modules/uninorm/compat-decomposition: New file.
9493
9494         Tests for module 'uninorm/canonical-decomposition'.
9495         * tests/uninorm/test-canonical-decomposition.c: New file.
9496         * modules/uninorm/canonical-decomposition-tests: New file.
9497
9498         New module 'uninorm/canonical-decomposition'.
9499         * lib/uninorm/canonical-decomposition.c: New file.
9500         * modules/uninorm/canonical-decomposition: New file.
9501
9502         Tests for module 'uninorm/decomposition'.
9503         * tests/uninorm/test-decomposition.c: New file.
9504         * modules/uninorm/decomposition-tests: New file.
9505
9506         New module 'uninorm/decomposition'.
9507         * lib/uninorm/decomposition.c: New file.
9508         * modules/uninorm/decomposition: New file.
9509
9510         New module 'uninorm/decomposition-table'.
9511         * lib/uninorm/decomposition-table.h: New file.
9512         * lib/uninorm/decomposition-table.c: New file.
9513         * lib/uninorm/decomposition-table1.h: New file, generated by
9514         gen-uni-tables.
9515         * lib/uninorm/decomposition-table2.h: New file, generated by
9516         gen-uni-tables.
9517         * modules/uninorm/decomposition-table: New file.
9518
9519         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
9520         (UC_DECOMP_*): New enumeration items.
9521         (get_decomposition): New function.
9522         (struct decomp_table): New type.
9523         (output_decomposition, output_decomposition_tables): New functions.
9524         (unicode_composition_exclusions): New variable.
9525         (fill_composition_exclusions, debug_output_composition_tables): New
9526         functions.
9527         (main): Accept one more argument. Invoke fill_composition_exclusions.
9528         Output decomposition and composition tables.
9529
9530         New module 'uninorm/base'.
9531         * lib/uninorm.h: New file.
9532         * lib/unictype.h: Update comment.
9533         * modules/uninorm/base: New file.
9534
9535 2009-02-21  David Lutterkort  <lutter@redhat.com>
9536
9537         Tests for module 'safe-alloc'.
9538         * tests/test-safe-alloc.c: New file.
9539         * modules/safe-alloc-tests: New file.
9540
9541         New module 'safe-alloc'.
9542         * lib/safe-alloc.h: New file.
9543         * lib/safe-alloc.c: New file.
9544         * m4/safe-alloc.m4: New file.
9545         * modules/safe-alloc: New file.
9546         * doc/safe-alloc.texi: New file.
9547         * doc/gnulib.texi: Include it.
9548         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
9549         safe-alloc.
9550
9551 2009-02-18  Bruno Haible  <bruno@clisp.org>
9552
9553         Fix link error on non-glibc systems.
9554         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
9555         variable.
9556         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9557
9558 2009-02-18  Jim Meyering  <meyering@redhat.com>
9559
9560         fts: avoid used-uninitialized error due to recent change
9561         * lib/fts.c (fts_read): Guard uses of the new member,
9562         parent->fts_n_dirs_remaining, since it's not relevant for
9563         the parent of a directory specified on the command-line.
9564
9565 2009-02-17  James Youngman  <jay@gnu.org>
9566             Bruno Haible  <bruno@clisp.org>
9567
9568         * m4/include_next.m4: Reformulate comment.
9569
9570 2009-02-16  Jim Meyering  <meyering@redhat.com>
9571
9572         fts: add #if guards so that the fts_lgpl module still builds
9573         * lib/fts.c: Guard just-added hash-table-using parts with
9574         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
9575         Reported by Simon Josefsson.
9576
9577 2009-02-15  Bruno Haible  <bruno@clisp.org>
9578
9579         * modules/array-mergesort-tests: New file.
9580         * tests/test-array-mergesort.c: New file.
9581
9582         New module 'array-mergesort'.
9583         * modules/array-mergesort: New file.
9584         * lib/array-mergesort.h: New file.
9585
9586 2009-02-15  Bruno Haible  <bruno@clisp.org>
9587
9588         Fix 2009-02-07 commit.
9589         * lib/gen-uni-tables.c (output_predicate, output_category,
9590         output_combclass, output_bidi_category, output_decimal_digit,
9591         output_digit, output_numeric, output_mirror, output_scripts,
9592         output_ident_category, output_simple_mapping): Fix format directives.
9593         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
9594
9595 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
9596
9597         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
9598         fixes are available from IBM.
9599
9600 2009-02-13  Jim Meyering  <meyering@redhat.com>
9601
9602         fts: arrange not to stat non-directories in more cases
9603         This makes GNU find (when it doesn't need to stat each file)
9604         *much* more efficient at traversing reiserfs file systems.
9605         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
9606         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
9607         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
9608         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
9609         (leaf_optimization_applies): New function.
9610         (LCO_hash, LCO_compare): New helper functions.
9611         (link_count_optimize_ok): New function.
9612         (fts_stat): Initialize new member (if dir).
9613         (fts_read): Decrement parent's fts_n_dirs_remaining count if
9614         we've just stat'ed a directory.  Skip the stat call when possible.
9615         ---
9616         Note this AFS-related exchange:
9617         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
9618         and note find's pioctl call in find/fstype.c.
9619         But that is necessary only if you want to enable the
9620         optimization for AFS, and for now, I don't.
9621
9622         fts: move a function definition "up" (no semantic change)
9623         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
9624         "up" to precede upcoming use of a related function.
9625
9626 2009-02-11  Jim Meyering  <meyering@redhat.com>
9627
9628         fts: correct internal computation of nlinks (optimization-related)
9629         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
9630         whether the current entry is a directory, so don't test it.
9631
9632 2009-02-10  Bruno Haible  <bruno@clisp.org>
9633
9634         Tests for module 'uniwbrk/ulc-wordbreaks'.
9635         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
9636         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
9637         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
9638
9639         Tests for module 'uniwbrk/u32-wordbreaks'.
9640         * modules/uniwbrk/u32-wordbreaks-tests: New file.
9641         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
9642
9643         Tests for module 'uniwbrk/u16-wordbreaks'.
9644         * modules/uniwbrk/u16-wordbreaks-tests: New file.
9645         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
9646
9647         Tests for module 'uniwbrk/u8-wordbreaks'.
9648         * modules/uniwbrk/u8-wordbreaks-tests: New file.
9649         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
9650
9651 2009-02-10  Bruno Haible  <bruno@clisp.org>
9652
9653         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
9654         property.
9655         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
9656         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
9657         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
9658
9659 2009-02-10  Simon Josefsson  <simon@josefsson.org>
9660
9661         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
9662         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
9663
9664 2009-02-10  Bruno Haible  <bruno@clisp.org>
9665
9666         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
9667         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
9668         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
9669         * lib/unilbrk/u8-possible-linebreaks.c: Update.
9670         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
9671         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
9672
9673 2009-02-09  Simon Josefsson  <simon@josefsson.org>
9674
9675         * lib/sockets.h (gl_fd_to_handle): New function.
9676
9677         * tests/test-sockets.c: Call gl_fd_to_handle.
9678
9679 2009-02-09  Bruno Haible  <bruno@clisp.org>
9680
9681         * doc/havelib.texi: Document the conventions on bi-arch systems.
9682
9683 2009-02-08  Bruno Haible  <bruno@clisp.org>
9684
9685         Document the AC_LIB_LINKFLAGS macro.
9686         * doc/havelib.texi: New file, mostly written on 2005-05-24.
9687         * doc/gnulib.texi: Include it.
9688
9689 2009-02-08  Bruno Haible  <bruno@clisp.org>
9690
9691         Fix wrong order of sections, compared to TOC.
9692         * doc/gnulib.texi: Include relocatable-maint.texi after the
9693         "Regular expressions" node, not before.
9694
9695 2009-02-08  Bruno Haible  <bruno@clisp.org>
9696
9697         Tests for module 'unicase/totitle'.
9698         * modules/unicase/totitle-tests: New file.
9699
9700         Tests for module 'unicase/tolower'.
9701         * modules/unicase/tolower-tests: New file.
9702
9703         Tests for module 'unicase/toupper'.
9704         * modules/unicase/toupper-tests: New file.
9705         * tests/unicase/test-mapping-part1.h: New file.
9706         * tests/unicase/test-mapping-part2.h: New file.
9707
9708         New module 'unicase/totitle'.
9709         * modules/unicase/totitle: New file.
9710         * lib/unicase/totitle.c: New file.
9711
9712         New module 'unicase/tolower'.
9713         * modules/unicase/tolower: New file.
9714         * lib/unicase/tolower.c: New file.
9715
9716         New module 'unicase/toupper'.
9717         * modules/unicase/toupper: New file.
9718         * lib/unicase/toupper.c: New file.
9719         * lib/unicase/simple-mapping.h: New file.
9720
9721         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
9722         (mapping_table): New structure.
9723         (output_simple_mapping): New function.
9724         (main): Invoke output_simple_mapping_test and output_simple_mapping.
9725         * modules/gen-uni-tables (Description): Update.
9726         * lib/unicase/toupper.h: New file, automatically generated by
9727         gen-uni-tables.
9728         * lib/unicase/tolower.h: New file, automatically generated by
9729         gen-uni-tables.
9730         * lib/unicase/totitle.h: New file, automatically generated by
9731         gen-uni-tables.
9732         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
9733         gen-uni-tables.
9734         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
9735         gen-uni-tables.
9736         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
9737         gen-uni-tables.
9738
9739         New module 'unicase/base'.
9740         * modules/unicase/base: New file.
9741         * lib/unicase.h: New file.
9742
9743 2009-02-08  Bruno Haible  <bruno@clisp.org>
9744
9745         New module 'uniwbrk/ulc-wordbreaks'.
9746         * modules/uniwbrk/ulc-wordbreaks: New file.
9747         * lib/uniwbrk/ulc-wordbreaks.c: New file.
9748
9749         New module 'uniwbrk/u32-wordbreaks'.
9750         * modules/uniwbrk/u32-wordbreaks: New file.
9751         * lib/uniwbrk/u32-wordbreaks.c: New file.
9752
9753         New module 'uniwbrk/u16-wordbreaks'.
9754         * modules/uniwbrk/u16-wordbreaks: New file.
9755         * lib/uniwbrk/u16-wordbreaks.c: New file.
9756
9757         New module 'uniwbrk/u8-wordbreaks'.
9758         * modules/uniwbrk/u8-wordbreaks: New file.
9759         * lib/uniwbrk/u8-wordbreaks.c: New file.
9760         * lib/uniwbrk/u-wordbreaks.h: New file.
9761
9762         New module 'uniwbrk/table'.
9763         * modules/uniwbrk/table: New file.
9764         * lib/uniwbrk/wbrktable.h: New file.
9765         * lib/uniwbrk/wbrktable.c: New file.
9766
9767         New module 'uniwbrk/wordbreak-property'.
9768         * modules/uniwbrk/wordbreak-property: New file.
9769         * lib/uniwbrk/wordbreak-property.c: New file.
9770
9771         * lib/gen-uni-tables.c (WBP_*): New enum items.
9772         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
9773         (unicode_org_wbp): New variable.
9774         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
9775         New functions.
9776         (wbp_table): New structure.
9777         (output_wbp, output_wbrk_tables): New functions.
9778         (main): Accept additional argument. Invoke fill_org_wbp,
9779         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
9780         output_wbrk_tables.
9781         * modules/gen-uni-tables (Description): Update.
9782         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
9783         gen-uni-tables.
9784
9785         New module 'uniwbrk/base'.
9786         * modules/uniwbrk/base: New file.
9787         * lib/uniwbrk.h: New file.
9788
9789 2009-02-08  Bruno Haible  <bruno@clisp.org>
9790
9791         Update to Unicode 5.1.0.
9792         * lib/gen-uni-tables.c (is_property_alphabetic): Include
9793         U+2185..U+2188.
9794         (is_property_default_ignorable_code_point): Don't include characters
9795         of category Cc or Cs and not-a-characters.
9796         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
9797         U+0D79, U+109E, U+109F, U+A60C.
9798         * lib/unictype/bidi_of.h: Regenerated.
9799         * lib/unictype/blocks.h: Regenerated.
9800         * lib/unictype/categ_C.h: Regenerated.
9801         * lib/unictype/categ_Cf.h: Regenerated.
9802         * lib/unictype/categ_Cn.h: Regenerated.
9803         * lib/unictype/categ_L.h: Regenerated.
9804         * lib/unictype/categ_Ll.h: Regenerated.
9805         * lib/unictype/categ_Lm.h: Regenerated.
9806         * lib/unictype/categ_Lo.h: Regenerated.
9807         * lib/unictype/categ_Lu.h: Regenerated.
9808         * lib/unictype/categ_M.h: Regenerated.
9809         * lib/unictype/categ_Mc.h: Regenerated.
9810         * lib/unictype/categ_Me.h: Regenerated.
9811         * lib/unictype/categ_Mn.h: Regenerated.
9812         * lib/unictype/categ_N.h: Regenerated.
9813         * lib/unictype/categ_Nd.h: Regenerated.
9814         * lib/unictype/categ_Nl.h: Regenerated.
9815         * lib/unictype/categ_No.h: Regenerated.
9816         * lib/unictype/categ_P.h: Regenerated.
9817         * lib/unictype/categ_Pd.h: Regenerated.
9818         * lib/unictype/categ_Pe.h: Regenerated.
9819         * lib/unictype/categ_Pf.h: Regenerated.
9820         * lib/unictype/categ_Pi.h: Regenerated.
9821         * lib/unictype/categ_Po.h: Regenerated.
9822         * lib/unictype/categ_Ps.h: Regenerated.
9823         * lib/unictype/categ_S.h: Regenerated.
9824         * lib/unictype/categ_Sk.h: Regenerated.
9825         * lib/unictype/categ_Sm.h: Regenerated.
9826         * lib/unictype/categ_So.h: Regenerated.
9827         * lib/unictype/categ_of.h: Regenerated.
9828         * lib/unictype/combining.h: Regenerated.
9829         * lib/unictype/ctype_alnum.h: Regenerated.
9830         * lib/unictype/ctype_alpha.h: Regenerated.
9831         * lib/unictype/ctype_graph.h: Regenerated.
9832         * lib/unictype/ctype_lower.h: Regenerated.
9833         * lib/unictype/ctype_print.h: Regenerated.
9834         * lib/unictype/ctype_punct.h: Regenerated.
9835         * lib/unictype/ctype_upper.h: Regenerated.
9836         * lib/unictype/decdigit.h: Regenerated.
9837         * lib/unictype/digit.h: Regenerated.
9838         * lib/unictype/mirror.h: Regenerated.
9839         * lib/unictype/numeric.h: Regenerated.
9840         * lib/unictype/pr_alphabetic.h: Regenerated.
9841         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
9842         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
9843         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
9844         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
9845         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
9846         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
9847         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
9848         * lib/unictype/pr_combining.h: Regenerated.
9849         * lib/unictype/pr_dash.h: Regenerated.
9850         * lib/unictype/pr_decimal_digit.h: Regenerated.
9851         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
9852         * lib/unictype/pr_deprecated.h: Regenerated.
9853         * lib/unictype/pr_diacritic.h: Regenerated.
9854         * lib/unictype/pr_extender.h: Regenerated.
9855         * lib/unictype/pr_format_control.h: Regenerated.
9856         * lib/unictype/pr_grapheme_base.h: Regenerated.
9857         * lib/unictype/pr_grapheme_extend.h: Regenerated.
9858         * lib/unictype/pr_grapheme_link.h: Regenerated.
9859         * lib/unictype/pr_id_continue.h: Regenerated.
9860         * lib/unictype/pr_id_start.h: Regenerated.
9861         * lib/unictype/pr_ideographic.h: Regenerated.
9862         * lib/unictype/pr_ignorable_control.h: Regenerated.
9863         * lib/unictype/pr_lowercase.h: Regenerated.
9864         * lib/unictype/pr_math.h: Regenerated.
9865         * lib/unictype/pr_numeric.h: Regenerated.
9866         * lib/unictype/pr_other_alphabetic.h: Regenerated.
9867         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
9868         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
9869         * lib/unictype/pr_other_id_continue.h: Regenerated.
9870         * lib/unictype/pr_other_lowercase.h: Regenerated.
9871         * lib/unictype/pr_other_math.h: Regenerated.
9872         * lib/unictype/pr_punctuation.h: Regenerated.
9873         * lib/unictype/pr_sentence_terminal.h: Regenerated.
9874         * lib/unictype/pr_soft_dotted.h: Regenerated.
9875         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
9876         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
9877         * lib/unictype/pr_unified_ideograph.h: Regenerated.
9878         * lib/unictype/pr_uppercase.h: Regenerated.
9879         * lib/unictype/pr_xid_continue.h: Regenerated.
9880         * lib/unictype/pr_xid_start.h: Regenerated.
9881         * lib/unictype/pr_zero_width.h: Regenerated.
9882         * lib/unictype/scripts.h: Regenerated.
9883         * lib/unictype/scripts_byname.gperf: Regenerated.
9884         * lib/unictype/sy_java_ident.h: Regenerated.
9885         * lib/unilbrk/lbrkprop1.h: Regenerated.
9886         * lib/unilbrk/lbrkprop2.h: Regenerated.
9887         * tests/unictype/test-categ_C.c: Regenerated.
9888         * tests/unictype/test-categ_Cf.c: Regenerated.
9889         * tests/unictype/test-categ_Cn.c: Regenerated.
9890         * tests/unictype/test-categ_L.c: Regenerated.
9891         * tests/unictype/test-categ_Ll.c: Regenerated.
9892         * tests/unictype/test-categ_Lm.c: Regenerated.
9893         * tests/unictype/test-categ_Lo.c: Regenerated.
9894         * tests/unictype/test-categ_Lu.c: Regenerated.
9895         * tests/unictype/test-categ_M.c: Regenerated.
9896         * tests/unictype/test-categ_Mc.c: Regenerated.
9897         * tests/unictype/test-categ_Me.c: Regenerated.
9898         * tests/unictype/test-categ_Mn.c: Regenerated.
9899         * tests/unictype/test-categ_N.c: Regenerated.
9900         * tests/unictype/test-categ_Nd.c: Regenerated.
9901         * tests/unictype/test-categ_Nl.c: Regenerated.
9902         * tests/unictype/test-categ_No.c: Regenerated.
9903         * tests/unictype/test-categ_P.c: Regenerated.
9904         * tests/unictype/test-categ_Pd.c: Regenerated.
9905         * tests/unictype/test-categ_Pe.c: Regenerated.
9906         * tests/unictype/test-categ_Pf.c: Regenerated.
9907         * tests/unictype/test-categ_Pi.c: Regenerated.
9908         * tests/unictype/test-categ_Po.c: Regenerated.
9909         * tests/unictype/test-categ_Ps.c: Regenerated.
9910         * tests/unictype/test-categ_S.c: Regenerated.
9911         * tests/unictype/test-categ_Sk.c: Regenerated.
9912         * tests/unictype/test-categ_Sm.c: Regenerated.
9913         * tests/unictype/test-categ_So.c: Regenerated.
9914         * tests/unictype/test-ctype_alnum.c: Regenerated.
9915         * tests/unictype/test-ctype_alpha.c: Regenerated.
9916         * tests/unictype/test-ctype_graph.c: Regenerated.
9917         * tests/unictype/test-ctype_lower.c: Regenerated.
9918         * tests/unictype/test-ctype_print.c: Regenerated.
9919         * tests/unictype/test-ctype_punct.c: Regenerated.
9920         * tests/unictype/test-ctype_upper.c: Regenerated.
9921         * tests/unictype/test-decdigit.h: Regenerated.
9922         * tests/unictype/test-digit.h: Regenerated.
9923         * tests/unictype/test-numeric.h: Regenerated.
9924         * tests/unictype/test-pr_alphabetic.c: Regenerated.
9925         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
9926         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
9927         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
9928         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
9929         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
9930         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
9931         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
9932         * tests/unictype/test-pr_combining.c: Regenerated.
9933         * tests/unictype/test-pr_dash.c: Regenerated.
9934         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
9935         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
9936         * tests/unictype/test-pr_deprecated.c: Regenerated.
9937         * tests/unictype/test-pr_diacritic.c: Regenerated.
9938         * tests/unictype/test-pr_extender.c: Regenerated.
9939         * tests/unictype/test-pr_format_control.c: Regenerated.
9940         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
9941         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
9942         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
9943         * tests/unictype/test-pr_id_continue.c: Regenerated.
9944         * tests/unictype/test-pr_id_start.c: Regenerated.
9945         * tests/unictype/test-pr_ideographic.c: Regenerated.
9946         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
9947         * tests/unictype/test-pr_lowercase.c: Regenerated.
9948         * tests/unictype/test-pr_math.c: Regenerated.
9949         * tests/unictype/test-pr_numeric.c: Regenerated.
9950         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
9951         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
9952         Regenerated.
9953         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
9954         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
9955         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
9956         * tests/unictype/test-pr_other_math.c: Regenerated.
9957         * tests/unictype/test-pr_punctuation.c: Regenerated.
9958         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
9959         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
9960         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
9961         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
9962         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
9963         * tests/unictype/test-pr_uppercase.c: Regenerated.
9964         * tests/unictype/test-pr_xid_continue.c: Regenerated.
9965         * tests/unictype/test-pr_xid_start.c: Regenerated.
9966         * tests/unictype/test-pr_zero_width.c: Regenerated.
9967
9968         Update to Unicode 5.1.0.
9969         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
9970         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
9971         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
9972         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
9973         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
9974         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
9975         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
9976         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
9977         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
9978         (nonspacing_table_ind): Update.
9979         * tests/uniwidth/test-uc_width2.sh: Update expected result.
9980
9981         Update to Unicode 5.1.0.
9982         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
9983         code transform.
9984         * lib/uniname/uniname.c (unicode_character_name,
9985         unicode_name_character): Add the range 0x1Fxxx to the code transform.
9986         * lib/uniname/uninames.h: Regenerated.
9987         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
9988
9989 2009-02-07  Bruno Haible  <bruno@clisp.org>
9990
9991         Merge gen-ctype and gen-lbrk into a single program.
9992         * lib/gen-uni-tables.c: New file, incorporating
9993         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
9994         Add directory prefixes to the names of the generated files.
9995         * lib/unictype/gen-ctype.c: Remove file.
9996         * lib/unilbrk/gen-lbrk.c: Remove file.
9997         * modules/gen-uni-tables: New file.
9998         * modules/unictype/gen-ctype: Remove file.
9999         * modules/unilbrk/gen-lbrk: Remove file.
10000
10001 2009-02-07  Bruno Haible  <bruno@clisp.org>
10002
10003         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
10004
10005         New module 'unistr/u32-strcoll'.
10006         * modules/unistr/u32-strcoll: New file.
10007         * lib/unistr/u32-strcoll.c: New file.
10008
10009         New module 'unistr/u16-strcoll'.
10010         * modules/unistr/u16-strcoll: New file.
10011         * lib/unistr/u16-strcoll.c: New file.
10012
10013         New module 'unistr/u8-strcoll'.
10014         * modules/unistr/u8-strcoll: New file.
10015         * lib/unistr/u8-strcoll.c: New file.
10016         * lib/unistr/u-strcoll.h: New file.
10017
10018 2009-02-07  Bruno Haible  <bruno@clisp.org>
10019
10020         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
10021         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10022         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10023         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
10024         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
10025         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
10026
10027 2009-02-07  Bruno Haible  <bruno@clisp.org>
10028
10029         Make 64-bit clean.
10030         * lib/unictype/gen-ctype.c (output_predicate, output_category,
10031         output_combclass, output_bidi_category, output_decimal_digit,
10032         output_digit, output_numeric, output_mirror, output_scripts,
10033         output_ident_category): Use proper width specifier in format strings.
10034
10035 2009-02-07  Bruno Haible  <bruno@clisp.org>
10036
10037         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
10038         failure behaviour.
10039
10040 2009-02-07  Jim Meyering  <meyering@redhat.com>
10041
10042         regex: avoid compilation failure with upcoming gcc-4.4
10043         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
10044         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
10045         "... error: integer overflow in preprocessor expression".
10046
10047 2009-02-05  Ben Pfaff  <blp@gnu.org>
10048
10049         Fix link errors on Windows when close module is used.
10050         * modules/close: Add $(LIB_CLOSE) to Link section.
10051         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
10052         $(LIB_CLOSE) on Windows.
10053
10054 2009-02-05  Jim Meyering  <meyering@redhat.com>
10055
10056         still avoid unused-parameter warnings, but do it cleanly
10057         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
10058         (get_fs_usage): Cast to void instead.
10059         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
10060         (dev_from_mount_options, read_file_system_list): Cast to void.
10061         Prompted by Bruno Haible.
10062
10063 2009-02-04  Jim Meyering  <meyering@redhat.com>
10064
10065         fsusage.c: correct copyright year
10066         * lib/fsusage.c: Reflect year in which the change is pushed into
10067
10068         avoid misc. warnings
10069         * lib/fsusage.c (UNUSED_PARAM): Define.
10070         (get_fs_usage): Mark parameter "disk" as unused.
10071         * lib/getugroups.c (getgrent): Use "void" in prototype.
10072         * lib/mountlist.c: Mark unused parameters.
10073         (read_file_system_list): Declare a local with "const".
10074         * lib/nanosleep.c (getnow): Declare static.
10075         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
10076
10077         dirfd: set errno upon failure
10078         * lib/dirfd.c: Include <errno.h>.
10079         Set errno to ENOTSUP when returning -1.
10080         * modules/dirfd (Depends-on): Add errno.
10081         Suggested by John Kodis <kodis@comcast.net>.
10082
10083 2009-02-01  Bruno Haible  <bruno@clisp.org>
10084
10085         Don't assume sizeof (long) >= sizeof (void *).
10086         * lib/memcmp.c: Include stdint.h.
10087         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
10088         srcp2 to 'const byte *'.
10089         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
10090         types to uintptr_t.
10091         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
10092         * modules/memcmp (Depends-on): Add stdint.
10093         Reported by Ozkan Sezer <sezeroz@gmail.com>.
10094
10095 2009-01-30  Eric Blake  <ebb9@byu.net>
10096
10097         fix more require-before-expand issues
10098         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
10099         expand, AC_PROG_AWK.
10100         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
10101
10102 2009-01-28  Eric Blake  <ebb9@byu.net>
10103
10104         version-etc: use consistent URL formatting
10105         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
10106         Improve formatting.  Use fputs for string without %.
10107
10108 2009-01-28  Jim Meyering  <meyering@redhat.com>
10109
10110         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
10111         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
10112         "underquoted definition of NAME" from autoconf-2.59.
10113
10114 2009-01-28  Bruno Haible  <bruno@clisp.org>
10115
10116         * doc/gnulib.texi: Add "Obsolete modules" to index.
10117
10118 2009-01-28  Jim Meyering  <meyering@redhat.com>
10119
10120         useless-if-before-free: recognize more variants
10121         * build-aux/useless-if-before-free: Also recognize e.g.,
10122         if (NULL != p) free (p);
10123
10124 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
10125
10126         test-getaddrinfo: skip (don't fail) this test when there's no network
10127         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
10128         on the presumption that it means you lack network access.
10129
10130 2009-01-26  Jim Meyering  <meyering@redhat.com>
10131
10132         fflush: avoid warnings on modern systems
10133         * lib/fflush.c (rpl_fflush): Move declarations of locals,
10134         pos and result, into scopes where they're used.
10135
10136 2009-01-26  Eric Blake  <ebb9@byu.net>
10137
10138         Silence warning reintroduced by recent extensions patch.
10139         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
10140         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
10141         autoconf.
10142
10143         Backport improved autoconf semantics of AC_DEFUN_ONCE.
10144         * m4/00gnulib.m4: New file.
10145         * gnulib-tool (func_get_filelist): Always use it.
10146         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
10147         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
10148
10149 2009-01-25  Bruno Haible  <bruno@clisp.org>
10150
10151         Make test-quotearg work on MacOS X and AIX.
10152         * tests/test-quotearg.sh: New file.
10153         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
10154         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
10155         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
10156         include <libintl.h>.
10157         (fake_locale): Remove variable.
10158         (gettext, dgettext, dcgettext): Remove functions.
10159         (main): Instead of setting a fake locale, set a real locale. Call
10160         textdomain and bindtextdomain.
10161         * modules/quotearg-tests (Files): Add the new files.
10162         (Depends-on): Add gettext, setenv, unsetenv.
10163         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
10164         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
10165         Augment TESTS_ENVIRONMENT.
10166
10167 2009-01-25  Bruno Haible  <bruno@clisp.org>
10168
10169         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
10170         fr_FR.ISO8859-1 locale on MacOS X.
10171         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
10172         ja_JP.eucJP locale on MacOS X.
10173         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
10174         zh_CN.GB18030 locale on MacOS X.
10175
10176 2009-01-25  Bruno Haible  <bruno@clisp.org>
10177
10178         Avoid link errors on MacOS X 10.3.
10179         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
10180         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
10181
10182 2009-01-25  Bruno Haible  <bruno@clisp.org>
10183
10184         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10185         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
10186         * modules/pipe (Files): Remove m4/posix_spawn.m4.
10187         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10188         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
10189         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10190         posix_spawnattr_init, posix_spawnattr_setsigmask,
10191         posix_spawnattr_setflags, posix_spawnattr_destroy.
10192
10193         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10194         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
10195         * modules/execute (Files): Remove m4/posix_spawn.m4.
10196         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10197         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10198         posix_spawnattr_init, posix_spawnattr_setsigmask,
10199         posix_spawnattr_setflags, posix_spawnattr_destroy.
10200
10201 2009-01-25  Bruno Haible  <bruno@clisp.org>
10202
10203         * lib/glthread/threadlib.c: Include <stdlib.h>.
10204
10205 2009-01-25  Bruno Haible  <bruno@clisp.org>
10206
10207         * lib/glthread/threadlib.c (dummy): New declaration.
10208
10209 2009-01-25  Bruno Haible  <bruno@clisp.org>
10210
10211         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
10212         multibyte characters also for the GB18030 encoding. Don't crash when
10213         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
10214
10215 2009-01-25  Bruno Haible  <bruno@clisp.org>
10216
10217         Avoid redefining 'struct random_data' on OSF/1 5.1.
10218         * lib/stdlib.in.h: Include <random.h> if it exists.
10219         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
10220         HAVE_RANDOM_H. Include <random.h> when testing whether
10221         'struct random_data' exists.
10222         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
10223
10224 2009-01-25  Bruno Haible  <bruno@clisp.org>
10225
10226         Don't install charset.alias on MacOS X >= 10.3.
10227         * lib/localcharset.c (DARWIN7): New macro.
10228         (get_charset_aliases): Hardcode the result for Darwin7.
10229         * modules/localcharset (install-exec-local): Don't install
10230         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
10231
10232 2009-01-25  Bruno Haible  <bruno@clisp.org>
10233
10234         Don't install charset.alias on mingw and Cygwin.
10235         * modules/localcharset (install-exec-local): Don't install
10236         charset.alias on mingw and Cygwin, if the file does not yet exist.
10237         The result for these platforms is hardcoded in localcharset.c.
10238
10239 2009-01-25  Bruno Haible  <bruno@clisp.org>
10240
10241         Make it possible again to use AC_GNU_SOURCE together with gnulib.
10242         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
10243         before requiring AC_USE_SYSTEM_EXTENSIONS.
10244
10245 2009-01-25  Jim Meyering  <meyering@redhat.com>
10246
10247         c-strtod: avoid warnings
10248         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
10249         "assignment discards qualifiers from pointer target type" warnings.
10250
10251 2009-01-24  Bruno Haible  <bruno@clisp.org>
10252
10253         Add support for non-UTF-8 locales on MacOS X.
10254         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
10255         canonical encodings. For Darwin 7 and newer, don't map traditional
10256         encodings to UTF-8.
10257         Reported by Vincent Lefevre <vincent@vinc17.org>
10258         at <http://savannah.gnu.org/bugs/?25235>.
10259
10260 2009-01-24  Bruno Haible  <bruno@clisp.org>
10261
10262         * doc/gnulib.texi (Obsolete modules): New section.
10263         Reported by Mike Frysinger <vapier@gentoo.org>.
10264
10265 2009-01-24  Bruno Haible  <bruno@clisp.org>
10266
10267         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
10268         (%.dvi): New rule.
10269
10270 2009-01-24  Bruno Haible  <bruno@clisp.org>
10271
10272         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
10273         Reported by Eric Blake.
10274
10275 2009-01-24  Bruno Haible  <bruno@clisp.org>
10276
10277         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
10278         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
10279         Reported by Gary V. Vaughan <gary@gnu.org>.
10280
10281 2009-01-24  Bruno Haible  <bruno@clisp.org>
10282
10283         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
10284
10285 2009-01-23  Bruno Haible  <bruno@clisp.org>
10286
10287         Make c-strtod, c-strtold usable in libraries.
10288         * lib/c-strtod.c: Include string.h instead of xalloc.h.
10289         (C_STRTOD): Call strdup instead of xstrdup.
10290         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
10291         * modules/c-strtold (Depends-on): Likewise.
10292         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
10293         * NEWS: Mention the change.
10294         Reported by Michael Gold <mgold@ncf.ca>.
10295
10296 2009-01-23  Jim Meyering  <meyering@redhat.com>
10297
10298         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
10299         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
10300         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
10301
10302 2009-01-23  Simon Josefsson  <simon@josefsson.org>
10303
10304         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
10305         GNU CoreUtils.
10306         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
10307         * modules/version-etc (Description): Update.
10308
10309 2009-01-22  Bruno Haible  <bruno@clisp.org>
10310
10311         Cache the C locale object.
10312         * lib/c-strtod.c (c_locale_cache): New variable.
10313         (c_locale): New function.
10314         (C_STRTOD): Use it, and don't call freelocale.
10315         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
10316         Suggested by Paolo Bonzini.
10317
10318 2009-01-21  Bruno Haible  <bruno@clisp.org>
10319
10320         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
10321         conditions other than overflow.
10322
10323 2009-01-21  Bruno Haible  <bruno@clisp.org>
10324
10325         * lib/c-strtod.c: Include errno.h.
10326         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
10327         value from STRTOD_L and STRTOD.
10328
10329 2009-01-21  Bruno Haible  <bruno@clisp.org>
10330         and Jim Meyering  <meyering@redhat.com>
10331
10332         nanosleep: skip configure test (fail it) for apple universal builds
10333         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
10334         universal builds, assume that nanosleep does not work.
10335         * modules/nanosleep (Depends-on): Add multiarch.
10336
10337         mktime: skip configure test (fail it) for apple universal builds
10338         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
10339         universal builds, assume that mktime does not work.
10340         * modules/mktime (Depends-on): Add multiarch.
10341
10342 2009-01-21  Eric Blake  <ebb9@byu.net>
10343
10344         multiarch: avoid expand-before-require warning
10345         * modules/multiarch (configure.ac): Require, rather than expand,
10346         gl_MULTIARCH.
10347         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
10348         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
10349         enforce that all clients require it.  Partial reversion of
10350         2008-12-29 patch.
10351
10352         error: avoid expand-before-require warning
10353         * modules/errno (configure.ac): Require, rather than expand,
10354         gl_HEADER_ERRNO_H.
10355         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
10356         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
10357         enforce that all clients require it.
10358
10359         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
10360         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
10361         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
10362         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
10363
10364 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
10365
10366         Revert:
10367         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10368
10369         regex: do not depend on obsolete modules.
10370         * modules/regex: Remove memcmp and memmove.
10371
10372 2009-01-20  Bruno Haible  <bruno@clisp.org>
10373
10374         Make the 'link' module link on Windows NT 4.
10375         * lib/link.c (_WIN32_WINNT): Don't define.
10376         (CreateHardLinkFuncType): New type.
10377         (CreateHardLinkFunc, initialized): New variables.
10378         (initialize): New function.
10379         (link): Invoke CreateHardLink indirectly through the function pointer.
10380
10381 2009-01-20  Bruno Haible  <bruno@clisp.org>
10382
10383         Fix compilation failure on mingw.
10384         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
10385
10386 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
10387
10388         * doc/c-strtod.texi: Mention a couple of restrictions.
10389
10390 2009-01-20  Jim Meyering  <meyering@redhat.com>
10391
10392         gettimeofday: move more declarations out of functions
10393         * lib/gettimeofday.c: Move extern declarations of tzset and
10394         gmtime out of containing functions.  Prompted by Bruno Haible.
10395
10396 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10397
10398         regex: do not depend on obsolete modules.
10399         * modules/regex: Remove memcmp and memmove.
10400
10401 2009-01-19  Bruno Haible  <bruno@clisp.org>
10402
10403         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10404         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
10405         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10406         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
10407         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
10408
10409 2009-01-19  Bruno Haible  <bruno@clisp.org>
10410
10411         * tests/test-link.c: Include <errno.h>.
10412         (main): Exit with code 77 when a hard link cannot be created due to
10413         the file system.
10414         * tests/test-link.sh: Skip test when a hard link cannot be created due
10415         to the file system.
10416         Suggested by Eric Blake.
10417
10418 2009-01-19  Martin Lambers  <marlam@marlam.de>
10419
10420         * modules/link-tests: New file.
10421         * tests/test-link.sh: New file.
10422         * tests/test-link.c: New file.
10423
10424 2009-01-19  Eric Blake  <ebb9@byu.net>
10425
10426         doc: mention another function added in cygwin 1.7.0
10427         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
10428         Another new function in cygwin 1.7.
10429
10430 2009-01-19  Bruno Haible  <bruno@clisp.org>
10431
10432         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10433         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
10434         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
10435         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10436         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10437         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
10438         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
10439         * m4/md4.m4 (gl_MD4): Likewise.
10440         * m4/md5.m4 (gl_MD5): Likewise.
10441         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
10442         * m4/sha1.m4 (gl_SHA1): Likewise.
10443         * m4/sha256.m4 (gl_SHA256): Likewise.
10444         * m4/sha512.m4 (gl_SHA512): Likewise.
10445
10446 2009-01-19  Bruno Haible  <bruno@clisp.org>
10447
10448         * modules/uniname/uniname-tests (Depends-on): Add progname.
10449         * tests/uniname/test-uninames.c: Include progname.h.
10450         (main): Call set_program_name.
10451
10452         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
10453         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
10454         (main): Call set_program_name.
10455
10456         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
10457         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
10458         (main): Call set_program_name.
10459
10460         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
10461         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
10462         (main): Call set_program_name.
10463
10464         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
10465         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
10466         (main): Call set_program_name.
10467
10468         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
10469         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
10470         (main): Call set_program_name.
10471
10472         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
10473         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
10474         (main): Call set_program_name.
10475
10476         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
10477         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
10478         (main): Call set_program_name.
10479
10480         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
10481         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
10482         (main): Call set_program_name.
10483
10484 2009-01-19  Eric Blake  <ebb9@byu.net>
10485
10486         test-unistd: test previous patch
10487         * tests/test-unistd.c: Test *_FILENO macros.
10488
10489         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
10490         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10491         Guarantee a definition.
10492         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
10493         * modules/unistd-safer (Depends-on): Add dependency on unistd.
10494         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
10495         * lib/dup-safer.c (STDERR_FILENO): Likewise.
10496         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10497         Likewise.
10498         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
10499         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
10500         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10501         Likewise.
10502         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
10503         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
10504         (STDERR_FILENO): Likewise.
10505         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
10506         (STDERR_FILENO): Likewise.
10507         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
10508         (STDERR_FILENO): Likewise.
10509         Reported by Elbert Pol.
10510
10511 2009-01-19  Eric Blake  <ebb9@byu.net>
10512
10513         doc: mention more functions added in cygwin 1.7.0
10514         * doc/posix-functions/abort.texi (abort): Update wording related
10515         to cygwin.
10516         * doc/posix-functions/daylight.texi (daylight): Likewise.
10517         * doc/posix-functions/optarg.texi (optarg): Likewise.
10518         * doc/posix-functions/optarg.texi (opterr): Likewise.
10519         * doc/posix-functions/optarg.texi (optind): Likewise.
10520         * doc/posix-functions/optarg.texi (optopt): Likewise.
10521         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
10522         worked in 1.5.x, and was withdrawn in 1.7.
10523         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
10524         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
10525         cygwin versions.
10526         * doc/posix-functions/perror.texi (perror): Likewise.
10527         * doc/posix-functions/printf.texi (printf): Likewise.
10528         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
10529         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
10530         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
10531         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
10532         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
10533         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
10534         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
10535         Likewise.
10536         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
10537         Likewise.
10538         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
10539         this function.
10540         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
10541         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
10542         Likewise.
10543         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
10544         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
10545         * doc/posix-functions/confstr.texi (confstr): Likewise.
10546         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
10547         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
10548         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
10549         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
10550         * doc/posix-functions/fputws.texi (fputws): Likewise.
10551         * doc/posix-functions/fwide.texi (fwide): Likewise.
10552         * doc/posix-functions/getwc.texi (getwc): Likewise.
10553         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
10554         * doc/posix-functions/putwc.texi (putwc): Likewise.
10555         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
10556         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
10557         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
10558         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
10559         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
10560         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
10561         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
10562         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
10563         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
10564         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
10565         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
10566
10567 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10568
10569         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
10570         * lib/ioctl.c: Include <sys/ioctl.h>.
10571
10572 2009-01-19  Simon Josefsson  <simon@josefsson.org>
10573
10574         * modules/getdate-tests (Depends-on): Add progname.
10575         * tests/test-getdate.c: Use progname module, to avoid link errors
10576         on non-glibc systems.
10577
10578 2009-01-18  Simon Josefsson  <simon@josefsson.org>
10579
10580         * modules/filenamecat-tests (Depends-on): Add progname.
10581         * modules/fstrcmp-tests (Depends-on): Likewise.
10582
10583         * tests/test-filenamecat.c: Use progname module, to avoid link
10584         errors on non-glibc systems.
10585         * tests/test-fstrcmp.c: Likewise.
10586
10587 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10588
10589         gettimeofday: avoid warning: nested extern declaration of 'localtime'
10590         * lib/gettimeofday.c: Move extern declaration out of function.
10591
10592 2009-01-18  Bruno Haible  <bruno@clisp.org>
10593
10594         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
10595         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
10596         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
10597
10598 2009-01-18  Bruno Haible  <bruno@clisp.org>
10599
10600         * lib/strftime.c (MEMPCPY): Remove unused macro.
10601         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
10602
10603 2009-01-18  Martin Lambers  <marlam@marlam.de>
10604
10605         New module 'link'.
10606         * lib/unistd.in.h (link): New declaration.
10607         * lib/link.c: New file.
10608         * m4/link.m4: New file.
10609         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
10610         HAVE_LINK.
10611         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
10612         * modules/link: New file.
10613         * doc/posix-functions/link.texi: Mention the new module.
10614
10615 2009-01-18  Bruno Haible  <bruno@clisp.org>
10616
10617         * tests/test-avltree_list.c (main): Call set_program_name.
10618         * tests/test-avltree_oset.c (main): Likewise.
10619         * tests/test-obstack-printf.c: Include progname.h.
10620         (main): Call set_program_name.
10621         * tests/test-quotearg.c: Include progname.h.
10622         (main): Call set_program_name.
10623         * tests/test-xmemdup0.c: Include progname.h.
10624         (main): Call set_program_name.
10625
10626 2009-01-18  Bruno Haible  <bruno@clisp.org>
10627
10628         New module 'alphasort'.
10629         * lib/dirent.in.h (alphasort): New declaration.
10630         * lib/alphasort.c: New file, from glibc with modifications.
10631         * m4/alphasort.m4: New file.
10632         * modules/alphasort: New file.
10633         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
10634         HAVE_ALPHASORT.
10635         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
10636         HAVE_ALPHASORT.
10637         * doc/posix-functions/alphasort.texi: Mention the new module and the
10638         portability problems.
10639
10640 2009-01-18  Bruno Haible  <bruno@clisp.org>
10641
10642         New module 'scandir'.
10643         * lib/dirent.in.h (scandir): New declaration.
10644         * lib/scandir.c: New file, from glibc with modifications.
10645         * m4/scandir.m4: New file.
10646         * modules/scandir: New file.
10647         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
10648         HAVE_SCANDIR.
10649         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
10650         HAVE_SCANDIR.
10651         * doc/posix-functions/scandir.texi: Mention the new module and the
10652         portability problems.
10653
10654 2009-01-17  Bruno Haible  <bruno@clisp.org>
10655
10656         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
10657         Update documentation.
10658         (func_remove_suffix): Escape all dots in the suffix. Update
10659         documentation.
10660         (func_filter_filelist): Update documentation.
10661         Reported by Ralf Wildenhues.
10662
10663 2009-01-17  Bruno Haible  <bruno@clisp.org>
10664
10665         * modules/dprintf-posix-tests: New file.
10666         * tests/test-dprintf-posix.sh: New file.
10667         * tests/test-dprintf-posix.c: New file.
10668
10669         New modules 'dprintf', 'dprintf-posix'.
10670         * lib/stdio.in.h (dprintf): New declaration.
10671         * lib/dprintf.c: New file.
10672         * m4/dprintf.m4: New file.
10673         * m4/dprintf-posix.m4: New file.
10674         * modules/dprintf: New file.
10675         * modules/dprintf-posix: New file.
10676         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
10677         HAVE_DPRINTF, REPLACE_DPRINTF.
10678         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
10679         HAVE_DPRINTF, REPLACE_DPRINTF.
10680         * doc/posix-functions/dprintf.texi: Mention the new modules.
10681
10682 2009-01-17  Bruno Haible  <bruno@clisp.org>
10683
10684         * modules/vdprintf-posix-tests: New file.
10685         * tests/test-vdprintf-posix.sh: New file.
10686         * tests/test-vdprintf-posix.c: New file.
10687
10688         New modules 'vdprintf', 'vdprintf-posix'.
10689         * lib/stdio.in.h (vdprintf): New declaration.
10690         * lib/vdprintf.c: New file.
10691         * m4/vdprintf.m4: New file.
10692         * m4/vdprintf-posix.m4: New file.
10693         * modules/vdprintf: New file.
10694         * modules/vdprintf-posix: New file.
10695         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
10696         HAVE_VDPRINTF, REPLACE_VDPRINTF.
10697         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
10698         HAVE_VDPRINTF, REPLACE_VDPRINTF.
10699         * doc/posix-functions/vdprintf.texi: Mention the new modules.
10700
10701 2009-01-17  Bruno Haible  <bruno@clisp.org>
10702
10703         Fix replacement of fopen on mingw.
10704         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
10705         mingw.
10706
10707 2009-01-17  Bruno Haible  <bruno@clisp.org>
10708
10709         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
10710         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
10711
10712 2009-01-17  Bruno Haible  <bruno@clisp.org>
10713
10714         Avoid test-fflush2.sh failure on mingw.
10715         * tests/test-fflush2.c: Include binary-io.h.
10716         (main): Put standard input into binary mode.
10717         * modules/fflush-tests (Depends-on): Add binary-io.
10718
10719 2009-01-17  Bruno Haible  <bruno@clisp.org>
10720
10721         * lib/wchar.in.h: In another particular situation, include only the
10722         system's <wchar.h> file.
10723         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
10724         Reported by Albert Chin-A-Young <china@thewrittenword.com>
10725         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
10726
10727 2009-01-17  Bruno Haible  <bruno@clisp.org>
10728
10729         Support for stripping executables in --enable-relocatable.
10730         * build-aux/install-reloc: Expect one more argument, or an environment
10731         variable RELOC_STRIP_PROG. If set, strip the destination program and
10732         its wrapper.
10733         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
10734         RELOC_STRIP_PROG.
10735         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
10736         to set RELOCATABLE_STRIP.
10737         * NEWS: Mention the new Makefile requirement.
10738
10739 2009-01-17  Bruno Haible  <bruno@clisp.org>
10740
10741         * build-aux/install-reloc: Remove debugging information left over by
10742         C compiler on MacOS X.
10743
10744 2009-01-17  Bruno Haible  <bruno@clisp.org>
10745
10746         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
10747         * lib/progreloc.c (find_executable): Fix type of pointer passed to
10748         _NSGetExecutablePath.
10749
10750 2009-01-16  Jim Meyering  <meyering@redhat.com>
10751
10752         strerror: avoid warnings about discarding "const"
10753         * lib/strerror.c (rpl_strerror): Instead of returning a const
10754         string from each and every "case", use a variable, and add a single
10755         cast after the switch.
10756
10757 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
10758
10759         * lib/arpa_inet.in.h: Add extern "C" block for C++.
10760
10761 2009-01-16  Bruno Haible  <bruno@clisp.org>
10762
10763         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
10764         array initializer syntax that also works in C++ mode.
10765         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10766
10767 2009-01-16  Jim Meyering  <meyering@redhat.com>
10768
10769         poll: suppress a warning
10770         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
10771         to ignore "...unsigned expression < 0 is always false" warnings.
10772
10773 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
10774
10775         poll: remove declarations of unused variables
10776         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
10777         sockbuf and optlen.
10778
10779 2009-01-15  Bruno Haible  <bruno@clisp.org>
10780
10781         Make fflush-after-ungetc POSIX compliant on BSD systems.
10782         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
10783         (clear_ungetc_buffer): Implement also for other systems.
10784         (rpl_fflush): On glibc systems, invoke
10785         clear_ungetc_buffer_preserving_position. Otherwise, invoke
10786         clear_ungetc_buffer after fetching the stream's position, not before.
10787
10788 2009-01-15  Bruno Haible  <bruno@clisp.org>
10789
10790         Make fflush-after-ungetc POSIX compliant on glibc systems.
10791         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
10792         after ungetc.
10793         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
10794         (rpl_fflush): On glibc systems, simply call the system's fflush
10795         function after clearing the ungetc buffer.
10796         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
10797         Instead, lseek only to the end of file, then use the system's fseeko
10798         for the rest. On glibc systems, reset the EOF indicator bit.
10799
10800 2009-01-15  Jim Meyering  <meyering@redhat.com>
10801
10802         openmp.m4: revert quote-adding change, for portability to older autoconf
10803         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
10804         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
10805         Simon Josefsson noticed the problem when using autoconf-2.61.
10806
10807 2009-01-15  Bruno Haible  <bruno@clisp.org>
10808
10809         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
10810         * tests/test-fflush2.c (ASSERT): Always fail.
10811         (main): Add two tests for fflush() after ungetc(), taking into account
10812         the Austin Group's clarification.
10813         Suggested by Eric Blake.
10814
10815 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
10816
10817         mktime.m4: remove K&R-style function prototypes
10818         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
10819         for the Sun C++ compiler.
10820
10821 2009-01-14  Bruno Haible  <bruno@clisp.org>
10822
10823         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
10824         while including <wchar.h>.
10825         * lib/wchar.in.h: In two particular situations on HP-UX, include only
10826         the system's <wchar.h> file.
10827         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10828
10829 2009-01-14  Bruno Haible  <bruno@clisp.org>
10830
10831         * m4/csharp.m4: Don't mention gettext on the serial number line.
10832         * m4/csharpexec.m4: Likewise.
10833         * m4/eaccess.m4: Likewise.
10834         * m4/javaexec.m4: Likewise.
10835         * m4/sig_atomic_t.m4: Likewise.
10836         * m4/tmpdir.m4: Likewise.
10837         * m4/intldir.m4: Bump gettext version.
10838         * m4/lib-ld.m4: Likewise.
10839
10840 2009-01-14  Bruno Haible  <bruno@clisp.org>
10841
10842         * lib/progname.c (set_program_name): Add more comments.
10843         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
10844
10845 2009-01-14  Simon Josefsson  <simon@josefsson.org>
10846
10847         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
10848         were sys/stat.h does not define it.
10849
10850 2009-01-14  Jim Meyering  <meyering@redhat.com>
10851
10852         many *.m4 files: improve m4 quoting
10853         99% of this change was performed by running the following commands:
10854         git ls-files | grep '\.m4$' | xargs perl -pi \
10855           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
10856           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10857           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10858           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
10859         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
10860         The remainder were to add Copyright dates, increment serial numbers,
10861         undo some changes in comments, exclude m4/intl.m4, and add quotes
10862         around the "1" in ",1" where the unusual spacing prohibited the
10863         above regexps from doing the job.  For more details, see
10864         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
10865         * m4/acl.m4: Modified.
10866         * m4/afs.m4: Likewise.
10867         * m4/alloca.m4: Likewise.
10868         * m4/argp.m4: Likewise.
10869         * m4/argz.m4: Likewise.
10870         * m4/atexit.m4: Likewise.
10871         * m4/bison-i18n.m4: Likewise.
10872         * m4/bison.m4: Likewise.
10873         * m4/byteswap.m4: Likewise.
10874         * m4/c-stack.m4: Likewise.
10875         * m4/c-strtod.m4: Likewise.
10876         * m4/calloc.m4: Likewise.
10877         * m4/canonicalize-lgpl.m4: Likewise.
10878         * m4/chown.m4: Likewise.
10879         * m4/clock_time.m4: Likewise.
10880         * m4/codeset.m4: Likewise.
10881         * m4/copy-file.m4: Likewise.
10882         * m4/csharp.m4: Likewise.
10883         * m4/csharpcomp.m4: Likewise.
10884         * m4/csharpexec.m4: Likewise.
10885         * m4/d-ino.m4: Likewise.
10886         * m4/d-type.m4: Likewise.
10887         * m4/dirfd.m4: Likewise.
10888         * m4/double-slash-root.m4: Likewise.
10889         * m4/eaccess.m4: Likewise.
10890         * m4/eealloc.m4: Likewise.
10891         * m4/environ.m4: Likewise.
10892         * m4/errno_h.m4: Likewise.
10893         * m4/euidaccess.m4: Likewise.
10894         * m4/execute.m4: Likewise.
10895         * m4/fatal-signal.m4: Likewise.
10896         * m4/fchdir.m4: Likewise.
10897         * m4/fcntl_h.m4: Likewise.
10898         * m4/fileblocks.m4: Likewise.
10899         * m4/filenamecat.m4: Likewise.
10900         * m4/findprog.m4: Likewise.
10901         * m4/flexmember.m4: Likewise.
10902         * m4/fnmatch.m4: Likewise.
10903         * m4/fopen.m4: Likewise.
10904         * m4/fpending.m4: Likewise.
10905         * m4/fprintf-posix.m4: Likewise.
10906         * m4/free.m4: Likewise.
10907         * m4/frexp.m4: Likewise.
10908         * m4/frexpl.m4: Likewise.
10909         * m4/fsusage.m4: Likewise.
10910         * m4/ftruncate.m4: Likewise.
10911         * m4/gc-camellia.m4: Likewise.
10912         * m4/gc-random.m4: Likewise.
10913         * m4/gc.m4: Likewise.
10914         * m4/getaddrinfo.m4: Likewise.
10915         * m4/getcwd-abort-bug.m4: Likewise.
10916         * m4/getcwd-path-max.m4: Likewise.
10917         * m4/getdate.m4: Likewise.
10918         * m4/getdomainname.m4: Likewise.
10919         * m4/getgroups.m4: Likewise.
10920         * m4/gethostname.m4: Likewise.
10921         * m4/gethrxtime.m4: Likewise.
10922         * m4/getline.m4: Likewise.
10923         * m4/getloadavg.m4: Likewise.
10924         * m4/getndelim2.m4: Likewise.
10925         * m4/getpass.m4: Likewise.
10926         * m4/gettext.m4: Likewise.
10927         * m4/gettime.m4: Likewise.
10928         * m4/gettimeofday.m4: Likewise.
10929         * m4/gnulib-common.m4: Likewise.
10930         * m4/group-member.m4: Likewise.
10931         * m4/host-os.m4: Likewise.
10932         * m4/iconv.m4: Likewise.
10933         * m4/iconv_open.m4: Likewise.
10934         * m4/inet_ntop.m4: Likewise.
10935         * m4/inet_pton.m4: Likewise.
10936         * m4/inline.m4: Likewise.
10937         * m4/intldir.m4: Likewise.
10938         * m4/intlmacosx.m4: Likewise.
10939         * m4/intmax.m4: Likewise.
10940         * m4/intmax_t.m4: Likewise.
10941         * m4/inttypes.m4: Likewise.
10942         * m4/inttypes_h.m4: Likewise.
10943         * m4/inttypes-pri.m4: Likewise.
10944         * m4/isapipe.m4: Likewise.
10945         * m4/isnand.m4: Likewise.
10946         * m4/isnanf.m4: Likewise.
10947         * m4/isnanl.m4: Likewise.
10948         * m4/javacomp.m4: Likewise.
10949         * m4/javaexec.m4: Likewise.
10950         * m4/jm-winsz1.m4: Likewise.
10951         * m4/jm-winsz2.m4: Likewise.
10952         * m4/lchown.m4: Likewise.
10953         * m4/lcmessage.m4: Likewise.
10954         * m4/ldexpl.m4: Likewise.
10955         * m4/lib-ld.m4: Likewise.
10956         * m4/lib-link.m4: Likewise.
10957         * m4/libsigsegv.m4: Likewise.
10958         * m4/link-follow.m4: Likewise.
10959         * m4/localcharset.m4: Likewise.
10960         * m4/locale-fr.m4: Likewise.
10961         * m4/locale-ja.m4: Likewise.
10962         * m4/locale-tr.m4: Likewise.
10963         * m4/locale-zh.m4: Likewise.
10964         * m4/lock.m4: Likewise.
10965         * m4/longlong.m4: Likewise.
10966         * m4/ls-mntd-fs.m4: Likewise.
10967         * m4/lstat.m4: Likewise.
10968         * m4/malloc.m4: Likewise.
10969         * m4/mathl.m4: Likewise.
10970         * m4/mbrtowc.m4: Likewise.
10971         * m4/mbstate_t.m4: Likewise.
10972         * m4/mbswidth.m4: Likewise.
10973         * m4/memchr.m4: Likewise.
10974         * m4/memcmp.m4: Likewise.
10975         * m4/memcpy.m4: Likewise.
10976         * m4/memmem.m4: Likewise.
10977         * m4/memmove.m4: Likewise.
10978         * m4/mempcpy.m4: Likewise.
10979         * m4/memrchr.m4: Likewise.
10980         * m4/memset.m4: Likewise.
10981         * m4/minmax.m4: Likewise.
10982         * m4/mkdir-slash.m4: Likewise.
10983         * m4/mkdtemp.m4: Likewise.
10984         * m4/mktime.m4: Likewise.
10985         * m4/mmap-anon.m4: Likewise.
10986         * m4/mountlist.m4: Likewise.
10987         * m4/nanosleep.m4: Likewise.
10988         * m4/nls.m4: Likewise.
10989         * m4/nocrash.m4: Likewise.
10990         * m4/open.m4: Likewise.
10991         * m4/openat.m4: Likewise.
10992         * m4/openmp.m4: Likewise.
10993         * m4/pathmax.m4: Likewise.
10994         * m4/perl.m4: Likewise.
10995         * m4/physmem.m4: Likewise.
10996         * m4/pipe.m4: Likewise.
10997         * m4/po.m4: Likewise.
10998         * m4/poll.m4: Likewise.
10999         * m4/posixtm.m4: Likewise.
11000         * m4/posixver.m4: Likewise.
11001         * m4/printf-frexp.m4: Likewise.
11002         * m4/printf-frexpl.m4: Likewise.
11003         * m4/printf-posix.m4: Likewise.
11004         * m4/printf-posix-rpl.m4: Likewise.
11005         * m4/printf.m4: Likewise.
11006         * m4/progtest.m4: Likewise.
11007         * m4/putenv.m4: Likewise.
11008         * m4/readline.m4: Likewise.
11009         * m4/readlink.m4: Likewise.
11010         * m4/readutmp.m4: Likewise.
11011         * m4/realloc.m4: Likewise.
11012         * m4/regex.m4: Likewise.
11013         * m4/relocatable.m4: Likewise.
11014         * m4/relocatable-lib.m4: Likewise.
11015         * m4/rename-dest-slash.m4: Likewise.
11016         * m4/rename.m4: Likewise.
11017         * m4/rmdir-errno.m4: Likewise.
11018         * m4/rmdir.m4: Likewise.
11019         * m4/roundf.m4: Likewise.
11020         * m4/roundl.m4: Likewise.
11021         * m4/rpmatch.m4: Likewise.
11022         * m4/save-cwd.m4: Likewise.
11023         * m4/selinux-selinux-h.m4: Likewise.
11024         * m4/setenv.m4: Likewise.
11025         * m4/settime.m4: Likewise.
11026         * m4/sig2str.m4: Likewise.
11027         * m4/sig_atomic_t.m4: Likewise.
11028         * m4/signalblocking.m4: Likewise.
11029         * m4/signbit.m4: Likewise.
11030         * m4/sigpipe.m4: Likewise.
11031         * m4/sockets.m4: Likewise.
11032         * m4/sockpfaf.m4: Likewise.
11033         * m4/st_dm_mode.m4: Likewise.
11034         * m4/stat-time.m4: Likewise.
11035         * m4/stdbool.m4: Likewise.
11036         * m4/stdint.m4: Likewise.
11037         * m4/stdint_h.m4: Likewise.
11038         * m4/stpcpy.m4: Likewise.
11039         * m4/stpncpy.m4: Likewise.
11040         * m4/strcase.m4: Likewise.
11041         * m4/strchrnul.m4: Likewise.
11042         * m4/strcspn.m4: Likewise.
11043         * m4/strdup.m4: Likewise.
11044         * m4/strftime.m4: Likewise.
11045         * m4/strndup.m4: Likewise.
11046         * m4/strnlen.m4: Likewise.
11047         * m4/strpbrk.m4: Likewise.
11048         * m4/strptime.m4: Likewise.
11049         * m4/strsep.m4: Likewise.
11050         * m4/strtod.m4: Likewise.
11051         * m4/strtoimax.m4: Likewise.
11052         * m4/strtok_r.m4: Likewise.
11053         * m4/strtol.m4: Likewise.
11054         * m4/strtoll.m4: Likewise.
11055         * m4/strtoul.m4: Likewise.
11056         * m4/strtoull.m4: Likewise.
11057         * m4/strtoumax.m4: Likewise.
11058         * m4/strverscmp.m4: Likewise.
11059         * m4/threadlib.m4: Likewise.
11060         * m4/timegm.m4: Likewise.
11061         * m4/tm_gmtoff.m4: Likewise.
11062         * m4/tmpdir.m4: Likewise.
11063         * m4/tmpfile.m4: Likewise.
11064         * m4/tzset.m4: Likewise.
11065         * m4/uintmax_t.m4: Likewise.
11066         * m4/unlinkdir.m4: Likewise.
11067         * m4/unlocked-io.m4: Likewise.
11068         * m4/uptime.m4: Likewise.
11069         * m4/userspec.m4: Likewise.
11070         * m4/utimbuf.m4: Likewise.
11071         * m4/utime.m4: Likewise.
11072         * m4/utimes-null.m4: Likewise.
11073         * m4/utimes.m4: Likewise.
11074         * m4/vararrays.m4: Likewise.
11075         * m4/vasnprintf.m4: Likewise.
11076         * m4/vfprintf-posix.m4: Likewise.
11077         * m4/vprintf-posix.m4: Likewise.
11078         * m4/wait-process.m4: Likewise.
11079         * m4/wchar_t.m4: Likewise.
11080         * m4/wint_t.m4: Likewise.
11081         * m4/write-any-file.m4: Likewise.
11082         * m4/yield.m4: Likewise.
11083
11084 2009-01-13  Bruno Haible  <bruno@clisp.org>
11085
11086         Avoid test-copy-file.sh failures when ACL support insufficient.
11087         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
11088         TESTS_ENVIRONMENT.
11089         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
11090         Reported by Jim Meyering.
11091
11092 2009-01-13  Bruno Haible  <bruno@clisp.org>
11093
11094         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
11095         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
11096         * modules/unistdio/u8-printf-parse (Files): Likewise.
11097         * modules/unistdio/u32-printf-parse (Files): Likewise.
11098         * modules/unistdio/ulc-printf-parse (Files): Likewise.
11099
11100 2009-01-13  Simon Josefsson  <simon@josefsson.org>
11101
11102         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
11103         and m4/inttypes_h.m4 too.
11104
11105 2009-01-12  Eric Blake  <ebb9@byu.net>
11106
11107         tests: IRIX 6.2 cc can't compile -0.0 into .data
11108         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
11109         rather than at compile-time.
11110         * tests/test-floorl.c (minus_zero): Likewise.
11111         * tests/test-frexpl.c (minus_zero): Likewise.
11112         * tests/test-isnan.c (minus_zerol): Likewise.
11113         * tests/test-isnanl.h (minus_zero): Likewise.
11114         * tests/test-ldexpl.c (minus_zero): Likewise.
11115         * tests/test-roundl.c (minus_zero): Likewise.
11116         * tests/test-signbit.c (minus_zerol): Likewise.
11117         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
11118         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
11119         * tests/test-truncl.c (minus_zero): Likewise.
11120         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
11121         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
11122         Reported by Tom G. Christensen and Nelson H. F. Beebe.
11123
11124 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11125
11126         regex: fix glibc bug 9697
11127         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
11128         handling.
11129
11130 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11131
11132         regex: fix glibc bug 697
11133         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
11134         being NULL also if there are no backreferences.
11135
11136 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11137
11138         regex: merge glibc changes
11139         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
11140         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
11141         re_string_skip_chars, re_string_reconstruct): Likewise.
11142         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
11143
11144 2009-01-07  Jim Meyering  <meyering@redhat.com>
11145
11146         poll: filter through cppi
11147         * lib/poll.c: Indent cpp directives to reflect nesting.
11148
11149 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
11150
11151         poll: don't return uninitialized
11152         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
11153
11154 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
11155
11156         avoid compile failure on AIX 6.1
11157         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
11158         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
11159
11160 2009-01-04  Jim Meyering  <meyering@redhat.com>
11161
11162         remove duplicate inclusion of <stdio.h>
11163         * tests/test-fprintf-posix.c: Likewise.
11164         * tests/test-printf-posix.c: Likewise.
11165         * tests/test-snprintf-posix.c: Likewise.
11166         * tests/test-sprintf-posix.c: Likewise.
11167         * tests/test-vasprintf-posix.c: Likewise.
11168         * tests/test-vfprintf-posix.c: Likewise.
11169         * tests/test-vprintf-posix.c: Likewise.
11170         * tests/test-vsnprintf-posix.c: Likewise.
11171         * tests/test-vsprintf-posix.c: Likewise.
11172
11173 2009-01-03  Jim Meyering  <meyering@redhat.com>
11174
11175         gnulib-tool: fix sed-based filtering
11176         * gnulib-tool (func_filter_filelist): Remove extra backslash
11177         in sed_fff_filter definition.
11178
11179 2009-01-02  Jim Meyering  <meyering@redhat.com>
11180
11181         strftime: avoid compilation failure on Solaris 2.6
11182         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
11183         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
11184         Don't #define mbrlen or mbsinit, since now they're guaranteed to
11185         be available.  Reported by Tom G. Christensen.  Details in
11186         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
11187
11188 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11189             Bruno Haible  <bruno@clisp.org>
11190
11191         Speed up gnulib-tool by doing more string processing through shell
11192         built-ins.
11193         * gnulib-tool (fast_func_append): New variable.
11194         (func_remove_prefix, func_remove_suffix): New functions.
11195         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
11196         (func_filter_filelist): New function.
11197         (func_get_dependencies): Use func_remove_suffix instead of sed.
11198         (func_get_automake_snippet): Use func_filter_filelist instead of a
11199         subshell and sed invocation.
11200
11201 2009-01-01  Bruno Haible  <bruno@clisp.org>
11202
11203         Fix a security bug.
11204         * gnulib-tool (func_import, import, update): Don't allow the characters
11205         '"', '$', '`', '\' in macro arguments that become part of commands that
11206         are evaluated.
11207
11208 2009-01-01  Bruno Haible  <bruno@clisp.org>
11209
11210         * gnulib-tool (func_reset_sigpipe): Add more comments.
11211
11212 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11213
11214         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
11215         func_emit_tests_Makefile_am, func_import): Abort loops early if we
11216         already know the answer.
11217
11218 2009-01-01  Jim Meyering  <meyering@redhat.com>
11219
11220         * lib/version-etc.c (version_etc_va): Update copyright year.
11221
11222 2008-12-30  Bruno Haible  <bruno@clisp.org>
11223
11224         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
11225         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
11226         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
11227
11228 2008-12-29  Eric Blake  <ebb9@byu.net>
11229
11230         multiarch: avoid autoconf AC_REQUIRE bug
11231         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
11232         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
11233         2.63 and older.
11234         Reported by Bruno Haible, and analyzed in
11235         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
11236
11237 2008-12-29  Bruno Haible  <bruno@clisp.org>
11238
11239         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
11240         files in subdirectories correctly.
11241         Reported by Ralf Wildenhues.
11242
11243 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11244
11245         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
11246         rather than 'join FILE -', for Solaris join.
11247
11248 2008-12-29  Bruno Haible  <bruno@clisp.org>
11249
11250         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
11251         quoting.
11252         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
11253         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
11254         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
11255         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
11256         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
11257         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
11258         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
11259         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
11260         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
11261         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
11262         * m4/nls.m4 (AM_NLS): Likewise.
11263         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
11264         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
11265         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
11266         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
11267         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
11268         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
11269         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
11270         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
11271         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
11272         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
11273         * m4/xsize.m4 (gl_XSIZE): Likewise.
11274         Suggested by Jim Meyering.
11275
11276 2008-11-17  Bruce Korb  <bkorb@gnu.org>
11277
11278         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
11279         * lib/parse-duration.c: use a switch instead of cascading if's.
11280
11281 2008-12-29  Eric Blake  <ebb9@byu.net>
11282
11283         wchar.h: supply WEOF on Irix 5.3
11284         * lib/wchar.in.h (wint_t): Also supply WEOF.
11285         * lib/wctype.in.h (wint_t): Likewise.
11286         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
11287         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
11288         Reported by Tom G. Christensen.
11289
11290 2008-12-26  Bruno Haible  <bruno@clisp.org>
11291
11292         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
11293         i486, i586, i686.
11294
11295 2008-12-26  Bruno Haible  <bruno@clisp.org>
11296
11297         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
11298
11299 2008-12-26  Bruno Haible  <bruno@clisp.org>
11300
11301         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
11302         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
11303         not __STDC_CONSTANT_MACROS.
11304         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
11305
11306 2008-12-25  Bruno Haible  <bruno@clisp.org>
11307
11308         Add support for universal builds to vasnprintf.
11309         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
11310         universal builds, guess no.
11311         * modules/vasnprintf-posix (Depends-on): Add multiarch.
11312         * modules/vasprintf-posix (Depends-on): Likewise.
11313         * modules/fprintf-posix (Depends-on): Likewise.
11314         * modules/vfprintf-posix (Depends-on): Likewise.
11315         * modules/snprintf-posix (Depends-on): Likewise.
11316         * modules/vsnprintf-posix (Depends-on): Likewise.
11317         * modules/sprintf-posix (Depends-on): Likewise.
11318         * modules/vsprintf-posix (Depends-on): Likewise.
11319         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
11320         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
11321         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
11322         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
11323         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
11324         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
11325         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
11326
11327         Add support for universal builds to <inttypes.h>.
11328         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
11329         _SCNu64_PREFIX): In Apple
11330         universal builds, define directly, using _LP64.
11331         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
11332         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
11333         * modules/inttypes (Depends-on): Add multiarch.
11334         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11335
11336         Add support for universal builds to <stdint.h>.
11337         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
11338         universal builds, define directly, using _LP64.
11339         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
11340         Apple universal builds, don't test for the size and suffix of ptrdiff_t
11341         and size_t.
11342         * modules/stdint (Depends-on): Add multiarch.
11343         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11344
11345         New module 'multiarch'.
11346         * modules/multiarch: New file.
11347         * m4/multiarch.m4: New file.
11348
11349 2008-12-25  Bruno Haible  <bruno@clisp.org>
11350
11351         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
11352
11353 2008-12-25  Bruno Haible  <bruno@clisp.org>
11354
11355         * modules/btowc (License): Relicense under LGPLv2+.
11356         * modules/mbsinit (License): Likewise.
11357         * modules/mbrtowc (License): Likewise.
11358         * modules/wcrtomb (License): Likewise.
11359         * modules/streq (License): Likewise.
11360         Reported by David Lutterkort <lutter@redhat.com>.
11361
11362 2008-12-23  Bruno Haible  <bruno@clisp.org>
11363
11364         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
11365
11366 2008-12-23  Bruno Haible  <bruno@clisp.org>
11367
11368         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
11369         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
11370         GETADDRINFO_LIB, not in LIBS.
11371         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
11372         * modules/canon-host (Link): Likewise.
11373         * NEWS: Mention the change.
11374         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
11375         GETADDRINFO_LIB.
11376
11377 2008-12-22  Bruno Haible  <bruno@clisp.org>
11378
11379         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
11380         * doc/posix-functions/iswalpha_l.texi: Likewise.
11381         * doc/posix-functions/iswblank_l.texi: Likewise.
11382         * doc/posix-functions/iswcntrl_l.texi: Likewise.
11383         * doc/posix-functions/iswctype_l.texi: Likewise.
11384         * doc/posix-functions/iswdigit_l.texi: Likewise.
11385         * doc/posix-functions/iswgraph_l.texi: Likewise.
11386         * doc/posix-functions/iswlower_l.texi: Likewise.
11387         * doc/posix-functions/iswprint_l.texi: Likewise.
11388         * doc/posix-functions/iswpunct_l.texi: Likewise.
11389         * doc/posix-functions/iswspace_l.texi: Likewise.
11390         * doc/posix-functions/iswupper_l.texi: Likewise.
11391         * doc/posix-functions/iswxdigit_l.texi: Likewise.
11392         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
11393         * doc/posix-functions/open_wmemstream.texi: Likewise.
11394         * doc/posix-functions/swscanf.texi: Likewise.
11395         * doc/posix-functions/towctrans_l.texi: Likewise.
11396         * doc/posix-functions/towlower.texi: Likewise.
11397         * doc/posix-functions/towlower_l.texi: Likewise.
11398         * doc/posix-functions/towupper.texi: Likewise.
11399         * doc/posix-functions/towupper_l.texi: Likewise.
11400         * doc/posix-functions/vfwprintf.texi: Likewise.
11401         * doc/posix-functions/vfwscanf.texi: Likewise.
11402         * doc/posix-functions/vswscanf.texi: Likewise.
11403         * doc/posix-functions/vwprintf.texi: Likewise.
11404         * doc/posix-functions/vwscanf.texi: Likewise.
11405         * doc/posix-functions/wcpcpy.texi: Likewise.
11406         * doc/posix-functions/wcpncpy.texi: Likewise.
11407         * doc/posix-functions/wcscasecmp.texi: Likewise.
11408         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
11409         * doc/posix-functions/wcscoll_l.texi: Likewise.
11410         * doc/posix-functions/wcsdup.texi: Likewise.
11411         * doc/posix-functions/wcsncasecmp.texi: Likewise.
11412         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
11413         * doc/posix-functions/wcsnlen.texi: Likewise.
11414         * doc/posix-functions/wcsnrtombs.texi: Likewise.
11415         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
11416         * doc/posix-functions/wctrans_l.texi: Likewise.
11417         * doc/posix-functions/wctype_l.texi: Likewise.
11418         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
11419         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
11420         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
11421         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
11422         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
11423         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
11424         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
11425         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
11426         * doc/glibc-functions/wcschrnul.texi: Likewise.
11427         * doc/glibc-functions/wcsftime_l.texi: Likewise.
11428         * doc/glibc-functions/wcstod_l.texi: Likewise.
11429         * doc/glibc-functions/wcstof_l.texi: Likewise.
11430         * doc/glibc-functions/wcstol_l.texi: Likewise.
11431         * doc/glibc-functions/wcstold_l.texi: Likewise.
11432         * doc/glibc-functions/wcstoll_l.texi: Likewise.
11433         * doc/glibc-functions/wcstoq.texi: Likewise.
11434         * doc/glibc-functions/wcstoul_l.texi: Likewise.
11435         * doc/glibc-functions/wcstoull_l.texi: Likewise.
11436         * doc/glibc-functions/wcstouq.texi: Likewise.
11437         * doc/glibc-functions/wmempcpy.texi: Likewise.
11438
11439 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
11440             Eric Blake  <ebb9@byu.net>
11441             Paolo Bonzini  <bonzini@gnu.org>
11442             Bruno Haible  <bruno@clisp.org>
11443
11444         Make c-stack work on Haiku.
11445         * lib/c-stack.c (SA_ONSTACK): Define fallback.
11446         (c_stack_action): Use SA_ONSTACK flag.
11447
11448 2008-12-22  Bruno Haible  <bruno@clisp.org>
11449
11450         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
11451
11452 2008-12-22  Bruno Haible  <bruno@clisp.org>
11453
11454         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
11455         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
11456         being overridden.
11457         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
11458         New macros.
11459         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
11460         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
11461         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
11462         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
11463
11464 2008-12-22  Bruno Haible  <bruno@clisp.org>
11465
11466         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
11467         from test code.
11468
11469 2008-12-22  Eric Blake  <ebb9@byu.net>
11470
11471         Avoid gcc warnings on cygwin.
11472         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
11473         Avoid unused variable.
11474         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
11475         Likewise.
11476
11477 2008-12-22  Bruno Haible  <bruno@clisp.org>
11478
11479         Remove HAVE_MBRTOWC conditionals.
11480         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
11481         (mbscasecmp): Assume mbrtowc function.
11482         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
11483         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
11484         * lib/mbschr.c: Include mbuiter.h unconditionally.
11485         (mbschr): Assume mbrtowc function.
11486         * lib/mbscspn.c: Include mbuiter.h unconditionally.
11487         (mbscspn): Assume mbrtowc function.
11488         * lib/mbslen.c: Include mbuiter.h unconditionally.
11489         (mbslen): Assume mbrtowc function.
11490         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
11491         (mbsncasecmp): Assume mbrtowc function.
11492         * lib/mbsnlen.c: Include mbiter.h unconditionally.
11493         (mbsnlen): Assume mbrtowc function.
11494         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
11495         (mbspbrk): Assume mbrtowc function.
11496         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
11497         (mbspcasecmp): Assume mbrtowc function.
11498         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
11499         (mbsrchr): Assume mbrtowc function.
11500         * lib/mbssep.c: Include mbuiter.h unconditionally.
11501         (mbssep): Assume mbrtowc function.
11502         * lib/mbsspn.c: Include mbuiter.h unconditionally.
11503         (mbsspn): Assume mbrtowc function.
11504         * lib/mbsstr.c: Include mbuiter.h unconditionally.
11505         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
11506         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
11507         (mbstok_r): Assume mbrtowc function.
11508         * lib/propername.c: Include mbuiter.h unconditionally.
11509         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
11510         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
11511         (trim2): Assume mbrtowc function.
11512         * lib/mbswidth.c (mbsinit): Remove fallback definition.
11513         (mbsnwidth): Assume mbrtowc function.
11514         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
11515         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
11516         fallback definitions.
11517         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
11518
11519 2008-12-22  Bruno Haible  <bruno@clisp.org>
11520
11521         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
11522
11523 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
11524
11525         * modules/regex: Request emulations for the mb*/wc* functions we need.
11526         * m4/regex.m4: Don't look for those functions here.
11527         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
11528
11529 2008-12-22  Bruno Haible  <bruno@clisp.org>
11530
11531         * modules/fnmatch (Depends-on): Remove duplicated dependency.
11532
11533 2008-12-21  Bruno Haible  <bruno@clisp.org>
11534
11535         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
11536         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
11537         (Include): Remove conditionalization.
11538         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
11539         (Include): Remove conditionalization.
11540         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
11541         (Include): Remove conditionalization.
11542         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
11543         * m4/mbfile.m4 (gl_MBFILE): Likewise.
11544         * NEWS: Mention the change.
11545         Reported by Alan Hourihane <alanh@fairlite.co.uk>
11546         via Sergey Poznyakoff <gray@gnu.org.ua>.
11547
11548 2008-12-21  Bruno Haible  <bruno@clisp.org>
11549
11550         * MODULES.html.sh (Extended multibyte and wide character utilities
11551         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
11552         wcrtomb, wcsrtombs.
11553         (Support for systems lacking POSIX:2008): Add accept, bind, close,
11554         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
11555         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
11556         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
11557
11558 2008-12-21  Bruno Haible  <bruno@clisp.org>
11559
11560         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
11561
11562 2008-12-21  Bruno Haible  <bruno@clisp.org>
11563
11564         * modules/wcsnrtombs-tests: New file.
11565         * tests/test-wcsnrtombs1.sh: New file.
11566         * tests/test-wcsnrtombs2.sh: New file.
11567         * tests/test-wcsnrtombs3.sh: New file.
11568         * tests/test-wcsnrtombs4.sh: New file.
11569         * tests/test-wcsnrtombs.c: New file.
11570
11571         New module 'wcsnrtombs'.
11572         * lib/wchar.in.h (wcsnrtombs): New declaration.
11573         * lib/wcsnrtombs.c: New file.
11574         * lib/wcsrtombs-state.c: New file.
11575         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
11576         (internal_state): Remove variable.
11577         * m4/wcsnrtombs.m4: New file.
11578         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
11579         compilation units.
11580         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
11581         HAVE_WCSNRTOMBS.
11582         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
11583         HAVE_WCSNRTOMBS.
11584         * modules/wcsnrtombs: New file.
11585         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
11586         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
11587
11588 2008-12-21  Bruno Haible  <bruno@clisp.org>
11589
11590         * modules/wcsrtombs-tests: New file.
11591         * tests/test-wcsrtombs1.sh: New file.
11592         * tests/test-wcsrtombs2.sh: New file.
11593         * tests/test-wcsrtombs3.sh: New file.
11594         * tests/test-wcsrtombs4.sh: New file.
11595         * tests/test-wcsrtombs.c: New file.
11596
11597         New module 'wcsrtombs'.
11598         * lib/wchar.in.h (wcsrtombs): New declaration.
11599         * lib/wcsrtombs.c: New file.
11600         * m4/wcsrtombs.m4: New file.
11601         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
11602         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11603         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
11604         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11605         * modules/wcsrtombs: New file.
11606         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
11607         bugs.
11608
11609 2008-12-21  Bruno Haible  <bruno@clisp.org>
11610
11611         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
11612         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
11613         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
11614         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
11615         if not correct.
11616         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
11617         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
11618         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11619         m4/locale-zh.m4, m4/codeset.m4.
11620         * doc/posix-functions/wcrtomb.texi: Document the bug.
11621
11622 2008-12-21  Bruno Haible  <bruno@clisp.org>
11623
11624         Work around a btowc() bug on IRIX 6.5.
11625         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
11626         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
11627         REPLACE_WTOBC if not.
11628         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
11629         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
11630         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
11631
11632 2008-12-21  Bruno Haible  <bruno@clisp.org>
11633
11634         * modules/wcrtomb-tests: New file.
11635         * tests/test-wcrtomb.sh: New file.
11636         * tests/test-wcrtomb.c: New file.
11637
11638         New module 'wcrtomb'.
11639         * lib/wchar.in.h (wcrtomb): New declaration.
11640         * lib/wcrtomb.c: New file.
11641         * m4/wcrtomb.m4: New file.
11642         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
11643         HAVE_WCRTOMB.
11644         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
11645         HAVE_WCRTOMB.
11646         * modules/wcrtomb: New file.
11647         * doc/posix-functions/wcrtomb.texi: Mention the new module.
11648
11649 2008-12-21  Bruno Haible  <bruno@clisp.org>
11650
11651         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
11652         * modules/mbsrtowcs (Files): Likewise.
11653         * modules/wctob (Files): Likewise.
11654         * modules/c-strcase-tests (Files): Likewise.
11655         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
11656         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
11657         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
11658         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
11659         * modules/vasnprintf-posix-tests (Files): Likewise.
11660
11661 2008-12-21  William Pursell  <bill.pursell@gmail.com>
11662
11663         gitlog-to-changelog: pass all command-line arguments to git-log
11664         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
11665         it is sometimes convenient to filter the commits in various ways.
11666         gitlog-to-changelog only allows --since to specify a start date,
11667         but git-log itself supports many other filtering mechanisms.
11668         At the moment, I want to filter by branch name.  Rather than
11669         adding a --branch option to gitlog-to-changelog, it seems more
11670         flexible to simply pass all options directly to git-log and let
11671         git do the work.  Notice that this effectively makes --since a
11672         redundant option for gitlog-to-changelog, but removing it would
11673         require current usage to change since calls would then require
11674         an additional '--'.
11675
11676 2008-12-21  Bruno Haible  <bruno@clisp.org>
11677
11678         * modules/mbsnrtowcs-tests: New file.
11679         * tests/test-mbsnrtowcs1.sh: New file.
11680         * tests/test-mbsnrtowcs2.sh: New file.
11681         * tests/test-mbsnrtowcs3.sh: New file.
11682         * tests/test-mbsnrtowcs4.sh: New file.
11683         * tests/test-mbsnrtowcs.c: New file.
11684
11685         New module 'mbsnrtowcs'.
11686         * lib/wchar.in.h (mbsnrtowcs): New declaration.
11687         * lib/mbsnrtowcs.c: New file.
11688         * lib/mbsrtowcs-state.c: New file.
11689         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
11690         (internal_state): Remove variable.
11691         * m4/mbsnrtowcs.m4: New file.
11692         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
11693         compilation units.
11694         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
11695         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
11696         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
11697         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
11698         * modules/mbsnrtowcs: New file.
11699         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
11700         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
11701         portability problem.
11702
11703 2008-12-21  Bruno Haible  <bruno@clisp.org>
11704
11705         Work around mbsrtowcs bug.
11706         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
11707         (gl_FUNC_MBSRTOWCS): Invoke it.
11708         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11709         m4/locale-zh.m4.
11710         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
11711
11712 2008-12-21  Bruno Haible  <bruno@clisp.org>
11713
11714         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
11715
11716 2008-12-21  Bruno Haible  <bruno@clisp.org>
11717
11718         Update doc for AIX.
11719         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
11720         16-bit wchar_t type.
11721         * doc/posix-functions/btowc.texi: Likewise.
11722         * doc/posix-functions/fgetwc.texi: Likewise.
11723         * doc/posix-functions/fgetws.texi: Likewise.
11724         * doc/posix-functions/fputwc.texi: Likewise.
11725         * doc/posix-functions/fputws.texi: Likewise.
11726         * doc/posix-functions/fwide.texi: Likewise.
11727         * doc/posix-functions/fwprintf.texi: Likewise.
11728         * doc/posix-functions/fwscanf.texi: Likewise.
11729         * doc/posix-functions/getwchar.texi: Likewise.
11730         * doc/posix-functions/getwc.texi: Likewise.
11731         * doc/posix-functions/iswalnum.texi: Likewise.
11732         * doc/posix-functions/iswalpha.texi: Likewise.
11733         * doc/posix-functions/iswblank.texi: Likewise.
11734         * doc/posix-functions/iswcntrl.texi: Likewise.
11735         * doc/posix-functions/iswctype.texi: Likewise.
11736         * doc/posix-functions/iswdigit.texi: Likewise.
11737         * doc/posix-functions/iswgraph.texi: Likewise.
11738         * doc/posix-functions/iswlower.texi: Likewise.
11739         * doc/posix-functions/iswprint.texi: Likewise.
11740         * doc/posix-functions/iswpunct.texi: Likewise.
11741         * doc/posix-functions/iswspace.texi: Likewise.
11742         * doc/posix-functions/iswupper.texi: Likewise.
11743         * doc/posix-functions/iswxdigit.texi: Likewise.
11744         * doc/posix-functions/mbrtowc.texi: Likewise.
11745         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11746         * doc/posix-functions/mbstowcs.texi: Likewise.
11747         * doc/posix-functions/mbtowc.texi: Likewise.
11748         * doc/posix-functions/putwchar.texi: Likewise.
11749         * doc/posix-functions/putwc.texi: Likewise.
11750         * doc/posix-functions/swprintf.texi: Likewise.
11751         * doc/posix-functions/tolower.texi: Likewise.
11752         * doc/posix-functions/toupper.texi: Likewise.
11753         * doc/posix-functions/towctrans.texi: Likewise.
11754         * doc/posix-functions/ungetwc.texi: Likewise.
11755         * doc/posix-functions/vswprintf.texi: Likewise.
11756         * doc/posix-functions/wcrtomb.texi: Likewise.
11757         * doc/posix-functions/wcscat.texi: Likewise.
11758         * doc/posix-functions/wcschr.texi: Likewise.
11759         * doc/posix-functions/wcscmp.texi: Likewise.
11760         * doc/posix-functions/wcscoll.texi: Likewise.
11761         * doc/posix-functions/wcscpy.texi: Likewise.
11762         * doc/posix-functions/wcscspn.texi: Likewise.
11763         * doc/posix-functions/wcsftime.texi: Likewise.
11764         * doc/posix-functions/wcslen.texi: Likewise.
11765         * doc/posix-functions/wcsncat.texi: Likewise.
11766         * doc/posix-functions/wcsncmp.texi: Likewise.
11767         * doc/posix-functions/wcsncpy.texi: Likewise.
11768         * doc/posix-functions/wcspbrk.texi: Likewise.
11769         * doc/posix-functions/wcsrchr.texi: Likewise.
11770         * doc/posix-functions/wcsrtombs.texi: Likewise.
11771         * doc/posix-functions/wcsspn.texi: Likewise.
11772         * doc/posix-functions/wcsstr.texi: Likewise.
11773         * doc/posix-functions/wcstod.texi: Likewise.
11774         * doc/posix-functions/wcstof.texi: Likewise.
11775         * doc/posix-functions/wcstoimax.texi: Likewise.
11776         * doc/posix-functions/wcstok.texi: Likewise.
11777         * doc/posix-functions/wcstold.texi: Likewise.
11778         * doc/posix-functions/wcstoll.texi: Likewise.
11779         * doc/posix-functions/wcstol.texi: Likewise.
11780         * doc/posix-functions/wcstombs.texi: Likewise.
11781         * doc/posix-functions/wcstoull.texi: Likewise.
11782         * doc/posix-functions/wcstoul.texi: Likewise.
11783         * doc/posix-functions/wcstoumax.texi: Likewise.
11784         * doc/posix-functions/wcswidth.texi: Likewise.
11785         * doc/posix-functions/wcsxfrm.texi: Likewise.
11786         * doc/posix-functions/wctob.texi: Likewise.
11787         * doc/posix-functions/wctomb.texi: Likewise.
11788         * doc/posix-functions/wctrans.texi: Likewise.
11789         * doc/posix-functions/wctype.texi: Likewise.
11790         * doc/posix-functions/wcwidth.texi: Likewise.
11791         * doc/posix-functions/wmemchr.texi: Likewise.
11792         * doc/posix-functions/wmemcmp.texi: Likewise.
11793         * doc/posix-functions/wmemcpy.texi: Likewise.
11794         * doc/posix-functions/wmemmove.texi: Likewise.
11795         * doc/posix-functions/wmemset.texi: Likewise.
11796         * doc/posix-functions/wprintf.texi: Likewise.
11797         * doc/posix-functions/wscanf.texi: Likewise.
11798
11799 2008-12-21  Bruno Haible  <bruno@clisp.org>
11800
11801         Update doc for HP-UX 11.11.
11802         * doc/posix-functions/btowc.texi: Clarify that the function is missing
11803         in HP-UX version 11.00, not in all versions of HP-UX 11.
11804         * doc/posix-functions/fwide.texi: Likewise.
11805         * doc/posix-functions/fwprintf.texi: Likewise.
11806         * doc/posix-functions/fwscanf.texi: Likewise.
11807         * doc/posix-functions/inet_ntop.texi: Likewise.
11808         * doc/posix-functions/inet_pton.texi: Likewise.
11809         * doc/posix-functions/mbrlen.texi: Likewise.
11810         * doc/posix-functions/mbrtowc.texi: Likewise.
11811         * doc/posix-functions/mbsinit.texi: Likewise.
11812         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11813         * doc/posix-functions/swprintf.texi: Likewise.
11814         * doc/posix-functions/swscanf.texi: Likewise.
11815         * doc/posix-functions/towctrans.texi: Likewise.
11816         * doc/posix-functions/vfwprintf.texi: Likewise.
11817         * doc/posix-functions/vswprintf.texi: Likewise.
11818         * doc/posix-functions/vwprintf.texi: Likewise.
11819         * doc/posix-functions/wcrtomb.texi: Likewise.
11820         * doc/posix-functions/wcsrtombs.texi: Likewise.
11821         * doc/posix-functions/wcsstr.texi: Likewise.
11822         * doc/posix-functions/wctob.texi: Likewise.
11823         * doc/posix-functions/wctrans.texi: Likewise.
11824         * doc/posix-functions/wmemchr.texi: Likewise.
11825         * doc/posix-functions/wmemcmp.texi: Likewise.
11826         * doc/posix-functions/wmemcpy.texi: Likewise.
11827         * doc/posix-functions/wmemmove.texi: Likewise.
11828         * doc/posix-functions/wmemset.texi: Likewise.
11829         * doc/posix-functions/wprintf.texi: Likewise.
11830         * doc/posix-functions/wscanf.texi: Likewise.
11831
11832 2008-12-21  Bruno Haible  <bruno@clisp.org>
11833
11834         Work around a portability problem.
11835         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
11836         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
11837
11838 2008-12-20  Bruno Haible  <bruno@clisp.org>
11839
11840         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
11841         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
11842         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
11843         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
11844         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
11845
11846         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
11847         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
11848         set.
11849         (GNULIB_defined_mbstate_t): New macro.
11850         (mbsinit): Redefine if REPLACE_MBSINIT is set.
11851         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
11852         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
11853         reuses the system's mbrtowc function but works around the bugs.
11854         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
11855         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
11856         macros.
11857         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
11858         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
11859         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
11860         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
11861         REPLACE_MBSINIT if mbsinit needs to be overridden.
11862         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
11863         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11864         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
11865         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11866         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11867         m4/locale-zh.m4.
11868         (Depends): Add mbsinit.
11869         * modules/mbsinit (Depends): Add mbrtowc.
11870         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
11871
11872 2008-12-20  Bruno Haible  <bruno@clisp.org>
11873
11874         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
11875         so that there are no conversion errors on AIX.
11876         * tests/test-mbsrtowcs.c (main): LIkewise.
11877
11878 2008-12-20  Bruno Haible  <bruno@clisp.org>
11879
11880         Work around wctob bug on Solaris <= 9.
11881         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
11882         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
11883         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
11884         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
11885         * modules/wctob (Files): Add m4/locale-fr.m4.
11886         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
11887
11888 2008-12-20  Bruno Haible  <bruno@clisp.org>
11889
11890         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
11891         /dev/null.
11892         * tests/test-select-in.sh: Likewise.
11893         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11894
11895 2008-12-20  Bruno Haible  <bruno@clisp.org>
11896
11897         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
11898         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
11899         Cygwin 1.5.x.
11900
11901 2008-12-20  Bruno Haible  <bruno@clisp.org>
11902
11903         Ensure mbstate_t is defined on HP-UX 11.11.
11904         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
11905         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
11906         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
11907         AC_USE_SYSTEM_EXTENSIONS.
11908         * modules/fnmatch (Depends-on): Add extensions.
11909         * modules/mbrlen (Depends-on): Likewise.
11910         * modules/mbrtowc (Depends-on): Likewise.
11911         * modules/mbsinit (Depends-on): Likewise.
11912         * modules/mbsrtowcs (Depends-on): Likewise.
11913         * modules/mbswidth (Depends-on): Likewise.
11914         * modules/quotearg (Depends-on): Likewise.
11915         * modules/strftime (Depends-on): Likewise.
11916
11917 2008-12-20  Bruno Haible  <bruno@clisp.org>
11918
11919         Ensure wctob is declared on IRIX 6.5.
11920         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
11921         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
11922         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
11923         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
11924         of HAVE_WCTOB.
11925         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
11926         HAVE_WCTOB.
11927         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
11928
11929 2008-12-19  Bruno Haible  <bruno@clisp.org>
11930
11931         * modules/mbsrtowcs-tests: New file.
11932         * tests/test-mbsrtowcs1.sh: New file.
11933         * tests/test-mbsrtowcs2.sh: New file.
11934         * tests/test-mbsrtowcs3.sh: New file.
11935         * tests/test-mbsrtowcs4.sh: New file.
11936         * tests/test-mbsrtowcs.c: New file.
11937
11938         New module 'mbsrtowcs'.
11939         * lib/wchar.in.h (mbsrtowcs): New declaration.
11940         * lib/mbsrtowcs.c: New file.
11941         * m4/mbsrtowcs.m4: New file.
11942         * modules/mbsrtowcs: New file.
11943         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
11944         HAVE_MBSRTOWCS.
11945         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
11946         HAVE_MBSRTOWCS.
11947         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
11948
11949 2008-12-19  Bruno Haible  <bruno@clisp.org>
11950
11951         New module 'mbrlen'.
11952         * lib/wchar.in.h (mbrlen): New declaration.
11953         * lib/mbrlen.c: New file.
11954         * m4/mbrlen.m4: New file.
11955         * modules/mbrlen: New file.
11956         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
11957         HAVE_MBRLEN.
11958         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
11959         HAVE_MBRLEN.
11960         * doc/posix-functions/mbrlen.texi: Document the new module.
11961
11962 2008-12-19  Bruno Haible  <bruno@clisp.org>
11963
11964         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
11965         * modules/mbrtowc (Depends-on): Add verify.
11966         Suggested by Paul Eggert.
11967
11968 2008-12-18  Bruno Haible  <bruno@clisp.org>
11969
11970         * modules/mbsinit-tests: New file.
11971         * tests/test-mbsinit.sh: New file.
11972         * tests/test-mbsinit.c: New file.
11973
11974 2008-12-18  Bruno Haible  <bruno@clisp.org>
11975
11976         * modules/mbrtowc-tests: New file.
11977         * tests/test-mbrtowc1.sh: New file.
11978         * tests/test-mbrtowc2.sh: New file.
11979         * tests/test-mbrtowc3.sh: New file.
11980         * tests/test-mbrtowc4.sh: New file.
11981         * tests/test-mbrtowc.c: New file.
11982
11983         New module 'mbrtowc'.
11984         * lib/wchar.in.h (mbstate_t): Override when the system does not have
11985         mbsinit and mbrtowc.
11986         (mbrtowc): New declaration.
11987         * lib/mbrtowc.c: New file.
11988         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
11989         * modules/mbrtowc: New file.
11990         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
11991         HAVE_MBRTOWC.
11992         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
11993         HAVE_MBRTOWC.
11994         * doc/posix-functions/mbrtowc.texi: Document the new module.
11995
11996 2008-12-18  Bruno Haible  <bruno@clisp.org>
11997
11998         New module 'wctob'.
11999         * lib/wchar.in.h (wctob): New declaration.
12000         * lib/wctob.c: New file.
12001         * m4/wctob.m4: New file.
12002         * modules/wctob: New file.
12003         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
12004         HAVE_WCTOB.
12005         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
12006         * doc/posix-functions/wctob.texi: Document the new module.
12007
12008 2008-12-18  Bruno Haible  <bruno@clisp.org>
12009
12010         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
12011         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
12012
12013 2008-12-18  Simon Josefsson  <simon@josefsson.org>
12014
12015         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
12016         G. Christensen" <tgc@jupiterrise.com>.
12017
12018         * lib/flock.c: Need to include errno.h.  Reported by "Tom
12019         G. Christensen" <tgc@jupiterrise.com>.
12020
12021         * lib/flock.c: Need to include string.h.  Reported by "Tom
12022         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
12023         <ebb9@byu.net>.
12024
12025 2008-12-18  Bruno Haible  <bruno@clisp.org>
12026
12027         * m4/locale-ja.m4: New file, from GNU gettext.
12028
12029 2008-12-17  Bruno Haible  <bruno@clisp.org>
12030
12031         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
12032         Suggested by Eric Blake.
12033
12034 2008-12-17  Bruno Haible  <bruno@clisp.org>
12035
12036         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
12037
12038 2008-12-17  Bruno Haible  <bruno@clisp.org>
12039
12040         * lib/mbsinit.c: Include verify.h. Verify an assumption.
12041         * modules/mbsinit (Depends-on): Add verify.
12042         Suggested by Paul Eggert.
12043
12044 2008-12-17  Bruno Haible  <bruno@clisp.org>
12045
12046         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
12047         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
12048         gl_FUNC_MBRTOWC.
12049         * m4/mbiter.m4 (gl_MBITER): LIkewise.
12050         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
12051         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
12052         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
12053         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
12054         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
12055         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
12056         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
12057         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
12058         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
12059         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
12060         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
12061         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
12062         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
12063         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
12064         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
12065         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
12066         * modules/trim (configure.ac): Likewise.
12067
12068 2008-12-17  Bruno Haible  <bruno@clisp.org>
12069
12070         * modules/btowc-tests: New file.
12071         * tests/test-btowc1.sh: New file.
12072         * tests/test-btowc2.sh: New file.
12073         * tests/test-btowc.c: New file.
12074
12075         New module 'btowc'.
12076         * lib/wchar.in.h (btowc): New declaration.
12077         * lib/btowc.c: New file.
12078         * m4/btowc.m4: New file.
12079         * modules/btowc: New file.
12080         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
12081         HAVE_BTOWC.
12082         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
12083         * doc/posix-functions/btowc.texi: Document the new module.
12084
12085 2008-12-17  Bruno Haible  <bruno@clisp.org>
12086
12087         New module 'mbsinit'.
12088         * lib/wchar.in.h (mbsinit): New declaration.
12089         * lib/mbsinit.c: New file.
12090         * m4/mbsinit.m4: New file.
12091         * modules/mbsinit: New file.
12092         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
12093         HAVE_MBSINIT.
12094         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
12095         HAVE_MBSINIT.
12096         * doc/posix-functions/mbsinit.texi: Document the new module.
12097
12098 2008-12-16  Bruno Haible  <bruno@clisp.org>
12099
12100         * lib/unistd.in.h: Add comment.
12101         * tests/test-environ.c: Don't include <stdlib.h>.
12102
12103 2008-12-16  Bruno Haible  <bruno@clisp.org>
12104
12105         * lib/parse-duration.h (parse_duration): Document return value
12106         convention.
12107         * lib/parse-duration.c: Include specification header first. Add
12108         comments.
12109         (_): Remove macro.
12110         (parse_year_month_day, parse_hour_minute_second): Move side effects
12111         outside of strchr call.
12112         (parse_non_iso8601): Move side effects outside of isspace call.
12113         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
12114         call.
12115
12116 2008-12-16  Bruno Haible  <bruno@clisp.org>
12117
12118         * tests/test-parse-duration.sh: Produce no output when the test
12119         succeeds.
12120
12121 2008-12-16  Bruno Haible  <bruno@clisp.org>
12122
12123         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
12124         expressions.
12125
12126 2008-12-15  Bruno Haible  <bruno@clisp.org>
12127
12128         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
12129         * doc/glibc-functions/flistxattr.texi: Likewise.
12130         * doc/glibc-functions/fopencookie.texi: Likewise.
12131         * doc/glibc-functions/fremovexattr.texi: Likewise.
12132         * doc/glibc-functions/fsetxattr.texi: Likewise.
12133         * doc/glibc-functions/getxattr.texi: Likewise.
12134         * doc/glibc-functions/lgetxattr.texi: Likewise.
12135         * doc/glibc-functions/listxattr.texi: Likewise.
12136         * doc/glibc-functions/llistxattr.texi: Likewise.
12137         * doc/glibc-functions/lremovexattr.texi: Likewise.
12138         * doc/glibc-functions/lsetxattr.texi: Likewise.
12139         * doc/glibc-functions/removexattr.texi: Likewise.
12140         * doc/glibc-functions/setxattr.texi: Likewise.
12141         * doc/posix-functions/open_memstream.texi: Likewise.
12142
12143 2008-12-15  Eric Blake  <ebb9@byu.net>
12144
12145         Update doc for cygwin 1.7.
12146         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
12147         functions.
12148         * doc/posix-functions/fchmodat.texi: Likewise.
12149         * doc/posix-functions/fchownat.texi: Likewise.
12150         * doc/posix-functions/fdopendir.texi: Likewise.
12151         * doc/posix-functions/fmemopen.texi: Likewise.
12152         * doc/posix-functions/freeaddrinfo.texi: Likewise.
12153         * doc/posix-functions/fstatat.texi: Likewise.
12154         * doc/posix-functions/futimens.texi: Likewise.
12155         * doc/posix-functions/gai_strerror.texi: Likewise.
12156         * doc/posix-functions/getaddrinfo.texi: Likewise.
12157         * doc/posix-functions/getnameinfo.texi: Likewise.
12158         * doc/posix-functions/if_freenameindex.texi: Likewise.
12159         * doc/posix-functions/if_indextoname.texi: Likewise.
12160         * doc/posix-functions/if_nameindex.texi: Likewise.
12161         * doc/posix-functions/if_nametoindex.texi: Likewise.
12162         * doc/posix-functions/insque.texi: Likewise.
12163         * doc/posix-functions/linkat.texi: Likewise.
12164         * doc/posix-functions/llrint.texi: Likewise.
12165         * doc/posix-functions/llrintf.texi: Likewise.
12166         * doc/posix-functions/llrintl.texi: Likewise.
12167         * doc/posix-functions/lockf.texi: Likewise.
12168         * doc/posix-functions/lrintl.texi: Likewise.
12169         * doc/posix-functions/mkdirat.texi: Likewise.
12170         * doc/posix-functions/mkfifoat.texi: Likewise.
12171         * doc/posix-functions/mknodat.texi: Likewise.
12172         * doc/posix-functions/mq_close.texi: Likewise.
12173         * doc/posix-functions/mq_getattr.texi: Likewise.
12174         * doc/posix-functions/mq_notify.texi: Likewise.
12175         * doc/posix-functions/mq_open.texi: Likewise.
12176         * doc/posix-functions/mq_receive.texi: Likewise.
12177         * doc/posix-functions/mq_send.texi: Likewise.
12178         * doc/posix-functions/mq_setattr.texi: Likewise.
12179         * doc/posix-functions/mq_timedreceive.texi: Likewise.
12180         * doc/posix-functions/mq_timedsend.texi: Likewise.
12181         * doc/posix-functions/mq_unlink.texi: Likewise.
12182         * doc/posix-functions/open_memstream.texi: Likewise.
12183         * doc/posix-functions/openat.texi: Likewise.
12184         * doc/posix-functions/posix_fadvise.texi: Likewise.
12185         * doc/posix-functions/posix_fallocate.texi: Likewise.
12186         * doc/posix-functions/posix_madvise.texi: Likewise.
12187         * doc/posix-functions/posix_memalign.texi: Likewise.
12188         * doc/posix-functions/posix_openpt.texi: Likewise.
12189         * doc/posix-functions/readlinkat.texi: Likewise.
12190         * doc/posix-functions/remque.texi: Likewise.
12191         * doc/posix-functions/renameat.texi: Likewise.
12192         * doc/posix-functions/rintl.texi: Likewise.
12193         * doc/posix-functions/sem_unlink.texi: Likewise.
12194         * doc/posix-functions/shm_open.texi: Likewise.
12195         * doc/posix-functions/shm_unlink.texi: Likewise.
12196         * doc/posix-functions/signgam.texi: Likewise.
12197         * doc/posix-functions/sigset.texi: Likewise.
12198         * doc/posix-functions/stpcpy.texi: Likewise.
12199         * doc/posix-functions/stpncpy.texi: Likewise.
12200         * doc/posix-functions/strerror.texi: Likewise.
12201         * doc/posix-functions/strtod.texi: Likewise.
12202         * doc/posix-functions/symlinkat.texi: Likewise.
12203         * doc/posix-functions/unlinkat.texi: Likewise.
12204         * doc/posix-functions/utimensat.texi: Likewise.
12205         * doc/glibc-functions/bindresvport.texi: Likewise.
12206         * doc/glibc-functions/dn_expand.texi: Likewise.
12207         * doc/glibc-functions/exp10.texi: Likewise.
12208         * doc/glibc-functions/exp10f.texi: Likewise.
12209         * doc/glibc-functions/fgetxattr.texi: Likewise.
12210         * doc/glibc-functions/flistxattr.texi: Likewise.
12211         * doc/glibc-functions/fopencookie.texi: Likewise.
12212         * doc/glibc-functions/freeifaddrs.texi: Likewise.
12213         * doc/glibc-functions/fremovexattr.texi: Likewise.
12214         * doc/glibc-functions/fsetxattr.texi: Likewise.
12215         * doc/glibc-functions/getifaddrs.texi: Likewise.
12216         * doc/glibc-functions/getxattr.texi: Likewise.
12217         * doc/glibc-functions/lgetxattr.texi: Likewise.
12218         * doc/glibc-functions/listxattr.texi: Likewise.
12219         * doc/glibc-functions/llistxattr.texi: Likewise.
12220         * doc/glibc-functions/lremovexattr.texi: Likewise.
12221         * doc/glibc-functions/lsetxattr.texi: Likewise.
12222         * doc/glibc-functions/pow10.texi: Likewise.
12223         * doc/glibc-functions/pow10f.texi: Likewise.
12224         * doc/glibc-functions/rcmd_af.texi: Likewise.
12225         * doc/glibc-functions/removexattr.texi: Likewise.
12226         * doc/glibc-functions/res_init.texi: Likewise.
12227         * doc/glibc-functions/res_mkquery.texi: Likewise.
12228         * doc/glibc-functions/res_query.texi: Likewise.
12229         * doc/glibc-functions/res_querydomain.texi: Likewise.
12230         * doc/glibc-functions/res_send.texi: Likewise.
12231         * doc/glibc-functions/rresvport_af.texi: Likewise.
12232         * doc/glibc-functions/setxattr.texi: Likewise.
12233         * doc/glibc-functions/strcasestr.texi: Likewise.
12234
12235 2008-12-15  Bruno Haible  <bruno@clisp.org>
12236
12237         Fix compilation error on OSF/1 4.0.
12238         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
12239         <sys/time.h>, simply delegate to the system header.
12240         Reported by Daniel Richard G. <oss@teragram.com>.
12241
12242 2008-12-15  Bruno Haible  <bruno@clisp.org>
12243
12244         * doc/posix-functions/openat.texi: Mention the 'openat' module.
12245         * doc/posix-functions/fchmodat.texi: Likewise.
12246         * doc/posix-functions/fchownat.texi: Likewise.
12247         * doc/posix-functions/fdopendir.texi: Likewise.
12248         * doc/posix-functions/fstatat.texi: Likewise.
12249         * doc/posix-functions/mkdirat.texi: Likewise.
12250         * doc/posix-functions/unlinkat.texi: Likewise.
12251
12252 2008-12-14  Bruno Haible  <bruno@clisp.org>
12253
12254         Update doc for POSIX:2008.
12255         * doc/posix-functions/faccessat.texi: New file.
12256         * doc/posix-functions/fchmodat.texi: New file.
12257         * doc/posix-functions/fchownat.texi: New file.
12258         * doc/posix-functions/fdopendir.texi: New file.
12259         * doc/posix-functions/fstatat.texi: New file.
12260         * doc/posix-functions/futimens.texi: New file.
12261         * doc/posix-functions/linkat.texi: New file.
12262         * doc/posix-functions/mkdirat.texi: New file.
12263         * doc/posix-functions/mkfifoat.texi: New file.
12264         * doc/posix-functions/mknodat.texi: New file.
12265         * doc/posix-functions/open_wmemstream.texi: New file.
12266         * doc/posix-functions/openat.texi: New file.
12267         * doc/posix-functions/psiginfo.texi: New file.
12268         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
12269         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
12270         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
12271         * doc/posix-functions/readlinkat.texi: New file.
12272         * doc/posix-functions/renameat.texi: New file.
12273         * doc/posix-functions/strerror_l.texi: New file.
12274         * doc/posix-functions/symlinkat.texi: New file.
12275         * doc/posix-functions/unlinkat.texi: New file.
12276         * doc/posix-functions/utimensat.texi: New file.
12277         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12278
12279 2008-12-14  Bruno Haible  <bruno@clisp.org>
12280
12281         Update doc for POSIX:2008.
12282         * doc/posix-functions/alphasort.texi: Renamed from
12283         doc/glibc-functions/alphasort.texi.
12284         * doc/posix-functions/dirfd.texi: Renamed from
12285         doc/glibc-functions/dirfd.texi.
12286         * doc/posix-functions/dprintf.texi: Renamed from
12287         doc/glibc-functions/dprintf.texi.
12288         * doc/posix-functions/duplocale.texi: Renamed from
12289         doc/glibc-functions/duplocale.texi.
12290         * doc/posix-functions/fexecve.texi: Renamed from
12291         doc/glibc-functions/fexecve.texi.
12292         * doc/posix-functions/fmemopen.texi: Renamed from
12293         doc/glibc-functions/fmemopen.texi.
12294         * doc/posix-functions/freelocale.texi: Renamed from
12295         doc/glibc-functions/freelocale.texi.
12296         * doc/posix-functions/getdate_err.texi: Renamed from
12297         doc/glibc-functions/getdate_err.texi.
12298         * doc/posix-functions/isalnum_l.texi: Renamed from
12299         doc/glibc-functions/isalnum_l.texi.
12300         * doc/posix-functions/isalpha_l.texi: Renamed from
12301         doc/glibc-functions/isalpha_l.texi.
12302         * doc/posix-functions/isblank_l.texi: Renamed from
12303         doc/glibc-functions/isblank_l.texi.
12304         * doc/posix-functions/iscntrl_l.texi: Renamed from
12305         doc/glibc-functions/iscntrl_l.texi.
12306         * doc/posix-functions/isdigit_l.texi: Renamed from
12307         doc/glibc-functions/isdigit_l.texi.
12308         * doc/posix-functions/isgraph_l.texi: Renamed from
12309         doc/glibc-functions/isgraph_l.texi.
12310         * doc/posix-functions/islower_l.texi: Renamed from
12311         doc/glibc-functions/islower_l.texi.
12312         * doc/posix-functions/isprint_l.texi: Renamed from
12313         doc/glibc-functions/isprint_l.texi.
12314         * doc/posix-functions/ispunct_l.texi: Renamed from
12315         doc/glibc-functions/ispunct_l.texi.
12316         * doc/posix-functions/isspace_l.texi: Renamed from
12317         doc/glibc-functions/isspace_l.texi.
12318         * doc/posix-functions/isupper_l.texi: Renamed from
12319         doc/glibc-functions/isupper_l.texi.
12320         * doc/posix-functions/iswalnum_l.texi: Renamed from
12321         doc/glibc-functions/iswalnum_l.texi.
12322         * doc/posix-functions/iswalpha_l.texi: Renamed from
12323         doc/glibc-functions/iswalpha_l.texi.
12324         * doc/posix-functions/iswblank_l.texi: Renamed from
12325         doc/glibc-functions/iswblank_l.texi.
12326         * doc/posix-functions/iswcntrl_l.texi: Renamed from
12327         doc/glibc-functions/iswcntrl_l.texi.
12328         * doc/posix-functions/iswctype_l.texi: Renamed from
12329         doc/glibc-functions/iswctype_l.texi.
12330         * doc/posix-functions/iswdigit_l.texi: Renamed from
12331         doc/glibc-functions/iswdigit_l.texi.
12332         * doc/posix-functions/iswgraph_l.texi: Renamed from
12333         doc/glibc-functions/iswgraph_l.texi.
12334         * doc/posix-functions/iswlower_l.texi: Renamed from
12335         doc/glibc-functions/iswlower_l.texi.
12336         * doc/posix-functions/iswprint_l.texi: Renamed from
12337         doc/glibc-functions/iswprint_l.texi.
12338         * doc/posix-functions/iswpunct_l.texi: Renamed from
12339         doc/glibc-functions/iswpunct_l.texi.
12340         * doc/posix-functions/iswspace_l.texi: Renamed from
12341         doc/glibc-functions/iswspace_l.texi.
12342         * doc/posix-functions/iswupper_l.texi: Renamed from
12343         doc/glibc-functions/iswupper_l.texi.
12344         * doc/posix-functions/iswxdigit_l.texi: Renamed from
12345         doc/glibc-functions/iswxdigit_l.texi.
12346         * doc/posix-functions/isxdigit_l.texi: Renamed from
12347         doc/glibc-functions/isxdigit_l.texi.
12348         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
12349         doc/glibc-functions/mbsnrtowcs.texi.
12350         * doc/posix-functions/mkdtemp.texi: Renamed from
12351         doc/glibc-functions/mkdtemp.texi.
12352         * doc/posix-functions/newlocale.texi: Renamed from
12353         doc/glibc-functions/newlocale.texi.
12354         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
12355         doc/glibc-functions/nl_langinfo_l.texi.
12356         * doc/posix-functions/open_memstream.texi: Renamed from
12357         doc/glibc-functions/open_memstream.texi.
12358         * doc/posix-functions/opterr.texi: Renamed from
12359         doc/glibc-functions/opterr.texi.
12360         * doc/posix-functions/optind.texi: Renamed from
12361         doc/glibc-functions/optind.texi.
12362         * doc/posix-functions/optopt.texi: Renamed from
12363         doc/glibc-functions/optopt.texi.
12364         * doc/posix-functions/psignal.texi: Renamed from
12365         doc/glibc-functions/psignal.texi.
12366         * doc/posix-functions/scandir.texi: Renamed from
12367         doc/glibc-functions/scandir.texi.
12368         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
12369         doc/glibc-functions/sched_get_priority_min.texi.
12370         * doc/posix-functions/signgam.texi: Renamed from
12371         doc/glibc-functions/signgam.texi.
12372         * doc/posix-functions/stpcpy.texi: Renamed from
12373         doc/glibc-functions/stpcpy.texi.
12374         * doc/posix-functions/stpncpy.texi: Renamed from
12375         doc/glibc-functions/stpncpy.texi.
12376         * doc/posix-functions/strcasecmp_l.texi: Renamed from
12377         doc/glibc-functions/strcasecmp_l.texi.
12378         * doc/posix-functions/strcoll_l.texi: Renamed from
12379         doc/glibc-functions/strcoll_l.texi.
12380         * doc/posix-functions/strfmon_l.texi: Renamed from
12381         doc/glibc-functions/strfmon_l.texi.
12382         * doc/posix-functions/strftime_l.texi: Renamed from
12383         doc/glibc-functions/strftime_l.texi.
12384         * doc/posix-functions/strncasecmp_l.texi: Renamed from
12385         doc/glibc-functions/strncasecmp_l.texi.
12386         * doc/posix-functions/strndup.texi: Renamed from
12387         doc/glibc-functions/strndup.texi.
12388         * doc/posix-functions/strnlen.texi: Renamed from
12389         doc/glibc-functions/strnlen.texi.
12390         * doc/posix-functions/strsignal.texi: Renamed from
12391         doc/glibc-functions/strsignal.texi.
12392         * doc/posix-functions/strxfrm_l.texi: Renamed from
12393         doc/glibc-functions/strxfrm_l.texi.
12394         * doc/posix-functions/timer_gettime.texi: Renamed from
12395         doc/glibc-functions/timer_gettime.texi.
12396         * doc/posix-functions/tolower_l.texi: Renamed from
12397         doc/glibc-functions/tolower_l.texi.
12398         * doc/posix-functions/toupper_l.texi: Renamed from
12399         doc/glibc-functions/toupper_l.texi.
12400         * doc/posix-functions/towctrans_l.texi: Renamed from
12401         doc/glibc-functions/towctrans_l.texi.
12402         * doc/posix-functions/towlower_l.texi: Renamed from
12403         doc/glibc-functions/towlower_l.texi.
12404         * doc/posix-functions/towupper_l.texi: Renamed from
12405         doc/glibc-functions/towupper_l.texi.
12406         * doc/posix-functions/uselocale.texi: Renamed from
12407         doc/glibc-functions/uselocale.texi.
12408         * doc/posix-functions/vdprintf.texi: Renamed from
12409         doc/glibc-functions/vdprintf.texi.
12410         * doc/posix-functions/wcpcpy.texi:
12411         Renamed from doc/glibc-functions/wcpcpy.texi.
12412         * doc/posix-functions/wcpncpy.texi: Renamed from
12413         doc/glibc-functions/wcpncpy.texi.
12414         * doc/posix-functions/wcscasecmp.texi: Renamed from
12415         doc/glibc-functions/wcscasecmp.texi.
12416         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
12417         doc/glibc-functions/wcscasecmp_l.texi.
12418         * doc/posix-functions/wcscoll_l.texi: Renamed from
12419         doc/glibc-functions/wcscoll_l.texi.
12420         * doc/posix-functions/wcsdup.texi: Renamed from
12421         doc/glibc-functions/wcsdup.texi.
12422         * doc/posix-functions/wcsncasecmp.texi: Renamed from
12423         doc/glibc-functions/wcsncasecmp.texi.
12424         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
12425         doc/glibc-functions/wcsncasecmp_l.texi.
12426         * doc/posix-functions/wcsnlen.texi: Renamed from
12427         doc/glibc-functions/wcsnlen.texi.
12428         * doc/posix-functions/wcsnrtombs.texi: Renamed from
12429         doc/glibc-functions/wcsnrtombs.texi.
12430         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
12431         doc/glibc-functions/wcsxfrm_l.texi.
12432         * doc/posix-functions/wctrans_l.texi: Renamed from
12433         doc/glibc-functions/wctrans_l.texi.
12434         * doc/posix-functions/wctype_l.texi: Renamed from
12435         doc/glibc-functions/wctype_l.texi.
12436         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12437         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
12438         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
12439         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
12440         these subsections.
12441         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
12442         Remove sections.
12443
12444 2008-12-14  Bruno Haible  <bruno@clisp.org>
12445
12446         Update doc for POSIX:2008.
12447         * doc/posix-functions/*.texi: Update URL of POSIX specification.
12448
12449 2008-12-14  Bruno Haible  <bruno@clisp.org>
12450
12451         Update doc for POSIX:2008.
12452         * doc/pastposix-functions/bcmp.texi: Renamed from
12453         doc/posix-functions/bcmp.texi.
12454         * doc/pastposix-functions/bcopy.texi: Renamed from
12455         doc/posix-functions/bcopy.texi.
12456         * doc/pastposix-functions/bsd_signal.texi: Renamed from
12457         doc/posix-functions/bsd_signal.texi.
12458         * doc/pastposix-functions/bzero.texi: Renamed from
12459         doc/posix-functions/bzero.texi.
12460         * doc/pastposix-functions/ecvt.texi: Renamed from
12461         doc/posix-functions/ecvt.texi.
12462         * doc/pastposix-functions/fcvt.texi: Renamed from
12463         doc/posix-functions/fcvt.texi.
12464         * doc/pastposix-functions/ftime.texi: Renamed from
12465         doc/posix-functions/ftime.texi.
12466         * doc/pastposix-functions/gcvt.texi: Renamed from
12467         doc/posix-functions/gcvt.texi.
12468         * doc/pastposix-functions/getcontext.texi: Renamed from
12469         doc/posix-functions/getcontext.texi.
12470         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
12471         doc/posix-functions/gethostbyaddr.texi.
12472         * doc/pastposix-functions/gethostbyname.texi: Renamed from
12473         doc/posix-functions/gethostbyname.texi.
12474         * doc/pastposix-functions/getwd.texi: Renamed from
12475         doc/posix-functions/getwd.texi.
12476         * doc/pastposix-functions/h_errno.texi: Renamed from
12477         doc/posix-functions/h_errno.texi.
12478         * doc/pastposix-functions/index.texi: Renamed from
12479         doc/posix-functions/index.texi.
12480         * doc/pastposix-functions/makecontext.texi: Renamed from
12481         doc/posix-functions/makecontext.texi.
12482         * doc/pastposix-functions/mktemp.texi: Renamed from
12483         doc/posix-functions/mktemp.texi.
12484         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
12485         doc/posix-functions/pthread_attr_getstackaddr.texi.
12486         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
12487         doc/posix-functions/pthread_attr_setstackaddr.texi.
12488         * doc/pastposix-functions/rindex.texi: Renamed from
12489         doc/posix-functions/rindex.texi.
12490         * doc/pastposix-functions/scalb.texi: Renamed from
12491         doc/posix-functions/scalb.texi.
12492         * doc/pastposix-functions/setcontext.texi: Renamed from
12493         doc/posix-functions/setcontext.texi.
12494         * doc/pastposix-functions/swapcontext.texi: Renamed from
12495         doc/posix-functions/swapcontext.texi.
12496         * doc/pastposix-functions/ualarm.texi: Renamed from
12497         doc/posix-functions/ualarm.texi.
12498         * doc/pastposix-functions/usleep.texi: Renamed from
12499         doc/posix-functions/usleep.texi.
12500         * doc/pastposix-functions/vfork.texi: Renamed from
12501         doc/posix-functions/vfork.texi.
12502         * doc/pastposix-functions/wcswcs.texi: Renamed from
12503         doc/posix-functions/wcswcs.texi.
12504         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
12505         (Function Substitutes): Update.
12506
12507 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12508
12509         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
12510         m4/strerror.m4.
12511
12512 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12513             Bruno Haible  <bruno@clisp.org>
12514
12515         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
12516
12517 2008-12-13  Bruno Haible  <bruno@clisp.org>
12518
12519         * modules/strtoull (Depends-on): Remove unistd.
12520
12521 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12522
12523         * modules/strtoull (Depends-on): Add stdlib.
12524
12525 2008-12-11  Simon Josefsson  <simon@josefsson.org>
12526
12527         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
12528
12529 2008-12-10  Jim Meyering  <meyering@redhat.com>
12530
12531         gl_ASSERT: don't say assertions are disabled when they're not
12532         * m4/assert.m4 (gl_ASSERT): Do not make configure report
12533         "checking whether to enable assertions... no", when they are in
12534         fact enabled.  This is solely a bug in the output of configure.
12535         In spite of saying "no", NDEBUG was not defined in that case.
12536         Also, as noted by Eric Blake, leave assertions enabled upon
12537         --enable-assert=INVALID.
12538
12539 2008-12-10  Bruno Haible  <bruno@clisp.org>
12540
12541         Change MODULES.html to refer to POSIX:2008 where possible.
12542         * MODULES.html.sh (POSIX2008_URL): New variable.
12543         (posix_headers): Remove sys/timeb, ucontext.
12544         (posix2001_headers): New variable.
12545         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
12546         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
12547         index, makecontext, mktemp, pthread_attr_getstackaddr,
12548         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
12549         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
12550         (posix2001_functions): New variable.
12551         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
12552         otherwise.
12553
12554 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12555
12556         add missing include to parse-duration.c
12557         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
12558         * modules/parse-duration (Depends-on): Add xalloc.
12559
12560         fix sed script reading maint.mk
12561         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
12562         (syntax-check-rules): Use it.
12563
12564 2008-12-09  Bruno Haible  <bruno@clisp.org>
12565
12566         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
12567         MacOS X 10.4/PowerPC.
12568         Reported by Simon Josefsson.
12569
12570 2008-12-08  Jim Meyering  <meyering@redhat.com>
12571
12572         work around mingw's lack of some S_IF definitions
12573         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
12574         Reported by Simon Josefsson.
12575
12576 2008-12-08  Bruno Haible  <bruno@clisp.org>
12577
12578         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
12579         applied to variables. Needed on MacOS X 10.4/PowerPC.
12580         Reported by Simon Josefsson.
12581
12582 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
12583         and Eric Blake  <ebb9@byu.net>
12584
12585         assert: honor --enable-assert
12586         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
12587         order to honor --enable-assert, rather than treating it as a
12588         synonym for --disable-assert.
12589
12590 2008-12-08  Jim Meyering  <meyering@redhat.com>
12591
12592         * lib/posixtm.c: Remove now-useless declaration of mktime.
12593
12594         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
12595
12596 2008-12-07  Bruno Haible  <bruno@clisp.org>
12597
12598         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
12599         test_once): Mark functions as static.
12600         * tests/test-tls.c (test_tls): Likewise.
12601
12602 2008-12-07  Bruno Haible  <bruno@clisp.org>
12603
12604         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
12605         iconv_register_autodetect.
12606
12607 2008-12-07  Jim Meyering  <meyering@redhat.com>
12608
12609         posixtm.c: avoid a warning
12610         * lib/posixtm.c (posixtime): Don't initialize tm0.
12611         It's no longer needed to placate gcc4's -Wuninitialized,
12612         and the attempt to placate would elicit a new warning.
12613
12614         unicodeio.c: mark unused parameters
12615         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12616         (fallback_failure_callback): Likewise.
12617
12618 2008-12-07  Bruno Haible  <bruno@clisp.org>
12619
12620         * gnulib-tool (func_create_testdir): When building the tests
12621         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
12622         Reported by Simon Josefsson.
12623
12624 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12625
12626         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
12627
12628 2008-12-06  Bruno Haible  <bruno@clisp.org>
12629
12630         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
12631         Suggested by Eric Blake.
12632
12633 2008-12-06  Bruno Haible  <bruno@clisp.org>
12634
12635         Fix a c-stack test failure on MacOS X.
12636         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
12637         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
12638         handler for SIGBUS as well.
12639         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
12640         install a signal handler for SIGBUS as well.
12641         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
12642
12643 2008-12-06  Bruno Haible  <bruno@clisp.org>
12644
12645         Advocacy documentation.
12646         * doc/gnulib-intro.texi (Benefits): New section.
12647         * doc/gnulib.texi: Update.
12648
12649 2008-12-06  Bruno Haible  <bruno@clisp.org>
12650
12651         Document the 'manywarnings' module.
12652         * doc/manywarnings.texi: New file.
12653         * doc/gnulib.texi: Include it.
12654
12655 2008-12-05  Eric Blake  <ebb9@byu.net>
12656
12657         tests: silence some gcc warnings
12658         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
12659         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
12660         type mismatches.
12661
12662 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12663             Bruno Haible  <bruno@clisp.org>
12664
12665         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
12666
12667 2008-11-29  Jim Meyering  <meyering@redhat.com>
12668
12669         unicodeio.c: mark unused parameters
12670         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12671         (fallback_failure_callback): Likewise.
12672
12673         fts: fix a thinko
12674         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
12675         (set_stat_type): Return S_IF*-valued "type" directly.
12676         Prompted by James Youngman's spotting a related bug.
12677         Confirmed by further testing through find.
12678
12679         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
12680         * lib/fts.c (D_TYPE): Define.
12681         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
12682         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
12683         (s_ifmt_shift_bits): New function.
12684         (set_stat_type): New function.
12685         (fts_build): When not calling fts_stat, call set_stat_type
12686         to propagate dirent.d_type info to fts_read caller.
12687         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
12688         fts_statp->st_mode type information may be valid.
12689
12690 2008-11-28  Simon Josefsson  <simon@josefsson.org>
12691
12692         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
12693         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
12694         <sds@gnu.org>.
12695
12696 2008-11-20  Bruno Haible  <bruno@clisp.org>
12697
12698         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
12699         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
12700         INCLUDE_NEXT.
12701         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
12702         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
12703         * modules/math (Makefile.am): Substitute
12704         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
12705         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
12706
12707 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
12708             Bruno Haible  <bruno@clisp.org>
12709
12710         * lib/stdint.in.h: Define all type macros so that their expansion is
12711         a single typedef'ed token. Fixes a compilation failure in Boost which
12712         does "using ::int8_t;".
12713
12714 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12715
12716         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
12717         gl_MANYWARN_ALL_GCC.
12718         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
12719         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
12720         * modules/manywarnings: New file.
12721         * MODULES.html.sh: Mention manywarnings module.
12722
12723 2008-11-18  Bruno Haible  <bruno@clisp.org>
12724
12725         * doc/gnulib-tool.texi (Unit tests): New section.
12726
12727 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12728
12729         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
12730         paths like 'lib/po/foo.po'.
12731
12732 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12733
12734         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
12735         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
12736
12737 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12738
12739         * m4/warnings.m4: Use CPPFLAGS to really check whether the
12740         parameter works.
12741
12742 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12743
12744         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
12745
12746 2008-11-17  Bruce Korb  <bkorb@gnu.org>
12747
12748         * modules/parse-duration-tests: New file.
12749         * tests/test-parse-duration.sh: New file.
12750         * tests/test-parse-duration.c: New file.
12751
12752         New module 'parse-duration'.
12753         * lib/parse-duration.h: New file.
12754         * lib/parse-duration.c: New file.
12755         * modules/parse-duration: New file.
12756
12757 2008-11-17  Bruno Haible  <bruno@clisp.org>
12758
12759         * tests/test-select-out.sh: Comment out the first pipe test.
12760         Reported by Simon Josefsson.
12761
12762 2008-11-17  Bruno Haible  <bruno@clisp.org>
12763
12764         * modules/getaddrinfo (Depends-on): Add servent, hostent.
12765         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
12766         gl_HOSTENT.
12767
12768 2008-11-17  Bruno Haible  <bruno@clisp.org>
12769
12770         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
12771         -lnetwork and -lnet. Needed for Haiku and BeOS.
12772
12773 2008-11-16  Bruno Haible  <bruno@clisp.org>
12774
12775         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
12776
12777 2008-11-16  Bruno Haible  <bruno@clisp.org>
12778
12779         Avoid test failure on Haiku.
12780         * tests/test-fsync.c: Include <errno.h>.
12781         (main): Don't require that fsync (0) fails.
12782
12783 2008-11-15  Bruno Haible  <bruno@clisp.org>
12784
12785         New module 'hostent'.
12786         * modules/hostent: New file.
12787         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
12788
12789 2008-11-15  Bruno Haible  <bruno@clisp.org>
12790
12791         New module 'servent'.
12792         * modules/servent: New file.
12793         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
12794
12795 2008-11-15  Bruno Haible  <bruno@clisp.org>
12796
12797         Avoid generating same test program with two different rules.
12798         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
12799         test-frexp to test-frexp-nolibm.
12800         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
12801         test-frexpl to test-frexpl-nolibm.
12802
12803 2008-11-15  Bruno Haible  <bruno@clisp.org>
12804
12805         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
12806         $(FREXPL_LIBM).
12807
12808 2008-11-15  Bruno Haible  <bruno@clisp.org>
12809
12810         * lib/netdb.in.h: Activate the definitions also when the system's
12811         <netdb.h> has 'struct addrinfo'.
12812         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
12813         EAI_OVERFLOW or AI_NUMERICSERV.
12814         * doc/posix-headers/netdb.texi: Document the problem.
12815
12816 2008-11-15  Bruno Haible  <bruno@clisp.org>
12817
12818         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
12819
12820         Make the 'sched' module work on platforms where <sched.h> exists but
12821         is incomplete (such as Haiku).
12822         * lib/sched.in.h; Include the system's <sched.h> if it exists.
12823         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
12824         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
12825         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
12826         HAVE_STRUCT_SCHED_PARAM.
12827         * modules/sched (Depends-on): Add include_next.
12828         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
12829         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
12830         * doc/posix-headers/sched.texi: Document the issue.
12831
12832 2008-11-13  Jim Meyering  <meyering@redhat.com>
12833
12834         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
12835         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
12836         test would fail due to the difference in the Report bugs to ...
12837         line.  The expected address is empty, "<>", while the actual
12838         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
12839
12840 2008-11-12  Bruno Haible  <bruno@clisp.org>
12841
12842         lstat: don't compile lstat.c on systems lacking lstat
12843         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
12844         which don't have lstat; this is handled by lib/sys_stat.in.h already.
12845         Reported by Daniel P. Berrange via Jim Meyering.
12846
12847 2008-11-12  Jim Meyering  <meyering@redhat.com>
12848
12849         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
12850
12851 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12852
12853         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
12854         instead.
12855
12856 2008-11-12  Bruno Haible  <bruno@clisp.org>
12857
12858         * lib/unicodeio.c: Include unistr.h.
12859         (utf8_wctomb): Remove function.
12860         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
12861
12862 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12863
12864         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
12865         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
12866         <bruno@clisp.org>.
12867         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
12868
12869 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12870
12871         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
12872         * doc/gnulib.texi: Add section for warnings.
12873
12874 2008-11-11  Bruno Haible  <bruno@clisp.org>
12875
12876         * lib/sockets.h: Add a comment.
12877
12878 2008-11-11  Karl Berry  <karl@gnu.org>
12879
12880         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
12881
12882 2008-11-11  Eric Blake  <ebb9@byu.net>
12883
12884         fdl.texi: avoid git symlinks
12885         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
12886
12887 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12888
12889         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
12890
12891 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12892
12893         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
12894         (gl_WARN_ADD): Substitute $2 if literal.
12895
12896 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12897
12898         * m4/warning.m4: Remove.
12899
12900 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12901
12902         * m4/warnings.m4: Almost complete rewrite. :-)
12903
12904 2008-11-10  Simon Josefsson  <simon@josefsson.org>
12905
12906         * modules/warnings: New module.
12907         * m4/warnings.m4: New file.
12908         * MODULES.html.sh: Mention warnings module.
12909         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
12910         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12911
12912 2008-11-10  Eric Blake  <ebb9@byu.net>
12913
12914         fdl.texi: make a symlink to the latest version
12915         * doc/standards.texi: Revert today's earlier change.
12916         * doc/fdl-1.2.texi: Rename from old fdl.texi...
12917         * doc/fdl.texi: ...and replace this with a symlink to the newer
12918         fdl-1.3.texi.
12919
12920 2008-11-10  Bruno Haible  <bruno@clisp.org>
12921
12922         * tests/test-select-fd.c (main): Accept the result file name as fourth
12923         argument.
12924         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
12925         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
12926
12927 2008-11-10  Bruno Haible  <bruno@clisp.org>
12928
12929         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
12930         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
12931         as autoconf-substituted macros.
12932         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
12933         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
12934         gl_NETDB_H_DEFAULTS. Set these variables.
12935         * modules/netdb (Makefile.am): Substitute these variables.
12936
12937 2008-11-10  Eric Blake  <ebb9@byu.net>
12938
12939         standards.texi: include correct file for FDL 1.3
12940         * doc/standards.texi (GNU Free Documentation License): Change
12941         include file to pull in FDL 1.3, not 1.2.
12942
12943         fdl.texi: revert accidental change to license
12944         * doc/fdl.texi: This is FDL 1.2, not 1.3.
12945
12946 2008-11-10  Bruno Haible  <bruno@clisp.org>
12947
12948         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
12949         cross-compiling guesses also when the native compile gives no result.
12950
12951 2008-11-10  Bruno Haible  <bruno@clisp.org>
12952
12953         * lib/spawni.c (__spawni): Force variable into the stack.
12954
12955 2008-11-10  Bruno Haible  <bruno@clisp.org>
12956
12957         Add support for Haiku.
12958         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
12959         glibc and BeOS, but also on Haiku.
12960         * lib/fpurge.c (fpurge): Likewise.
12961         * lib/freadable.c (freadable): Likewise.
12962         * lib/freadahead.c (freadahead): Likewise.
12963         * lib/freading.c (freading): Likewise.
12964         * lib/freadptr.c (freadptr): Likewise.
12965         * lib/freadseek.c (freadptrinc): Likewise.
12966         * lib/fseeko.c (rpl_fseeko): Likewise.
12967         * lib/fseterr.c (fseterr): Likewise.
12968         * lib/fwritable.c (fwritable): Likewise.
12969         * lib/fwriting.c (fwriting): Likewise.
12970         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
12971
12972 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
12973
12974         * lib/config.charset: Treat Haiku like BeOS.
12975
12976 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
12977
12978         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
12979         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
12980
12981 2008-11-08  Bruno Haible  <bruno@clisp.org>
12982
12983         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
12984         AC_CACHE_CHECK.
12985
12986 2008-11-08  Bruno Haible  <bruno@clisp.org>
12987
12988         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
12989
12990 2008-11-08  Bruno Haible  <bruno@clisp.org>
12991
12992         * tests/test-select-fd.c: New file.
12993         * tests/test-select-in.sh: New file.
12994         * tests/test-select-out.sh: New file.
12995         * tests/test-select-stdin.c: New file.
12996         * modules/select-tests (Files): Add the new files.
12997         (Depends-on): Add gettimeofday.
12998         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
12999         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
13000         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
13001
13002 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
13003             Bruno Haible  <bruno@clisp.org>
13004
13005         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
13006
13007 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
13008
13009         * build-aux/pmccabe2html: Added support for C++ source files.
13010
13011 2008-11-05  Ben Pfaff  <blp@gnu.org>
13012
13013         Fix lib/close.c build on Windows.
13014         * modules/close (Files): Add lib/w32sock.h.
13015
13016 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
13017
13018         Accept Bison's NEWS format.
13019         * build-aux/announce-gen (print_news_deltas): Tweak
13020         $re_prefix.
13021
13022 2008-11-04  Bruno Haible  <bruno@clisp.org>
13023
13024         * modules/random_r (Maintainer): Add glibc.
13025
13026 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13027
13028         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
13029         by karl@freefriends.org (Karl Berry).
13030         * doc/alloca.texi: Likewise.
13031         * doc/c-ctype.texi: Likewise.
13032         * doc/c-strcase.texi: Likewise.
13033         * doc/c-strcaseeq.texi: Likewise.
13034         * doc/c-strcasestr.texi: Likewise.
13035         * doc/c-strstr.texi: Likewise.
13036         * doc/c-strtod.texi: Likewise.
13037         * doc/c-strtold.texi: Likewise.
13038         * doc/ctime.texi: Likewise.
13039         * doc/error.texi: Likewise.
13040         * doc/fdl.texi: Likewise.
13041         * doc/gcd.texi: Likewise.
13042         * doc/getdate.texi: Likewise.
13043         * doc/gnulib-intro.texi: Likewise.
13044         * doc/gnulib-tool.texi: Likewise.
13045         * doc/gnulib.texi: Likewise.
13046         * doc/inet_ntoa.texi: Likewise.
13047         * doc/maintain.texi: Likewise.
13048         * doc/make-stds.texi: Likewise.
13049         * doc/quote.texi: Likewise.
13050         * doc/regexprops-generic.texi: Likewise.
13051         * doc/standards.texi: Likewise.
13052         * doc/verify.texi: Likewise.
13053         * doc/visibility.texi: Likewise.
13054         * doc/gnulib.texi (GNU Free Documentation License): Include
13055         fdl-1.3.texi instead of fdl.texi.
13056
13057 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13058
13059         * doc/fdl-1.3.texi: New file, from
13060         <http://www.gnu.org/licenses/fdl-1.3.texi>.
13061         * modules/fdl-1.3: Add.
13062         * MODULES.html.sh: Add fdl-1.3.
13063
13064 2008-11-03  Bruno Haible  <bruno@clisp.org>
13065
13066         Make determination of absolute name of header file work with AIX xlc.
13067         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
13068         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
13069         preprocessing.
13070         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13071         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
13072
13073 2008-11-03  Simon Josefsson  <simon@josefsson.org>
13074
13075         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
13076         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
13077         <ludo@gnu.org>.
13078
13079 2008-11-02  Bruno Haible  <bruno@clisp.org>
13080
13081         Mark 'strpbrk' obsolete.
13082         * modules/strpbrk (Status, Notice): New sections.
13083         * modules/strtok_r (Depends-on): Add strpbrk.
13084
13085 2008-11-02  Bruno Haible  <bruno@clisp.org>
13086
13087         Mark 'strdup' obsolete.
13088         * modules/strdup (Status, Notice): New sections.
13089         * modules/findprog (Depends-on): Add strdup.
13090         * modules/getaddrinfo (Depends-on): Likewise.
13091         * modules/localename (Depends-on): Likewise.
13092         * modules/relocatable-lib (Depends-on): Likewise.
13093         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
13094         * modules/relocatable-prog (Depends-on): Likewise.
13095         * modules/trim (Depends-on): Likewise.
13096         * modules/unictype/gen-ctype (Depends-on): Likewise.
13097         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13098
13099 2008-11-02  Bruno Haible  <bruno@clisp.org>
13100
13101         Mark 'strcspn' obsolete.
13102         * modules/strcspn (Status, Notice): New sections.
13103
13104 2008-11-02  Bruno Haible  <bruno@clisp.org>
13105
13106         Mark 'rmdir' obsolete.
13107         * modules/rmdir (Status, Notice): New sections.
13108         * modules/clean-temp (Depends-on): Add rmdir.
13109         * modules/openat (Depends-on): Likewise.
13110
13111 2008-11-02  Bruno Haible  <bruno@clisp.org>
13112
13113         Mark 'raise' obsolete.
13114         * modules/raise (Status, Notice): New sections.
13115         (Include): Specify <signal.h>.
13116         * modules/stdio (Depends-on): Add raise.
13117         * modules/write (Depends-on): Likewise.
13118
13119 2008-11-02  Bruno Haible  <bruno@clisp.org>
13120
13121         Mark 'memset' obsolete.
13122         * modules/memset (Status, Notice): New sections.
13123
13124 2008-11-02  Bruno Haible  <bruno@clisp.org>
13125
13126         Mark 'memmove' obsolete.
13127         * modules/memmove (Status, Notice): New sections.
13128         * modules/argp (Depends-on): Add memmove.
13129         * modules/argz (Depends-on): Likewise.
13130         * modules/canonicalize (Depends-on): Likewise.
13131         * modules/canonicalize-lgpl (Depends-on): Likewise.
13132         * modules/fts (Depends-on): Likewise.
13133         * modules/getcwd (Depends-on): Likewise.
13134         * modules/human (Depends-on): Likewise.
13135         * modules/regex (Depends-on): Likewise.
13136         * modules/striconveh (Depends-on): Likewise.
13137         * modules/trim (Depends-on): Likewise.
13138         * modules/unistr/u8-move (Depends-on): Likewise.
13139         * modules/unistr/u16-move (Depends-on): Likewise.
13140         * modules/unistr/u32-move (Depends-on): Likewise.
13141
13142 2008-11-02  Bruno Haible  <bruno@clisp.org>
13143
13144         Mark 'memcpy' obsolete.
13145         * modules/memcpy (Status, Notice): New sections.
13146
13147 2008-11-02  Bruno Haible  <bruno@clisp.org>
13148
13149         Mark 'memcmp' obsolete.
13150         * modules/memcmp (Status, Notice): New sections.
13151         * modules/argmatch (Depends-on): Add memchr.
13152         * modules/backupfile (Depends-on): Likewise.
13153         * modules/c-strcasestr (Depends-on): Likewise.
13154         * modules/crypto/des (Depends-on): Likewise.
13155         * modules/csharpcomp (Depends-on): Likewise.
13156         * modules/fnmatch (Depends-on): Likewise.
13157         * modules/git-merge-changelog (Depends-on): Likewise.
13158         * modules/isnand (Depends-on): Likewise.
13159         * modules/isnand-nolibm (Depends-on): Likewise.
13160         * modules/isnanf (Depends-on): Likewise.
13161         * modules/isnanf-nolibm (Depends-on): Likewise.
13162         * modules/isnanl (Depends-on): Likewise.
13163         * modules/isnanl-nolibm (Depends-on): Likewise.
13164         * modules/mbchar (Depends-on): Likewise.
13165         * modules/memcoll (Depends-on): Likewise.
13166         * modules/quotearg (Depends-on): Likewise.
13167         * modules/regex (Depends-on): Likewise.
13168         * modules/relocatable-prog (Depends-on): Likewise.
13169         * modules/same (Depends-on): Likewise.
13170         * modules/signbit (Depends-on): Likewise.
13171         * modules/strcasestr-simple (Depends-on): Likewise.
13172         * modules/unictype/gen-ctype (Depends-on): Likewise.
13173         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13174         * modules/uniname/uniname (Depends-on): Likewise.
13175         * modules/unistr/u8-cmp (Depends-on): Likewise.
13176
13177 2008-11-02  Bruno Haible  <bruno@clisp.org>
13178
13179         Mark 'memchr' obsolete.
13180         * modules/memchr (Status, Notice): New sections.
13181         * modules/argp (Depends-on): Add memchr.
13182         * modules/base64 (Depends-on): Likewise.
13183         * modules/c-strcasestr (Depends-on): Likewise.
13184         * modules/chdir-long (Depends-on): Likewise.
13185         * modules/fnmatch (Depends-on): Likewise.
13186         * modules/getsubopt (Depends-on): Likewise.
13187         * modules/git-merge-changelog (Depends-on): Likewise.
13188         * modules/glob (Depends-on): Likewise.
13189         * modules/strcasestr-simple (Depends-on): Likewise.
13190         * modules/strnlen (Depends-on): Likewise.
13191
13192 2008-11-02  Bruno Haible  <bruno@clisp.org>
13193
13194         Mark 'atexit' obsolete.
13195         * modules/atexit (Status, Notice): New sections.
13196         * modules/chdir-long (Depends-on): Add atexit.
13197         * modules/wait-process (Depends-on): Likewise.
13198
13199 2008-11-02  Bruno Haible  <bruno@clisp.org>
13200
13201         * gnulib-tool: New option --with-obsolete.
13202         (func_usage): Document it.
13203         (func_modules_transitive_closure): Drop obsolete dependencies if
13204         incobsolete is not true.
13205         (func_import): Read and save the incobsolete variable to the cache.
13206
13207 2008-11-02  Bruno Haible  <bruno@clisp.org>
13208
13209         * modules/TEMPLATE-EXTENDED: New field 'Status'.
13210         * gnulib-tool: New option --extract-status.
13211         (func_usage): Document it.
13212         (sed_extract_prog): Recognize it.
13213         (func_get_status): New function.
13214
13215 2008-10-30  Simon Josefsson  <simon@josefsson.org>
13216
13217         * modules/sockets (License): Change from LGPL to LGPLv2+.
13218
13219 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13220
13221         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
13222
13223 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13224
13225         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13226         Mention times and sys_times.
13227         * modules/sys_times, modules/sys_times-tests: New modules.
13228         * modules/times, modules/times-tests: Likewise
13229         * m4/sys_times_h.m4: New file.
13230         * lib/sys_times.in.h: Likewise
13231         * lib/times.c: Likewise.
13232         * tests/test-sys_times.c: Likewise.
13233         * tests/test-times.c: Likewise.
13234         * doc/posix-headers/sys_times.texi: Update.
13235         * doc/posix-functions/times.texi: Update.
13236
13237 2008-10-28  Jim Meyering  <meyering@redhat.com>
13238
13239         * modules/tempname (Depends-on): Add lstat.
13240
13241         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
13242
13243 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13244
13245         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
13246         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
13247         using idiom used elsewhere in gnulib.
13248
13249 2008-10-27  Jim Meyering  <meyering@redhat.com>
13250
13251         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
13252
13253 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13254
13255         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
13256         TESTS_ENVIRONMENT, for shell scripts that needs to call built
13257         programs.
13258         * tests/test-argp-2.sh: Use $EXEEXT when needed.
13259
13260 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13261
13262         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
13263
13264 2008-10-27  Bruno Haible  <bruno@clisp.org>
13265
13266         * tests/test-lstat.c: Include <stdio.h>.
13267
13268 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13269
13270         * modules/lstat-tests: New module.
13271         * tests/test-lstat.c: New file.
13272
13273 2008-10-26  Jim Meyering  <meyering@redhat.com>
13274
13275         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
13276
13277 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13278             Bruno Haible  <bruno@clisp.org>
13279
13280         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
13281         * modules/configmake (Include): Add a note that the include must come
13282         after all system headers.
13283         * lib/javaversion.c: Include configmake.h after all other includes.
13284
13285 2008-10-26  Bruno Haible  <bruno@clisp.org>
13286
13287         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
13288         HAVE_STRUCT_RANDOM_DATA to 1.
13289         (gl_STDLIB_H): Simplify.
13290
13291 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13292
13293         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
13294         substitute HAVE_STRUCT_RANDOM_DATA.
13295         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
13296         random_data.
13297         * modules/stdlib (Makefile.am): Substitute
13298         HAVE_STRUCT_RANDOM_DATA.
13299
13300 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13301
13302         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
13303         * doc/gnulib-intro.texi (Copyright): Likewise.
13304
13305 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13306
13307         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
13308         findings.
13309
13310 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
13311             Bruno Haible  <bruno@clisp.org>
13312
13313         * lib/unistd.in.h: Include <winsock2.h>.
13314         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
13315         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
13316         Provide dummy declarations.
13317         (gethostname): Override.
13318         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
13319         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
13320         gl_PREREQ_SYS_H_WINSOCK2.
13321         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
13322         * doc/posix-functions/gethostname.texi: More details.
13323
13324 2008-10-25  Bruno Haible  <bruno@clisp.org>
13325
13326         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
13327         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
13328         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
13329
13330         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
13331         here ...
13332         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
13333         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
13334         gl_UNISTD_H_DEFAULTS.
13335
13336 2008-10-25  Eric Blake  <ebb9@byu.net>
13337
13338         signbit: avoid spurious compiler failure
13339         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
13340         declarations inside function.
13341
13342 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13343             Bruno Haible  <bruno@clisp.org>
13344
13345         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
13346         * modules/random_r (Depends-on): Add stdint.
13347
13348 2008-10-24  Bruno Haible  <bruno@clisp.org>
13349
13350         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
13351         Eggert.
13352         * modules/strerror (License): Likewise.
13353
13354 2008-10-24  Jim Meyering  <meyering@redhat.com>
13355
13356         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
13357         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
13358
13359 2008-10-24  Eric Blake  <ebb9@byu.net>
13360
13361         getgroups: fix compilation when getgroups is available
13362         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
13363         but with <config.h> override of getgroups disabled.
13364
13365 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13366
13367         * doc/gnulib.texi (Header files): Add note about C++ problems.
13368         Explained by Bruno Haible <bruno@clisp.org>.
13369
13370 2008-10-23  Bruno Haible  <bruno@clisp.org>
13371
13372         Define a dummy SA_NODEFER macro on Interix.
13373         * lib/signal.in.h (SA_NODEFER): Define fallback.
13374         Reported by Aleksey Cheusov <cheusov@tut.by> via
13375         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
13376
13377 2008-10-23  Bruno Haible  <bruno@clisp.org>
13378
13379         * modules/freadahead (License): Change to LGPLv2+.
13380         Suggested by Simon Josefsson.
13381
13382 2008-10-23  Jim Meyering  <meyering@redhat.com>
13383
13384         random_r: new module
13385         * modules/random_r: New file.
13386         * m4/random_r.m4: New file.
13387         * lib/random_r.c: New file, from glibc.
13388         * modules/random_r-tests: New file.
13389         * tests/test-random_r.c: New file.
13390         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
13391          Declare.
13392         (RAND_MAX): Define.
13393         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
13394         * modules/stdlib: Substitute them, too.
13395         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
13396         * doc/glibc-functions/initstate_r.texi: Mention the new module.
13397         * doc/glibc-functions/random_r.texi: Likewise.
13398         * doc/glibc-functions/setstate_r.texi: Likewise.
13399         * doc/glibc-functions/srandom_r.texi: Likewise.
13400         * config/srclist.txt: Mention it.
13401
13402 2008-10-23  David Lutterkort  <lutter@redhat.com>
13403
13404         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
13405         link requirement
13406
13407 2008-10-23  Jim Meyering  <meyering@redhat.com>
13408
13409         selinux-h: mark parameters of stub functions as intentionally unused
13410         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
13411         * lib/se-context.in.h: Likewise.
13412
13413 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13414
13415         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
13416
13417 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13418
13419         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
13420
13421 2008-10-22  Eric Blake  <ebb9@byu.net>
13422
13423         glthread/thread: avoid compiler warning
13424         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
13425         Add unreachable abort to silence compiler.
13426
13427 2008-10-22  Eric Blake  <ebb9@byu.net>
13428
13429         netdb: also supply struct addrinfo for cygwin 1.5.x
13430         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
13431         older cygwin.
13432         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
13433         cygwin.
13434         * doc/posix-headers/netdb.texi (netdb.h): Document this.
13435
13436 2008-10-22  Bruno Haible  <bruno@clisp.org>
13437
13438         * users.txt: Update entry about pspp.
13439
13440 2008-10-21  Bruno Haible  <bruno@clisp.org>
13441
13442         Simplification.
13443         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
13444         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
13445
13446         Simplification.
13447         * lib/ioctl.c (ioctl): Don't undefine.
13448         * lib/socket.c (socket): Don't undefine.
13449
13450         Remove unused module indicator macros.
13451         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
13452         GNULIB_$1 as a C macro.
13453
13454         * doc/posix-functions/close.texi: Undo last change.
13455         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
13456         Windows platforms.
13457
13458 2008-10-21  Bruno Haible  <bruno@clisp.org>
13459
13460         Add gethostname() declaration to <unistd.h>.
13461         * lib/unistd.in.h (gethostname): New declaration.
13462         * lib/gethostname.c: Include <unistd.h>.
13463         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
13464         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
13465         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
13466         and HAVE_GETHOSTNAME.
13467         * modules/gethostname (Depends-on): Add unistd.
13468         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13469         (Include): Specify <unistd.h>.
13470         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
13471         HAVE_GETHOSTNAME.
13472         * tests/test-gethostname.c: Include <unistd.h> first.
13473
13474 2008-10-21  Bruno Haible  <bruno@clisp.org>
13475
13476         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
13477         * modules/select-tests (Depends-on): Likewise.
13478         Reported by Simon Josefsson.
13479
13480 2008-10-21  Simon Josefsson  <simon@josefsson.org>
13481
13482         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
13483         * lib/accept.c: New file, based on winsock.c.
13484         * lib/bind.c: New file, based on winsock.c.
13485         * lib/connect.c: New file, based on winsock.c.
13486         * lib/getpeername.c: New file, based on winsock.c.
13487         * lib/getsockname.c: New file, based on winsock.c.
13488         * lib/getsockopt.c: New file, based on winsock.c.
13489         * lib/ioctl.c: New file, based on winsock.c.
13490         * lib/listen.c: New file, based on winsock.c.
13491         * lib/recv.c: New file, based on winsock.c.
13492         * lib/recvfrom.c: New file, based on winsock.c.
13493         * lib/send.c: New file, based on winsock.c.
13494         * lib/sendto.c: New file, based on winsock.c.
13495         * lib/setsockopt.c: New file, based on winsock.c.
13496         * lib/shutdown.c: New file, based on winsock.c.
13497         * lib/socket.c: New file, based on winsock.c.
13498         * lib/w32sock.h: New file, based on winsock.c.
13499         * lib/winsock.c: Remove file.
13500         * modules/accept: Likewise.
13501         * modules/bind: Likewise.
13502         * modules/connect: Likewise.
13503         * modules/getpeername: Likewise.
13504         * modules/getsockname: Likewise.
13505         * modules/getsockopt: Likewise.
13506         * modules/ioctl: Likewise.
13507         * modules/listen: Likewise.
13508         * modules/recv: Likewise.
13509         * modules/recvfrom: Likewise.
13510         * modules/send: Likewise.
13511         * modules/sendto: Likewise.
13512         * modules/setsockopt: Likewise.
13513         * modules/shutdown: Likewise.
13514         * modules/socket: Use socket.c instead of winsock.c.
13515         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
13516         * doc/posix-functions/accept.texi: Doc fix.
13517         * doc/posix-functions/bind.texi: Doc fix.
13518         * doc/posix-functions/close.texi: Doc fix.
13519         * doc/posix-functions/connect.texi: Doc fix.
13520         * doc/posix-functions/getpeername.texi: Doc fix.
13521         * doc/posix-functions/getsockname.texi: Doc fix.
13522         * doc/posix-functions/getsockopt.texi: Doc fix.
13523         * doc/posix-functions/ioctl.texi: Doc fix.
13524         * doc/posix-functions/listen.texi: Doc fix.
13525         * doc/posix-functions/recv.texi: Doc fix.
13526         * doc/posix-functions/recvfrom.texi: Doc fix.
13527         * doc/posix-functions/send.texi: Doc fix.
13528         * doc/posix-functions/sendto.texi: Doc fix.
13529         * doc/posix-functions/setsockopt.texi: Doc fix.
13530         * doc/posix-functions/shutdown.texi: Doc fix.
13531         * doc/posix-functions/socket.texi: Doc fix.
13532
13533 2008-10-20  Bruno Haible  <bruno@clisp.org>
13534
13535         Take into account the role of SIGABRT_COMPAT on Windows 2008.
13536         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
13537         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
13538         as an alias for SIGABRT.
13539         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
13540         (sigaction): Map it to SIGABRT.
13541         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
13542
13543 2008-10-20  Bruno Haible  <bruno@clisp.org>
13544
13545         * lib/fts.c: Don't include lstat.h.
13546         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
13547
13548         Move the lstat() declaration to <sys/stat.h>.
13549         * lib/lstat.h: Remove file.
13550         * lib/sys_stat.in.h: Add special invocation convention.
13551         (lstat): New declaration.
13552         * lib/lstat.c (orig_lstat): New function.
13553         (rpl_lstat): Use orig_lstat instead of lstat.
13554         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
13555         AC_C_INLINE. Set REPLACE_LSTAT.
13556         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
13557         and REPLACE_LSTAT.
13558         * modules/lstat (Files): Remove lib/lstat.h.
13559         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13560         (Include): Specify <sys/stat.h> instead of lstat.h.
13561         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
13562         REPLACE_LSTAT.
13563         * NEWS: Mention the change.
13564
13565 2008-10-20  Bruno Haible  <bruno@clisp.org>
13566
13567         * modules/posix_spawn-tests: New file.
13568         * tests/test-posix_spawn3.c: New file.
13569
13570 2008-10-20  Bruno Haible  <bruno@clisp.org>
13571
13572         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
13573         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13574         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
13575         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13576         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
13577
13578 2008-10-20  Bruno Haible  <bruno@clisp.org>
13579
13580         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
13581         of posix_spawn on AIX 5.3.
13582
13583 2008-10-20  Bruno Haible  <bruno@clisp.org>
13584
13585         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
13586
13587 2008-10-20  Bruno Haible  <bruno@clisp.org>
13588
13589         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
13590         of AC_LANG_PROGRAM.
13591
13592 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13593
13594         * lib/netdb.in.h: Don't define GNU specific constants until they
13595         are supported or needed.  Reported by Bruno Haible
13596         <bruno@clisp.org>.
13597
13598 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13599
13600         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
13601
13602 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13603
13604         * lib/getaddrinfo.h: Remove file.
13605         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
13606         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
13607         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
13608         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
13609         * modules/netdb: Substitute GNULIB_GETADDRINFO.
13610         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
13611         * tests/test-getaddrinfo.c: Likewise.
13612         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
13613         * NEWS: Mention change.
13614
13615 2008-10-19  Bruno Haible  <bruno@clisp.org>
13616
13617         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
13618
13619 2008-10-19  Bruno Haible  <bruno@clisp.org>
13620
13621         * lib/wait-process.c: Include simply <sys/wait.h>.
13622         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
13623         WIFSTOPPED): Remove fallback definitions.
13624         * modules/wait-process (Depends-on): Add sys_wait.
13625
13626         New module 'sys_wait'.
13627         * modules/sys_wait: New file.
13628         * lib/sys_wait.in.h: New file, partially copied from
13629         lib/wait-process.c.
13630         * m4/sys_wait_h.m4: New file.
13631         * doc/posix-headers/sys_wait.texi: Mention the new module.
13632
13633 2008-10-19  Bruno Haible  <bruno@clisp.org>
13634
13635         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
13636
13637 2008-10-19  Bruno Haible  <bruno@clisp.org>
13638
13639         Assume that waitpid() fills an 'int' status, not a 'union wait'.
13640         * lib/wait-process.c (WAIT_T): Remove type.
13641         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
13642         (wait_subprocess): Update.
13643
13644 2008-10-19  Bruno Haible  <bruno@clisp.org>
13645
13646         New module 'atoll'.
13647         * modules/atoll: New file.
13648         * lib/stdlib.in.h (atoll): New declaration.
13649         * lib/atoll.c: New file, from glibc with modifications.
13650         * m4/atoll.m4: New file.
13651         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
13652         HAVE_ATOLL.
13653         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
13654         * doc/posix-functions/atoll.texi: Mention the new module.
13655
13656 2008-10-19  Bruno Haible  <bruno@clisp.org>
13657
13658         Add strtoull() declaration to <stdlib.h>.
13659         * lib/stdlib.in.h (strtoull): New declaration.
13660         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
13661         Set HAVE_STRTOULL.
13662         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
13663         HAVE_STRTOULL.
13664         * modules/strtoull (Depends-on): Add stdlib.
13665         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13666         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
13667         HAVE_STRTOULL.
13668
13669 2008-10-19  Bruno Haible  <bruno@clisp.org>
13670
13671         Add strtoll() declaration to <stdlib.h>.
13672         * lib/stdlib.in.h (strtoll): New declaration.
13673         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
13674         Set HAVE_STRTOLL.
13675         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
13676         HAVE_STRTOLL.
13677         * modules/strtoll (Depends-on): Add stdlib.
13678         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13679         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
13680
13681 2008-10-19  Bruno Haible  <bruno@clisp.org>
13682
13683         * modules/bcopy (Depends-on): Add strings.
13684         (Include): Specify <strings.h>.
13685
13686 2008-10-19  Bruno Haible  <bruno@clisp.org>
13687
13688         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
13689
13690 2008-10-19  Bruno Haible  <bruno@clisp.org>
13691
13692         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
13693         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
13694         mingw.
13695
13696 2008-10-19  Bruno Haible  <bruno@clisp.org>
13697
13698         * lib/atanl.c: Don't include isnanl.h.
13699         * lib/cosl.c: Likewise.
13700         * lib/ldexpl.c: Likewise.
13701         * lib/logl.c: Likewise.
13702         * lib/sinl.c: Likewise.
13703         * lib/sqrtl.c: Likewise.
13704         * lib/tanl.c: Likewise.
13705
13706         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
13707         * lib/isnanf.h: Remove file.
13708         * lib/isnand.h: Remove file.
13709         * lib/isnanl.h: Remove file.
13710         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
13711         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
13712         macros.
13713         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
13714         HAVE_ISNANF, don't define it as a C macro.
13715         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
13716         HAVE_ISNAND, don't define it as a C macro.
13717         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
13718         HAVE_ISNANL, don't define it as a C macro.
13719         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
13720         HAVE_ISNAN[FDL].
13721         * modules/isnanf (Files): Remove lib/isnanf.h.
13722         (Depends-on): Add math.
13723         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13724         (Include): Specify <math.h> instead of isnanf.h.
13725         * modules/isnand (Files): Remove lib/isnand.h.
13726         (Depends-on): Add math.
13727         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13728         (Include): Specify <math.h> instead of isnand.h.
13729         * modules/isnanl (Files): Remove lib/isnanl.h.
13730         (Depends-on): Add math.
13731         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13732         (Include): Specify <math.h> instead of isnanl.h.
13733         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
13734         HAVE_ISNAN[FDL].
13735         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
13736         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
13737         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
13738         * NEWS: Mention the change.
13739
13740 2008-10-18  Bruno Haible  <bruno@clisp.org>
13741
13742         Add getusershell(), setusershell(), endusershell() declarations to
13743         <unistd.h>.
13744         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
13745         declarations.
13746         * lib/getusershell.c: Include unistd.h.
13747         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
13748         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13749         HAVE_GETUSERSHELL.
13750         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
13751         and HAVE_GETUSERSHELL.
13752         * modules/getusershell (Depends-on): Add unistd, extensions.
13753         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13754         (Include): Specify <unistd.h>.
13755         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
13756         HAVE_GETUSERSHELL.
13757
13758 2008-10-18  Bruno Haible  <bruno@clisp.org>
13759
13760         Add a getloadavg() declaration to <stdlib.h>.
13761         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
13762         getloadavg declaration.
13763         (getloadavg): New declaration.
13764         * lib/getloadavg.c: Include <stdlib.h> first.
13765         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
13766         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
13767         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
13768         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
13769         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13770         * modules/getloadavg (Depends-on): Add stdlib, extensions.
13771         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13772         (Include): Specify <stdlib.h>.
13773         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
13774         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13775
13776 2008-10-18  Bruno Haible  <bruno@clisp.org>
13777
13778         * lib/dirchownmod.c: Don't include lchmod.h.
13779
13780         Move the lchmod() declaration to <sys/stat.h>.
13781         * lib/lchmod.h: Remove file.
13782         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
13783         (lchmod): New declaration, moved here from lib/lchown.h.
13784         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
13785         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
13786         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
13787         and HAVE_LCHMOD.
13788         * modules/lchmod (Files): Remove lib/lchmod.h.
13789         (Depends-on): Add sys_stat, extensions.
13790         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13791         (Include): Specify <sys/stat.h> instead of lchmod.h.
13792         * modules/sys_stat (Depends-on): Add link-warning.
13793         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
13794         definition of GL_LINK_WARNING.
13795         * NEWS: Mention the change.
13796
13797 2008-10-18  Bruno Haible  <bruno@clisp.org>
13798
13799         * lib/fchdir.c: Don't include dirfd.h.
13800         * lib/fts.c: Likewise.
13801         * lib/getcwd.c: Likewise.
13802         * lib/glob.c: Likewise.
13803
13804         Move the dirfd() declaration to <dirent.h>.
13805         * lib/dirfd.h: Remove file.
13806         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
13807         (dirfd): New declaration.
13808         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
13809         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
13810         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
13811         HAVE_DECL_DIRFD.
13812         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
13813         HAVE_DECL_DIRFD.
13814         * modules/dirfd (Files): Remove lib/dirfd.h.
13815         (Depends-on): Add dirent, extensions.
13816         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
13817         (Include): Specify <dirent.h> instead of dirfd.h.
13818         * modules/dirent (Depends-on): Add link-warning.
13819         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
13820         definition of GL_LINK_WARNING.
13821         * NEWS: Mention the change.
13822
13823 2008-10-18  Bruno Haible  <bruno@clisp.org>
13824
13825         Move the euidaccess() declaration to <unistd.h>.
13826         * lib/euidaccess.h: Remove file.
13827         * lib/unistd.in.h (euidaccess): New declaration.
13828         * lib/euidaccess.c: Don't include euidaccess.h.
13829         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
13830         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
13831         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
13832         and HAVE_EUIDACCESS.
13833         * modules/euidaccess (Files): Remove lib/euidaccess.h.
13834         (Depends-on): Add unistd.
13835         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13836         (Include): Specify <unistd.h> instead of euidaccess.h.
13837         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
13838         HAVE_EUIDACCESS.
13839         * NEWS: Mention the change.
13840
13841 2008-10-18  Bruno Haible  <bruno@clisp.org>
13842
13843         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
13844
13845         Move the getdomainname() declaration to <unistd.h>.
13846         * lib/getdomainname.h: Remove file.
13847         * lib/unistd.in.h (getdomainname): New declaration.
13848         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
13849         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
13850         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13851         HAVE_GETDOMAINNAME.
13852         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13853         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
13854         * modules/getdomainname (Files): Remove lib/getdomainname.h.
13855         (Depends-on): Add unistd, extensions.
13856         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13857         (Includes): Specify <unistd.h> instead of getdomainname.h.
13858         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
13859         HAVE_GETDOMAINNAME.
13860         * NEWS: Mention the change.
13861
13862 2008-10-18  Bruno Haible  <bruno@clisp.org>
13863
13864         * modules/dirent: New file.
13865         * m4/dirent_h.m4: New file.
13866         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
13867         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
13868         * modules/fchdir (Files): Remove lib/dirent.in.h.
13869         (Depends-on): Add dirent.
13870         (Makefile.am): Move rules to modules/dirent.
13871         * doc/posix-headers/dirent.texi: Mention the new module.
13872
13873 2008-10-18  Bruno Haible  <bruno@clisp.org>
13874
13875         Avoid -Wunused-parameter warnings in public gnulib header files.
13876         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
13877         macro.
13878         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
13879
13880 2008-10-18  Bruno Haible  <bruno@clisp.org>
13881
13882         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
13883         * doc/glibc-functions/error.texi: Mention the module 'error'.
13884         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
13885         * doc/glibc-functions/getdomainname.texi: Mention the module
13886         'getdomainname'.
13887         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
13888         * doc/glibc-functions/getpagesize.texi: Mention the module
13889         'getpagesize'.
13890         * doc/glibc-functions/getusershell.texi: Mention the module
13891         'getusershell'.
13892         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
13893         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
13894         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
13895         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
13896         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
13897         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
13898         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
13899         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
13900         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
13901         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
13902         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
13903         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
13904         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
13905         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
13906
13907 2008-10-17  Bruno Haible  <bruno@clisp.org>
13908
13909         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
13910         HP-UX and IRIX, use -0.0L.
13911         * tests/test-ceill.c (minus_zero): Likewise.
13912         * tests/test-floorl.c (minus_zero): Likewise.
13913         * tests/test-frexpl.c (minus_zero): Likewise.
13914         * tests/test-isnan.c (minus_zerol): Likewise.
13915         * tests/test-isnanl.h (minus_zero): Likewise.
13916         * tests/test-ldexpl.c (minus_zero): Likewise.
13917         * tests/test-roundl.c (minus_zero): Likewise.
13918         * tests/test-signbit.c (minus_zerol): Likewise.
13919         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
13920         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
13921         * tests/test-truncl.c (minus_zero): Likewise.
13922         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
13923         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
13924         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
13925         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
13926
13927 2008-10-17  Bruno Haible  <bruno@clisp.org>
13928
13929         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
13930         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
13931         that it gets activated only for gcc >= 3.0.
13932         * lib/dirent.in.h: Likewise.
13933         * lib/errno.in.h: Likewise.
13934         * lib/fcntl.in.h: Likewise.
13935         * lib/float.in.h: Likewise.
13936         * lib/iconv.in.h: Likewise.
13937         * lib/inttypes.in.h: Likewise.
13938         * lib/locale.in.h: Likewise.
13939         * lib/math.in.h: Likewise.
13940         * lib/netdb.in.h: Likewise.
13941         * lib/netinet_in.in.h: Likewise.
13942         * lib/search.in.h: Likewise.
13943         * lib/signal.in.h: Likewise.
13944         * lib/spawn.in.h: Likewise.
13945         * lib/stdarg.in.h: Likewise.
13946         * lib/stdint.in.h: Likewise.
13947         * lib/stdio.in.h: Likewise.
13948         * lib/stdlib.in.h: Likewise.
13949         * lib/string.in.h: Likewise.
13950         * lib/strings.in.h: Likewise.
13951         * lib/sys_file.in.h: Likewise.
13952         * lib/sys_ioctl.in.h: Likewise.
13953         * lib/sys_select.in.h: Likewise.
13954         * lib/sys_socket.in.h: Likewise.
13955         * lib/sys_stat.in.h: Likewise.
13956         * lib/sys_time.in.h: Likewise.
13957         * lib/sysexits.in.h: Likewise.
13958         * lib/time.in.h: Likewise.
13959         * lib/unistd.in.h: Likewise.
13960         * lib/wchar.in.h: Likewise.
13961         * lib/wctype.in.h: Likewise.
13962         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
13963
13964 2008-10-17  Jim Meyering  <meyering@redhat.com>
13965
13966         ignore-value: don't depend on inline module
13967         * modules/ignore-value (Depends-on): Remove 'inline'.
13968         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
13969         Suggestion from Bruno Haible.
13970
13971 2008-10-17  Bruno Haible  <bruno@clisp.org>
13972
13973         New implementation of condition variables for Win32.
13974         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
13975         (gl_linked_waitqueue_t): New type.
13976         (gl_cond_t): Use it.
13977         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
13978         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
13979         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
13980         (glthread_cond_init_func, glthread_cond_wait_func,
13981         glthread_cond_timedwait_func, glthread_cond_signal_func,
13982         glthread_cond_broadcast_func, glthread_cond_destroy_func):
13983         Reimplemented on the basis of gl_linked_waitqueue_t.
13984         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
13985         gl_waitqueue_t.
13986         (gl_rwlock_t): Update.
13987         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
13988
13989 2008-10-17  Simon Josefsson  <simon@josefsson.org>
13990
13991         * modules/recvfrom (Depends-on): Add dependency on getpeername.
13992         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13993
13994 2008-10-17  Jim Meyering  <meyering@redhat.com>
13995
13996         ignore-value: new module
13997         * modules/ignore-value: New file.
13998         * lib/ignore-value.h: New file.
13999         * MODULES.html.sh (Compiler warning management): New section,
14000         just for this module.  More to come.
14001
14002 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
14003
14004         open-safer.c: avoid 'signed and unsigned in conditional...' warning
14005         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
14006         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
14007
14008 2008-10-16  Jim Meyering  <meyering@redhat.com>
14009
14010         openat-die.c: avoid 'no previous prototype' warning
14011         * lib/openat-die.c: Include "openat.h".
14012         Reported by Reuben Thomas <rrt@sc3d.org>.
14013
14014 2008-10-16  Simon Josefsson  <simon@josefsson.org>
14015
14016         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
14017         * lib/netdb.in.h: Fix typo.
14018         Reported by Bruno Haible  <bruno@clisp.org>
14019
14020         * lib/netdb.in.h: Include sys/socket.h for platforms without
14021         netdb.h, to get structures like hostent on MinGW.
14022         * modules/netdb (Depends-on): Add sys_socket.
14023
14024 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14025
14026         * modules/netdb, modules/netdb-tests: New file.
14027         * m4/netdb_h.m4: New file.
14028         * lib/netdb.in.h: Add, currently just an empty file pending
14029         definitions.
14030         * tests/test-netdb.c: New file.
14031         * doc/posix-headers/netdb.texi: Mention that we replace it if
14032         needed.
14033         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14034         netdb.
14035
14036 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14037
14038         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
14039         with code.
14040
14041 2008-10-13  Bruno Haible  <bruno@clisp.org>
14042
14043         * lib/glthread/cond.c (glthread_cond_wait_func,
14044         glthread_cond_timedwait_func): Add a comment.
14045
14046 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14047
14048         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
14049         * tests/test-select.c: Likewise,
14050
14051 2008-10-13  Bruno Haible  <bruno@clisp.org>
14052
14053         * lib/glthread/cond.c (glthread_cond_wait_func,
14054         glthread_cond_timedwait_func): Fix variable name.
14055         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14056
14057 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
14058
14059         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
14060         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
14061         struct sockaddr.sa_len.
14062         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
14063
14064 2008-10-13  Simon Josefsson  <simon@josefsson.org>
14065
14066         * build-aux/pmccabe2html: Add css and css_url parameters.
14067
14068 2008-10-12  Bruno Haible  <bruno@clisp.org>
14069
14070         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
14071         calling aclx_get.
14072         Reported by Rainer Tammer <tammer@tammer.net>.
14073
14074 2008-10-12  Bruno Haible  <bruno@clisp.org>
14075
14076         Use msvcrt aware primitives for creation/termination of Win32 threads.
14077         * lib/glthread/thread.c: Include <process.h>.
14078         (glthread_create_func): Use _beginthreadex instead of CreateThread.
14079         (wrapper_func): Update signature.
14080         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
14081
14082 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14083             Bruno Haible  <bruno@clisp.org>
14084
14085         Provide a Win32 implementation of the 'cond' module.
14086         * lib/glthread/cond.h [USE_WIN32]: New implementation.
14087         * lib/glthread/cond.c (glthread_cond_init_func,
14088         glthread_cond_wait_func, glthread_cond_timedwait_func,
14089         glthread_cond_signal_func, glthread_cond_broadcast_func,
14090         glthread_cond_destroy_func) [USE_WIN32]: New functions.
14091         * modules/cond (Dependencies): Add gettimeofday.
14092
14093 2008-10-11  Bruno Haible  <bruno@clisp.org>
14094
14095         Make sleep work on older versions of mingw.
14096         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
14097         only whether it exists.
14098         * doc/posix-functions/sleep.texi: Mention the problem with older
14099         versions of mingw.
14100
14101 2008-10-11  Bruno Haible  <bruno@clisp.org>
14102
14103         New module 'shutdown'.
14104         * modules/shutdown: New file.
14105         * lib/sys_socket.in.h (shutdown): New declaration.
14106         * lib/winsock.c (shutdown): New function.
14107         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
14108         GNULIB_SHUTDOWN.
14109         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
14110         * doc/posix-functions/shutdown.texi: Document the new module.
14111
14112 2008-10-11  Jim Meyering  <meyering@redhat.com>
14113
14114         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
14115
14116 2008-10-11  Bruno Haible  <bruno@clisp.org>
14117
14118         New module 'fclose'.
14119         * modules/fclose: New file.
14120         * lib/stdio.in.h (fclose): New declaration.
14121         * lib/fclose.c: New file.
14122         * m4/fclose.m4: New file.
14123         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
14124         REPLACE_FCLOSE.
14125         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
14126         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
14127         REPLACE_FCLOSE.
14128         * modules/close (Depends-on): fclose.
14129         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
14130
14131 2008-10-11  Bruno Haible  <bruno@clisp.org>
14132
14133         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
14134         set errno and don't call _close.
14135
14136 2008-10-10  Bruno Haible  <bruno@clisp.org>
14137
14138         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
14139         ACL, not afterwards. Fixes test failure on Cygwin.
14140
14141 2008-10-09  Ben Pfaff  <blp@gnu.org>
14142
14143         * build-aux/announce-gen: Fix gnulib version related part of usage
14144         message.  Die with a useful error message if no tarballs are
14145         found.
14146
14147 2008-10-10  Jim Meyering  <meyering@redhat.com>
14148
14149         bootstrap: use git's --depth=N option only if it's supported
14150         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
14151         recognize the --depth option.  Reported by Pádraig Brady.
14152
14153 2008-10-09  Bruno Haible  <bruno@clisp.org>
14154
14155         New module 'ioctl'.
14156         * modules/ioctl: New file.
14157         * lib/sys_socket.in.h (ioctl): Remove declaration.
14158         * lib/winsock.c: Include <sys/ioctl.h>.
14159         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
14160         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
14161         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
14162         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
14163         * doc/posix-functions/ioctl.texi: Mention the new module.
14164
14165 2008-10-09  Bruno Haible  <bruno@clisp.org>
14166
14167         New module 'sys_ioctl'.
14168         * lib/sys_ioctl.in.h: New file.
14169         * m4/sys_ioctl_h.m4: New file.
14170         * modules/sys_ioctl: New file.
14171         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
14172
14173 2008-10-09  Bruno Haible  <bruno@clisp.org>
14174
14175         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
14176         * lib/winsock.c: Include <stdarg.h>.
14177         (rpl_ioctl): Change to second argument 'int' and then varargs.
14178
14179 2008-10-09  Bruno Haible  <bruno@clisp.org>
14180
14181         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
14182         when the sys_socket module is present and the system has <winsock2.h>.
14183
14184 2008-10-09  Bruno Haible  <bruno@clisp.org>
14185
14186         * doc/posix-functions/close.texi: Mention module 'close' instead of
14187         module 'sys_socket'.
14188
14189 2008-10-09  Bruno Haible  <bruno@clisp.org>
14190
14191         * doc/glibc-headers/sys_ioctl.texi: New file.
14192         * doc/gnulib.texi: Include it.
14193
14194 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14195             Bruno Haible  <bruno@clisp.org>
14196
14197         Combine the two replacements of 'close'.
14198         * lib/sys_socket.in.h (close): Define to a reminder to include
14199         <unistd.h>.
14200         (_gl_close_fd_maybe_socket): New declaration.
14201         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
14202         * lib/winsock.c (close): Remove undefinition.
14203         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
14204         needed for the gnulib module 'close'.
14205         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
14206         define to an error symbol or to a warning, if suitable.
14207         * lib/close.c: Include <sys/socket.h>.
14208         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
14209         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
14210         UNISTD_H_HAVE_WINSOCK2_H.
14211         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
14212         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14213         UNISTD_H_HAVE_WINSOCK2_H.
14214         * modules/sys_socket (Files): Add m4/unistd_h.m4.
14215         (configure.ac): Set a module indicator.
14216         (Makefile.am): Substitute GNULIB_CLOSE.
14217         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
14218         * modules/poll-tests (Depends-on): Add close.
14219         * modules/select-tests (Depends-on): Likewise.
14220
14221 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14222             Bruno Haible  <bruno@clisp.org>
14223
14224         New module 'close'.
14225         * modules/close: New file.
14226         * lib/unistd.in.h (close): Move declaration out of the
14227         FCHDIR_REPLACEMENT scope.
14228         (_gl_unregister_fd): New declaration.
14229         * lib/close.c: New file.
14230         * lib/fchdir.c (rpl_close): Remove function.
14231         * m4/close.m4: New file.
14232         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14233         close.
14234         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
14235         REPLACE_CLOSE.
14236         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
14237         REPLACE_CLOSE.
14238         * modules/fchdir (Depends-on): Add close.
14239
14240 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14241             Bruno Haible  <bruno@clisp.org>
14242
14243         * lib/fcntl.in.h (open): Simplify conditionals.
14244         (_gl_register_fd): New declaration.
14245         * lib/fchdir.c (rpl_open): Remove function.
14246         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
14247         also.
14248         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
14249         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14250         open.
14251
14252 2008-10-09  Jim Meyering  <meyering@redhat.com>
14253
14254         GNUmakefile: use the more name-space-friendly "_version"
14255         * top/GNUmakefile (_dummy): Update.
14256         (_version): Rename from "version".
14257
14258 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14259             Bruno Haible  <bruno@clisp.org>
14260
14261         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
14262         rpl_close.
14263         (_gl_register_fd): New function, extracted from rpl_open.
14264         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
14265         (rpl_open, rpl_opendir): Use _gl_register_fd.
14266
14267 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14268
14269         Fix organization of 'open' replacement.
14270         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
14271         (gl_FUNC_OPEN): Use it.
14272         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
14273
14274 2008-10-08  Bruno Haible  <bruno@clisp.org>
14275
14276         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
14277
14278 2008-10-08  Simon Josefsson  <simon@josefsson.org>
14279
14280         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
14281         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
14282         listen).
14283
14284 2008-10-08  Eric Blake  <ebb9@byu.net>
14285
14286         GNUmakefile: add 'make version' target
14287         * top/GNUmakefile (_curr-ver): Split version update rules...
14288         (version): ...into a target.
14289
14290 2008-10-07  Bruno Haible  <bruno@clisp.org>
14291
14292         Use a more portable replacement expression for -0.0L.
14293         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
14294         instead of -0.0L. Fix m4 quotation.
14295
14296         * tests/test-signbit.c: Include <float.h>.
14297         (minus_zero): New variable.
14298         (test_signbitl): Use minus_zero instead of -zero.
14299         * modules/signbit-tests (Depends-on): Add float.
14300
14301         * tests/test-ceill.c: Include <float.h>.
14302         (zero): Remove variable.
14303         (minus_zero): New variable.
14304         (main): Use minus_zero instead of -zero.
14305         * modules/ceill-tests (Depends-on): Add float.
14306
14307         * tests/test-floorl.c: Include <float.h>.
14308         (zero): Remove variable.
14309         (minus_zero): New variable.
14310         (main): Use minus_zero instead of -zero.
14311         * modules/floorl-tests (Depends-on): Add float.
14312
14313         * tests/test-roundl.c: Include <float.h>.
14314         (zero): Remove variable.
14315         (minus_zero): New variable.
14316         (main): Use minus_zero instead of -zero.
14317         * modules/roundl-tests (Depends-on): Add float.
14318
14319         * tests/test-truncl.c: Include <float.h>.
14320         (zero): Remove variable.
14321         (minus_zero): New variable.
14322         (main): Use minus_zero instead of -zero.
14323         * modules/truncl-tests (Depends-on): Add float.
14324
14325         * tests/test-frexpl.c (zero): Remove variable.
14326         (minus_zero): New variable.
14327         (main): Use minus_zero instead of -zero.
14328         * modules/frexpl-tests (Depends-on): Add float.
14329
14330         * tests/test-isnan.c (zerol): Remove variable.
14331         (minus_zerol): New variable.
14332         (test_long_double): Use minus_zerol instead of -zerol.
14333         * modules/isnan-tests (Depends-on): Add float.
14334
14335         * tests/test-isnanl.h (zero): Remove variable.
14336         (minus_zero): New variable.
14337         (main): Use minus_zero instead of -zero.
14338         * modules/isnanl-nolibm-tests (Depends-on): Add float.
14339         * modules/isnanl-tests (Depends-on): Add float.
14340
14341         * tests/test-ldexpl.c (zero): Remove variable.
14342         (minus_zero): New variable.
14343         (main): Use minus_zero instead of -zero.
14344         * modules/ldexpl-tests (Depends-on): Add float.
14345
14346         * tests/test-snprintf-posix.h (zerol): Remove variable.
14347         (minus_zerol): New variable.
14348         (test_function): Use minus_zerol instead of -zerol.
14349         * modules/snprintf-posix-tests (Depends-on): Add float.
14350         * modules/vsnprintf-posix-tests (Depends-on): Add float.
14351
14352         * tests/test-sprintf-posix.h (zerol): Remove variable.
14353         (minus_zerol): New variable.
14354         (test_function): Use minus_zerol instead of -zerol.
14355         * modules/sprintf-posix-tests (Depends-on): Add float.
14356         * modules/vsprintf-posix-tests (Depends-on): Add float.
14357
14358         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
14359         (minus_zerol): New variable.
14360         (test_function): Use minus_zerol instead of -zerol.
14361         * modules/vasnprintf-posix-tests (Depends-on): Add float.
14362
14363         * tests/test-vasprintf-posix.c (zerol): Remove variable.
14364         (minus_zerol): New variable.
14365         (test_function): Use minus_zerol instead of -zerol.
14366         * modules/vasprintf-posix-tests (Depends-on): Add float.
14367
14368 2008-10-07  Simon Josefsson  <simon@josefsson.org>
14369
14370         * MODULES.html.sh (Support for building documentation): Mention
14371         pmccabe2html.  Sort entries.
14372
14373         Add pmccabe2html module, from gnupdf.
14374         * build-aux/pmccabe.css: New file.
14375         * build-aux/pmccabe2html: New file.
14376         * m4/pmccabe2html.m4: New file.
14377         * modules/pmccabe2html: New file.
14378
14379 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
14380
14381         flock: new module
14382         * MODULES.html.sh: Add to list of modules.
14383         * lib/flock.c: flock implementation for Windows and Unix systems
14384         which have fcntl.
14385         * doc/glibc-functions/flock.texi: Update documentation.
14386         * lib/sys_file.in.h: <sys/file.h> header file.
14387         * m4/flock.m4: M4 macros.
14388         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
14389         * modules/flock: flock module.
14390         * modules/flock-tests: flock tests module.
14391         * modules/sys_file: sys/file.h module.
14392         * tests/test-flock.c: test suite for flock.
14393
14394 2008-10-06  Jim Meyering  <meyering@redhat.com>
14395
14396         bootstrap: check for LT_INIT more portably still ;-)
14397         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
14398         Spotted by Bruno Haible.
14399
14400 2008-10-06  Eric Blake  <ebb9@byu.net>
14401
14402         test-signbit: avoid tripping Irix cc bug on -0.0L
14403         * tests/test-signbit.c (minus_zerol): Delete, and replace with
14404         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
14405         entire testsuite consistent and avoids an Irix 6.2 bug.
14406
14407 2008-10-05  Bruno Haible  <bruno@clisp.org>
14408             Jim Meyering  <jim@meyering.net>
14409
14410         Add an option for ignoring EPIPE during close_stdout.
14411         * lib/closeout.h: Include <stdbool.h>.
14412         (close_stdout_set_ignore_EPIPE): New declaration.
14413         * lib/closeout.c: Include <stdbool.h>.
14414         (ignore_EPIPE): New variable.
14415         (close_stdout_set_ignore_EPIPE): New function.
14416         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
14417         * lib/close-stream.c (close_stream): Mention the possible EPIPE
14418         failure.
14419         * modules/closeout (Depends-on): Add stdbool.
14420
14421 2008-10-05  Bruno Haible  <bruno@clisp.org>
14422
14423         * modules/accept: New file.
14424         * modules/bind: New file.
14425         * modules/connect: New file.
14426         * modules/getpeername: New file.
14427         * modules/getsockname: New file.
14428         * modules/getsockopt: New file.
14429         * modules/listen: New file.
14430         * modules/recv: New file.
14431         * modules/recvfrom: New file.
14432         * modules/send: New file.
14433         * modules/sendto: New file.
14434         * modules/setsockopt: New file.
14435         * modules/socket: New file.
14436         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
14437         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
14438         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
14439         the particular module is requested. Add a link warning when the
14440         particular module is not requested.
14441         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
14442         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
14443         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
14444         the particular module is requested.
14445         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
14446         gl_SYS_SOCKET_H_DEFAULTS): New macros.
14447         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
14448         * modules/sys_socket (Depends-on): Add link-warning.
14449         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
14450         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
14451         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
14452         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
14453         GL_LINK_WARNING.
14454         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
14455         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
14456         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
14457         * doc/posix-functions/getpeername.texi: Mention the new module
14458         'getpeername'.
14459         * doc/posix-functions/getsockname.texi: Mention the new module
14460         'getsockname'.
14461         * doc/posix-functions/getsockopt.texi: Mention the new module
14462         'getsockopt'.
14463         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
14464         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
14465         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
14466         * doc/posix-functions/send.texi: Mention the new module 'send'.
14467         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
14468         * doc/posix-functions/setsockopt.texi: Mention the new module
14469         'setsockopt'.
14470         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
14471         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
14472         listen, connect, accept.
14473         * modules/select-tests (Depends-on): Likewise.
14474
14475 2008-10-05  Bruno Haible  <bruno@clisp.org>
14476
14477         * lib/winsock.c (strerror): Remove unused #undef.
14478         (rpl_close): Remove unused local variable.
14479
14480         * modules/sys_socket (Depends-on); Add errno.
14481
14482 2008-10-05  Bruno Haible  <bruno@clisp.org>
14483
14484         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
14485         (select): Add a link warning when the 'select' module is not used.
14486         * modules/sys_select (Depends-on): Add link-warning.
14487         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
14488         Suggested by Paolo Bonzini.
14489
14490 2008-10-05  Jim Meyering  <meyering@redhat.com>
14491
14492         bootstrap: check for LT_INIT more portably
14493         * build-aux/bootstrap: Avoid using grep -E, since it's not
14494         portable enough.  Suggestion from Bruno Haible.
14495
14496 2008-10-05  Bruno Haible  <bruno@clisp.org>
14497
14498         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
14499         as being fixed by gnulib.
14500
14501 2008-10-05  Bruno Haible  <bruno@clisp.org>
14502
14503         * modules/select-tests: New file, mostly copied from
14504         modules/sys_select-tests.
14505         * tests/test-select.c: New file, mostly copied from
14506         tests/test-sys_select.c.
14507         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
14508         * modules/sys_select-tests (Depends-on): Remove all dependencies.
14509         (Makefile.am): Remove test_sys_select_LDADD.
14510
14511         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
14512         to an undefined symbol, for an error message.
14513         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
14514         (gl_SYS_SELECT_H_DEFAULTS): New macro.
14515         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
14516         winsock-select.c here.
14517         * modules/sys_select (Files): Remove lib/winsock-select.c.
14518         (Depends-on): Remove alloca.
14519         (Makefile.am): Substitute GNULIB_SELECT.
14520         * modules/select: New file.
14521         * doc/posix-functions/select.texi: Update.
14522
14523 2008-10-05  Bruno Haible  <bruno@clisp.org>
14524
14525         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
14526         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
14527         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
14528         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
14529         getdtablesize.
14530         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
14531         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
14532
14533 2008-10-05  Bruno Haible  <bruno@clisp.org>
14534
14535         * modules/getdtablesize-tests: New file.
14536         * tests/test-getdtablesize.c: New file.
14537
14538         New module 'getdtablesize'.
14539         * lib/unistd.in.h (getdtablesize): New declaration.
14540         * lib/getdtablesize.c: New file.
14541         * m4/getdtablesize.m4: New file.
14542         * modules/getdtablesize: New file.
14543         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14544         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
14545         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
14546         HAVE_GETDTABLESIZE.
14547         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
14548
14549 2008-10-05  Bruno Haible  <bruno@clisp.org>
14550
14551         * modules/sched (Makefile.am): Fix typo.
14552         Reported by Simon Josefsson.
14553
14554 2008-10-05  Jim Meyering  <meyering@redhat.com>
14555
14556         bootstrap: check for LT_INIT, too
14557         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
14558         are deprecated.  Suggestion from Ralf Wildenhues.
14559
14560 2008-10-05  Bruno Haible  <bruno@clisp.org>
14561
14562         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
14563         overriding them by ours.
14564         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
14565
14566 2008-10-05  Jim Meyering  <meyering@redhat.com>
14567
14568         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
14569         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
14570         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
14571
14572 2008-10-04  Bruno Haible  <bruno@clisp.org>
14573
14574         * modules/dup2 (License): Change to LGPLv2+.
14575         * modules/sleep (License): Likewise.
14576         * modules/perror (License): Likewise.
14577         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
14578         Blake.
14579         * modules/signal (License): Likewise.
14580         * modules/sigprocmask (License): Likewise.
14581         * modules/raise (License): Change to LGPLv2+, with approval by Jim
14582         Meyering.
14583
14584 2008-10-04  Bruno Haible  <bruno@clisp.org>
14585
14586         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
14587         Reported by Rainer Tammer <tammer@tammer.net>.
14588
14589 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
14590             Bruno Haible  <bruno@clisp.org>
14591
14592         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
14593         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
14594         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
14595
14596 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
14597
14598         filevercmp: new module
14599         * lib/filevercmp.h: New function filevercmp comparing version strings.
14600         * lib/filevercmp.c: Implementation of filevercmp function.
14601         * modules/filevercmp: Module metadata.
14602         * tests/test-filevercmp.c: Unit test for new module.
14603         * modules/filevercmp-tests: Unit test metadata.
14604         * MODULES.html.sh: Add filevercmp module.
14605
14606 2008-10-03  Bruno Haible  <bruno@clisp.org>
14607
14608         * lib/c-ctype.h: Add comment.
14609         Reported by Jim Meyering.
14610
14611 2008-10-02  Bruno Haible  <bruno@clisp.org>
14612
14613         * modules/posix_spawn-internal (Depends-on): Add 'open'.
14614
14615 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14616
14617         * build-aux/bootstrap: Allow renaming bootstrap, and change the
14618         name of bootstrap.conf accordingly.
14619
14620 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14621
14622         * build-aux/bootstrap: Install git-merge-changelog configuration
14623         items into .gitconfig if needed.
14624
14625 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14626
14627         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
14628         git repository, and initialize/update it accordingly.
14629
14630 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
14631
14632         * modules/fsync-tests: New file.
14633         * tests/test-fsync.c: New file.
14634
14635         New module 'fsync'.
14636         * lib/fsync.c: New file.
14637         * m4/fsync.m4: New file.
14638         * modules/fsync: New file.
14639         * lib/unistd.in.h (fsync): New declaration.
14640         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
14641         GNULIB_FSYNC and HAVE_FSYNC.
14642         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
14643         * MODULES.html.sh (posix_functions): Add fsync.
14644         * doc/posix-functions/fsync.texi: Mention the new module.
14645
14646 2008-10-02  Jim Meyering  <meyering@redhat.com>
14647
14648         fts.c: sync with similar code from coreutils' remove.c
14649         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
14650         Guard also with "#if defined __linux__", since for now at least,
14651         this code is Linux-kernel-specific.
14652
14653 2008-10-02  Jim Meyering  <meyering@redhat.com>
14654
14655         fts: bug fixes
14656         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
14657         Include <sys/vfs.h>, not <sys/statfs.h>.
14658
14659         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
14660         Include <sys/vfs.h>, not <sys/statfs.h>.
14661
14662 2008-10-01  Bruno Haible  <bruno@clisp.org>
14663
14664         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
14665         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
14666         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
14667         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
14668         * doc/posix-functions/posix_spawnp.texi: Likewise.
14669         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
14670         whether posix_spawn actually works.
14671         * m4/pipe.m4 (gl_PIPE): Likewise.
14672         * modules/execute (Files): Add m4/posix_spawn.m4.
14673         * modules/pipe (Files): Add m4/posix_spawn.m4.
14674         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
14675
14676 2008-10-01  Jim Meyering  <meyering@redhat.com>
14677
14678         remove trailing spaces
14679         * NEWS: Likewise.
14680         * lib/poll.c (poll): Likewise.
14681         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
14682         * lib/winsock.c (rpl_close): Likewise.
14683         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
14684         * modules/yield: Likewise.
14685         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
14686         * tests/test-sys_select.c (connect_to_socket): Likewise.
14687
14688         fts.c: adjust a new interface to be more generally useful
14689         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
14690         (fts_build): Adjust caller.
14691
14692 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14693
14694         * modules/cond-tests: New file.
14695         * tests/test-cond.c: New file.
14696
14697 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14698             Bruno Haible  <bruno@clisp.org>
14699
14700         * modules/cond (Dependencies): Add errno, time.
14701         * lib/glthread/cond.h: Include <time.h>.
14702         (gl_cond_define, gl_cond_define_initialized): Use the same definition
14703         across platforms.
14704
14705 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14706             Bruno Haible  <bruno@clisp.org>
14707
14708         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
14709
14710 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14711             Bruno Haible  <bruno@clisp.org>
14712
14713         * modules/tls-tests (Depends-on): Add thread, yield.
14714         (configure.ac): Remove all checks.
14715         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
14716         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14717         gl_thread_self): Remove definitions. Include glthread/thread.h and
14718         glthread/yield.h instead.
14719         (test_tls): Pass an additional NULL argument to gl_thread_join.
14720
14721 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14722             Bruno Haible  <bruno@clisp.org>
14723
14724         * modules/lock-tests (Depends-on): Add thread, yield.
14725         (configure.ac): Remove all checks.
14726         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
14727         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14728         gl_thread_self): Remove definitions. Include glthread/thread.h and
14729         glthread/yield.h instead.
14730         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
14731         additional NULL argument to gl_thread_join.
14732
14733 2008-09-30  Bruno Haible  <bruno@clisp.org>
14734
14735         Fix the Win32 implementation of the 'thread' module.
14736         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
14737         pointer type.
14738         (gl_thread_self): Invoke gl_thread_self_func.
14739         (gl_thread_self_func): New declaration.
14740         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
14741         (do_init_self_key, init_self_key): New functions.
14742         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
14743         Remove some fields.
14744         (running_threads, running_lock): Remove variables.
14745         (get_current_thread_handle): New function.
14746         (gl_thread_self_func, wrapper_func, glthread_create_func,
14747         glthread_join_func, gl_thread_exit_func): Largely rewritten and
14748         simplified.
14749
14750 2008-09-30  Bruno Haible  <bruno@clisp.org>
14751
14752         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
14753         files.
14754
14755 2008-09-30  Jim Meyering  <meyering@redhat.com>
14756
14757         fts.m4: correct the test for statfs.f_type
14758         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
14759         when checking for statfs.f_type.
14760
14761 2008-09-15  Simon Josefsson  <simon@josefsson.org>
14762
14763         tests: avoid some compiler warnings
14764         * tests/test-memchr.c (main): Pass NULL indirectly.
14765         * tests/test-getdate.c (main): Remove unused variable 'ret'.
14766
14767 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
14768
14769         getdate.y: disallow countable dayshifts like "4 yesterday ago"
14770         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
14771         exactly specified dayshifts.
14772         (dayshift): New rule.
14773         (rel): Add dayshift.
14774         (relative_time_table) [tomorrow, yesterday, today, now]:
14775         Use tDAY_SHIFT in place of tDAY_UNIT.
14776         * tests/test-getdate.c: Add tests for now-disallowed countable
14777         dayshifts, e.g., "4 yesterday ago".
14778
14779 2008-09-29  Bruno Haible  <bruno@clisp.org>
14780
14781         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
14782         * tests/test-posix_spawn1.in.sh: Renamed from
14783         tests/test-posix_spawn.in.sh.
14784         * tests/test-posix_spawn2.c: New file.
14785         * tests/test-posix_spawn2.in.sh: New file.
14786         * modules/posix_spawnp-tests (Files): Update.
14787         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
14788
14789 2008-09-29  Bruno Haible  <bruno@clisp.org>
14790
14791         Propagate effects of putenv/setenv/unsetenv to child processes.
14792         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
14793         * lib/pipe.c (create_pipe): Likewise.
14794
14795 2008-09-29  Bruno Haible  <bruno@clisp.org>
14796
14797         Enable use of shell scripts as executables in mingw.
14798         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
14799         run the program as a shell script.
14800         * lib/pipe.c (create_pipe): Likewise.
14801         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
14802         resulting array.
14803
14804 2008-09-29  Eric Blake  <ebb9@byu.net>
14805
14806         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
14807
14808 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
14809
14810         * doc/posix-functions/accept.texi: Update mingw problems.
14811         * doc/posix-functions/bind.texi: Update mingw problems.
14812         * doc/posix-functions/close.texi: Update mingw problems.
14813         * doc/posix-functions/connect.texi: Update mingw problems.
14814         * doc/posix-functions/getpeername.texi: Update mingw problems.
14815         * doc/posix-functions/getsockname.texi: Update mingw problems.
14816         * doc/posix-functions/getsockopt.texi: Update mingw problems.
14817         * doc/posix-functions/ioctl.texi: Update mingw problems.
14818         * doc/posix-functions/listen.texi: Update mingw problems.
14819         * doc/posix-functions/recv.texi: Update mingw problems.
14820         * doc/posix-functions/recvfrom.texi: Update mingw problems.
14821         * doc/posix-functions/select.texi: Update mingw problems.
14822         * doc/posix-functions/send.texi: Update mingw problems.
14823         * doc/posix-functions/sendto.texi: Update mingw problems.
14824         * doc/posix-functions/setsockopt.texi: Update mingw problems.
14825         * doc/posix-functions/socket.texi: Update mingw problems.
14826
14827 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
14828             Bruno Haible  <bruno@clisp.org>
14829
14830         * lib/sys_select.in.h: Include sys/time.h.
14831         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
14832         * modules/sys_select: Depend on sys_time.
14833         * tests/test-sys_select.c: Test that sys/select.h defines struct
14834         timeval fully.
14835
14836 2008-09-29  Bruno Haible  <bruno@clisp.org>
14837
14838         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
14839         * lib/sys_select.in.h: Likewise.
14840
14841 2008-09-29  Bruno Haible  <bruno@clisp.org>
14842
14843         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
14844
14845 2008-09-29  Bruno Haible  <bruno@clisp.org>
14846
14847         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
14848         Set LIBSOCKET instead of augmenting LIBS.
14849         * modules/sockets (Link): New section.
14850         * modules/sockets-tests (test_sockets_LDADD): New variable.
14851         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
14852         * modules/poll-tests (test_poll_LDADD): New variable.
14853         * NEWS: Document the change.
14854
14855 2008-09-29  Bruno Haible  <bruno@clisp.org>
14856
14857         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
14858         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
14859         ARPA_INET_H directly.
14860         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14861
14862 2008-09-28  Bruno Haible  <bruno@clisp.org>
14863
14864         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
14865         from gl_HEADER_SYS_SOCKET.
14866         (gl_HEADER_SYS_SOCKET): Invoke it.
14867         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
14868
14869 2008-09-28  Bruno Haible  <bruno@clisp.org>
14870
14871         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
14872         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
14873         Needed on OSF/1 4.0.
14874
14875 2008-09-28  Bruno Haible  <bruno@clisp.org>
14876
14877         Override open more carefully.
14878         * lib/open.c (orig_open): New function.
14879         (rpl_open): Use orig_open instead of open.
14880         * lib/fcntl.in.h: Add special invocation convention.
14881         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
14882         (gl_FUNC_OPEN): Invoke it.
14883
14884         Override freopen more carefully.
14885         * lib/freopen.c (orig_freopen): New function.
14886         (rpl_freopen): Use orig_freopen instead of freopen.
14887         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
14888         (gl_FUNC_FREOPEN): Invoke it.
14889
14890         Override fopen more carefully.
14891         * lib/fopen.c (orig_fopen): New function.
14892         (rpl_fopen): Use orig_fopen instead of fopen.
14893         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
14894         (gl_FUNC_FOPEN): Invoke it.
14895         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
14896
14897 2008-09-28  Bruno Haible  <bruno@clisp.org>
14898
14899         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
14900         SIGPIPE.
14901
14902 2008-09-28  Bruno Haible  <bruno@clisp.org>
14903
14904         * tests/test-sigaction.c (handler, main): Disable the check whether
14905         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
14906         glibc systems with LinuxThreads.
14907
14908 2008-09-28  Bruno Haible  <bruno@clisp.org>
14909
14910         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
14911
14912         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
14913         with AIX xlc.
14914         * lib/fcntl.in.h (open): Likewise.
14915         Reported by Rainer Tammer <tammer@tammer.net>.
14916
14917 2008-09-28  Bruno Haible  <bruno@clisp.org>
14918
14919         * modules/posix_spawnp-tests: New file.
14920         * tests/test-posix_spawn.c: New file.
14921         * tests/test-posix_spawn.in.sh: New file.
14922
14923         New module 'posix_spawnp'.
14924         * modules/posix_spawnp: New file.
14925         * lib/spawnp.c: New file, from GNU libc with modifications.
14926         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
14927
14928         New module 'posix_spawn'.
14929         * modules/posix_spawn: New file.
14930         * lib/spawn.c: New file, from GNU libc with modifications.
14931         * doc/posix-functions/posix_spawn.texi: Mention the new module.
14932
14933         New module 'posix_spawnattr_destroy'.
14934         * modules/posix_spawnattr_destroy: New file.
14935         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
14936         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
14937         module.
14938
14939         New module 'posix_spawnattr_setsigmask'.
14940         * modules/posix_spawnattr_setsigmask: New file.
14941         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
14942         modifications.
14943         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
14944         new module.
14945
14946         New module 'posix_spawnattr_getsigmask'.
14947         * modules/posix_spawnattr_getsigmask: New file.
14948         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
14949         modifications.
14950         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
14951         new module.
14952
14953         New module 'posix_spawnattr_setsigdefault'.
14954         * modules/posix_spawnattr_setsigdefault: New file.
14955         * lib/spawnattr_setdefault.c: New file, from GNU libc with
14956         modifications.
14957         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
14958         new module.
14959
14960         New module 'posix_spawnattr_getsigdefault'.
14961         * modules/posix_spawnattr_getsigdefault: New file.
14962         * lib/spawnattr_getdefault.c: New file, from GNU libc with
14963         modifications.
14964         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
14965         new module.
14966
14967         New module 'posix_spawnattr_setschedpolicy'.
14968         * modules/posix_spawnattr_setschedpolicy: New file.
14969         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
14970         modifications.
14971         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
14972         new module.
14973
14974         New module 'posix_spawnattr_getschedpolicy'.
14975         * modules/posix_spawnattr_getschedpolicy: New file.
14976         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
14977         modifications.
14978         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
14979         new module.
14980
14981         New module 'posix_spawnattr_setschedparam'.
14982         * modules/posix_spawnattr_setschedparam: New file.
14983         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
14984         modifications.
14985         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
14986         new module.
14987
14988         New module 'posix_spawnattr_getschedparam'.
14989         * modules/posix_spawnattr_getschedparam: New file.
14990         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
14991         modifications.
14992         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
14993         new module.
14994
14995         New module 'posix_spawnattr_setpgroup'.
14996         * modules/posix_spawnattr_setpgroup: New file.
14997         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
14998         modifications.
14999         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
15000         module.
15001
15002         New module 'posix_spawnattr_getpgroup'.
15003         * modules/posix_spawnattr_getpgroup: New file.
15004         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
15005         modifications.
15006         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
15007         module.
15008
15009         New module 'posix_spawnattr_setflags'.
15010         * modules/posix_spawnattr_setflags: New file.
15011         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
15012         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
15013         module.
15014
15015         New module 'posix_spawnattr_getflags'.
15016         * modules/posix_spawnattr_getflags: New file.
15017         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
15018         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
15019         module.
15020
15021         New module 'posix_spawnattr_init'.
15022         * modules/posix_spawnattr_init: New file.
15023         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
15024         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
15025         module.
15026
15027         New module 'posix_spawn_file_actions_destroy'.
15028         * modules/posix_spawn_file_actions_destroy: New file.
15029         * lib/spawn_faction_destroy.c: New file, from GNU libc with
15030         modifications.
15031         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
15032         the new module.
15033
15034         New module 'posix_spawn_file_actions_addopen'.
15035         * modules/posix_spawn_file_actions_addopen: New file.
15036         * lib/spawn_faction_addopen.c: New file, from GNU libc with
15037         modifications.
15038         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
15039         the new module.
15040
15041         New module 'posix_spawn_file_actions_adddup2'.
15042         * modules/posix_spawn_file_actions_adddup2: New file.
15043         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
15044         modifications.
15045         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
15046         the new module.
15047
15048         New module 'posix_spawn_file_actions_addclose'.
15049         * modules/posix_spawn_file_actions_addclose: New file.
15050         * lib/spawn_faction_addclose.c: New file, from GNU libc with
15051         modifications.
15052         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
15053         the new module.
15054
15055         New module 'posix_spawn_file_actions_init'.
15056         * modules/posix_spawn_file_actions_init: New file.
15057         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
15058         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
15059         new module.
15060
15061         New module 'posix_spawn-internal'.
15062         * modules/posix_spawn-internal: New file.
15063         * lib/spawn_int.h: New file, from GNU libc with modifications.
15064         * lib/spawni.c: New file, from GNU libc with modifications.
15065         * m4/posix_spawn.m4: New file.
15066
15067         New module 'spawn'.
15068         * modules/spawn: New file.
15069         * lib/spawn.in.h: New file, from GNU libc with modifications.
15070         * m4/spawn_h.m4: New file.
15071         * doc/posix-headers/spawn.texi: Mention the new module.
15072
15073 2008-09-28  Bruno Haible  <bruno@clisp.org>
15074
15075         * modules/sched-tests: New file.
15076         * tests/test-sched.c: New file.
15077
15078         New module 'sched'.
15079         * modules/sched: New file.
15080         * lib/sched.in.h: New file.
15081         * m4/sched_h.m4: New file.
15082         * doc/posix-headers/sched.texi: Mention the new module.
15083
15084 2008-09-27  Eric Blake  <ebb9@byu.net>
15085
15086         Fix previous patch, and tweak references to $0.
15087         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
15088         (func_version, func_gnulib_dir): Don't call this program
15089         gnulib-tool.
15090         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
15091         with using $0 in function.
15092         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
15093         (func_fatal_error): Reuse the name the user invoked us with.
15094
15095 2008-09-27  Bruno Haible  <bruno@clisp.org>
15096
15097         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
15098         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
15099         (gl_ICONV_H): Not here.
15100         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
15101         instead of assigning ICONV_H directly.
15102
15103         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
15104         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
15105         WCHAR_H directly.
15106
15107 2008-09-27  Bruno Haible  <bruno@clisp.org>
15108
15109         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
15110         * modules/arpa_inet (Depends-on): Add link-warning.
15111         (Makefile.am): Insert the definition of GL_LINK-WARNING.
15112         * modules/unistd (Makefile.am): Likewise.
15113
15114 2008-09-26  Bruno Haible  <bruno@clisp.org>
15115
15116         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
15117         variables.
15118         (func_version): Essentially copied from gnulib-tool.
15119         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
15120         func_readlink): Copied from gnulib-tool.
15121
15122 2008-09-26  Bruno Haible  <bruno@clisp.org>
15123
15124         * gnulib-tool (func_version): Change directory to $gnulib_dir before
15125         invoking git-version-gen.
15126
15127 2008-09-26  Bruno Haible  <bruno@clisp.org>
15128
15129         * posix-modules: Update to directory names changed on 2008-01-19.
15130         Remove commas in output before splitting into words. No more need to
15131         avoid 'ftruncate' since 2007-02-19.
15132
15133 2008-09-26  Bruno Haible  <bruno@clisp.org>
15134
15135         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
15136
15137 2008-09-26  Bruno Haible  <bruno@clisp.org>
15138
15139         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
15140         * modules/fwriteerror (Depends-on): Add errno.
15141
15142 2008-09-26  Bruno Haible  <bruno@clisp.org>
15143
15144         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
15145         * tests/test-vc-list-files-cvs.sh: Likewise.
15146
15147 2008-09-26  Bruno Haible  <bruno@clisp.org>
15148
15149         * doc/posix-headers/sys_resource.texi: Reorder items.
15150
15151 2008-09-26  Jim Meyering  <meyering@redhat.com>
15152
15153         fts: tweak inode comparison function
15154         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
15155         inode numbers, as documented.
15156
15157         fts: sort dirent entries on inode number before traversing
15158         This avoids a quadratic, seek-related performance penalty when
15159         operating on a directory containing many entries (measurable at 10k;
15160         3.5 hours at 2 million entries with a cold cache) on certain types
15161         of file systems, including ext3 and ext4, but not tmpfs.
15162         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
15163         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
15164         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
15165         (fs_handles_readdir_ordered_dirents_efficiently): New function.
15166         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
15167         (fts_build): Set the stat.st_ino member from D_INO.
15168         If it is likely to be useful, sort dirent entries on inode number.
15169
15170         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
15171         and the struct statfs.f_type member.
15172         * modules/fts (Depends-on): Add d-ino.
15173
15174 2008-09-26  Bruno Haible  <bruno@clisp.org>
15175
15176         * modules/sigpipe-die (Depends-on): Add sigpipe.
15177
15178         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
15179         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
15180         and GNULIB_STDIO_H_SIGPIPE are set.
15181         * lib/stdio-write.c: New file.
15182         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
15183         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15184         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15185         REPLACE_STDIO_WRITE_FUNCS.
15186         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
15187         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15188         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15189         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15190         * modules/stdio (Files): Add lib/stdio-write.c.
15191         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
15192         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15193         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15194         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15195         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
15196         REPLACE_FPRINTF_POSIX.
15197         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
15198         REPLACE_PRINTF_POSIX.
15199         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
15200         REPLACE_VFPRINTF_POSIX.
15201         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
15202         REPLACE_VPRINTF_POSIX.
15203         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
15204         SIGPIPE issue.
15205         * doc/posix-functions/fputc.texi: Likewise.
15206         * doc/posix-functions/fputs.texi: Likewise.
15207         * doc/posix-functions/fwrite.texi: Likewise.
15208         * doc/posix-functions/printf.texi: Likewise.
15209         * doc/posix-functions/putc.texi: Likewise.
15210         * doc/posix-functions/putchar.texi: Likewise.
15211         * doc/posix-functions/puts.texi: Likewise.
15212         * doc/posix-functions/vfprintf.texi: Likewise.
15213         * doc/posix-functions/vprintf.texi: Likewise.
15214
15215         * modules/safe-write (Depends-on): Add write.
15216
15217         * modules/sigpipe-tests: New file.
15218         * tests/test-sigpipe.c: New file.
15219         * tests/test-sigpipe.sh: New file.
15220
15221         * modules/write: New file.
15222         * lib/unistd.in.h: Include <sys/types.h>.
15223         (write): New declaration.
15224         * lib/write.c: New file.
15225         * m4/write.m4: New file.
15226         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
15227         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
15228         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
15229         GNULIB_WRITE, REPLACE_WRITE.
15230         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
15231         and the SIGPIPE issue.
15232
15233         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
15234         (raise): New declaration.
15235         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
15236         (ext_signal): New function.
15237         (rpl_raise): New function.
15238         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
15239         GNULIB_SIGNAL_H_SIGPIPE.
15240         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
15241         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
15242
15243         * modules/sigpipe: New file.
15244         * m4/sigpipe.m4: New file.
15245
15246 2008-09-25  Derek Price  <derek@ximbiot.com>
15247             Bruno Haible  <bruno@clisp.org>
15248
15249         * gnulib-tool (func_import): Report all license incompatibilities, not
15250         just the first one.
15251
15252 2008-09-25  Bruno Haible  <bruno@clisp.org>
15253
15254         * gnulib-tool (func_import): When computing the edits, consider not
15255         only the Makefile.ams that exist but also those that will be generated.
15256
15257 2008-09-25  Simon Josefsson  <simon@josefsson.org>
15258
15259         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
15260         fixes gnulib-tool --test warning about duplicate dependency.
15261
15262 2008-09-25  Bruno Haible  <bruno@clisp.org>
15263
15264         * gnulib-tool: Don't ask the user to perform edits in the generated
15265         Makefile.ams.
15266         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
15267         apply to the Makefile.am being generated.
15268         (func_emit_tests_Makefile_am): Execute edits that apply to the
15269         Makefile.am being generated.
15270         (func_import): Setup list of Makefile.am edits before emitting the
15271         Makefile.ams, not at the end.
15272         (func_create_testdir): Update.
15273         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15274
15275 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15276
15277         * gnulib-tool (func_import): Store the --tests-base option in the
15278         comment in gnulib-cache.m4.
15279
15280 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
15281
15282         * NEWS: Document increased portability that sys_select now provides.
15283
15284         * lib/sys_select.in.h: Install select wrapper.
15285         * lib/sys_socket.in.h: Use more descriptive name when there is no
15286         select wrapper.
15287         * lib/winsock-select.c: New.
15288         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
15289         Require gl_HEADER_SYS_SOCKET.
15290         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
15291         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
15292         * tests/test-sys_select.c: Add functional tests.
15293
15294 2008-09-24  Eric Blake  <ebb9@byu.net>
15295
15296         open, fopen: close fd leak in last patch
15297         * lib/open.c (rpl_open): Close fd before returning error.
15298         * lib/fopen.c (rpl_fopen): Close fd before returning error.
15299         * doc/posix-functions/open.texi (open): Document that Irix also
15300         has the bug.
15301         * doc/posix-functions/fopen.texi (fopen): Likewise.
15302         Reported by Paolo Bonzini.
15303
15304 2008-09-24  Bruno Haible  <bruno@clisp.org>
15305
15306         Ensure that a filename ending in a slash cannot be used to access a
15307         non-directory.
15308         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
15309         to check whether it's really a directory.
15310         * lib/fopen.c: Include fcntl.h, unistd.h.
15311         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
15312         and fdopen().
15313         * modules/fopen (Depends-on): Add unistd.
15314         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
15315         * tests/test-fopen.c (main): Likewise.
15316         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
15317         * doc/posix-functions/fopen.texi: Likewise.
15318         Reported by Eric Blake.
15319
15320 2008-09-23  Eric Blake  <ebb9@byu.net>
15321
15322         c-stack: avoid compiler optimizations when provoking overflow
15323         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
15324         recursion harder to optimize, to ensure a stack overflow occurs.
15325         * tests/test-c-stack.c (recurse): Likewise.
15326         Borrowed from libsigsegv.
15327
15328         c-stack: work around Irix sigaltstack bug
15329         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
15330         whether sigaltstack uses wrong end of stack_t (copied in part from
15331         libsigsegv).
15332         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
15333         Irix bug, without requiring an over-allocation.
15334         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
15335         bug.
15336
15337         fopen: document mingw bug on directories
15338         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
15339         not allowing a stream visiting a directory, even though reading
15340         from such a stream is not portable.
15341
15342 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15343
15344         * lib/poll.c: Rewrite.
15345         * modules/poll: Depend on alloca.
15346
15347 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15348
15349         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
15350         instead define prototypes for a full set of wrappers.  Ensure
15351         that Cygwin does not use the compatibility code, which is only
15352         for MinGW.
15353         * lib/winsock.c: New.
15354         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
15355         * modules/sys_socket: Add lib/winsock.c.
15356
15357         * modules/poll-tests: Add errno and perror.
15358         * tests/test-poll.c: Use ioctl, not ioctlsocket.
15359
15360 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15361
15362         * tests/test-poll.c: Downgrade minimum needed Winsock version.
15363
15364 2008-09-23  Bruno Haible  <bruno@clisp.org>
15365
15366         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
15367         * doc/glibc-functions/*: Likewise.
15368
15369 2008-09-23  Simon Josefsson  <simon@josefsson.org>
15370
15371         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
15372         success.
15373
15374 2008-09-22  Eric Blake  <ebb9@byu.net>
15375             Bruno Haible  <bruno@clisp.org>
15376
15377         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
15378         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
15379         supply %A but mishandle pseudo-NaN.
15380         Reported by Simon Josefsson.
15381
15382 2008-09-21  Bruno Haible  <bruno@clisp.org>
15383
15384         * tests/test-lock.c (main): Tweak skip message.
15385         * tests/test-tls.c (main): Likewise.
15386
15387 2008-09-21  Bruno Haible  <bruno@clisp.org>
15388
15389         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
15390         whether 'struct sigaction' has sa_sigaction here...
15391         (gl_PREREQ_SIG_HANDLER_H): ... not here.
15392         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
15393
15394 2008-09-21  Bruno Haible  <bruno@clisp.org>
15395
15396         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
15397         section.
15398         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
15399         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
15400         the new section.
15401         (Support for obsolete systems lacking POSIX:2001): New section.
15402         (String handling <string.h>): Move strdup to the new section.
15403         Suggested by Simon Josefsson and Paolo Bonzini.
15404
15405 2008-09-21  Bruno Haible  <bruno@clisp.org>
15406
15407         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
15408         exponents in %e and %g results on 'long double'. Needed for mingw's
15409         improved *printf functions.
15410         * tests/test-vasprintf-posix.c (test_function): Likewise.
15411         * tests/test-snprintf-posix.h (test_function): Likewise.
15412         * tests/test-sprintf-posix.h (test_function): Likewise.
15413         Reported by Eric Blake.
15414
15415 2008-09-21  Bruno Haible  <bruno@clisp.org>
15416
15417         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
15418         * tests/test-sprintf-posix.h (test_function): Likewise.
15419
15420 2008-09-21  Bruno Haible  <bruno@clisp.org>
15421
15422         * modules/getpass (Depends-on): Add strdup-posix.
15423
15424         New module 'strdup-posix'.
15425         * modules/strdup-posix: New file.
15426         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
15427         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
15428         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15429         REPLACE_STRDUP.
15430         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
15431         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
15432         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15433         strdup-posix.
15434
15435         * modules/strdup (Depends-on): Remove malloc-posix.
15436
15437 2008-09-20  Bruno Haible  <bruno@clisp.org>
15438
15439         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
15440         Wildenhues.
15441
15442 2008-09-20  Bruno Haible  <bruno@clisp.org>
15443
15444         Ensure that wint_t gets defined on IRIX 5.3.
15445         * lib/wchar.in.h (wint_t): Define if not defined by the system.
15446         * lib/wctype.in.h (wint_t): Likewise.
15447         (__wctype_wint_t): Remove type.
15448         (isw*): Use wint_t instead of __wctype_wint_t.
15449         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
15450         * modules/wchar (Files): Add m4/wint_t.m4.
15451         (Makefile.am): Substitute HAVE_WINT_T.
15452         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
15453         * tests/test-wctype.c: Check that wint_t is defined.
15454         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
15455         * doc/posix-headers/wctype.texi: Likewise.
15456         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15457
15458 2008-09-18  Bruno Haible  <bruno@clisp.org>
15459
15460         * gnulib-tool (func_exit): Update comment.
15461
15462 2008-09-18  Simon Josefsson  <simon@josefsson.org>
15463
15464         * modules/getaddrinfo (Depends-on): Remove strdup, this module
15465         assumes strdup exists and does not depend on strdup to return
15466         ENOMEM on out of memory conditions.
15467
15468 2008-09-18  Bruno Haible  <bruno@clisp.org>
15469
15470         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
15471         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
15472         digits for the exponent.
15473
15474 2008-09-18  Jim Meyering  <meyering@redhat.com>
15475             Bruno Haible  <bruno@clisp.org>
15476
15477         * lib/vasnprintf.c (decimal_point_char): Define also if
15478         NEED_PRINTF_INFINITE_LONG_DOUBLE.
15479
15480 2008-09-16  Bruno Haible  <bruno@clisp.org>
15481         and Eric Blake  <ebb9@byu.net>
15482
15483         vasnprintf: support Irix 5.3
15484         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
15485         that mishandle long double infinity.
15486         Reported by Tom G. Christensen.
15487
15488 2008-09-16  Bruno Haible  <bruno@clisp.org>
15489
15490         * doc/glibc-functions/scandir.texi: Mention the function is missing on
15491         Solaris 9.
15492         * doc/glibc-functions/alphasort.texi: Likewise.
15493         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
15494
15495 2008-09-16  Jim Meyering  <meyering@redhat.com>
15496
15497         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
15498         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
15499         a umask modification leak out of a subshell.  Otherwise, the
15500         opensolaris /bin/sh would be accepted and thus cause unwarranted
15501         failures in the coreutils test suite.
15502
15503 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
15504
15505         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
15506         to succeed.
15507
15508 2008-09-16  Jim Meyering  <meyering@redhat.com>
15509
15510         avoid spurious test failure when library is built without ACL support
15511         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
15512         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
15513         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
15514         * tests/test-copy-acl.sh: Likewise.
15515
15516 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15517
15518         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
15519         based on character occurrence counts.
15520
15521 2008-09-15  Eric Blake  <ebb9@byu.net>
15522
15523         tests: avoid some compiler warnings
15524         * tests/test-memchr.c (main): Pass NULL indirectly.
15525         * tests/test-closein.c (main): Avoid unused variable.
15526
15527 2008-09-15  Bruno Haible  <bruno@clisp.org>
15528
15529         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
15530         are missing on OpenBSD 4.0 individually.
15531         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15532
15533 2008-09-15  Bruno Haible  <bruno@clisp.org>
15534
15535         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
15536         * doc/posix-functions/strerror.texi: Mention also Cygwin.
15537         * doc/posix-functions/perror.texi: Likewise.
15538         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
15539         is missing.
15540         Reported by Eric Blake.
15541
15542         * lib/errno.in.h: Use replacement values >= 2000.
15543         Reported by Eric Blake.
15544
15545 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15546
15547         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
15548         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
15549         limit.
15550         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
15551         compareseq was aborted.
15552
15553 2008-09-14  Bruno Haible  <bruno@clisp.org>
15554
15555         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
15556         yvec_edit_count.
15557         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
15558         (fstrcmp_bounded): Simplify result computation accordingly.
15559
15560 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15561
15562         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
15563         (fstrcmp): Define in terms of fstrcmp_bounded.
15564         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
15565         lower_bound argument.
15566         Return quickly if the result is certainly < lower_bound.
15567         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
15568
15569 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15570
15571         * lib/diffseq.h (EARLY_ABORT): New macro.
15572         (compareseq): Change return type to bool. Return true when EARLY_ABORT
15573         evaluates to true.
15574
15575 2008-09-14  Bruno Haible  <bruno@clisp.org>
15576
15577         * modules/perror-tests: New file.
15578         * tests/test-perror.sh: New file.
15579         * tests/test-perror.c: New file.
15580
15581         New module 'perror'.
15582         * lib/stdio.in.h (perror): New declaration.
15583         * lib/perror.c: New file.
15584         * m4/perror.m4: New file.
15585         * modules/perror: New file.
15586         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
15587         * doc/posix-functions/perror.texi: Mention the perror module.
15588         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
15589         REPLACE_PERROR.
15590         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
15591         REPLACE_PERROR.
15592
15593 2008-09-14  Bruno Haible  <bruno@clisp.org>
15594
15595         * modules/stdio (Makefile.am): Reorder to match the order in
15596         lib/stdio.in.h.
15597         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
15598
15599 2008-09-13  Bruno Haible  <bruno@clisp.org>
15600
15601         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
15602
15603 2008-09-13  Bruno Haible  <bruno@clisp.org>
15604
15605         Extend strerror to cover the added errno values.
15606         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
15607         (rpl_strerror): Provide error messages for the added errno values and
15608         for the WSA* values.
15609         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
15610         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
15611         strerror.
15612         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
15613         * modules/strerror (Depends-on): Add errno.
15614         * doc/posix-functions/strerror.texi: Document the change.
15615         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
15616         and EOVERFLOW.
15617
15618 2008-09-13  Bruno Haible  <bruno@clisp.org>
15619
15620         * modules/EOVERFLOW: Remove file.
15621         * m4/eoverflow.m4: Remove file.
15622         * modules/EOVERFLOW-tests: Remove file.
15623         * tests/test-EOVERFLOW.c: Remove file.
15624         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
15625         * modules/ftell (Depends-on): Likewise.
15626         * modules/getdelim (Depends-on): Likewise.
15627         * modules/getugroups (Depends-on): Likewise.
15628         * modules/poll (Depends-on): Likewise.
15629         * modules/snprintf (Depends-on): Likewise.
15630         * modules/sprintf-posix (Depends-on): Likewise.
15631         * modules/vasnprintf (Depends-on): Likewise.
15632         * modules/vasprintf (Depends-on): Likewise.
15633         * modules/vfprintf-posix (Depends-on): Likewise.
15634         * modules/vsnprintf (Depends-on): Likewise.
15635         * modules/vsprintf-posix (Depends-on): Likewise.
15636         * modules/xvasprintf (Depends-on): Likewise.
15637         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
15638         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
15639         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
15640         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
15641         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
15642         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
15643         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
15644         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
15645         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
15646         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
15647         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
15648         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
15649         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
15650         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
15651         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
15652         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
15653         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
15654         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
15655         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
15656         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
15657         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
15658         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
15659         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
15660         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
15661         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
15662         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
15663         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
15664         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
15665         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
15666         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
15667         * MODULES.html.sh: Remove EOVERFLOW.
15668         * NEWS: Mention the change.
15669
15670 2008-09-13  Bruno Haible  <bruno@clisp.org>
15671
15672         * modules/errno-tests: New file.
15673         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
15674
15675         * lib/errno.in.h: New file.
15676         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
15677         * modules/errno: New file.
15678         * doc/posix-headers/errno.texi: Update documentation.
15679         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
15680
15681 2008-09-13  Bruno Haible  <bruno@clisp.org>
15682
15683         * tests/test-poll.c: Use #if for native Windows, rather than testing
15684         __MSVCRT__.
15685
15686 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15687             Bruno Haible  <bruno@clisp.org>
15688
15689         * lib/glob.c: Don't include <pwd.h> on native Windows.
15690         (WINDOWS32): New macro.
15691         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
15692
15693 2008-09-13  Bruno Haible  <bruno@clisp.org>
15694
15695         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
15696         (ETIMEDOUT): Remove macro.
15697         (glthread_cond_timedwait_multithreaded): New declaration.
15698         (glthread_cond_timedwait): Use it.
15699         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
15700         (glthread_cond_timedwait_multithreaded): New function.
15701
15702 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15703
15704         * modules/poll-tests: Do not check for io.h.
15705         * tests/test-poll.c: Check for __MSVCRT__ instead.
15706
15707 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15708
15709         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
15710         * modules/poll-tests: Add inet_pton, stdbool, sockets.
15711         * tests/test-poll.c: Use them.  Use _pipe on Windows.
15712
15713 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15714
15715         * modules/poll-tests: New.
15716         * tests/test-poll.c: New.
15717
15718 2008-09-12  Eric Blake  <ebb9@byu.net>
15719
15720         frexp: test for NetBSD failure on -0.0
15721         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
15722         not all, bugs from NetBSD 3.0 have been fixed.
15723         * doc/posix-functions/frexp.texi (frexp): Document bug.
15724         Reported by Thomas Klausner.
15725
15726         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
15727         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
15728         literal -0.0.
15729         Reported by Jonathan C. Patschke <jp@centtech.com>.
15730
15731 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15732
15733         * lib/glthread/cond.h: Use dummy implementation also if
15734         USE_WIN32_THREADS.
15735
15736 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15737
15738         * modules/fnmatch-posix (License): Change to LGPLv2+.
15739         * modules/fnmatch-gnu (License): Likewise.
15740
15741 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15742
15743         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
15744
15745 2008-09-11  Jim Meyering  <meyering@redhat.com>
15746
15747         * users.txt: Add gtk-vnc.
15748
15749 2008-09-08  Simon Josefsson  <simon@josefsson.org>
15750
15751         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
15752         rotate amounts.
15753
15754         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
15755         required for 16-bit and 8-bit rotates.
15756         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
15757         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
15758         UINT8_MAX instead of hard-coded constants.
15759         Suggested by Paul Eggert.
15760
15761 2008-09-07  Bruno Haible  <bruno@clisp.org>
15762
15763         * tests/test-striconveh.c (main): Check behaviour when converting from
15764         UTF-7.
15765
15766         Make striconveh work better with stateful encodings.
15767         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
15768         that iconv does not increment the inptr when returning -1/EINVAL.
15769
15770 2008-09-07  Bruno Haible  <bruno@clisp.org>
15771
15772         * build-aux/config.rpath: Update according to libtool-2.2.6.
15773         * build-aux/config.libpath: Likewise.
15774
15775 2008-09-06  Bruno Haible  <bruno@clisp.org>
15776
15777         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
15778         * lib/freadptr.c (freadptr): Likewise.
15779         * lib/freadseek.c (freadptrinc): Likewise.
15780         Reported by Simon Josefsson.
15781
15782 2008-09-06  Bruno Haible  <bruno@clisp.org>
15783
15784         * modules/freadptr (License): Change to LGPLv2+.
15785         * modules/freadseek (License): Likewise.
15786         Suggested by Eric Blake.
15787
15788         * modules/memchr2 (License): Change to LGPLv2+.
15789         Approved by Eric Blake.
15790
15791 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15792             Bruno Haible  <bruno@clisp.org>
15793
15794         Make gnulib-tool work with native 'sed' on AIX.
15795         * gnulib-tool (sed_noop): New variable.
15796         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
15797         func_add_or_update, func_create_testdir): Use it to initialize sed
15798         script variables.
15799         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15800
15801 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
15802             Bruno Haible  <bruno@clisp.org>
15803
15804         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
15805         also works after #include directives.
15806
15807 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
15808
15809         getdate.y: reject an out-of-range timezone value
15810         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
15811         the range [-24...+24].  When specified with only one or two digits,
15812         * tests/test-getdate.c: Tests for the fix.
15813         * doc/getdate.texi: Document this change.
15814
15815 2008-09-03  Bruno Haible  <bruno@clisp.org>
15816
15817         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
15818
15819 2008-09-02  Simon Josefsson  <simon@josefsson.org>
15820
15821         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
15822         <bruce.korb@gmail.com> with ideas from Ben Pfaff
15823         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
15824         Blake <ebb9@byu.net>.
15825
15826         * tests/test-bitrotate.c: Add more test vectors.
15827
15828 2008-09-02  Eric Blake  <ebb9@byu.net>
15829
15830         vasnprintf-posix: handle large precision via %.*d
15831         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
15832         when handling it ourselves.
15833         * tests/test-vasnprintf-posix.c (test_function): Add test.
15834         * tests/test-snprintf-posix.h (test_function): Likewise.
15835         * tests/test-sprintf-posix.h (test_function): Likewise.
15836         * tests/test-vasprintf-posix.c (test_function): Likewise.
15837         Reported by Alain Guibert.
15838
15839 2008-09-01  Eric Blake  <ebb9@byu.net>
15840
15841         c-stack: make configure-time check more robust
15842         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
15843         successful sigaction call.
15844         Reported by Tom G. Christensen.
15845
15846 2008-09-01  Bruno Haible  <bruno@clisp.org>
15847
15848         New module 'findprog-lgpl'.
15849         * modules/findprog-lgpl: New file.
15850         * lib/findprog-lgpl.c: New file.
15851         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
15852         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
15853         to decide whether to use strdup or xstrdup, concatenated_filename or
15854         xconcatenated_filename.
15855
15856 2008-09-01  Bruno Haible  <bruno@clisp.org>
15857
15858         Split module 'concat-filename' into 'concat-filename' (LGPL) and
15859         'xconcat-filename' (GPL).
15860         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
15861         (License): Change to LGPLv2+.
15862         * modules/xconcat-filename: New file.
15863         * lib/concat-filename.h (concatenated_filename): Change specification.
15864         (xconcatenated_filename): New declaration.
15865         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
15866         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
15867         memory situations.
15868         * lib/xconcat-filename.c: New file.
15869         * NEWS: Mention the change.
15870         * lib/findprog.c: Include concat-filename.h, not filename.h.
15871         (find_in_path): Use xconcatenated_filename instead of
15872         concatenated_filename.
15873         * lib/javacomp.c: Include concat-filename.h, not filename.h.
15874         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
15875         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
15876         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
15877         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
15878         instead of concatenated_filename.
15879         * lib/javaexec.c: Include concat-filename.h, not filename.h.
15880         (execute_java_class): Use xconcatenated_filename instead of
15881         concatenated_filename.
15882         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
15883         * modules/javacomp (Depends-on): Likewise.
15884         * modules/javaexec (Depends-on): Likewise.
15885
15886 2008-09-01  Bruno Haible  <bruno@clisp.org>
15887
15888         Split module 'filename' into 'filename' and 'concat-filename'.
15889         * modules/filename: Keep only lib/filename.h.
15890         (License): Change to LGPLv2+.
15891         * modules/concat-filename: New file, extracted from modules/filename.
15892         * lib/filename.h (concatenated_filename): Remove declaration.
15893         * lib/concat-filename.h: New file, extracted from lib/filename.h.
15894         * lib/concat-filename.c: Include concat-filename.h.
15895         * NEWS: Mention the change.
15896
15897 2008-09-01  Simon Josefsson  <simon@josefsson.org>
15898
15899         * lib/bitrotate.h (rotl8, rotr8): Add.
15900
15901         * modules/bitrotate (configure.ac): Need
15902         AC_REQUIRE([AC_C_INLINE]).
15903         (Description): Mention stdint.h.  Reported by Bruno Haible
15904         <bruno@clisp.org>.
15905
15906         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
15907         Paolo Bonzini <bonzini@gnu.org>.
15908
15909 2008-08-31  Bruno Haible  <bruno@clisp.org>
15910
15911         Assume Solaris specific bi-arch conventions on Solaris systems.
15912         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
15913         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
15914         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
15915         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
15916         like acl_libdirstem.
15917         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
15918         acl_libdirstem.
15919         * NEWS: Mention the change.
15920         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
15921
15922 2008-08-31  Jim Meyering  <meyering@redhat.com>
15923
15924         * lib/strftime.h: Add comments describing the two added arguments.
15925
15926         remove duplicate #include directives
15927         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
15928         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
15929
15930 2008-08-31  Bruno Haible  <bruno@clisp.org>
15931
15932         New module 'sigpipe-die'.
15933         * modules/sigpipe-die: New file.
15934         * lib/sigpipe-die.h: New file.
15935         * lib/sigpipe-die.c: New file.
15936         * MODULES.html.sh (Signal handling): Add sigpipe-die.
15937
15938 2008-08-31  Bruno Haible  <bruno@clisp.org>
15939
15940         Don't override previously installed signal handlers.
15941         * lib/fatal-signal.c (saved_sigactions): New variable.
15942         (uninstall_handlers): Reset the signal to the saved handler, not
15943         to SIG_DFL (except when ignored).
15944         (install_handlers): Save the previous handlers.
15945
15946 2008-08-30  Bruno Haible  <bruno@clisp.org>
15947
15948         * gnulib-tool (func_reset_sigpipe): New function.
15949         (func_get_automake_snippet, func_modules_transitive_closure,
15950         func_import): Invoke it before a join command that reads from stdin,
15951         to avoid "echo: write error: Broken pipe" error messages on stderr.
15952         Reported by Sam Steingold <sds@gnu.org>.
15953
15954 2008-08-30  Bruno Haible  <bruno@clisp.org>
15955
15956         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
15957         Code copied from m4/open.m4.
15958         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
15959         access and the filename ends in a slash. Code copied from lib/open.c.
15960         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
15961         * tests/test-fopen.c (main): Check against bug with trailing slash.
15962
15963 2008-08-29  Bruno Haible  <bruno@clisp.org>
15964
15965         Avoid some "gcc -pedantic" warnings.
15966         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
15967         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
15968         * lib/dirent.in.h: Likewise.
15969         * lib/fcntl.in.h: Likewise.
15970         * lib/float.in.h: Likewise.
15971         * lib/iconv.in.h: Likewise.
15972         * lib/inttypes.in.h: Likewise.
15973         * lib/locale.in.h: Likewise.
15974         * lib/math.in.h: Likewise.
15975         * lib/netinet_in.in.h: Likewise.
15976         * lib/search.in.h: Likewise.
15977         * lib/signal.in.h: Likewise.
15978         * lib/stdarg.in.h: Likewise.
15979         * lib/stdint.in.h: Likewise.
15980         * lib/stdio.in.h: Likewise.
15981         * lib/stdlib.in.h: Likewise.
15982         * lib/string.in.h: Likewise.
15983         * lib/strings.in.h: Likewise.
15984         * lib/sys_select.in.h: Likewise.
15985         * lib/sys_socket.in.h: Likewise.
15986         * lib/sys_stat.in.h: Likewise.
15987         * lib/sys_time.in.h: Likewise.
15988         * lib/sysexits.in.h: Likewise.
15989         * lib/time.in.h: Likewise.
15990         * lib/unistd.in.h: Likewise.
15991         * lib/wchar.in.h: Likewise.
15992         * lib/wctype.in.h: Likewise.
15993         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
15994         * modules/fchdir (Makefile.am): Likewise.
15995         * modules/fcntl (Makefile.am): Likewise.
15996         * modules/float (Makefile.am): Likewise.
15997         * modules/iconv_open (Makefile.am): Likewise.
15998         * modules/inttypes (Makefile.am): Likewise.
15999         * modules/locale (Makefile.am): Likewise.
16000         * modules/math (Makefile.am): Likewise.
16001         * modules/netinet_in (Makefile.am): Likewise.
16002         * modules/search (Makefile.am): Likewise.
16003         * modules/signal (Makefile.am): Likewise.
16004         * modules/stdarg (Makefile.am): Likewise.
16005         * modules/stdint (Makefile.am): Likewise.
16006         * modules/stdio (Makefile.am): Likewise.
16007         * modules/stdlib (Makefile.am): Likewise.
16008         * modules/string (Makefile.am): Likewise.
16009         * modules/strings (Makefile.am): Likewise.
16010         * modules/sys_select (Makefile.am): Likewise.
16011         * modules/sys_socket (Makefile.am): Likewise.
16012         * modules/sys_stat (Makefile.am): Likewise.
16013         * modules/sys_time (Makefile.am): Likewise.
16014         * modules/sysexits (Makefile.am): Likewise.
16015         * modules/time (Makefile.am): Likewise.
16016         * modules/unistd (Makefile.am): Likewise.
16017         * modules/wchar (Makefile.am): Likewise.
16018         * modules/wctype (Makefile.am): Likewise.
16019         Reported by Reuben Thomas <rrt@sc3d.org>.
16020
16021 2008-08-29  Bruno Haible  <bruno@clisp.org>
16022
16023         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
16024         any more.
16025
16026 2008-08-29  Simon Josefsson  <simon@josefsson.org>
16027
16028         * MODULES.html.sh (Misc): Add bitrotate.
16029
16030         * modules/bitrotate: New file.
16031
16032         * lib/bitrotate.h: New file.
16033
16034         * modules/bitrotate-tests: New file.
16035
16036         * tests/test-bitrotate.c: New file.
16037
16038         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
16039         on the bitrotate module.
16040
16041         * lib/arctwo.c: Use new bitrotate module.
16042
16043 2008-08-29  Jim Meyering  <meyering@redhat.com>
16044
16045         bootstrap: merge changes from coreutils
16046         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
16047         of copied files.  Remove a kludge, now that this is fixed.
16048         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
16049         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
16050         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
16051
16052 2008-08-29  Bruno Haible  <bruno@clisp.org>
16053
16054         * MODULES.html.sh: Remove --cvs-urls option.
16055
16056 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
16057
16058         maint.mk: adjust to file name change
16059         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
16060
16061 2008-08-28  Jim Meyering  <meyering@redhat.com>
16062
16063         * modules/getndelim2 (License): Relicense to LGPLv2+.
16064         Approved by Richard Stallman for the version of 1995, and by
16065         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
16066
16067 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
16068
16069         * lib/getdelim.c (flockfile, funlockfile): Make all of them
16070         dummy if one is not available.  Do not touch them if
16071         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
16072         (getc_maybe_unlocked): New.
16073         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
16074
16075 2008-08-26  Eric Blake  <ebb9@byu.net>
16076
16077         doc/INSTALL: resync from autoconf
16078         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
16079         (INSTALL_PRELUDE): Delete; this is done more efficiently by
16080         moving...
16081         * install.texi [!autoconf]: ...here.  Resync from autoconf.
16082         * INSTALL: Regenerate.
16083         * INSTALL.ISO: New file.
16084         * INSTALL.UTF-8: Likewise.
16085
16086 2008-08-26  Jim Meyering  <meyering@redhat.com>
16087
16088         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
16089         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
16090         these definitions conditional, so that they may be overridden, too.
16091
16092 2008-08-26  Bruno Haible  <bruno@clisp.org>
16093
16094         Generate INSTALL file variants with prettier quotes.
16095         * doc/Makefile (INSTALL_PRELUDE): New macro.
16096         (INSTALL): Use it.
16097         (INSTALL.ISO, INSTALL.UTF-8): New rules.
16098
16099 2008-08-26  Bruno Haible  <bruno@clisp.org>
16100
16101         Run makeinfo in an English locale.
16102         * doc/Makefile (MAKEINFO): New variable.
16103
16104 2008-08-26  Bruno Haible  <bruno@clisp.org>
16105
16106         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
16107         Suggested by Eric Blake.
16108
16109 2008-08-25  Bruno Haible  <bruno@clisp.org>
16110
16111         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
16112
16113 2008-08-25  Eric Blake  <ebb9@byu.net>
16114
16115         c-stack: test that stack overflow can be caught
16116         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
16117         that platform allows handling stack overflow; at least OS/2 EMX
16118         has sigaltstack, but crashes before transferring control to
16119         handler on stack overflow.
16120         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
16121         check for HAVE_STACK_OVERFLOW_HANDLING.
16122         Reported by Elbert Pol.
16123
16124 2008-08-25  Bruno Haible  <bruno@clisp.org>
16125
16126         * doc/posix-functions/strftime.texi: Fix description of strftime
16127         module.
16128
16129 2008-08-24  Bruno Haible  <bruno@clisp.org>
16130
16131         * tests/uniwidth/test-uc_width2.c: New file.
16132         * tests/uniwidth/test-uc_width2.sh: New file.
16133         * modules/uniwidth/width-tests (Files): Add the new files.
16134         (TESTS): Add uniwidth/test-uc_width2.sh.
16135         (TESTS_ENVIRONMENT): New variable.
16136         (check_PROGRAMS): Add test-uc_width2.
16137         (test_uc_width2_SOURCES): New variable.
16138
16139         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
16140         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
16141         not 0x00AB.
16142         Reported by Alexander V. Lukyanov <lav@netis.ru>.
16143
16144 2008-08-22  Eric Blake  <ebb9@byu.net>
16145
16146         test-lock, test-tls: mention why a test is skipped
16147         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
16148         skipped.
16149         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
16150
16151         count-one-bits: relax license
16152         * modules/count-one-bits (License): Relicense to LGPLv2+.
16153         Suggested by Ludovic Courtès, approved by Ben Pfaff.
16154
16155 2008-08-22  Andreas Schwab  <schwab@suse.de>
16156
16157         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
16158         Remove spurious space in assignment.
16159
16160 2008-08-21  Simon Josefsson  <simon@josefsson.org>
16161
16162         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
16163         Paul Eggert <eggert@CS.UCLA.EDU>.
16164
16165 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
16166
16167         * modules/gettext: Add m4/threadlib.m4.
16168
16169 2008-08-19  Eric Blake  <ebb9@byu.net>
16170
16171         test-c-stack: fix compilation failure on FreeBSD 5.0
16172         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
16173         headers before <sys/resource.h>.
16174         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
16175         the bug.
16176         Reported by Nelson H. F. Beebe.
16177
16178         strverscmp: migrate from "strverscmp.h" to <string.h>
16179         * modules/string (Makefile.am): Add new hooks.
16180         * modules/strverscmp (Files): Remove strverscmp.h.
16181         (Depends-on): Add string.
16182         (configure.ac): Add indicator.
16183         (Include): Mention new header.
16184         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
16185         defaults.
16186         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
16187         results.
16188         * lib/strverscmp.h: Delete.
16189         * lib/string.in.h (strverscmp): Provide declaration, when needed.
16190         * tests/test-strverscmp.c (includes): Adjust client.
16191         * lib/check-version.c (includes): Likewise.
16192         * NEWS: Document the change.
16193
16194         strverscmp: add unit test
16195         * modules/strverscmp-tests: New file.
16196         * tests/test-strverscmp.c: Likewise.
16197
16198 2008-08-19  Simon Josefsson  <simon@josefsson.org>
16199
16200         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
16201         regarding Windows crypto stuff, from Mono.
16202
16203 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
16204
16205         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
16206         if present, for intel RND.  Return error on failures.
16207
16208 2008-08-18  Ben Pfaff  <blp@gnu.org>
16209
16210         gitlog-to-changelog: give better diagnostic for failed pipe-open
16211         * build-aux/gitlog-to-changelog: Improve error message: suggest
16212         that the version of Git may be too old.
16213
16214 2008-08-18  Simon Josefsson  <simon@josefsson.org>
16215
16216         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
16217         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
16218
16219 2008-08-18  Bruno Haible  <bruno@clisp.org>
16220
16221         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
16222         pthread_in_use().
16223
16224 2008-08-18  Bruno Haible  <bruno@clisp.org>
16225
16226         * lib/glthread/threadlib.c: Include <pthread.h>.
16227
16228 2008-08-18  Bruno Haible  <bruno@clisp.org>
16229
16230         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
16231         glthread_recursive_lock_* macros.
16232         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
16233         Fix syntax error.
16234
16235 2008-08-18  Bruno Haible  <bruno@clisp.org>
16236
16237         * lib/glthread/thread.c: Avoid forcing a context switch right after
16238         thread creation.
16239
16240 2008-08-17  Bruno Haible  <bruno@clisp.org>
16241
16242         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
16243         * lib/glthread/thread.h: Provide Win32 specific implementation.
16244         * modules/thread (Files): Add lib/glthread/thread.c.
16245         (Depends-on): Add lock.
16246         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
16247
16248 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16249
16250         New module 'yield'.
16251         * modules/yield: New file.
16252         * lib/glthread/yield.h: New file.
16253         * m4/yield.m4: New file.
16254         * MODULES.html.sh (Multithreading): Add yield.
16255
16256 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16257
16258         New module 'thread'.
16259         * modules/thread: New file.
16260         * lib/glthread/thread.h: New file.
16261         * m4/thread.m4: New file.
16262         * MODULES.html.sh (Multithreading): Add thread.
16263
16264 2008-08-17  Bruno Haible  <bruno@clisp.org>
16265
16266         * lib/glthread/lock.h: Include <stdlib.h> always.
16267         * lib/glthread/tls.h: Likewise.
16268         * lib/glthread/cond.h: Likewise.
16269
16270 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16271
16272         New module 'cond'.
16273         * modules/cond: New file.
16274         * lib/glthread/cond.h: New file.
16275         * lib/glthread/cond.c: New file.
16276         * m4/cond.m4: New file.
16277         * MODULES.html.sh (Multithreading): Add cond.
16278
16279 2008-08-16  Eric Blake  <ebb9@byu.net>
16280
16281         c-stack: fix regression on Irix 5.3 from 2008-06-21
16282         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
16283         sa_sigaction...
16284         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
16285         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
16286         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
16287         * modules/signal (Makefile.am): Use the value.
16288         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
16289         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
16290         * doc/posix-headers/signal.texi (signal.h): Document this
16291         portability issue.
16292         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
16293         Reported by Tom G. Christensen.
16294
16295 2008-08-17  Bruno Haible  <bruno@clisp.org>
16296
16297         New module 'threadlib'.
16298         * modules/threadlib: New file.
16299         * lib/glthread/threadlib.c: New file, extracted from
16300         lib/glthread/lock.c.
16301         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
16302         functions.
16303         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
16304         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
16305         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
16306         macros.
16307         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
16308         (gl_DISABLE_THREADS): Remove macro.
16309         * modules/lock (Files): Remove build-aux/config.rpath.
16310         (Depends-on): Remove havelib. Add threadlib.
16311         (configure.ac-early): Remove section.
16312         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
16313         * modules/tls (Depends-on): Remove lock. Add threadlib.
16314         (Link): New section, copied from threadlib.
16315         * MODULES.html.sh (Multithreading): Add threadlib.
16316
16317 2008-08-14  Bruno Haible  <bruno@clisp.org>
16318
16319         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
16320         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
16321         glthread_rwlock_unlock, glthread_rwlock_destroy,
16322         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
16323         glthread_recursive_lock_destroy): Define as macros always.
16324         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
16325         glthread_lock_lock.
16326         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
16327         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
16328         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
16329         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
16330         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
16331         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
16332         (glthread_recursive_lock_lock_func): Renamed from
16333         glthread_recursive_lock_lock.
16334         (glthread_recursive_lock_unlock_func): Renamed from
16335         glthread_recursive_lock_unlock.
16336         (glthread_recursive_lock_destroy_func): Renamed from
16337         glthread_recursive_lock_destroy.
16338
16339 2008-08-14  Bruno Haible  <bruno@clisp.org>
16340
16341         * lib/glthread/lock.h: Renamed from lib/lock.h.
16342         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
16343         * lib/glthread/tls.h: Renamed from lib/tls.h.
16344         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
16345         * lib/fstrcmp.c: Update includes.
16346         * lib/strsignal.c: Update includes.
16347         * modules/lock (Files, Makefile.am): Update.
16348         (Include): Change to "glthread/lock.h".
16349         * modules/tls (Files, Makefile.am): Update.
16350         (Include): Change to "glthread/tls.h".
16351         * tests/test-lock.c: Update includes.
16352         * tests/test-tls.c: Update includes.
16353         * NEWS: Mention the renamed header files.
16354
16355 2008-08-11  Jim Meyering  <meyering@redhat.com>
16356
16357         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
16358
16359 2008-08-11  Eric Blake  <ebb9@byu.net>
16360
16361         test-c-stack: avoid C99-ism
16362         * tests/test-c-stack.c (main): Fix whitespace, move declaration
16363         before statement.
16364         Reported by Alain Guibert.
16365
16366 2008-08-10  Jim Meyering  <meyering@redhat.com>
16367
16368         ensure that return value of uinttostr et al are not ignored
16369         * lib/inttostr.h (__GNUC_PREREQ): Define.
16370         (__attribute_warn_unused_result__): Define.
16371         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
16372
16373 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
16374
16375         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
16376         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
16377
16378 2008-08-07  Jim Meyering  <meyering@redhat.com>
16379
16380         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
16381
16382         * modules/mkstemp (License): Relicense under LGPLv2+.
16383         * modules/tempname (License): Likewise.
16384
16385 2008-08-06  Bruno Haible  <bruno@clisp.org>
16386
16387         * lib/poll.c (poll): Further micro-optimization.
16388
16389 2008-08-06  Jim Meyering  <meyering@redhat.com>
16390
16391         inet_pton.c: use locale-independent tolower
16392         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
16393         (inet_pton6): Use c_tolower rather than tolower.
16394         * modules/inet_pton (Depends-on): Add c-ctype.
16395
16396 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
16397
16398         * lib/poll.c (poll): Avoid division when timeout is 0, cache
16399         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
16400
16401 2008-08-06  Jim Meyering  <meyering@redhat.com>
16402
16403         * modules/inet_pton (License): Relicense under LGPLv2+.
16404
16405 2008-08-03  Bruno Haible  <bruno@clisp.org>
16406
16407         Additional non-aborting API for lock and tls.
16408         * lib/lock.h: Include <errno.h>.
16409         (glthread_lock_init): New macro/function.
16410         (gl_lock_init): Define as wrapper around glthread_lock_init.
16411         (glthread_lock_lock): New macro/function.
16412         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
16413         (glthread_lock_unlock): New macro/function.
16414         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
16415         (glthread_lock_destroy): New macro/function.
16416         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
16417         (glthread_rwlock_init): New macro/function.
16418         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
16419         (glthread_rwlock_rdlock): New macro/function.
16420         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
16421         (glthread_rwlock_wrlock): New macro/function.
16422         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
16423         (glthread_rwlock_unlock): New macro/function.
16424         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
16425         (glthread_rwlock_destroy): New macro/function.
16426         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
16427         (glthread_recursive_lock_init): New macro/function.
16428         (gl_recursive_lock_init): Define as wrapper around
16429         glthread_recursive_lock_init.
16430         (glthread_recursive_lock_lock): New macro/function.
16431         (gl_recursive_lock_lock): Define as wrapper around
16432         glthread_recursive_lock_lock.
16433         (glthread_recursive_lock_unlock): New macro/function.
16434         (gl_recursive_lock_unlock): Define as wrapper around
16435         glthread_recursive_lock_unlock.
16436         (glthread_recursive_lock_destroy): New macro/function.
16437         (gl_recursive_lock_destroy): Define as wrapper around
16438         glthread_recursive_lock_destroy.
16439         (glthread_once): New macro/function.
16440         (gl_once): Define as wrapper around glthread_once.
16441         Update function declarations.
16442         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
16443         glthread_rwlock_init. Return error code.
16444         (glthread_rwlock_rdlock_multithreaded): Renamed from
16445         glthread_rwlock_rdlock. Return error code.
16446         (glthread_rwlock_wrlock_multithreaded): Renamed from
16447         glthread_rwlock_wrlock. Return error code.
16448         (glthread_rwlock_unlock_multithreaded): Renamed from
16449         glthread_rwlock_unlock. Return error code.
16450         (glthread_rwlock_destroy_multithreaded): Renamed from
16451         glthread_rwlock_destroy. Return error code.
16452         (glthread_recursive_lock_init_multithreaded): Renamed from
16453         glthread_recursive_lock_init. Return error code.
16454         (glthread_recursive_lock_lock_multithreaded): Renamed from
16455         glthread_recursive_lock_lock. Return error code.
16456         (glthread_recursive_lock_unlock_multithreaded): Renamed from
16457         glthread_recursive_lock_unlock. Return error code.
16458         (glthread_recursive_lock_destroy_multithreaded): Renamed from
16459         glthread_recursive_lock_destroy. Return error code.
16460         (glthread_once_call): Make static.
16461         (glthread_once_multithreaded): Renamed from glthread_once.
16462         * lib/tls.h: Include <errno.h>.
16463         (glthread_tls_key_init): New macro/function.
16464         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
16465         (glthread_tls_set): New macro/function.
16466         (gl_tls_set): Define as wrapper around glthread_tls_set.
16467         (glthread_tls_key_destroy): New macro/function.
16468         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
16469         Update function declarations.
16470         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
16471         glthread_tls_get.
16472         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
16473
16474 2008-08-04  Eric Blake  <ebb9@byu.net>
16475
16476         gnumakefile: use space, not TAB, outside of targets
16477         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
16478
16479 2008-08-02  Jim Meyering  <meyering@redhat.com>
16480
16481         getdate.y: avoid locale-dependent date parsing failure
16482         In Turkish locales, getdate would fail to recognize keywords
16483         containing a lowercase "i".  The solution is not to rely on
16484         locale-sensitive case-conversion.
16485         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
16486         (lookup_word): Use c_toupper in place of toupper.
16487         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
16488         Reported by Vefa Bicakci <bicave@superonline.com> in
16489         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
16490         * modules/getdate (Depends-on): Add c-ctype.
16491
16492 2008-08-02  Bruno Haible  <bruno@clisp.org>
16493
16494         * gnulib-tool (func_import): When updating or creating a .gitignore
16495         file, prepend each added line with a slash, and ignore leading slashes
16496         from the existing lines.
16497         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
16498
16499 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16500
16501         Portability fix for GNU make 3.79.1.
16502         * top/GNUmakefile: Avoid 'else COND', which older GNU make
16503         versions do not understand.
16504
16505 2008-08-01  Bruno Haible  <bruno@clisp.org>
16506
16507         Work around bug of HP-UX 10.20 cc with -0.0 literal.
16508         * tests/test-isnanf.h (zero): New variable.
16509         (main): Avoid literal -0.0f.
16510         * tests/test-isnand.h (zero): New variable.
16511         (main): Avoid literal -0.0.
16512         * tests/test-isnanl.h (zero): New variable.
16513         (main): Avoid literal -0.0L.
16514         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
16515         (test_float, test_double, test_long_double): Avoid literals -0.0f,
16516         -0.0, -0.0L.
16517         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
16518         (test_signbitd): Avoid literal -0.0.
16519         (test_signbitl): Avoid literal -0.0L.
16520         * tests/test-ceilf1.c (zero): New variable.
16521         (main): Avoid literal -0.0f.
16522         * tests/test-ceill.c (zero): New variable.
16523         (main): Avoid literal -0.0L.
16524         * tests/test-floorf1.c (zero): New variable.
16525         (main): Avoid literal -0.0f.
16526         * tests/test-floorl.c (zero): New variable.
16527         (main): Avoid literal -0.0L.
16528         * tests/test-roundf1.c (zero): New variable.
16529         (main): Avoid literal -0.0f.
16530         * tests/test-round1.c (zero): New variable.
16531         (main): Avoid literal -0.0.
16532         * tests/test-roundl.c (zero): New variable.
16533         (main): Avoid literal -0.0L.
16534         * tests/test-truncf1.c (zero): New variable.
16535         (main): Avoid literal -0.0f.
16536         * tests/test-trunc1.c (zero): New variable.
16537         (main): Avoid literal -0.0.
16538         * tests/test-truncl.c (zero): New variable.
16539         (main): Avoid literal -0.0L.
16540         * tests/test-frexp.c (zero): New variable.
16541         (main): Avoid literal -0.0.
16542         * tests/test-frexpl.c (zero): New variable.
16543         (main): Avoid literal -0.0L.
16544         * tests/test-ldexpl.c (zero): New variable.
16545         (main): Avoid literal -0.0L.
16546         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16547         (zerod, zerol): New variables.
16548         (test_function): Avoid literals -0.0, -0.0L.
16549         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16550         (zerod, zerol): New variables.
16551         (test_function): Avoid literals -0.0, -0.0L.
16552         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16553         (zerod, zerol): New variables.
16554         (test_function): Avoid literals -0.0, -0.0L.
16555         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16556         (zerod, zerol): New variables.
16557         (test_function): Avoid literals -0.0, -0.0L.
16558         * tests/test-strtod.c (zero): New variable.
16559         (main): Avoid literal -0.0.
16560         Reported by Jonathan C. Patschke <jp@centtech.com>.
16561
16562 2008-07-31  Jim Meyering  <meyering@redhat.com>
16563
16564         sha256.h: correct definition of SHA224_DIGEST_SIZE
16565         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
16566         Reported by Paulie Pena IV <paulie4@gmail.com>.
16567         Define as 224 / 8, rather than as a literal.
16568         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
16569         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
16570         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
16571
16572 2008-07-31  Bruno Haible  <bruno@clisp.org>
16573
16574         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
16575         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
16576         Reported by Jonathan Patschke <jp@centtech.com>.
16577
16578 2008-07-31  Bruno Haible  <bruno@clisp.org>
16579
16580         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
16581         Reported by Paolo Bonzini <bonzini@gnu.org>.
16582
16583 2008-07-30  Eric Blake  <ebb9@byu.net>
16584
16585         test-strtod: allow compilation without -lm
16586         * tests/test-strtod.c (main): Avoid link dependence on fabs.
16587         Reported by Dennis Clarke <blastwave@gmail.com>.
16588
16589 2008-07-28  Jim Meyering  <meyering@redhat.com>
16590
16591         bootstrap: work also when there are no .po files in po/
16592         * build-aux/bootstrap (update_po_files): Complete the change
16593         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
16594
16595 2008-07-27  Jim Meyering  <meyering@redhat.com>
16596
16597         * users.txt: Add zile.
16598
16599 2008-07-26  Ben Pfaff  <blp@gnu.org>
16600
16601         Add missing dependencies on new m4/exponent[fdl].m4 files.
16602         * modules/isnanf-nolibm: Add m4/exponentf.m4.
16603         * modules/isnand-nolibm: Add m4/exponentd.m4.
16604         * modules/isnanl-nolibm: Add m4/exponentl.m4.
16605         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
16606         m4/isnan[fdl].m4, because the macros actually used moved.
16607         Reported by Jim Meyering.
16608
16609 2008-07-14  Ben Pfaff  <blp@gnu.org>
16610
16611         Add isinf module.
16612         * lib/isinf.c: New file.
16613         * lib/math.in.h: Define isinf macro if we have decided to replace
16614         it.
16615         * m4/isinf.m4: New file.
16616         * m4/math_h.m4: Initialize and substitute variables for isinf
16617         module.
16618         * modules/isinf: New file.
16619         * modules/isinf-tests: New file.
16620         * modules/math: Add substitutions for new module.
16621         * tests/test-isinf.c: New file.
16622         * doc/posix-functions/isinf.texi: Mention new module.
16623         * MODULES.html.sh: Mention new module.
16624
16625 2008-07-14  Ben Pfaff  <blp@gnu.org>
16626
16627         Factor out some macros for use by additional modules.
16628         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
16629         exponentf.m4.
16630         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
16631         exponentd.m4.
16632         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
16633         file exponentl.m4.
16634         * m4/exponentf.m4: New file.
16635         * m4/exponentd.m4: New file.
16636         * m4/exponentl.m4: New file.
16637         * modules/isnanf: Use new file m4/exponentf.m4.
16638         * modules/isnand: Use new file m4/exponentd.m4.
16639         * modules/isnanl: Use new file m4/exponentl.m4.
16640
16641 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
16642
16643         mktime.c: normalize tp->tm_isdst value to -1/0/1.
16644         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
16645         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
16646         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
16647
16648         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
16649         readlink on platforms without PATH_MAX.
16650
16651 2008-07-21  Eric Blake  <ebb9@byu.net>
16652
16653         Warn, not fail, on stale version.
16654         * top/GNUmakefile (_curr-ver): Tone down previous patch.
16655
16656         Don't allow installation with stale devel version number.
16657         * top/GNUmakefile (_is-install-target): New macro.
16658         (_curr-ver): Forbid installation with stale version number.
16659
16660 2008-07-20  Bruno Haible  <bruno@clisp.org>
16661
16662         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
16663         TESTS_ENVIRONMENT.
16664         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
16665
16666 2008-07-20  Bruno Haible  <bruno@clisp.org>
16667
16668         * lib/c-stack.h (c_stack_action): Add documentation.
16669         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
16670
16671 2008-07-20  Bruno Haible  <bruno@clisp.org>
16672
16673         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
16674         * modules/readlink (License): Likewise.
16675
16676 2008-07-17  Eric Blake  <ebb9@byu.net>
16677
16678         * modules/c-stack (Link): Fix typo.
16679
16680         Make c-stack use libsigsegv, when available.
16681         * modules/c-stack (Depends-on): Add libsigsegv.
16682         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
16683         needed.
16684         * lib/c-stack.c (SIGSTKSZ): Define fallback.
16685         (segv_handler, overflow_handler, c_stack_action)
16686         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
16687         implementation when libsigsegv is available, but only when using
16688         the library is necessary.
16689         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
16690         comment, explaining why XSI check fails on Linux.
16691         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
16692         * tests/test-c-stack2.sh: Tweak skip message.
16693         * NEWS: Document new link-time requirements.
16694
16695 2008-07-16  Eric Blake  <ebb9@byu.net>
16696
16697         c-stack: Expose false positives when not using libsigsegv.
16698         * modules/c-stack-tests (Files): Expand test.
16699         * tests/test-c-stack.c (main): Add means to conditionally trigger
16700         non-overflow SIGSEGV.
16701         * tests/test-c-stack2.sh: New file.
16702
16703 2008-07-14  Bruno Haible  <bruno@clisp.org>
16704
16705         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
16706         Reported by Eric Blake.
16707
16708 2008-07-14  Sam Steingold  <sds@gnu.org>
16709             Bruno Haible  <bruno@clisp.org>
16710
16711         New module libsigsegv.
16712         * modules/libsigsegv: New file.
16713         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
16714         modifications.
16715         * MODULES.html.sh (Signal handling): New section.
16716
16717 2008-07-14  Bruno Haible  <bruno@clisp.org>
16718
16719         * modules/unictype/ctype-* (Description): Add the word "function".
16720         Improves the resulting doc in MODULES.html.
16721
16722 2008-07-12  Ben Pfaff  <blp@gnu.org>
16723
16724         Add longlong module.
16725         * modules/longlong: New file.
16726
16727 2008-07-12  Bruno Haible  <bruno@clisp.org>
16728
16729         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
16730         to empty.
16731
16732 2008-07-10  Ben Pfaff  <blp@gnu.org>
16733
16734         Add isnan module.
16735         * doc/posix-functions/isnan.texi: Mention new module.
16736         * lib/math.in.h: Define isnan macro if we have decided to replace
16737         it.
16738         * m4/isnan.m4: New file.
16739         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
16740         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
16741         also.
16742         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
16743         redundancy.
16744         * m4/math_h.m4: Initialize and substitute variables for isnan
16745         module.
16746         * modules/isnan: New file.
16747         * modules/isnan-tests: New file.
16748         * modules/math: Add substitutions for new module.
16749         * tests/test-isnan.c: New file.
16750         * MODULES.html.sh: Mention new module.
16751
16752 2008-07-10  Ben Pfaff  <blp@gnu.org>
16753
16754         Add isnanf module.
16755         * lib/isnanf.m4: New file.
16756         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
16757         (gl_HAVE_ISNANF_IN_LIBM): New macro.
16758         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
16759         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
16760         * modules/isnanf: New file.
16761         * modules/isnanf-tests: New file.
16762         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
16763         files.
16764         * tests/test-isnanf-nolibm.c: factored most of its contents into
16765         new file tests/test-isnanf.h.
16766         * tests/test-isnanf.h: New file.
16767         * tests/test-isnanf.c: New file.
16768         * MODULES.html.sh: Mention new module.
16769         * doc/glibc-functions/isnanf.texi: Mention new module.
16770
16771 2008-07-10  Ben Pfaff  <blp@gnu.org>
16772
16773         Add isnand module.
16774         * lib/isnand.h: New file.
16775         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
16776         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
16777         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
16778         functionality also.
16779         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
16780         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
16781         (gl_HAVE_ISNAND_IN_LIBM): New macro.
16782         * modules/isnand: New file.
16783         * modules/isnand-tests: New file.
16784         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
16785         files.
16786         * tests/test-isnand-nolibm.c: factored most of its contents into
16787         new file tests/test-isnand.h.
16788         * tests/test-isnand.h: New file.
16789         * tests/test-isnand.c: New file.
16790         * MODULES.html.sh: Mention new module.
16791
16792 2008-07-10  Ben Pfaff  <blp@gnu.org>
16793
16794         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
16795         * lib/isnand.h: Rename lib/isnand-nolibm.h.
16796         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
16797         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
16798         * modules/isnanf-nolibm: Update references to renamed files.
16799         * modules/isnand-nolibm: Likewise.
16800         * modules/isnanf-nolibm-tests: Likewise.
16801         * modules/isnand-nolibm-tests: Likewise.
16802         * lib/frexp.c: Likewise.
16803         * lib/isfinite.c: Likewise.
16804         * lib/signbitd.c: Likewise.
16805         * lib/signbitf.c: Likewise.
16806         * lib/vasnprintf.c: Likewise.
16807         * tests/test-ceilf1.c: Likewise.
16808         * tests/test-ceilf2.c: Likewise.
16809         * tests/test-floorf1.c: Likewise.
16810         * tests/test-floorf2.c: Likewise.
16811         * tests/test-frexp.c: Likewise.
16812         * tests/test-round1.c: Likewise.
16813         * tests/test-round2.c: Likewise.
16814         * tests/test-roundf1.c: Likewise.
16815         * tests/test-strtod.c: Likewise.
16816         * tests/test-trunc1.c: Likewise.
16817         * tests/test-trunc2.c: Likewise.
16818         * tests/test-truncf1.c: Likewise.
16819         * tests/test-truncf2.c: Likewise.
16820         * NEWS: Mention the renamed header files.
16821
16822 2008-07-11  Jim Meyering  <meyering@redhat.com>
16823
16824         vc-list-files: make the last-resort awk code more portable
16825         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
16826         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
16827         does not support it.
16828
16829 2008-07-10  Eric Blake  <ebb9@byu.net>
16830
16831         Work with tar's bootstrap.
16832         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
16833         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
16834         an m4 comment.
16835
16836 2008-07-09  Jim Meyering  <meyering@redhat.com>
16837
16838         posix-shell.m4: fix typo that made this test malfunction
16839         * m4/posix-shell.m4: Remove capitalization in variable name.
16840
16841 2008-07-08  Bruno Haible  <bruno@clisp.org>
16842
16843         * m4/onceonly.m4: Update comments.
16844         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16845
16846 2008-07-04  Jim Meyering  <meyering@redhat.com>
16847
16848         * users.txt: Add vc-dwim.
16849         (bison, coreutils): Use the gitweb URL.
16850
16851 2008-07-03  Jim Meyering  <meyering@redhat.com>
16852
16853         * users.txt: Add libffcall.  From Sam Steingold.
16854
16855 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
16856
16857         getdate.y: do not ignore TZ with relative day, month or year offset
16858         * lib/getdate.y (get_date): Move the tz-handling block to follow the
16859         relative-date-handling, since otherwise, the latter would clobber the
16860         sole output (an updated Start value) of the tz-handling block.
16861         * tests/test-getdate.c: Tests for the fix
16862
16863 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16864
16865         Recognize 'foo_LIBRARIES += libgnu.a'.
16866         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
16867         makefile snippet has already specified an installation location,
16868         also using '+='.
16869
16870 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
16871
16872         getdate.y: factor out common actions
16873         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
16874         Use them in place of open-coded actions.
16875
16876 2008-07-01  Simon Josefsson  <simon@josefsson.org>
16877
16878         Add self-test for getdate module.
16879         * modules/getdate-tests: New file.
16880         * tests/test-getdate.c: New file.
16881
16882 2008-06-29  Bruno Haible  <bruno@clisp.org>
16883
16884         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
16885         .gitignore.
16886         Reported by Sylvain Beucler <beuc@beuc.net>.
16887
16888 2008-06-29  Bruno Haible  <bruno@clisp.org>
16889
16890         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
16891         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
16892
16893 2008-06-29  Bruno Haible  <bruno@clisp.org>
16894
16895         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
16896         EXTRA_DIST.
16897         Reported by Sylvain Beucler <beuc@beuc.net>.
16898
16899 2008-06-26  Jim Meyering  <meyering@redhat.com>
16900
16901         make several modules depend on the "open" module
16902         This provides slightly increased consistency when opening-for-write
16903         the name of a non-directory spelled with a trailing slash.
16904         * modules/chdir-safer: Likewise.
16905         * modules/chown: Likewise.
16906         * modules/clean-temp: Likewise.
16907         * modules/copy-file: Likewise.
16908         * modules/fchdir: Likewise.
16909         * modules/fcntl-safer: Likewise.
16910         * modules/pipe: Likewise.
16911         * modules/utime: Likewise.
16912         Prompted by Eric Blake and Bruno Haible.
16913
16914 2008-06-24  Andreas Schwab  <schwab@suse.de>
16915
16916         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
16917         literals can be used as initializers for global variables.
16918
16919 2008-06-23  Eric Blake  <ebb9@byu.net>
16920
16921         Make gnulib-cache.m4 easier to diff.
16922         * gnulib-tool (func_import): Allow newlines when reading cached
16923         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
16924
16925 2008-06-23  Bruno Haible  <bruno@clisp.org>
16926
16927         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
16928         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
16929         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
16930         m4/signalblocking.m4.
16931         (gl_PREREQ_SIGACTION): Don't invoke it.
16932         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
16933         gl_PREREQ_SIG_HANDLER_H.
16934         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
16935         Don't check for sigaction here.
16936
16937 2008-06-23  Bruno Haible  <bruno@clisp.org>
16938
16939         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
16940         (install_handlers): Don't set the SA_RESETHAND flag.
16941
16942 2008-06-23  Bruno Haible  <bruno@clisp.org>
16943
16944         * m4/sigaction.m4: Comment fixes.
16945         * lib/signal.in.h: Likewise.
16946
16947 2008-06-23  Eric Blake  <ebb9@byu.net>
16948
16949         Fix typo.
16950         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
16951
16952         Avoid SA_ namespace.
16953         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
16954         Reported by Ralf Wildenhues.
16955
16956         Avoid test failure due to SA_RESTORER.
16957         * tests/test-sigaction.c (SA_MASK): New macro.
16958         (main): Avoid failing due to extension flags being set.
16959         Reported by Jim Meyering.
16960
16961         Revert use of sig-handler.h in sigprocmask.c.
16962         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
16963         it requires the existence of struct sigaction.
16964         * lib/sigprocmask.c (handler_t): Restore typedef.
16965         (rpl_signal, old_handlers): Use local type.
16966
16967 2008-06-22  Bruno Haible  <bruno@clisp.org>
16968
16969         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
16970         conditionally.
16971         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
16972
16973 2008-06-22  Bruno Haible  <bruno@clisp.org>
16974
16975         * doc/posix-functions/siginterrupt.texi: Move note.
16976
16977         * lib/signal.in.h (SA_RESTART): New macro.
16978         * lib/sigaction.c: Update comment.
16979
16980         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
16981
16982         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
16983         (gl_PREREQ_SIGPROCMASK): Invoke it.
16984         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
16985
16986         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
16987
16988         * lib/sigprocmask.c: Update a comment.
16989
16990 2008-06-21  Eric Blake  <ebb9@byu.net>
16991
16992         Use sigaction module rather than signal().
16993         * modules/c-stack (Depends-on): Add sigaction.
16994         * modules/fatal-signal (Depends-on): Likewise.
16995         * modules/nanosleep (Depends-on): Likewise.
16996         * modules/sigprocmask (Files): Add sig-handler.h.
16997         * modules/sigaction (Files): Likewise.
16998         * lib/sig-handler.h (get_handler): New file, suggested by Paul
16999         Eggert.
17000         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
17001         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
17002         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
17003         (init_fatal_signals): Likewise.
17004         * lib/nanosleep.c (rpl_nanosleep): Likewise.
17005         (siginterrupt): Delete fallback.
17006         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
17007         instead.
17008         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
17009         siginterrupt.
17010
17011         New module sigaction, for mingw.
17012         * modules/sigaction: New module...
17013         * modules/sigaction-tests: ...and its test.
17014         * m4/sigaction.m4: New file.
17015         * lib/sigaction.c: Likewise.
17016         * tests/test-sigaction.c: Likewise.
17017         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
17018         * modules/signal (Makefile.am): Likewise.
17019         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
17020         needed.
17021         * doc/posix-headers/signal.texi (signal.h): Mention provided
17022         types.
17023         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
17024         that sigaction is preferable.
17025         * doc/posix-functions/sigaction.texi (sigaction): Mention new
17026         module.
17027         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17028         sigaction.
17029
17030         Improve robustness of sigprocmask by overriding signal.
17031         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
17032         is in use.
17033         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
17034         (SIGKILL, SIGSTOP): Provide fallbacks.
17035         (rpl_signal): Implement.
17036         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
17037         signal can be called inside handlers.
17038
17039         Fix nanosleep module on mingw.
17040         * modules/nanosleep (Depends-on): Add sys_select.
17041         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
17042
17043         Fix licensing of sigprocmask.
17044         * modules/raise (License): Relicense as LGPL.
17045
17046 2008-06-21  Bruno Haible  <bruno@clisp.org>
17047
17048         * lib/propername.c (proper_name_utf8): Don't use the transliterated
17049         result if it contains question marks.
17050         Reported by Michael Geng <linux@michaelgeng.de>.
17051
17052 2008-06-19  Bruno Haible  <bruno@clisp.org>
17053
17054         Fix CVS-ism.
17055         * doc/gnulib.texi: Include updated-stamp.texi.
17056         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
17057         (updated-stamp.texi): New rule.
17058         (gnulib.info): Depend on it.
17059         * doc/.gitignore: Add updated-stamp.texi.
17060         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
17061
17062 2008-06-19  Bruno Haible  <bruno@clisp.org>
17063
17064         * doc/Makefile (gnulib.info): Update and simplify dependencies.
17065         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
17066
17067 2008-06-19  Eric Blake  <ebb9@byu.net>
17068
17069         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
17070         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
17071         Reported by Stepan Kasal.
17072
17073 2008-06-18  Bruno Haible  <bruno@clisp.org>
17074
17075         * lib/fatal-signal.c (init_fatal_signals): Add comment.
17076         Reported by Eric Blake.
17077
17078 2008-06-18  Eric Blake  <ebb9@byu.net>
17079
17080         Work around cygwin 1.5.25 strsignal bug.
17081         * tests/test-strsignal.c: Allow for const char *.
17082         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
17083
17084 2008-06-18  Simon Josefsson  <simon@josefsson.org>
17085
17086         * users.txt: Update URL to article and add author/date
17087         information.
17088
17089 2008-06-17  Bruno Haible  <bruno@clisp.org>
17090
17091         New macro gl_DISABLE_THREADS.
17092         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
17093         if the user did not pass --enable-threads or --disable-threads option.
17094         (gl_DISABLE_THREADS): New macro.
17095         Reported by Eric Blake <ebb9@byu.net>.
17096
17097 2008-06-17  Bruno Haible  <bruno@clisp.org>
17098
17099         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
17100         when the macro ignores it.
17101         Based on a patch by Eric Blake <ebb9@byu.net>.
17102
17103 2008-06-17  Bruno Haible  <bruno@clisp.org>
17104
17105         * modules/tls (License): Change to LGPLv2+.
17106         Reported by Eric Blake.
17107
17108 2008-06-17  Eric Blake  <ebb9@byu.net>
17109
17110         Simplify c-stack prerequisites.
17111         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
17112         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
17113         no longer requires <ucontext.h> to exist.  Optimize setrlimit
17114         check.
17115         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
17116         <sys/resource.h>.
17117
17118         Move c-stack test into testsuite.
17119         * modules/c-stack-tests: New file.
17120         * lib/c-stack.c [DEBUG]: Move test program...
17121         * tests/test-c-stack.c: ...into this new file.  Skip rather than
17122         fail test if sigaltstack is lacking.
17123         * tests/test-c-stack.sh: New driver file.
17124
17125 2008-06-16  Eric Blake  <ebb9@byu.net>
17126
17127         Use raise module consistently.
17128         * modules/fatal-signal (Depends-on): Add raise.
17129         * modules/sigprocmask (Depends-on): Likewise.
17130         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
17131         * lib/sigprocmask.c (sigprocmask): Likewise.
17132         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17133         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
17134
17135         Fix compliance bug in sigpending.
17136         * lib/sigprocmask.c (sigpending): Return pending array via
17137         parameter, not return value.
17138
17139 2008-06-14  Eric Blake  <ebb9@byu.net>
17140
17141         Improve obstack-printf test code.
17142         * tests/test-obstack-printf.c (test_function): Fix comment, and
17143         simplify usage of obstack_* in macros.  Add a test for coverage.
17144         Reported by Bruno Haible.
17145
17146 2008-06-14  Bruno Haible  <bruno@clisp.org>
17147
17148         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
17149         array size as a constant, not as a const variable.
17150         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
17151         AC_USE_SYSTEM_EXTENSIONS.
17152         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
17153         Test whether the obstack_printf function actually exists.
17154         * modules/obstack-printf (Depends-on): Add extensions.
17155         (Include): Remove obstack.h.
17156         * modules/obstack-printf-posix (Depends-on): Add extensions.
17157         (Include): Remove obstack.h.
17158
17159 2008-06-13  Eric Blake  <ebb9@byu.net>
17160
17161         Add obstack-printf and obstack-printf-posix modules.
17162         * modules/obstack-printf: New file.
17163         * modules/obstack-printf-posix: Likewise.
17164         * MODULES.html.sh (Misc): Mention them.
17165         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
17166         Likewise.
17167         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
17168         Likewise.
17169         * modules/stdio (Makefile.am): Accomodate new modules.
17170         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
17171         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
17172         Declare.
17173         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
17174         functions.
17175         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
17176         (gl_REPLACE_OBSTACK_PRINTF): New macros
17177         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
17178         * tests/test-obstack-printf.c: New file.
17179         * modules/obstack-printf-tests: Likewise.
17180         * modules/obstack-printf-posix-tests: Likewise.
17181
17182 2008-06-11  Bruno Haible  <bruno@clisp.org>
17183
17184         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
17185         * lib/open.c: Include errno.h.
17186         (open): Fail when attempting to write to a file that has a trailing
17187         slash.
17188         * tests/test-open.c (main): Test against trailing slash bug.
17189         * doc/posix-functions/open.texi: Mention the trailing slash bug.
17190
17191 2008-06-10  Bruno Haible  <bruno@clisp.org>
17192
17193         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
17194         for $? to work inside the trap command, with various /bin/sh-s.
17195         * tests/test-vc-list-files-cvs.sh: Likewise.
17196
17197 2008-06-10  Bruno Haible  <bruno@clisp.org>
17198
17199         * lib/acl-internal.h: Don't include gettext.h here.
17200         * lib/set-mode-acl.c: Include gettext.h here.
17201         * lib/copy-acl.c: Likewise.
17202
17203 2008-06-10  Bruno Haible  <bruno@clisp.org>
17204
17205         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
17206         * lib/wait-process.c (wait_subprocess): Likewise.
17207         * lib/execute.h (execute): Add termsigp argument.
17208         * lib/execute.c (execute): Likewise.
17209         * lib/csharpcomp.c (compile_csharp_using_pnet,
17210         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
17211         * lib/csharpexec.c (execute_csharp_using_pnet,
17212         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
17213         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
17214         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
17215         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
17216         is_jikes_present): Update.
17217         * lib/javaexec.c (execute_java_class): Update.
17218         * lib/javaversion.c (execute_and_read_line): Update.
17219         * NEWS: Document the changes.
17220         Reported by Eric Blake.
17221
17222 2008-06-10  Eric Blake  <ebb9@byu.net>
17223
17224         Add missing include.
17225         * tests/test-strstr.c (includes): Add <signal.h>.
17226         * tests/test-strcasestr.c (includes): Likewise.
17227         * tests/test-memmem.c (includes): Likewise.
17228
17229 2008-06-10  Bruno Haible  <bruno@clisp.org>
17230
17231         * lib/wait-process.c (wait_subprocess): Add an assertion.
17232
17233 2008-06-10  Bruno Haible  <bruno@clisp.org>
17234
17235         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
17236
17237 2008-06-10  Bruno Haible  <bruno@clisp.org>
17238
17239         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
17240         using alarm().
17241         * tests/test-strcasestr.c (main): Likewise.
17242         * tests/test-strstr.c (main): Likewise.
17243
17244 2008-06-09  Bruno Haible  <bruno@clisp.org>
17245
17246         Work around the Solaris 10 ACE ACLs ABI change.
17247         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
17248         declare if ACL_NO_TRIVIAL is present.
17249         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
17250         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
17251         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
17252         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
17253         define if ACL_NO_TRIVIAL is present.
17254         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
17255         and use the current ABI.
17256         (file_has_acl): Use same #if condition as elsewhere.
17257         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
17258         in use, and use the current ABI.
17259         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
17260         Reported by Jim Meyering.
17261
17262 2008-06-09  Eric Blake  <ebb9@byu.net>
17263
17264         Work around environments that (stupidly) ignore SIGALRM.
17265         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
17266         before using alarm().
17267         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17268         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
17269         Reported by Ian Beckwith <ianb@erislabs.net>.
17270
17271         Produce autobuild blurb earlier in log.
17272         * modules/autobuild (configure.ac-early): Move AB_INIT here.
17273
17274 2008-06-09  Jim Meyering  <meyering@redhat.com>
17275         and OndÅ™ej Vašík  <ovasik@redhat.com>
17276
17277         utimens.c: correct kernel bug work-around
17278         OndÅ™ej Vašík found that the invalid return value of 280 indicates
17279         failure, not success, and the kernel bug we're trying to work
17280         around affects not just the utimensat call, but also the fallback
17281         futimens call.
17282         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
17283         not success.
17284         [HAVE_FUTIMENS]: Use the same work-around, here.
17285
17286 2008-06-09  Jim Meyering  <meyering@redhat.com>
17287
17288         add more guards around definition of ACE_-related code
17289         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
17290         ALLOW and ACE_OWNER are also defined.
17291
17292 2008-06-08  Bruno Haible  <bruno@clisp.org>
17293
17294         * lib/acl-internal.h: Add me as co-author.
17295         * lib/file-has-acl.c: Likewise.
17296         * lib/set-mode-acl.c: Likewise.
17297         * lib/copy-acl.c: Likewise.
17298
17299 2008-06-08  Bruno Haible  <bruno@clisp.org>
17300
17301         Add support for AIX ACLs.
17302         * lib/acl-internal.h (acl_nontrivial): New declaration.
17303         * lib/file-has-acl.c (acl_nontrivial): New function.
17304         (file_has_acl): Add implementation using AIX 4 ACL API.
17305         * lib/set-mode-acl.c (qset_acl): Likewise.
17306         * lib/copy-acl.c (qcopy_acl): Likewise.
17307
17308 2008-06-08  Bruno Haible  <bruno@clisp.org>
17309
17310         Add support for HP-UX ACLs.
17311         * lib/acl-internal.h (acl_nontrivial): New declaration.
17312         * lib/file-has-acl.c (acl_nontrivial): New function.
17313         (file_has_acl): Add implementation using HP-UX 11 ACL API.
17314         * lib/set-mode-acl.c (qset_acl): Likewise.
17315         * lib/copy-acl.c (qcopy_acl): Likewise.
17316
17317 2008-06-08  Bruno Haible  <bruno@clisp.org>
17318
17319         Add support for Cygwin ACLs.
17320         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
17321         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
17322         the chmod_or_fchmod call.
17323         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
17324
17325 2008-06-08  Bruno Haible  <bruno@clisp.org>
17326
17327         Fix bug with setuid modes in Solaris 10+ code.
17328         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
17329         succeeded, when the mode contains some special bits.
17330
17331 2008-06-08  Bruno Haible  <bruno@clisp.org>
17332
17333         Add support for Solaris 7..10 ACLs.
17334         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
17335         declarations.
17336         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
17337         functions.
17338         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
17339         * lib/set-mode-acl.c (qset_acl): Likewise.
17340         * lib/copy-acl.c (qcopy_acl): Likewise.
17341
17342 2008-06-08  Bruno Haible  <bruno@clisp.org>
17343
17344         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
17345         declaration.
17346         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
17347         (acl_access_nontrivial): Remove MacOS X case.
17348         (file_has_acl): Use acl_extended_nontrivial.
17349         * lib/copy-acl.c (qcopy_acl): Likewise.
17350
17351 2008-06-08  Bruno Haible  <bruno@clisp.org>
17352
17353         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
17354
17355 2008-06-08  Jim Meyering  <meyering@redhat.com>
17356
17357         * modules/acl (Maintainer): Add Bruno Haible.
17358
17359 2008-06-07  Bruno Haible  <bruno@clisp.org>
17360
17361         Improve support for Tru64 ACLs.
17362         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
17363         ACL on OSF/1.
17364
17365 2008-06-07  Bruno Haible  <bruno@clisp.org>
17366
17367         Add support for MacOS X ACLs.
17368         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
17369         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
17370         * lib/set-mode-acl.c (qset_acl): Likewise.
17371         * lib/copy-acl.c (qcopy_acl): Likewise.
17372
17373 2008-06-07  Bruno Haible  <bruno@clisp.org>
17374
17375         Fix memory leak introduced on 2008-05-22.
17376         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
17377         use.
17378
17379 2008-06-07  Bruno Haible  <bruno@clisp.org>
17380
17381         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
17382         to construct an empty ACL.
17383
17384 2008-06-07  Bruno Haible  <bruno@clisp.org>
17385
17386         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
17387         precisely.
17388         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
17389
17390 2008-06-07  Bruno Haible  <bruno@clisp.org>
17391
17392         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
17393         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
17394
17395 2008-06-07  Bruno Haible  <bruno@clisp.org>
17396
17397         * doc/posix-functions/_setjmp.texi: Explain the use of this function
17398         regardless of POSIX.
17399         * doc/posix-functions/_longjmp.texi: Likewise.
17400         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
17401         SystemV platform in this case.
17402
17403 2008-06-06  Eric Blake  <ebb9@byu.net>
17404
17405         Document abort() bugs.
17406         * doc/posix-functions/abort.texi (abort): Mention anomalies.
17407
17408         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
17409         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
17410         sigsetjmp.
17411         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
17412         siglongjmp, but only as a macro.
17413         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
17414         is obsolete.
17415         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
17416
17417         Tweak documentation to cover cygwin argz bugs.
17418         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
17419         argz bug fix; no code change needed since no cygwin releases
17420         occurred between the last fix and the bug being tested.
17421         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
17422         module and recently fixed cygwin bugs.
17423         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
17424         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
17425         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
17426         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
17427         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
17428         Likewise.
17429         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
17430         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
17431         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
17432         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
17433         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
17434         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
17435         Likewise.
17436
17437         Avoid gcc warning on cygwin.
17438         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
17439         !ACL_NO_TRIVIAL]: Avoid unused variable.
17440
17441 2008-06-05  Eric Blake  <ebb9@byu.net>
17442
17443         Be tolerant of UNKNOWN version in gnulib-tool test dir.
17444         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
17445         git-version-gen fails to come up with a version.
17446         Reported by Simon Josefsson.
17447
17448 2008-06-05  Jim Meyering  <meyering@redhat.com>
17449             Paul Eggert  <eggert@cs.ucla.edu>
17450
17451         utimens.c: work around a probable Linux kernel bug
17452         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
17453         appears to be a kernel bug that causes utimensat to return 280
17454         instead of 0, indicating success.
17455
17456 2008-06-04  Bruno Haible  <bruno@clisp.org>
17457
17458         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
17459         2008-06-01 commit.
17460
17461 2008-06-04  Bruno Haible  <bruno@clisp.org>
17462
17463         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
17464         * lib/file-has-acl.c (acl_access_nontrivial): New function.
17465         (file_has_acl): Use it. Save errno afterwards.
17466         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
17467
17468 2008-06-03  Bruno Haible  <bruno@clisp.org>
17469
17470         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
17471         draft code. Simplify #ifs.
17472         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
17473         Put Solaris code after POSIX-draft code. Fix comments regarding
17474         Solaris 10, HP-UX. Mention Cygwin.
17475         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
17476
17477 2008-06-03  Eric Blake  <ebb9@byu.net>
17478
17479         Provide fallback for older kernels.
17480         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
17481         Provide runtime fallback if kernel lacks support.
17482         Reported by Mike Frysinger.
17483
17484 2008-06-02  Bruno Haible  <bruno@clisp.org>
17485
17486         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
17487         it exists.
17488
17489 2008-06-02  Bruno Haible  <bruno@clisp.org>
17490
17491         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
17492         * lib/copy-acl.c (qcopy_acl): Update comment.
17493
17494 2008-06-02  Bruno Haible  <bruno@clisp.org>
17495
17496         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
17497         like ACL APIs.
17498
17499 2008-06-02  Bruno Haible  <bruno@clisp.org>
17500
17501         * tests/test-file-has-acl.sh: Use different code for Cygwin.
17502         * tests/test-set-mode-acl.sh: Likewise.
17503         * tests/test-copy-acl.sh: Likewise.
17504         * tests/test-copy-file.sh: Likewise.
17505
17506 2008-06-02  Bruno Haible  <bruno@clisp.org>
17507
17508         * tests/test-file-has-acl.sh: Remove unused code.
17509
17510 2008-06-01  Bruno Haible  <bruno@clisp.org>
17511
17512         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
17513         (copy_acl): Just a wrapper around qcopy_acl that emits the error
17514         messages.
17515         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
17516
17517 2008-06-01  Bruno Haible  <bruno@clisp.org>
17518
17519         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
17520         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
17521         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
17522         APIs.
17523         * modules/acl-tests (configure.ac): Remove tests now contained in
17524         m4/acl.m4.
17525
17526 2008-06-02  Jim Meyering  <meyering@redhat.com>
17527
17528         announce-gen: use a better key-server host name
17529         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
17530         it may be more consistently reliable.  Suggested by Werner Koch
17531         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
17532
17533 2008-06-01  Bruno Haible  <bruno@clisp.org>
17534
17535         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
17536         Reported by Voroskoi Andras <voroskoi@gmail.com>.
17537
17538 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
17539
17540         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
17541
17542 2008-06-01  Bruno Haible  <bruno@clisp.org>
17543
17544         New ACL tests.
17545         * tests/test-file-has-acl.sh: New file.
17546         * tests/test-file-has-acl.c: New file.
17547         * tests/test-set-mode-acl.sh: New file.
17548         * tests/test-set-mode-acl.c: New file.
17549         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
17550         * tests/test-copy-acl.c: New file.
17551         * modules/acl-tests: New file, based on modules/copy-file-tests.
17552         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
17553         (Depends-on): Add acl-tests.
17554         (configure.ac): Remove checks.
17555         (Makefile.am): Don't create test-sameacls program here any more.
17556
17557 2008-06-01  Bruno Haible  <bruno@clisp.org>
17558
17559         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
17560         * tests/test-sameacls.c: Include progname.h.
17561         (main): Invoke set_program_name. Portability fixes for MacOS X,
17562         Solaris, HP-UX.
17563
17564 2008-06-01  Bruno Haible  <bruno@clisp.org>
17565
17566         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
17567         function.
17568         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
17569
17570 2008-06-01  Bruno Haible  <bruno@clisp.org>
17571
17572         * modules/rpmatch (Depends-on): Add strdup.
17573
17574 2008-06-01  Bruno Haible  <bruno@clisp.org>
17575
17576         * lib/pipe.c: Include unistd-safer.h.
17577         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
17578         * modules/pipe (Depends-on): Add unistd-safer.
17579
17580 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17581
17582         * modules/autobuild (configure.ac): Call AB_INIT.
17583
17584 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17585
17586         * tests/test-getaddrinfo.c: Don't print debug messages by default.
17587         Suggested by Bruno Haible <bruno@clisp.org>.
17588
17589 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17590
17591         * tests/test-base64.c: Cast size_t to unsigned long when invoking
17592         printf.  Use %lu instead of %d.  Reported by Bruno Haible
17593         <bruno@clisp.org>.
17594
17595 2008-05-29  Eric Blake  <ebb9@byu.net>
17596
17597         Prefer new POSIX 200x interfaces over futimesat.
17598         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
17599         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
17600         when available.
17601         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
17602
17603 2008-05-28  Bruno Haible  <bruno@clisp.org>
17604
17605         * modules/stpcpy (License): Change to LGPLv2+.
17606         Requested by David Lutterkort <dlutter@redhat.com>.
17607
17608 2008-05-27  Bruno Haible  <bruno@clisp.org>
17609
17610         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
17611         current mingw.
17612         Reported by Jose E. Marchesi <jemarch@gnu.org>.
17613
17614 2008-05-27  Bruno Haible  <bruno@clisp.org>
17615
17616         * modules/iconv_open (Link): New section, from module 'iconv'.
17617         * modules/striconv (Link): Likewise.
17618         * modules/striconveh (Link): Likewise.
17619         * modules/xstriconv (Link): Likewise.
17620         * modules/unicodeio (Link): Likewise.
17621         * modules/propername (Link): Likewise.
17622         Reported by Jim Meyering.
17623
17624 2008-05-26  Jim Meyering  <meyering@redhat.com>
17625
17626         sha256: do not artificially restrict buffer length to be < 2^32
17627         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
17628         uint32_t to size_t.
17629         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
17630         to match.
17631
17632         avoid unaligned access errors, e.g., on sparc
17633         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
17634         direct access through a possibly-unaligned uint64* pointer.
17635         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
17636         direct access through a possibly-unaligned uint32* pointer.
17637         Prompted by this patch from Tom "spot" Callaway:
17638         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
17639
17640         sha512.c: fix typo in comment
17641         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
17642
17643 2008-05-25  Bruno Haible  <bruno@clisp.org>
17644
17645         * lib/set-mode-acl.c: Renamed from lib/acl.c.
17646         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
17647         (Makefile.am): Update lib_SOURCES.
17648
17649 2008-05-25  Bruno Haible  <bruno@clisp.org>
17650
17651         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
17652
17653 2008-05-25  Jim Meyering  <meyering@redhat.com>
17654
17655         useless-if-before-free: freed expr may have white-space differences
17656         * build-aux/useless-if-before-free: Recognize cases in which the
17657         freed expression differs from the tested one in embedded white
17658         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
17659         $1 was used, so we can't make any regexp shy.  Improved tests now
17660         detect this.
17661
17662         useless-if-before-free: accept white space in the expression.
17663         * build-aux/useless-if-before-free: For now, any white space
17664         in the expression must be identical in the free argument.
17665
17666         useless-if-before-free: efficiency tweak
17667         * build-aux/useless-if-before-free: Make the expression-matching
17668         regexp "shy".
17669         Make the *outer* regexp shy, not the expr-matching one.
17670
17671         update code-in-comment to accept cast of free arg
17672         * build-aux/useless-if-before-free: Update regexp.
17673
17674 2008-05-25  Bruno Haible  <bruno@clisp.org>
17675
17676         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
17677         * modules/copy-file-tests (Files, Makefile.am): Update.
17678         * tests/test-copy-file.c (func_test_copy): Update.
17679
17680 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
17681
17682         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
17683
17684 2008-05-23  Bruno Haible  <bruno@clisp.org>
17685
17686         Improve support for ACLs on OSF/1.
17687         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
17688         Remove fallback for unknown flavors of ACLs.
17689
17690 2008-05-22  Bruno Haible  <bruno@clisp.org>
17691
17692         Add support for ACLs on OSF/1.
17693         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
17694         replacements.
17695         (acl_free_text): New macro fallback.
17696         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
17697         acl_free.
17698         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
17699         acl_free_text function. Require AC_C_INLINE.
17700
17701 2008-05-22  Bruno Haible  <bruno@clisp.org>
17702
17703         Make copy_acl work on MacOS X 10.5.
17704         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
17705         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
17706         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
17707         If MODE_INSIDE_ACL, don't assume that every system has the same text
17708         representation for ACLs as FreeBSD.
17709         * lib/copy-acl.c (copy_acl): Add support for platforms with
17710         !MODE_INSIDE_ACL.
17711         * lib/file-has-acl.c (file_has_acl): Likewise.
17712         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
17713         FreeBSD, MacOS X, or IRIX, respectively.
17714
17715 2008-05-22  Bruno Haible  <bruno@clisp.org>
17716
17717         * lib/acl.h: Don't include <sys/acl.h>.
17718         (GETACLCNT): Move fallback to lib/acl-internal.h.
17719         * lib/acl-internal.h: Include <sys/acl.h> here.
17720         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
17721
17722 2008-05-22  Bruno Haible  <bruno@clisp.org>
17723
17724         Split off copy_acl function to separate file.
17725         * lib/copy-acl.c: New file, extracted from lib/acl.c.
17726         * lib/acl.c (copy_acl): Moved function to separate file.
17727         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
17728         * modules/acl (Files): Add lib/copy-acl.c.
17729         (Makefiles.am): Augment lib_SOURCES.
17730
17731 2008-05-22  Bruno Haible  <bruno@clisp.org>
17732
17733         * modules/copy-file-tests: New file.
17734         * tests/test-copy-file.sh: New file.
17735         * tests/test-copy-file.c: New file.
17736         * tests/test-copy-file-sameacls.c: New file.
17737
17738 2008-05-22  Eric Blake  <ebb9@byu.net>
17739
17740         Avoid gcc warning.
17741         * tests/test-memcmp.c (main): Pass NULL indirectly.
17742
17743 2008-05-21  Bruno Haible  <bruno@clisp.org>
17744
17745         Add reference doc about ACLs.
17746         * doc/acl-resources.txt: New file.
17747         * doc/acl-cygwin.txt: New file.
17748
17749 2008-05-21  Bruno Haible  <bruno@clisp.org>
17750
17751         Avoid one more warning from gcc.
17752         * lib/vasnprintf.c (IF_LINT): Update comments.
17753         (VASNPRINTF): Use it also for the 'prefix' array initializer.
17754
17755 2008-05-21  Jim Meyering  <meyering@redhat.com>
17756
17757         avoid a warning from gcc
17758         * lib/vasnprintf.c (IF_LINT): Define.
17759         (scale10_round_decimal_long_double):
17760         Use it to avoid a "may be used uninitialized" warning.
17761         (scale10_round_decimal_double): Likewise.
17762
17763 2008-05-21  Simon Josefsson  <simon@josefsson.org>
17764
17765         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
17766         declared.
17767
17768 2008-05-20  Bruno Haible  <bruno@clisp.org>
17769
17770         * tests/test-memcmp.c (main): Test also the sign of the result. Test
17771         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
17772
17773 2008-05-20  Simon Josefsson  <simon@josefsson.org>
17774
17775         * modules/memcmp-tests: New file.
17776         * tests/test-memcmp.c: New file.
17777
17778 2008-05-19  Bruno Haible  <bruno@clisp.org>
17779
17780         * modules/propername (Notice, configure.ac): Put quoted "..." into
17781         --keyword option.
17782         * lib/propername.h: Update comments accordingly.
17783         Reported by Eric Blake.
17784
17785 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
17786
17787         * modules/getpass-gnu (Depends-on): Add fseeko.
17788
17789 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17790
17791         * modules/base64-tests: New file.
17792
17793 2008-05-19  Bo Borgerson <gigabo@gmail.com>
17794
17795         * lib/base64.c (base64_decode_ctx): If a decode context structure
17796         was passed in use it to ignore newlines.  If a context structure
17797         was _not_ passed in, continue to treat newlines as garbage (this
17798         is the historical behavior).  Formerly base64_decode.
17799         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17800         takes a decode context structure.
17801         * lib/base64.h (base64_decode): Macro for four-argument calls.
17802         (base64_decode_alloc): Likewise.
17803         * lib/base64.c (base64_decode_ctx): If a decode context structure
17804         was passed in use it to ignore newlines.  If a context structure
17805         was _not_ passed in, continue to treat newlines as garbage (this
17806         is the historical behavior).  Formerly base64_decode.
17807         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17808         takes a decode context structure.
17809         * lib/base64.h (base64_decode): Macro for four-argument calls.
17810         (base64_decode_alloc): Likewise.
17811
17812 2008-05-19  Jim Meyering  <meyering@redhat.com>
17813
17814         avoid a warning from gcc
17815         * lib/trim.c (IF_LINT): Define.
17816         (trim2): Use it to avoid a "may be used uninitialized" warning.
17817
17818         Fix doc typo.
17819         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
17820
17821 2008-05-19  Bruno Haible  <bruno@clisp.org>
17822
17823         * doc/glibc-functions/getpass.texi: Document limits of other
17824         implementations.
17825
17826 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17827             Bruno Haible <bruno@clisp.org>
17828
17829         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
17830
17831 2008-05-18  Bruno Haible  <bruno@clisp.org>
17832
17833         * modules/propername: New file, from GNU gettext.
17834         * lib/propername.h: New file, from GNU gettext.
17835         * lib/propername.c: New file, from GNU gettext.
17836         * MODULES.html.sh (Internationalization functions): Add propername.
17837
17838 2008-05-16  Jim Meyering  <meyering@redhat.com>
17839             Bruno Haible  <bruno@clisp.org>
17840
17841         Avoid some warnings from "gcc -Wshadow".
17842         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
17843
17844 2008-05-15  Eric Blake  <ebb9@byu.net>
17845
17846         Extend previous patch to cygwin 1.7.0.
17847         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
17848         fast implementation in cygwin >= 1.7.0.
17849         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17850         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17851
17852 2008-05-15  Bruno Haible  <bruno@clisp.org>
17853
17854         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
17855         implementation in glibc >= 2.9.
17856         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17857         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17858
17859 2008-05-15  Bruno Haible  <bruno@clisp.org>
17860
17861         * MODULES.html.sh (Internationalization functions): Remove linebreak.
17862         (Unicode string functions): Add unilbrk/*.
17863         Reported by Karl Berry.
17864
17865 2008-05-15  Eric Blake  <ebb9@byu.net>
17866
17867         Fix violation of <stdbool.h> replacement in regex.
17868         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
17869         * lib/regexec.c (re_search_internal): Likewise.
17870         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
17871
17872 2008-05-15  Jim Meyering  <meyering@redhat.com>
17873
17874         avoid distracting test output when git or cvs is not found
17875         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
17876         * tests/test-vc-list-files-git.sh: Likewise.
17877
17878 2008-05-15  Eric Blake  <ebb9@byu.net>
17879
17880         Glibc finally accepted the memmem speedup code, bugzilla #5514.
17881         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
17882         glibc version.
17883         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
17884         * doc/posix-functions/strstr.texi (strstr): Likewise.
17885         * lib/str-two-way.h (MAX): Sychronize with glibc.
17886
17887 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
17888
17889         * lib/regcomp.c (optimize_utf8): Add a note on why we test
17890         opr.ctx_type.
17891         (calc_first): Initialize constraint field.
17892         (duplicate_node_closure): Use it instead of special casing ANCHORS.
17893         Fix grammar.
17894         (duplicate_node): Merge constraint field for all node types.
17895         (calc_eclosure_iter): Look at constraint field for all node types.
17896         * lib/regex_internal.c (create_cd_newstate): Don't look at
17897         opr.ctx_type.
17898
17899 2008-05-14  Bruno Haible  <bruno@clisp.org>
17900
17901         Help GCC to do better code generation.
17902         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
17903         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
17904         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
17905         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
17906         Declare with attribute 'malloc' if supported.
17907
17908 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
17909
17910         use "echo STR|wc -c" rather than unportable "expr length STR"
17911         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
17912         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
17913
17914 2008-05-14  Jim Meyering  <meyering@redhat.com>
17915
17916         use dd ibs=$n count=1 ... rather than less-portable head -c$n
17917         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
17918         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
17919         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
17920         via Collin Lasse.
17921
17922 2008-05-14  Eric Blake  <ebb9@byu.net>
17923
17924         Avoid quadratic growth in gl_LIBSOURCES.
17925         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
17926         Suggested by Bruno Haible.
17927
17928         Test xmemdup0.
17929         * modules/xmemdup0-tests: New file.
17930         * tests/test-xmemdup0.c: Likewise.
17931
17932 2008-05-13  Eric Blake  <ebb9@byu.net>
17933
17934         Split xmemdup0 into its own module.
17935         * modules/xmemdup0: New file.
17936         * lib/xmemdup0.h: Likewise.
17937         * lib/xmemdup0.c: Likewise.
17938         * MODULES.html.sh (Memory management functions): Add xmemdup0.
17939         * lib/xalloc.h (xmemdup0): Remove.
17940         * lib/xmalloc.c (xmemdup0): Likewise.
17941
17942 2008-05-13  Eric Blake  <ebb9@byu.net>
17943             Bruno Haible  <bruno@clisp.org>
17944
17945         Reduce number of forks required during autoconf.
17946         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
17947         and gl_LIBSOURCES_DIR.
17948         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
17949         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
17950         m4_syscmd per file.
17951         <m4_foreach_w>: Move...
17952         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
17953
17954 2008-05-13  Eric Blake  <ebb9@byu.net>
17955
17956         * gnulib-tool: Fix various comment typos.
17957
17958 2008-05-12  Bruno Haible  <bruno@clisp.org>
17959
17960         Tailor the linebreaking algorithm.
17961         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
17962
17963 2008-05-12  Bruno Haible  <bruno@clisp.org>
17964
17965         Update to Unicode 5.0.0.
17966         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
17967         LBP_JV, LBP_JT. Redistribute values.
17968         (unilbrk_table): Change size.
17969         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
17970         Unicode TR#14 rev. 22.
17971         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
17972         LBP_JV, LBP_JT. Redistribute values.
17973         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
17974         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
17975         Update.
17976         * lib/unilbrk/lbrkprop1.h: Regenerated.
17977         * lib/unilbrk/lbrkprop2.h: Regenerated.
17978         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
17979         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
17980         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
17981         Likewise.
17982         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
17983         Likewise.
17984         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
17985         result.
17986         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
17987         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
17988         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
17989         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
17990         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
17991         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
17992
17993 2008-05-11  Bruno Haible  <bruno@clisp.org>
17994
17995         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
17996
17997 2008-05-11  Bruno Haible  <bruno@clisp.org>
17998
17999         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
18000         * modules/unilbrk/gen-lbrk: New file.
18001
18002 2008-05-11  Bruno Haible  <bruno@clisp.org>
18003
18004         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
18005         * m4/sha512.m4 (gl_SHA512): Likewise.
18006
18007 2008-05-11  Jim Meyering  <meyering@redhat.com>
18008
18009         New modules: crypto/sha256, crypto/sha512 (from coreutils)
18010         * modules/crypto/sha256: New file.
18011         * modules/crypto/sha512: Likewise.
18012         * lib/sha256.c: Likewise.
18013         * lib/sha256.h: Likewise.
18014         * lib/sha512.c: Likewise.
18015         * lib/sha512.h: Likewise.
18016         * lib/u64.h: Likewise.
18017         * m4/sha256.m4: Likewise.
18018         * m4/sha512.m4: Likewise.
18019         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
18020
18021 2008-05-10  Bruno Haible  <bruno@clisp.org>
18022
18023         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
18024         (Input/Output <stdio.h>): Add xprintf.
18025         (Signal handling <signal.h>): Add strsignal.
18026         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
18027         (Core language properties): Add func.
18028         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
18029         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
18030         strings.
18031         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
18032         (Input/output): New section.
18033         (File system functions): Add openat-die, stat-macros.
18034         (Networking functions): Add sockets.
18035         (Unicode string functions): Add unictype/*.
18036         (Support for building libraries and executables): Add gperf.
18037         (Support for building documentation): Add agpl-3.0.
18038         (Misc): Add nocrash.
18039
18040 2008-05-10  Bruno Haible  <bruno@clisp.org>
18041
18042         * modules/unictype/gen-ctype: New file.
18043
18044 2008-05-10  Jim Meyering  <meyering@redhat.com>
18045
18046         Make chdir-safer.c more efficient on a system with no symlinks.
18047         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
18048         also if ELOOP is zero.  Suggested by Bruno Haible.
18049
18050         Make chdir-safer.c slightly safer.
18051         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
18052         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
18053
18054         Avoid compile failure on systems without ELOOP (like mingw).
18055         * lib/chdir-safer.c (ELOOP): Define if not already defined.
18056         Reported by Bruno Haible.
18057
18058 2008-05-10  Bruno Haible  <bruno@clisp.org>
18059
18060         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
18061         (is_utf8_encoding): Use a case-insensitive comparison.
18062         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
18063         streq.
18064
18065 2008-05-10  Bruno Haible  <bruno@clisp.org>
18066
18067         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
18068         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
18069         * lib/unilbrk/ulc-common.h (iconv_string_length,
18070         iconv_string_keeping_offsets): Remove declarations.
18071         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
18072         Don't include <iconv.h>, streq.h, xsize.h.
18073         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
18074         conversion.
18075         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
18076         <iconv.h>, streq.h, xsize.h.
18077         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
18078         conversion.
18079         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
18080         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
18081         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
18082         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
18083
18084 2008-05-10  Bruno Haible  <bruno@clisp.org>
18085
18086         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
18087         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
18088
18089         * modules/unilbrk/u32-width-linebreaks-tests: New file.
18090         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
18091
18092         * modules/unilbrk/u16-width-linebreaks-tests: New file.
18093         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
18094
18095         * modules/unilbrk/u8-width-linebreaks-tests: New file.
18096         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
18097
18098         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
18099         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
18100
18101         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
18102         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
18103
18104         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
18105         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
18106
18107         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
18108         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
18109
18110 2008-05-10  Bruno Haible  <bruno@clisp.org>
18111
18112         Split up 'linebreak' module.
18113         * lib/unilbrk.h: New file, based on lib/linebreak.h.
18114         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
18115         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
18116         modifications.
18117         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
18118         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
18119         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
18120         lib/linebreak.c.
18121         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
18122         lib/linebreak.c.
18123         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
18124         lib/linebreak.c.
18125         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
18126         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
18127         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
18128         lib/linebreak.c.
18129         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
18130         lib/linebreak.c.
18131         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
18132         lib/linebreak.c.
18133         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
18134         lib/linebreak.c.
18135         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
18136         lib/linebreak.c.
18137         * modules/unilbrk/base: New file.
18138         * modules/unilbrk/tables: New file.
18139         * modules/unilbrk/u8-possible-linebreaks: New file.
18140         * modules/unilbrk/u16-possible-linebreaks: New file.
18141         * modules/unilbrk/u32-possible-linebreaks: New file.
18142         * modules/unilbrk/ulc-common: New file.
18143         * modules/unilbrk/ulc-possible-linebreaks: New file.
18144         * modules/unilbrk/u8-width-linebreaks: New file.
18145         * modules/unilbrk/u16-width-linebreaks: New file.
18146         * modules/unilbrk/u32-width-linebreaks: New file.
18147         * modules/unilbrk/ulc-width-linebreaks: New file.
18148         * lib/linebreak.h: Remove file.
18149         * lib/linebreak.c: Remove file.
18150         * m4/linebreak.m4: Remove file.
18151         * modules/linebreak: Remove file.
18152         * NEWS: Mention the changes.
18153
18154 2008-05-09  Eric Blake  <ebb9@byu.net>
18155
18156         Add xmemdup0.
18157         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
18158         implementation.
18159         * lib/xmalloc.c (xmemdup0): New C implementation.
18160
18161 2008-05-08  Bruno Haible  <bruno@clisp.org>
18162
18163         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
18164
18165 2008-05-07  Eric Blake  <ebb9@byu.net>
18166
18167         Support cross-compilation of <wctype.h>.
18168         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
18169         AC_CACHE_CHECK.
18170
18171 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
18172
18173         * build-aux/vc-list-files: Add support for bzr.
18174
18175 2008-05-03  Jim Meyering  <meyering@redhat.com>
18176
18177         avoid failed assertion with tight malloc
18178         * tests/test-getndelim2.c: Correct an off-by-one assertion.
18179
18180 2008-05-03  Simon Josefsson  <simon@josefsson.org>
18181
18182         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
18183         are needed from arpa/inet.h.
18184         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
18185         Reported by Bruno Haible.
18186
18187 2008-05-02  Jim Meyering  <meyering@redhat.com>
18188
18189         avoid compilation error on FreeBSD 6
18190         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
18191
18192 2008-05-01  Jim Meyering  <meyering@redhat.com>
18193
18194         useless-if-before-free: correct --help's exit status description
18195         * build-aux/useless-if-before-free (usage): Like grep, exit 0
18196         for one or more matches, etc.  Reported by Bruno Haible.
18197
18198         vc-list-files: make the stand-alone gnulib test work
18199         * modules/vc-list-files-tests (configure.ac):
18200         Define and AC_SUBST abs_aux_dir.
18201         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
18202         $(abs_top_srcdir) to each script and having each of them
18203         duplicate the work of setting PATH, set PATH here, using
18204         the new variable, abs_aux_dir instead.
18205         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
18206         * tests/test-vc-list-files-git.sh: Likewise.
18207         Reported by Bruno Haible.
18208
18209 2008-05-01  Bruno Haible  <bruno@clisp.org>
18210
18211         * lib/getndelim2.c (getndelim2): Fix newsize computation during
18212         reallocation. Rename 'done' to 'found_delimiter'.
18213
18214 2008-05-01  Jim Meyering  <meyering@redhat.com>
18215
18216         vc-list-files: accommodate /bin/sh like the one from Solaris 10
18217         * build-aux/vc-list-files: Use `...`, not $(...).
18218
18219 2008-04-30  Jim Meyering  <meyering@redhat.com>
18220
18221         add tests for vc-list-files
18222         * modules/vc-list-files-tests: New module.
18223         * tests/test-vc-list-files-cvs.sh: New file.
18224         * tests/test-vc-list-files-git.sh: New file.
18225
18226         avoid a warning from gcc
18227         * lib/getndelim2.c (IF_LINT): Define.
18228         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
18229
18230         vc-list-files: work properly with build-aux/cvsu, too
18231         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
18232         to all cvs-based clauses.
18233
18234         vc-list-files: work properly in the CVS+awk case, too
18235         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
18236
18237         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
18238         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
18239         take more than one file argument, so .  Add quotes, just in case $dir
18240         ever contains a shell meta-character.  Prompted by Soren Hansen in
18241         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
18242
18243 2008-04-29  Eric Blake  <ebb9@byu.net>
18244
18245         Optimize getndelim2 to use block operations when possible.
18246         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
18247         freadseek, and memchr2.
18248         * lib/getndelim2.c (getndelim2): Use them for block reads.
18249
18250 2008-04-29  Bruno Haible  <bruno@clisp.org>
18251
18252         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
18253         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18254         * modules/inet_ntop (Depends-on): Add extensions.
18255         * modules/inet_pton (Depends-on): Likewise.
18256         Reported by Simon Josefsson.
18257
18258 2008-04-29  Jim Meyering  <meyering@redhat.com>
18259
18260         When the is more than one match in a block, match all of them.
18261         * build-aux/useless-if-before-free: Iterate through each block
18262         until there are no more matches.
18263
18264         Fix broken useless-if-before-free script.
18265         * build-aux/useless-if-before-free: Fix typo: missing "?" after
18266         the expression to match cast of argument to free-like function.
18267
18268 2008-04-29  Eric Blake  <ebb9@byu.net>
18269
18270         Use new header.
18271         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
18272
18273 2008-04-29  Jim Meyering  <meyering@redhat.com>
18274
18275         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
18276         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
18277         by gnulib to exist and to declare e.g., inet_ntop.
18278         Don't include "inet_ntop.h", now removed.
18279
18280         * m4/arpa_inet_h.m4: Remove trailing blanks.
18281
18282 2008-04-29  Eric Blake  <ebb9@byu.net>
18283
18284         Silence valgrind on safe reads beyond potential array bounds.
18285         * lib/rawmemchr.valgrind: New file.
18286         * lib/strchrnul.valgrind: Likewise.
18287         * modules/rawmemchr (Files): Distribute new file.
18288         * modules/strchrnul (Files): Likewise.
18289         Suggested by Bruno Haible.
18290
18291 2008-04-29  Bruno Haible  <bruno@clisp.org>
18292
18293         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
18294         (inet_ntop, inet_pton): Change portability warning's wording.
18295         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
18296         Invoke gl_CHECK_NEXT_HEADERS.
18297         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
18298         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
18299         set ARPA_INET_H.
18300         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18301         * modules/arpa_inet (Description): No longer only for systems that
18302         lack it.
18303         (Depends-on): Add include_next.
18304         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
18305         HAVE_ARPA_INET_H.
18306
18307 2008-04-29  Jim Meyering  <meyering@redhat.com>
18308
18309         * modules/mkdir (License): Re-license as LGPLv2+.
18310
18311 2008-04-29  Bruno Haible  <bruno@clisp.org>
18312
18313         * modules/rawmemchr (Maintainer): Set to Eric.
18314         * modules/strchrnul (Maintainer): Likewise.
18315
18316 2008-04-29  Simon Josefsson  <simon@josefsson.org>
18317
18318         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
18319         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
18320
18321         * modules/arpa_inet (arpa/inet.h): Use them.
18322
18323 2008-04-28  Eric Blake  <ebb9@byu.net>
18324
18325         Test getndelim2.
18326         * modules/getndelim2-tests: New file.
18327         * tests/test-getndelim2.c: Likewise.
18328         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
18329         stream.
18330         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
18331
18332         * MODULES.html.sh: Document new module.
18333
18334 2008-04-20  Bruno Haible  <bruno@clisp.org>
18335
18336         * lib/c-stack.c (die): Use raise.
18337         * modules/c-stack (Depends-on): Add raise.
18338
18339 2008-04-28  Bruno Haible  <bruno@clisp.org>
18340
18341         Expect rpmatch to be declared.
18342         * lib/yesno.c (rpmatch): Remove declaration.
18343
18344         Declare rpmatch.
18345         * lib/stdlib.in.h (rpmatch): New declaration.
18346         * lib/rpmatch.c: Include <stdlib.h> first.
18347         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
18348         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
18349         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
18350         HAVE_RPMATCH.
18351         * modules/rpmatch (Depends-on): Add stdlib, extensions.
18352         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
18353         (Include): Set to <stdlib.h>.
18354         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
18355         HAVE_RPMATCH.
18356         * NEWS: Document the change.
18357
18358 2008-04-28  Bruno Haible  <bruno@clisp.org>
18359
18360         Change rpmatch to use nl_langinfo when appropriate.
18361         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
18362         (N_): New macro.
18363         (localized_pattern): New function/macro.
18364         (try): Remove match, nomatch arguments. Copy the pattern into safe
18365         memory before caching it.
18366         (rpmatch): Use localized_pattern. Add translator comments.
18367         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
18368         Suggested by Eric Blake.
18369         * modules/rpmatch (Depends-on): Add stdbool.
18370
18371 2008-04-28  Eric Blake  <ebb9@byu.net>
18372
18373         Add rawmemchr module, matching glibc.
18374         * modules/string (Makefile.am): New indicator.
18375         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
18376         * lib/string.in.h (rawmemchr): Declare when appropriate.
18377         * modules/rawmemchr: New file.
18378         * m4/rawmemchr.m4: Likewise.
18379         * lib/rawmemchr.c: Likewise.
18380         * modules/rawmemchr-tests: Likewise.
18381         * tests/test-rawmemchr.c: Likewise.
18382         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
18383         module.
18384         * modules/strchrnul (Depends-on): Add rawmemchr.
18385         * lib/strchrnul.c (strchrnul): Optimize a corner case.
18386
18387         Whitespace cleanup.
18388         * tests/test-strchrnul.c: Reindent.
18389         * lib/strchrnul.c: Likewise.
18390
18391         Optimize and test strchrnul.
18392         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
18393         * modules/strchrnul-tests: New file.
18394         * tests/test-strchrnul.c: Likewise.
18395
18396         Remove intprops dependency.
18397         * modules/memchr (Depends-on): Remove intprops.
18398         * modules/memrchr (Depends-on): Likewise.
18399         * modules/memchr2 (Depends-on): Likewise.
18400         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
18401         * lib/memrchr.c (__memrchr): Likewise.
18402         * lib/memrchr2.c (memchr2): Likewise.
18403         Reported by Simon Josefsson.
18404
18405 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18406
18407         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
18408         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18409
18410 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18411
18412         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
18413
18414         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
18415
18416         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
18417
18418         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
18419         declarations.
18420         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
18421
18422         * m4/inet_pton.m4: Don't check for header files.
18423
18424         * m4/inet_ntop.m4: Don't check for header files.
18425
18426 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18427
18428         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
18429         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
18430         trigger for cygwin).
18431         Reported by Bruno Haible  <bruno@clisp.org>.
18432
18433 2008-04-28  Bruno Haible  <bruno@clisp.org>
18434
18435         * doc/posix-functions/strdup.texi: Mention mingw problem.
18436
18437 2008-04-27  Bruno Haible  <bruno@clisp.org>
18438
18439         * modules/stat-time-tests (Depends-on): Add sleep.
18440         * tests/test-stat-time.c (force_unlink): New function.
18441         (cleanup): Use it.
18442         (test_mtime): Remove the ctime related tests.
18443         (test_ctime): New function, containing the ctime related tests.
18444         (main): Call test_ctime, except on native Windows platforms.
18445
18446 2008-04-27  Bruno Haible  <bruno@clisp.org>
18447
18448         * lib/rpmatch.c (rpmatch): Add some comments.
18449         Reported by James Youngman <jay@gnu.org>.
18450
18451 2008-04-27  Bruno Haible  <bruno@clisp.org>
18452
18453         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
18454         quiet NaNs.
18455
18456 2008-04-27  Bruno Haible  <bruno@clisp.org>
18457
18458         Make test-yesno.sh work on mingw.
18459         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
18460         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
18461         (main): Set stdin to binary mode.
18462         * modules/yesno-tests (Depends-on): Add binary-io.
18463
18464 2008-04-27  Bruno Haible  <bruno@clisp.org>
18465
18466         Fix 'isfinite' on x86, x86_64, ia64 platforms.
18467         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
18468         argument that lie outside the IEEE 854 domain.
18469         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
18470         (gl_ISFINITE): Use it.
18471         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
18472
18473 2008-04-27  Bruno Haible  <bruno@clisp.org>
18474
18475         Allow local renaming in config.h.
18476         * lib/memrchr.c (memrchr): Don't undefine outside libc.
18477
18478 2008-04-27  Bruno Haible  <bruno@clisp.org>
18479
18480         * lib/memchr.c (__memchr): Change type of 'i'.
18481         * lib/memchr2.c (memchr2): Likewise.
18482
18483 2008-04-26  Eric Blake  <ebb9@byu.net>
18484         and Bruno Haible  <bruno@clisp.org>
18485
18486         Optimize and test memrchr.
18487         * modules/memrchr (Depends-on): Add intprops.
18488         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
18489         * modules/memrchr-tests: New file.
18490         * tests/test-memrchr.c: New file.
18491
18492 2008-04-26  Bruno Haible  <bruno@clisp.org>
18493
18494         Add tentative support for DragonFly BSD.
18495         * lib/stdio-impl.h: Add macros for DragonFly BSD.
18496         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
18497         fp.
18498         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18499         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
18500         * lib/fpurge.c (fpurge): Likewise.
18501         * lib/freadable.c (freaadable): Likewise.
18502         * lib/freadahead.c (freadahead): Likewise.
18503         * lib/freading.c (freading): Likewise.
18504         * lib/freadptr.c (freadptr): Likewise.
18505         * lib/freadseek.c (freadptrinc): Likewise.
18506         * lib/fseeko.c (fseeko): Likewise.
18507         * lib/fseterr.c (fseterr): Likewise.
18508         * lib/fwritable.c (fwritable): Likewise.
18509         * lib/fwriting.c (fwriting): Likewise.
18510
18511 2008-04-26  Bruno Haible  <bruno@clisp.org>
18512
18513         * lib/stdio-impl.h: New file.
18514         * lib/fbufmode.c: Include stdio-impl.h.
18515         (fbufmode): Use fp_, remove redundant #defines.
18516         * lib/fflush.c: Include stdio-impl.h.
18517         (clear_ungetc_buffer): Remove redundant #defines.
18518         * lib/fpurge.c: Include stdio-impl.h.
18519         (fpurge): Remove redundant #defines.
18520         * lib/freadable.c: Include stdio-impl.h.
18521         (freadable): Remove redundant #defines.
18522         * lib/freadahead.c: Include stdio-impl.h.
18523         (freadahead): Remove redundant #defines.
18524         * lib/freading.c: Include stdio-impl.h.
18525         (freading): Remove redundant #defines.
18526         * lib/freadptr.c: Include stdio-impl.h.
18527         (freadptr): Remove redundant #defines.
18528         * lib/freadseek.c: Include stdio-impl.h.
18529         (freadptrinc): Remove redundant #defines.
18530         * lib/fseeko.c: Include stdio-impl.h.
18531         (rpl_fseeko): Remove redundant #defines.
18532         * lib/fseterr.c: Include stdio-impl.h.
18533         (fseterr): Remove redundant #defines.
18534         * lib/fwritable.c: Include stdio-impl.h.
18535         (fwritable: Remove redundant #defines.
18536         * lib/fwriting.c: Include stdio-impl.h.
18537         (fwriting): Remove redundant #defines.
18538         * modules/fbufmode (Files): Add lib/stdio-impl.h.
18539         * modules/fflush (Files): Likewise.
18540         * modules/fpurge (Files): Likewise.
18541         * modules/freadable (Files): Likewise.
18542         * modules/freadahead (Files): Likewise.
18543         * modules/freading (Files): Likewise.
18544         * modules/freadptr (Files): Likewise.
18545         * modules/freadseek (Files): Likewise.
18546         * modules/fseeko (Files): Likewise.
18547         * modules/fseterr (Files): Likewise.
18548         * modules/fwritable (Files): Likewise.
18549         * modules/fwriting (Files): Likewise.
18550
18551 2008-04-26  Bruno Haible  <bruno@clisp.org>
18552
18553         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18554         restore_seek_optimization, update_fpos_cache): New functions, extracted
18555         from rpl_fflush.
18556         (rpl_fflush): Use them.
18557         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
18558         (gl_REPLACE_FFLUSH): Use it.
18559
18560 2008-04-26  Bruno Haible  <bruno@clisp.org>
18561
18562         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
18563         on Solaris.
18564         * tests/test-xstrtoimax.sh: Likewise.
18565         * tests/test-xstrtoumax.sh: Likewise.
18566         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18567
18568 2008-04-26  Bruno Haible  <bruno@clisp.org>
18569
18570         * modules/memchr-tests: New file.
18571         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
18572
18573 2008-04-26  Eric Blake  <ebb9@byu.net>
18574             Bruno Haible  <bruno@clisp.org>
18575
18576         * lib/memchr.c: Include intprops.h.
18577         (__memchr): Optimize parallel detection of matching bytes. Rename local
18578         variables. Add explanatory comments.
18579
18580 2008-04-26  Bruno Haible  <bruno@clisp.org>
18581
18582         Fix module 'memchr', broken since 2000-10-28.
18583         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
18584
18585 2008-04-26  Bruno Haible  <bruno@clisp.org>
18586
18587         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
18588         comments.
18589
18590 2008-04-25  Eric Blake  <ebb9@byu.net>
18591
18592         Use native fstatat on cygwin 1.7.0.
18593         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
18594         first.
18595
18596 2008-04-23  Eric Blake  <ebb9@byu.net>
18597
18598         Improve memchr2 performance.
18599         * lib/memchr2.c (memchr2): Further optimize parallel detection of
18600         NUL bytes.
18601         * modules/memchr2 (Depends-on): Use intprops.h.
18602
18603 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18604
18605         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
18606         an inline function instead of a CPP macro.  Patch by Ben Pfaff
18607         <blp@cs.stanford.edu>.
18608
18609 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18610
18611         * lib/arpa_inet.in.h: New file.
18612
18613         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
18614         (Makefile.am): Sed in substitute header file.
18615
18616         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
18617         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
18618
18619         * modules/inet_ntop (configure.ac): Use
18620         gl_ARPA_INET_MODULE_INDICATOR.
18621
18622         * modules/inet_pton (configure.ac): Use
18623         gl_ARPA_INET_MODULE_INDICATOR.
18624
18625 2008-04-22  Jim Meyering  <meyering@redhat.com>
18626
18627         * modules/verify (License): Re-license as LGPLv2+.
18628
18629 2008-04-22  Simon Josefsson  <simon@josefsson.org>
18630
18631         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
18632         parameter to void* as per POSIX standard (MinGW uses char*).
18633
18634 2008-04-21  Bruno Haible  <bruno@clisp.org>
18635
18636         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
18637         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
18638         Define to replacements if REPLACE_ISWCNTRL is 1.
18639         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
18640         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
18641         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
18642         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
18643         what it fixes.
18644         * doc/posix-functions/iswalpha.texi: Likewise.
18645         * doc/posix-functions/iswblank.texi: Likewise.
18646         * doc/posix-functions/iswcntrl.texi: Likewise.
18647         * doc/posix-functions/iswdigit.texi: Likewise.
18648         * doc/posix-functions/iswgraph.texi: Likewise.
18649         * doc/posix-functions/iswlower.texi: Likewise.
18650         * doc/posix-functions/iswprint.texi: Likewise.
18651         * doc/posix-functions/iswpunct.texi: Likewise.
18652         * doc/posix-functions/iswspace.texi: Likewise.
18653         * doc/posix-functions/iswupper.texi: Likewise.
18654         * doc/posix-functions/iswxdigit.texi: Likewise.
18655         Reported by Alain Guibert.
18656
18657 2008-04-21  Bruno Haible  <bruno@clisp.org>
18658
18659         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
18660         Patch by Alain Guibert.
18661
18662 2008-04-21  Bruno Haible  <bruno@clisp.org>
18663
18664         Fix test failures on mingw.
18665         * tests/test-xstrtol.c (print_no_progname): New function.
18666         (main): Install it in error_print_progname hook.
18667         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
18668         * tests/test-xstrtoimax.sh: Likewise.
18669         * tests/test-xstrtoumax.sh: Likewise.
18670
18671 2008-04-21  Bruno Haible  <bruno@clisp.org>
18672
18673         Fix test failure on mingw.
18674         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
18675
18676 2008-04-21  Bruno Haible  <bruno@clisp.org>
18677
18678         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
18679         Actually assign a value.
18680
18681 2008-04-20  Bruno Haible  <bruno@clisp.org>
18682
18683         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
18684         take 2.
18685         * lib/canonicalize.c (canonicalize_file_name): Elide if the
18686         'canonicalize-lgpl' module is also used.
18687         * lib/canonicalize-lgpl.c: Undo last change.
18688         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
18689
18690 2008-04-20  Bruno Haible  <bruno@clisp.org>
18691
18692         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
18693         config.h. Provide _mkdir based fallback for mingw.
18694         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
18695         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
18696         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
18697         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
18698         rather than defining mkdir in config.h.
18699         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
18700         (gl_SYS_STAT_H_DEFAULTS): New macro.
18701         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
18702         HAVE_IO_H any more.
18703         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
18704         HAVE_DECL_MKDIR and HAVE_IO_H.
18705
18706 2008-04-20  Bruno Haible  <bruno@clisp.org>
18707
18708         * lib/isapipe.c: Port to native Windows platforms.
18709
18710 2008-04-20  Bruno Haible  <bruno@clisp.org>
18711
18712         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
18713
18714 2008-04-21  Eric Blake  <ebb9@byu.net>
18715
18716         Work around preprocessors that don't handle UINTMAX_MAX.
18717         * lib/memchr2.c (memchr2): Avoid embedded #if.
18718         Reported by Alain Guibert, fix suggested by Bruno Haible.
18719
18720 2008-04-21  Simon Josefsson  <simon@josefsson.org>
18721
18722         * doc/posix-functions/strftime.texi (strftime): Explain better
18723         Windows incompatibility.  Suggested by Micah Cowan
18724         <micah@cowan.name>.
18725
18726 2008-04-20  Bruno Haible  <bruno@clisp.org>
18727
18728         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
18729         unistr/u8-mblen.
18730
18731 2008-04-20  Bruno Haible  <bruno@clisp.org>
18732
18733         Fix test failure on platforms with non-GNU iconv.
18734         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
18735         (U_TO_U8): Use it, rather than u16_to_u8.
18736         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
18737         units at the end of the input string.
18738         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
18739
18740 2008-04-20  Bruno Haible  <bruno@clisp.org>
18741
18742         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
18743         when the resulting length is 0.
18744         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
18745
18746 2008-04-20  Bruno Haible  <bruno@clisp.org>
18747
18748         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
18749         works.
18750         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
18751
18752 2008-04-20  Bruno Haible  <bruno@clisp.org>
18753
18754         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
18755         * modules/tsearch-tests (configure.ac): Test for initstate function.
18756
18757 2008-04-20  Bruno Haible  <bruno@clisp.org>
18758
18759         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
18760         for nlink_t if missing.
18761         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
18762
18763 2008-04-19  Bruno Haible  <bruno@clisp.org>
18764
18765         Work around snprintf bug on Linux libc5.
18766         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
18767         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
18768         gl_SNPRINTF_SIZE1.
18769         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
18770         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
18771         that test failed.
18772         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
18773         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
18774         * modules/snprintf (Files): Add m4/printf.m4.
18775         * modules/vsnprintf (Files): Likewise.
18776         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
18777         * doc/posix-functions/vsnprintf.texi: Likewise.
18778
18779 2008-04-19  Bruno Haible  <bruno@clisp.org>
18780
18781         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
18782         from 0.0058 to less than 10^-7.
18783
18784 2008-04-19  Bruno Haible  <bruno@clisp.org>
18785
18786         Fix rounding when a precision is given.
18787         * lib/vasnprintf.c (is_borderline): New function.
18788         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
18789         9...9x.
18790         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
18791         %e, %g.
18792         * tests/test-vasprintf-posix.c (test_function): Likewise.
18793         * tests/test-snprintf-posix.h (test_function): Likewise.
18794         * tests/test-sprintf-posix.h (test_function): Likewise.
18795         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
18796         * tests/test-printf-posix.h (test_function): Likewise.
18797         * tests/test-printf-posix.output: Update.
18798         Reported by John Darrington <john@darrington.wattle.id.au> via
18799         Ben Pfaff <blp@cs.stanford.edu>.
18800
18801 2008-04-18  Simon Josefsson  <simon@josefsson.org>
18802
18803         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
18804         Suggested by Bruno Haible <bruno@clisp.org>.
18805
18806 2008-04-17  Bruno Haible  <bruno@clisp.org>
18807
18808         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
18809         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
18810         implementation.
18811         Patch by Bruce Merry <bmerry@gmail.com>.
18812
18813 2008-04-17  Simon Josefsson  <simon@josefsson.org>
18814
18815         * doc/posix-functions/strftime.texi (strftime): Mention that %e
18816         doesn't work under Windows.
18817
18818 2008-04-16  Bruno Haible  <bruno@clisp.org>
18819
18820         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
18821         New macros.
18822         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
18823         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
18824         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
18825         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
18826         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
18827         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
18828         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
18829         macros.
18830         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
18831         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
18832         Northern Sotho, Uighur.
18833
18834 2008-04-16  Bruno Haible  <bruno@clisp.org>
18835
18836         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
18837         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
18838         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
18839         Reported by Daniel Bergström <daniel@octocode.com>.
18840
18841 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
18842             Bruno Haible  <bruno@clisp.org>
18843
18844         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
18845         function.
18846         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
18847         New functions, mostly extracted from gl_locale_name_default.
18848         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
18849
18850 2008-04-16  Eric Blake  <ebb9@byu.net>
18851
18852         Adjust strtod detection to catch glibc 2.7 bug.
18853         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
18854         Reported by John Gatewood Ham.
18855
18856 2008-04-16  Bruno Haible  <bruno@clisp.org>
18857
18858         Add tentative support for Linux libc5.
18859         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
18860         * lib/fpurge.c (fpurge): Likewise.
18861         * lib/freadable.c (freadable): Likewise.
18862         * lib/freadahead.c (freadahead): Likewise.
18863         * lib/freading.c (freading): Likewise.
18864         * lib/freadptr.c (freadptr): Likewise.
18865         * lib/freadseek.c (freadptrinc): Likewise.
18866         * lib/fseeko.c (rpl_fseeko): Likewise.
18867         * lib/fseterr.c (fseterr): Likewise.
18868         * lib/fwritable.c (fwritable): Likewise.
18869         * lib/fwriting.c (fwriting): Likewise.
18870         Reported by Alain Guibert <alguibert+bts@free.fr>.
18871
18872 2008-04-15  Bruno Haible  <bruno@clisp.org>
18873
18874         * modules/mathl (configure.ac): Define module indicator.
18875
18876 2008-04-15  Bruno Haible  <bruno@clisp.org>
18877
18878         * lib/logl.c (logl): Remove unused variables.
18879
18880 2008-04-15  Bruno Haible  <bruno@clisp.org>
18881
18882         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
18883         fails.
18884
18885 2008-04-15  Bruno Haible  <bruno@clisp.org>
18886
18887         * lib/trim.c (trim2): Fix argument of isspace() macro.
18888
18889 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
18890
18891         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
18892         to 0.
18893         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
18894
18895 2008-04-14  Bruno Haible  <bruno@clisp.org>
18896
18897         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
18898         AC_LANG_PROGRAM argument.
18899         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
18900         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
18901         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
18902         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
18903         * m4/math_h.m4 (gl_MATH_H): Likewise.
18904         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
18905         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
18906         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
18907         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
18908         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
18909         * m4/regex.m4 (gl_REGEX): Likewise.
18910         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
18911         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
18912         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
18913         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
18914         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
18915         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
18916         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
18917         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
18918
18919 2008-04-14  Jim Meyering  <meyering@redhat.com>
18920
18921         test-strtod: fix typos: s/abs/fabs/
18922         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
18923
18924 2008-04-13  Bruno Haible  <bruno@clisp.org>
18925
18926         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
18927         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
18928         module is also used and while not building the reloc-wrapper.
18929
18930 2008-04-13  Bruno Haible  <bruno@clisp.org>
18931
18932         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
18933
18934 2008-04-13  Bruno Haible  <bruno@clisp.org>
18935
18936         Fix AIX compilation failure introduced on 2008-04-02.
18937         * tests/test-frexp.c (exp): Undefine before redefining.
18938         * tests/test-frexpl.c (exp): Likewise.
18939
18940 2008-04-13  Bruno Haible  <bruno@clisp.org>
18941
18942         Work around a HP-UX stdio bug.
18943         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
18944         * tests/test-ftello.c (main): Likewise.
18945         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
18946         * doc/posix-functions/ftello.texi: Likewise.
18947
18948 2008-04-13  Bruno Haible  <bruno@clisp.org>
18949
18950         Make test-signbit pass on HP-UX/hppa.
18951         * tests/test-signbit.c (minus_zerol): New variable.
18952         (test_signbitl): Use it.
18953
18954 2008-04-13  Bruno Haible  <bruno@clisp.org>
18955
18956         Make truncl work on OSF/1 4.0.
18957         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
18958         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
18959         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
18960         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
18961         HAVE_DECL_TRUNCL.
18962         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
18963         HAVE_DECL_TRUNCL.
18964         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
18965
18966 2008-04-13  Bruno Haible  <bruno@clisp.org>
18967
18968         * lib/unictype.h: Remove trailing comma from enumeration definitions.
18969
18970 2008-04-13  Bruno Haible  <bruno@clisp.org>
18971
18972         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
18973         expression, so as to avoid HP-UX 11 cc compiler bug.
18974
18975 2008-04-13  Bruno Haible  <bruno@clisp.org>
18976
18977         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
18978
18979 2008-04-13  Bruno Haible  <bruno@clisp.org>
18980
18981         * lib/git-merge-changelog.c: Remove empty declaration outside of
18982         functions.
18983
18984 2008-04-13  Bruno Haible  <bruno@clisp.org>
18985
18986         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
18987
18988 2008-04-13  Bruno Haible  <bruno@clisp.org>
18989
18990         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
18991         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
18992         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
18993         also if it exists but lacks definitions of the SHUT_* macros.
18994         * modules/sys_socket (Description): Update.
18995         Reported by Elbert Pol <e.pol@chello.nl>.
18996
18997 2008-04-13  Bruno Haible  <bruno@clisp.org>
18998
18999         * lib/localcharset.c (OS2): Don't redefine if already defined.
19000         Reported by Elbert Pol <e.pol@chello.nl>.
19001
19002 2008-04-13  Bruno Haible  <bruno@clisp.org>
19003
19004         * lib/binary-io.h [__EMX__]: Include <io.h>.
19005         Reported by Elbert Pol <e.pol@chello.nl>.
19006
19007 2008-04-12  Bruno Haible  <bruno@clisp.org>
19008
19009         * lib/fpucw.h: Enable the definitions also for x86_64.
19010         Needed for NetBSD/x86_64.
19011         Reported by Thomas Klausner <tk@giga.or.at>.
19012
19013 2008-04-12  Bruno Haible  <bruno@clisp.org>
19014
19015         * tests/test-strtod.c: Include isnand.h.
19016         (main): Use isnand instead of isnan.
19017         Reported by Jim Meyering.
19018
19019 2008-04-12  Bruno Haible  <bruno@clisp.org>
19020
19021         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
19022         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
19023
19024 2008-04-12  Jim Meyering  <meyering@redhat.com>
19025
19026         * m4/math_h.m4 (gl_MATH_H): Fix typos.
19027
19028 2008-04-12  Bruno Haible  <bruno@clisp.org>
19029
19030         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
19031         Reported by Elbert Pol <e.pol@chello.nl>.
19032
19033 2008-04-12  Eric Blake  <ebb9@byu.net>
19034
19035         Work around Solaris 10 math.h bug.
19036         * m4/math_h.m4 (gl_MATH_H): Check for bug.
19037         (gl_MATH_H_DEFAULTS): Set up default.
19038         * modules/math (Makefile.am): Replace new indicators.
19039         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
19040         * tests/test-math.c (main): Test this.
19041         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
19042         * doc/posix-headers/math.texi (math.h): Mention bug.
19043         Reported by Nelson H. F. Beebe and Jim Meyering.
19044
19045 2008-04-11  Bruno Haible  <bruno@clisp.org>
19046
19047         Adapt to future versions of Apple GCC.
19048         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
19049         Reported by Peter O'Gorman <peter@pogma.com>.
19050
19051 2008-04-11  Bruno Haible  <bruno@clisp.org>
19052
19053         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
19054
19055 2008-04-11  Bruno Haible  <bruno@clisp.org>
19056
19057         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
19058
19059         * modules/getaddrinfo-tests (Makefile.am): Define
19060         test_getaddrinfo_LDADD.
19061
19062 2008-04-11  Bruno Haible  <bruno@clisp.org>
19063
19064         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
19065         (init): Fix syntax error.
19066         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
19067         is declared.
19068
19069 2008-04-11  Bruno Haible  <bruno@clisp.org>
19070
19071         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
19072         * modules/glob (Depends-on): Add stdbool.
19073
19074 2008-04-11  Bruno Haible  <bruno@clisp.org>
19075
19076         * lib/trim.c: Include <string.h>.
19077
19078 2008-04-11  Eric Blake  <ebb9@byu.net>
19079
19080         Avoid compile failure on OS/2.
19081         * lib/regex_internal.h (internal_function): Disable optimization
19082         on OS/2 (__EMX__), where it caused compiler error.
19083         Reported by Elbert Pol.
19084
19085 2008-04-11  Bruno Haible  <bruno@clisp.org>
19086
19087         Flush the standard error stream before aborting. Needed on mingw.
19088         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
19089         * tests/test-array_list.c (ASSERT): Likewise.
19090         * tests/test-array_oset.c (ASSERT): Likewise.
19091         * tests/test-avltree_list.c (ASSERT): Likewise.
19092         * tests/test-avltree_oset.c (ASSERT): Likewise.
19093         * tests/test-avltreehash_list.c (ASSERT): Likewise.
19094         * tests/test-binary-io.c (ASSERT): Likewise.
19095         * tests/test-byteswap.c (ASSERT): Likewise.
19096         * tests/test-c-ctype.c (ASSERT): Likewise.
19097         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
19098         * tests/test-c-strcasestr.c (ASSERT): Likewise.
19099         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
19100         * tests/test-c-strstr.c (ASSERT): Likewise.
19101         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
19102         * tests/test-canonicalize.c (ASSERT): Likewise.
19103         * tests/test-carray_list.c (ASSERT): Likewise.
19104         * tests/test-ceilf1.c (ASSERT): Likewise.
19105         * tests/test-ceilf2.c (ASSERT): Likewise.
19106         * tests/test-ceill.c (ASSERT): Likewise.
19107         * tests/test-count-one-bits.c (ASSERT): Likewise.
19108         * tests/test-fbufmode.c (ASSERT): Likewise.
19109         * tests/test-fflush2.c (ASSERT): Likewise.
19110         * tests/test-floorf1.c (ASSERT): Likewise.
19111         * tests/test-floorf2.c (ASSERT): Likewise.
19112         * tests/test-floorl.c (ASSERT): Likewise.
19113         * tests/test-fopen.c (ASSERT): Likewise.
19114         * tests/test-fpending.c (ASSERT): Likewise.
19115         * tests/test-fprintf-posix.c (ASSERT): Likewise.
19116         * tests/test-fpurge.c (ASSERT): Likewise.
19117         * tests/test-freadable.c (ASSERT): Likewise.
19118         * tests/test-freadahead.c (ASSERT): Likewise.
19119         * tests/test-freading.c (ASSERT): Likewise.
19120         * tests/test-freadptr.c (ASSERT): Likewise.
19121         * tests/test-freadptr2.c (ASSERT): Likewise.
19122         * tests/test-freadseek.c (ASSERT): Likewise.
19123         * tests/test-freopen.c (ASSERT): Likewise.
19124         * tests/test-frexp.c (ASSERT): Likewise.
19125         * tests/test-frexpl.c (ASSERT): Likewise.
19126         * tests/test-fseek.c (ASSERT): Likewise.
19127         * tests/test-fseeko.c (ASSERT): Likewise.
19128         * tests/test-fstrcmp.c (ASSERT): Likewise.
19129         * tests/test-ftell.c (ASSERT): Likewise.
19130         * tests/test-ftello.c (ASSERT): Likewise.
19131         * tests/test-func.c (ASSERT): Likewise.
19132         * tests/test-fwritable.c (ASSERT): Likewise.
19133         * tests/test-fwriting.c (ASSERT): Likewise.
19134         * tests/test-getdelim.c (ASSERT): Likewise.
19135         * tests/test-getline.c (ASSERT): Likewise.
19136         * tests/test-i-ring.c (ASSERT): Likewise.
19137         * tests/test-iconv-utf.c (ASSERT): Likewise.
19138         * tests/test-iconv.c (ASSERT): Likewise.
19139         * tests/test-isfinite.c (ASSERT): Likewise.
19140         * tests/test-isnand.c (ASSERT): Likewise.
19141         * tests/test-isnanf.c (ASSERT): Likewise.
19142         * tests/test-isnanl.h (ASSERT): Likewise.
19143         * tests/test-ldexpl.c (ASSERT): Likewise.
19144         * tests/test-linked_list.c (ASSERT): Likewise.
19145         * tests/test-linkedhash_list.c (ASSERT): Likewise.
19146         * tests/test-localename.c (ASSERT): Likewise.
19147         * tests/test-lseek.c (ASSERT): Likewise.
19148         * tests/test-mbscasecmp.c (ASSERT): Likewise.
19149         * tests/test-mbscasestr1.c (ASSERT): Likewise.
19150         * tests/test-mbscasestr2.c (ASSERT): Likewise.
19151         * tests/test-mbscasestr3.c (ASSERT): Likewise.
19152         * tests/test-mbscasestr4.c (ASSERT): Likewise.
19153         * tests/test-mbschr.c (ASSERT): Likewise.
19154         * tests/test-mbscspn.c (ASSERT): Likewise.
19155         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
19156         * tests/test-mbspbrk.c (ASSERT): Likewise.
19157         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
19158         * tests/test-mbsrchr.c (ASSERT): Likewise.
19159         * tests/test-mbsspn.c (ASSERT): Likewise.
19160         * tests/test-mbsstr1.c (ASSERT): Likewise.
19161         * tests/test-mbsstr2.c (ASSERT): Likewise.
19162         * tests/test-mbsstr3.c (ASSERT): Likewise.
19163         * tests/test-memchr2.c (ASSERT): Likewise.
19164         * tests/test-memmem.c (ASSERT): Likewise.
19165         * tests/test-open.c (ASSERT): Likewise.
19166         * tests/test-printf-frexp.c (ASSERT): Likewise.
19167         * tests/test-printf-frexpl.c (ASSERT): Likewise.
19168         * tests/test-printf-posix.c (ASSERT): Likewise.
19169         * tests/test-quotearg.c (ASSERT): Likewise.
19170         * tests/test-rbtree_list.c (ASSERT): Likewise.
19171         * tests/test-rbtree_oset.c (ASSERT): Likewise.
19172         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
19173         * tests/test-round1.c (ASSERT): Likewise.
19174         * tests/test-roundf1.c (ASSERT): Likewise.
19175         * tests/test-roundl.c (ASSERT): Likewise.
19176         * tests/test-signbit.c (ASSERT): Likewise.
19177         * tests/test-sleep.c (ASSERT): Likewise.
19178         * tests/test-snprintf-posix.c (ASSERT): Likewise.
19179         * tests/test-snprintf.c (ASSERT): Likewise.
19180         * tests/test-sprintf-posix.c (ASSERT): Likewise.
19181         * tests/test-stat-time.c (ASSERT): Likewise.
19182         * tests/test-strcasestr.c (ASSERT): Likewise.
19183         * tests/test-strerror.c (ASSERT): Likewise.
19184         * tests/test-striconv.c (ASSERT): Likewise.
19185         * tests/test-striconveh.c (ASSERT): Likewise.
19186         * tests/test-striconveha.c (ASSERT): Likewise.
19187         * tests/test-strsignal.c (ASSERT): Likewise.
19188         * tests/test-strstr.c (ASSERT): Likewise.
19189         * tests/test-strtod.c (ASSERT): Likewise.
19190         * tests/test-trunc1.c (ASSERT): Likewise.
19191         * tests/test-trunc2.c (ASSERT): Likewise.
19192         * tests/test-truncf1.c (ASSERT): Likewise.
19193         * tests/test-truncf2.c (ASSERT): Likewise.
19194         * tests/test-truncl.c (ASSERT): Likewise.
19195         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
19196         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
19197         * tests/test-vasnprintf.c (ASSERT): Likewise.
19198         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
19199         * tests/test-vasprintf.c (ASSERT): Likewise.
19200         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
19201         * tests/test-vprintf-posix.c (ASSERT): Likewise.
19202         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
19203         * tests/test-vsnprintf.c (ASSERT): Likewise.
19204         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
19205         * tests/test-wcwidth.c (ASSERT): Likewise.
19206         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
19207         * tests/test-xprintf-posix.c (ASSERT): Likewise.
19208         * tests/test-xvasprintf.c (ASSERT): Likewise.
19209         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
19210         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
19211         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
19212         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
19213         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
19214         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
19215         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
19216         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
19217         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
19218         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
19219         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
19220         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
19221         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
19222         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
19223         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
19224         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
19225         * tests/unictype/test-block_list.c (ASSERT): Likewise.
19226         * tests/unictype/test-block_of.c (ASSERT): Likewise.
19227         * tests/unictype/test-block_test.c (ASSERT): Likewise.
19228         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
19229         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
19230         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
19231         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
19232         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
19233         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
19234         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
19235         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
19236         * tests/unictype/test-combining.c (ASSERT): Likewise.
19237         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
19238         * tests/unictype/test-digit.c (ASSERT): Likewise.
19239         * tests/unictype/test-mirror.c (ASSERT): Likewise.
19240         * tests/unictype/test-numeric.c (ASSERT): Likewise.
19241         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
19242         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
19243         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
19244         * tests/unictype/test-scripts.c (ASSERT): Likewise.
19245         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
19246         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
19247         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
19248         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
19249         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
19250         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
19251         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
19252         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
19253         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
19254         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
19255         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
19256         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
19257         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
19258         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
19259         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
19260         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
19261         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
19262         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
19263         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
19264         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
19265         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
19266         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
19267         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
19268         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
19269         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
19270         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
19271         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
19272         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
19273         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
19274         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
19275         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
19276         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
19277         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
19278         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
19279         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
19280         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
19281         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
19282         Reported by Eric Blake.
19283
19284 2008-04-11  Bruno Haible  <bruno@clisp.org>
19285
19286         * lib/wchar.in.h: Tweak comment.
19287
19288 2008-04-11  Bruno Haible  <bruno@clisp.org>
19289
19290         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
19291         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
19292         gl_COMMON.
19293         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
19294
19295 2008-04-11  Bruno Haible  <bruno@clisp.org>
19296
19297         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
19298
19299 2008-04-11  Simon Josefsson  <simon@josefsson.org>
19300
19301         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
19302         of attempting to use non-existing /dev/*random.  Based on patch
19303         from Adam Strzelecki <ono@java.pl> in
19304         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
19305
19306 2008-04-08  Bruno Haible  <bruno@clisp.org>
19307
19308         Add tentative support for emx+gcc.
19309         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
19310         * lib/fpurge.c (fpurge): Likewise.
19311         * lib/freadable.c (freadable): Likewise.
19312         * lib/freadahead.c (freadahead): Likewise.
19313         * lib/freading.c (freading): Likewise.
19314         * lib/freadptr.c (freadptr): Likewise.
19315         * lib/freadseek.c (freadptrinc): Likewise.
19316         * lib/fseeko.c (rpl_fseeko): Likewise.
19317         * lib/fseterr.c (fseterr): Likewise.
19318         * lib/fwritable.c (fwritable): Likewise.
19319         * lib/fwriting.c (fwriting): Likewise.
19320         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
19321
19322 2008-04-09  Eric Blake  <ebb9@byu.net>
19323
19324         Avoid some autoconf warnings.
19325         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
19326         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
19327         * m4/afs.m4 (gl_AFS): Likewise.
19328         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
19329         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
19330         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19331         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
19332         (gl_INTEGER_TYPE_SUFFIX): Likewise.
19333         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
19334         (AC_CHECK_DECLS_ONCE): Likewise.
19335         Rename file...
19336         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
19337         gnulib-tool requires autoconf 2.59 or better.
19338         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
19339
19340 2008-04-08  Eric Blake  <ebb9@byu.net>
19341
19342         Use 'git describe --match' if present (added in git 1.5.5).
19343         * build-aux/git-version-gen: Limit result to tags that match 'v*'
19344         if possible.
19345
19346 2008-04-08  Bruno Haible  <bruno@clisp.org>
19347
19348         Add tentative support for OpenServer.
19349         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
19350         _ptr, _cnt.
19351         * lib/fpurge.c (fpurge): Likewise.
19352         * lib/freadable.c (freadable): Likewise.
19353         * lib/freadahead.c (freadahead): Likewise.
19354         * lib/freading.c (freading): Likewise.
19355         * lib/freadptr.c (freadptr): Likewise.
19356         * lib/freadseek.c (freadptrinc): Likewise.
19357         * lib/fseeko.c (rpl_fseeko): Likewise.
19358         * lib/fseterr.c (fseterr): Likewise.
19359         * lib/fwritable.c (fwritable): Likewise.
19360         * lib/fwriting.c (fwriting): Likewise.
19361         Reported by Roger Cornelius <rac@tenzing.org> and
19362         Brian K. White <brian@aljex.com>.
19363
19364 2008-04-06  Jim Meyering  <meyering@redhat.com>
19365
19366         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
19367
19368 2008-04-06  Bruno Haible  <bruno@clisp.org>
19369
19370         Avoid possible error with non-ASCII bytes in UTF-8 locales.
19371         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
19372         * tests/test-printf-posix.sh: Likewise.
19373         * tests/test-vfprintf-posix.sh: Likewise.
19374         * tests/test-vprintf-posix.sh: Likewise.
19375         * tests/test-xprintf-posix.sh: Likewise.
19376
19377 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19378
19379         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
19380         hide error from 'ls', needed on OS/2.
19381         Report by Elbert Pol <elbert.pol@gmail.com>.
19382
19383 2008-04-04  Eric Blake  <ebb9@byu.net>
19384
19385         Make test-fseeko.c failures meaningful.
19386         * tests/test-fseeko.c: Print line number on failure.
19387         * tests/test-fseek.c: Likewise.
19388         Reported by Nelson H. F. Beebe.
19389
19390         Improve strtod bug detection check.
19391         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
19392         required for Solaris 10.
19393         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
19394
19395 2008-04-04  Bruno Haible  <bruno@clisp.org>
19396
19397         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
19398         by m4/setenv.m4.
19399
19400 2008-04-03  Eric Blake  <ebb9@byu.net>
19401
19402         Ensure sane .version contents.
19403         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
19404         version string.
19405         * build-aux/git-version-gen: Improve documentation.
19406
19407         Make GNU make output nicer.
19408         * top/GNUmakefile [!_have-Makefile]: Add dependency on
19409         MAKECMDGOALS to enforce message for all command line targets.  Set
19410         srcdir for use in maint.mk.
19411
19412         Another maintainer tweak.
19413         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
19414         a target that regenerates version.
19415
19416 2008-04-03  Jim Meyering  <meyering@redhat.com>
19417
19418         vc-list-files: don't cause coreutils "make po-check" failure
19419         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
19420
19421 2008-04-03  Eric Blake  <ebb9@byu.net>
19422
19423         Allow VPATH usage of vc-list-files.
19424         * build-aux/vc-list-files (scriptversion): Add timestamp.
19425         (options): Add --help, --version, -C.
19426         (CVS): Support installed cvsu.
19427
19428 2008-04-02  Bruno Haible  <bruno@clisp.org>
19429
19430         Avoid some "statement with no effect" warnings from gcc.
19431         * tests/test-wctype.c (main): Explicitly ignore unused values.
19432         Reported by Jim Meyering.
19433
19434 2008-04-02  Jim Meyering  <meyering@redhat.com>
19435
19436         Avoid some warnings from "gcc -Wshadow".
19437         * tests/test-frexp.c (exp): Define to a different identifier.
19438         * tests/test-frexpl.c (exp): Likewise.
19439
19440 2008-04-03  Jim Meyering  <meyering@redhat.com>
19441
19442         bootstrap: remove dangling *.[ch] symlinks from lib
19443         * build-aux/bootstrap [dangling symlink removal]: Move find's
19444         -depth option to precede all others, to avoid a warning.
19445         Remove *.[ch] files too, and from "$source_base" (usually lib/).
19446
19447 2008-04-02  Bruno Haible  <bruno@clisp.org>
19448
19449         Avoid some warnings from "gcc -Wshadow".
19450         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
19451         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
19452         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
19453         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
19454         Reported by Jim Meyering.
19455
19456 2008-04-01  Bruno Haible  <bruno@clisp.org>
19457
19458         Fix test to work on IRIX 6.5 with cc.
19459         * tests/test-math.c (numeric_equal): New function.
19460         (main): Use it.
19461
19462 2008-04-01  Bruno Haible  <bruno@clisp.org>
19463
19464         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
19465
19466 2008-04-01  Bruno Haible  <bruno@clisp.org>
19467
19468         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
19469         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19470         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
19471         (Depends-on): Remove math.
19472
19473         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
19474         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19475         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
19476         (Depends-on): Remove math.
19477
19478         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
19479         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19480         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
19481         (Depends-on): Remove math.
19482         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
19483         (Depends-on): Remove math.
19484
19485         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
19486         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19487         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
19488         (Depends-on): Remove math.
19489         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
19490         (Depends-on): Remove math.
19491
19492         * tests/test-round1.c: Include nan.h.
19493         (main): Use NaNd instead of NAN.
19494         * modules/round-tests (Files): Add tests/nan.h.
19495
19496         * tests/test-trunc1.c: Include nan.h.
19497         (main): Use NaNd instead of NAN.
19498         * modules/trunc-tests (Files): Add tests/nan.h.
19499
19500         * tests/test-roundf1.c: Include nan.h.
19501         (main): Use NaNf instead of NAN.
19502         * modules/roundf-tests (Files): Add tests/nan.h.
19503
19504         * tests/test-truncf1.c: Include nan.h.
19505         (main): Use NaNf instead of NAN.
19506         * modules/truncf-tests (Files): Add tests/nan.h.
19507
19508         * tests/test-ceilf1.c: Include nan.h.
19509         (main): Use NaNf instead of NAN.
19510         * modules/ceilf-tests (Files): Add tests/nan.h.
19511
19512         * tests/test-floorf1.c: Include nan.h.
19513         (main): Use NaNf instead of NAN.
19514         * modules/floorf-tests (Files): Add tests/nan.h.
19515
19516         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
19517         (main): Use NaNf instead of NAN.
19518         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
19519
19520         * tests/test-isnand.c: Include nan.h instead of <math.h>.
19521         (main): Use NaNd instead of NAN.
19522         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
19523
19524         * tests/test-frexp.c: Include nan.h.
19525         (main): Use NaNd instead of NAN.
19526         * modules/frexp-tests (Files): Add tests/nan.h.
19527
19528         * lib/isnan.c: Don't include <math.h>.
19529         (FUNC): Don't use NAN macro.
19530         * modules/isnand-nolibm (Depends-on): Remove math.
19531         * modules/isnanf-nolibm (Depends-on): Remove math.
19532         * modules/isnanl (Depends-on): Remove math.
19533         * modules/isnanl-nolibm (Depends-on): Remove math.
19534
19535         * tests/nan.h: New file.
19536
19537 2008-04-01  Eric Blake  <ebb9@byu.net>
19538
19539         Fix typos.
19540         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
19541         values to be the right type.
19542
19543         For now, cater to gnulib strtod inaccuracies.
19544         * tests/test-strtod.c (main): Allow 1-ulp error on expected
19545         fractional results.  While not as nice from a QoI perspective, it
19546         is a quicker patch than correctly implementing decimal to binary
19547         rounding.
19548
19549 2008-03-31  Eric Blake  <ebb9@byu.net>
19550
19551         Guarantee a definition of NAN.
19552         * lib/math.in.h (NAN): Define if missing.
19553         * tests/test-math.c (main): Test it.
19554         * doc/posix-headers/math.texi (math.h): Document this.
19555         * lib/isnan.c (rpl_isnand): Use it.
19556         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
19557         * tests/test-floorf1.c (NaN): Likewise.
19558         * tests/test-frexp.c (NaN): Likewise.
19559         * tests/test-isnand.c (NaN): Likewise.
19560         * tests/test-isnanf.c (NaN): Likewise.
19561         * tests/test-round1.c (NaN): Likewise.
19562         * tests/test-roundf1.c (NaN): Likewise.
19563         * tests/test-snprintf-posix.h (NaN): Likewise.
19564         * tests/test-sprintf-posix.h (NaN): Likewise.
19565         * tests/test-trunc1.c (NaN): Likewise.
19566         * tests/test-truncf1.c (NaN): Likewise.
19567         * tests/test-vasnprintf-posix.c (NaN): Likewise.
19568         * tests/test-vasprintf-posix.c (NaN): Likewise.
19569         * modules/isnand-nolibm (Depends-on): Add math.
19570         * modules/isnanf-nolibm (Depends-on): Likewise.
19571         * modules/isnanl (Depends-on): Likewise.
19572         * modules/isnanl-nolibm (Depends-on): Likewise.
19573         * modules/snprintf-posix-tests (Depends-on): Likewise.
19574         * modules/sprintf-posix-tests (Depends-on): Likewise.
19575         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
19576         * modules/vsprintf-posix-tests (Depends-on): Likewise.
19577         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
19578         * modules/vasprintf-posix-tests (Depends-on): Likewise.
19579
19580 2008-03-31  Bruno Haible  <bruno@clisp.org>
19581
19582         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
19583         * doc/posix-functions/strtod.texi: Likewise.
19584
19585 2008-03-31  Bruno Haible  <bruno@clisp.org>
19586
19587         * tests/test-strtod.c (main): Don't use C99 syntax.
19588
19589 2008-03-31  Bruno Haible  <bruno@clisp.org>
19590
19591         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
19592         Reported by Eric Blake.
19593
19594 2008-03-31  Jim Meyering  <meyering@redhat.com>
19595
19596         Don't compare actual signbit return values.
19597         * tests/test-strtod.c (main): Rather, compare only their
19598         zero/non-zero nature.
19599
19600 2008-03-31  Eric Blake  <ebb9@byu.net>
19601
19602         More strtod documentation.
19603         * doc/posix-functions/strtod.texi (strtod): Interpret more test
19604         failures as distinct bugs.
19605
19606 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
19607
19608         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
19609         Problem reported by Erik Benada in
19610         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
19611
19612 2008-03-30  Bruno Haible  <bruno@clisp.org>
19613
19614         * tests/test-strtod.c: Add comments about which assertion fails on which
19615         platform.
19616         * doc/posix-functions/strtod.texi: Add info about many more platforms.
19617
19618 2008-03-30  Eric Blake  <ebb9@byu.net>
19619
19620         Test signbit behavior on zeros.
19621         * tests/test-signbit.c (test_signbitf): Add tests for zero.
19622         (test_signbitd, test_signbitl): Likewise.
19623
19624         More strtod touchups.
19625         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
19626         sign of negative underflow, for now.  Use .5, not .1.
19627         * doc/posix-functions/strtod.texi (strtod): Mention these
19628         limitations.
19629         Reported by Jim Meyering.
19630
19631 2008-03-30  Bruno Haible  <bruno@clisp.org>
19632
19633         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
19634         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
19635
19636 2008-03-30  Bruno Haible  <bruno@clisp.org>
19637
19638         Avoid failure when attempting to return empty iconv results on some
19639         platforms.
19640         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
19641         allocation, don't report ENOMEM when the resulting string is empty.
19642
19643 2008-03-30  Bruno Haible  <bruno@clisp.org>
19644
19645         Fix buffer overrun.
19646         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
19647         Don't consider the width for tmp_length. Check count against tmp_length
19648         before doing the padding. Ensure enough allocation during padding.
19649
19650 2008-03-30  Eric Blake  <ebb9@byu.net>
19651
19652         strtod touchups.
19653         * lib/strtod.c (strtod): Avoid compiler warnings.
19654         Reported by Jim Meyering.
19655
19656 2008-03-30  Bruno Haible  <bruno@clisp.org>
19657
19658         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
19659         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
19660         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
19661         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
19662         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
19663         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
19664         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
19665         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
19666
19667         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
19668         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
19669         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
19670         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
19671         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
19672         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
19673         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
19674         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
19675
19676         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
19677         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
19678         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
19679         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
19680         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
19681         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
19682         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
19683         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
19684
19685         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
19686         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
19687
19688         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
19689         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
19690
19691         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
19692         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
19693
19694         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
19695         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
19696         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
19697
19698         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
19699         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
19700         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
19701
19702         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
19703         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
19704         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
19705
19706         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
19707         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
19708         * modules/vasprintf (Depends-on): Add EOVERFLOW.
19709
19710         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
19711         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
19712         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
19713         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
19714         (Depends-on): Add EOVERFLOW.
19715         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
19716         (Depends-on): Add EOVERFLOW.
19717         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19718         (Depends-on): Add EOVERFLOW.
19719         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19720         (Depends-on): Add EOVERFLOW.
19721         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19722         (Depends-on): Add EOVERFLOW.
19723         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19724         (Depends-on): Add EOVERFLOW.
19725         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19726         (Depends-on): Add EOVERFLOW.
19727         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19728         (Depends-on): Add EOVERFLOW.
19729
19730         * lib/sprintf.c (EOVERFLOW): Remove fallback.
19731         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
19732         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
19733
19734         * lib/snprintf.c (EOVERFLOW): Remove fallback.
19735         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
19736         * modules/snprintf (Depends-on): Add EOVERFLOW.
19737
19738         * lib/poll.c (EOVERFLOW): Remove fallback.
19739         * modules/poll (Depends-on): Add EOVERFLOW.
19740
19741         * lib/getugroups.c (EOVERFLOW): Remove fallback.
19742         * modules/getugroups (Depends-on): Add EOVERFLOW.
19743
19744         * lib/getdelim.c (EOVERFLOW): Remove fallback.
19745         * modules/getdelim (Depends-on): Add EOVERFLOW.
19746
19747         * lib/ftell.c (EOVERFLOW): Remove fallback.
19748         * modules/ftell (Depends-on): Add EOVERFLOW.
19749
19750         * lib/fprintf.c (EOVERFLOW): Remove fallback.
19751         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
19752         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
19753
19754         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
19755
19756         * modules/EOVERFLOW-tests: New file.
19757         * tests/test-EOVERFLOW.c: New file.
19758
19759         * modules/EOVERFLOW: New file.
19760         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
19761
19762 2008-03-30  Bruno Haible  <bruno@clisp.org>
19763
19764         Fix bug introduced on 2007-06-10.
19765         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
19766         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
19767
19768 2008-03-30  Bruno Haible  <bruno@clisp.org>
19769
19770         Improve freadseek's efficiency after ungetc.
19771         * lib/freadseek.c: Include freadahead.h.
19772         (freadptrinc): New function, extracted from freadseek.
19773         (freadseek): Use it in a loop. Use freadahead to determine the number
19774         of loop iterations.
19775         * modules/freadseek (Depends-on): Add freadahead.
19776         (configure.ac): Require AC_C_INLINE.
19777
19778 2008-03-30  Bruno Haible  <bruno@clisp.org>
19779
19780         * lib/freadseek.c (freadseek): Don't ignore the return value of
19781         freadptr.
19782
19783 2008-03-29  Eric Blake  <ebb9@byu.net>
19784
19785         Add hex float support.
19786         * modules/strtod (Depends-on): Add c-ctype.
19787         (Link): Mention POW_LIB.
19788         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
19789         whitespace between 'e' and exponent.
19790         * tests/test-strtod.c (main): Enable hex float tests.
19791         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
19792         now provides.
19793
19794         Document various strtod bugs, with some fixes.
19795         * doc/posix-functions/strtod.texi (strtod): Document bugs with
19796         "-0x", "inf", "nan", and hex constants.
19797         * doc/posix-functions/atof.texi (atof): Likewise.
19798         * modules/stdlib (Makefile.am): Support strtod.
19799         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
19800         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
19801         detect additional strtod bugs.
19802         * lib/stdlib.in.h (rpl_strtod): Add declarations.
19803         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
19804         bool where appropriate.  Parse 'inf' and 'nan'.
19805         * tests/test-strtod.c: New file.
19806         * modules/strtod (Depends-on): Add stdbool, stdlib.
19807         (configure.ac): Turn on module indicator.
19808         * modules/strtod-tests: New module.
19809
19810 2008-03-29  Eric Blake  <ebb9@byu.net>
19811
19812         Fix ftell on mingw.
19813         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
19814         * modules/ftell-tests (Depends-on): Add binary-io.
19815         * modules/ftello-tests (Depends-on): Likewise.
19816         * tests/test-ftell.c (main): Enhance test to cover behavior after
19817         ungetc.  Enforce binary mode.
19818         * tests/test-ftello.c (main): Likewise.
19819
19820         Pass test-freadseek on cygwin.
19821         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
19822         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
19823         ungetc buffer.
19824
19825         * tests/test-fflush2.c (main): Fix typo.
19826
19827 2008-03-29  Bruno Haible  <bruno@clisp.org>
19828
19829         * tests/test-fflush2.c (main): Temporarily disable the contents of
19830         this test.
19831         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
19832         Reported by Eric Blake.
19833
19834 2008-03-28  Simon Josefsson  <simon@josefsson.org>
19835
19836         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
19837         (GC_SHA224_DIGEST_SIZE): Add.
19838
19839         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
19840         (gc_hash_digest_length): Likewise.
19841         (gc_hash_buffer): Likewise.
19842
19843 2008-03-25  Bruno Haible  <bruno@clisp.org>
19844
19845         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
19846         detail which gettext release to use.
19847         Reported by Simon Josefsson.
19848
19849 2008-03-26  Jim Meyering  <meyering@redhat.com>
19850
19851         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
19852         * modules/gnumakefile (clean-GNUmakefile): Also, use
19853         test ... && ... || : syntax rather than if-then ... fi.
19854
19855         gnumakefile: Don't double-quote-expand $(VPATH) value.
19856         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
19857
19858 2008-03-24  Eric Blake  <ebb9@byu.net>
19859
19860         Alter GNUmakefile to install into top directory.
19861         * modules/maintainer-makefile: Split, and add dependency...
19862         * modules/gnumakefile: to this new module.
19863         * build-aux/GNUmakefile: Move...
19864         * top/GNUmakefile: ...here.
19865         * build-aux/maint.mk: Move...
19866         * top/maint.mk: ...here.
19867         * MODULES.html.sh (Support for maintaining...): Document new
19868         module.
19869
19870 2008-03-23  Bruno Haible  <bruno@clisp.org>
19871
19872         * gnulib-tool: New options --vc-files, --no-vc-files.
19873         (func_usage): Document them.
19874         (vc_files): New variable.
19875         (func_import): Consider vc_files.
19876         (func_create_testdir): Set vc_files to empty.
19877         Suggested by Jim Meyering and Karl Berry.
19878
19879 2008-03-23  Bruno Haible  <bruno@clisp.org>
19880
19881         Fix regex compilation error on HP-UX 11.
19882         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
19883         * modules/regex (Files): Add m4/mbstate_t.m4.
19884         Reported by Ton Voon <ton.voon@altinity.com>.
19885
19886 2008-03-23  Bruno Haible  <bruno@clisp.org>
19887
19888         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
19889
19890 2008-03-23  Eric Blake  <ebb9@byu.net>
19891             Bruno Haible  <bruno@clisp.org>
19892
19893         Install files from top/ in the destination directory.
19894         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
19895         augmentation also for the files from top/.
19896         (func_import, func_create_testdir): Rewrite file names:
19897         top/filename -> filename.
19898
19899 2008-03-23  Bruno Haible  <bruno@clisp.org>
19900
19901         Tweak "gnulib --version" output.
19902         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
19903
19904 2008-03-23  Bruno Haible  <bruno@clisp.org>
19905
19906         Tweak "gnulib --version" output.
19907         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
19908         rather than contents of ChangeLog, when possible.
19909
19910 2008-03-21  Eric Blake  <ebb9@byu.net>
19911
19912         More --version tweaks.
19913         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
19914         date of last ChangeLog entry.
19915
19916 2008-03-21  Jim Meyering  <meyering@redhat.com>
19917
19918         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
19919
19920 2008-03-20  Eric Blake  <ebb9@byu.net>
19921
19922         VPATH fix.
19923         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
19924
19925 2008-03-20  Simon Josefsson  <simon@josefsson.org>
19926
19927         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
19928         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
19929
19930 2008-03-20  Eric Blake  <ebb9@byu.net>
19931
19932         Sync GNUmakefile with coreutils.
19933         * build-aux/GNUmakefile (have-Makefile): Rename...
19934         (_have-Makefile): ...to this, for namespace consideration.
19935         (GNUmakefile.cfg): Include, if present.
19936         (_autoreconf): Define a default.
19937         (_is-dist-target): New rule for rebuilds to pick up intra-release
19938         version.
19939         (maint-cfg.mk): Rename...
19940         (cfg.mk): ...to this.
19941
19942 2008-03-18  Jim Meyering  <meyering@redhat.com>
19943
19944         New script and module: mktempd
19945         * MODULES.html.sh (maint+release support): Add mktempd.
19946         * build-aux/mktempd: New file.
19947         * modules/mktempd: New file.
19948
19949 2008-03-15  Jim Meyering  <meyering@redhat.com>
19950
19951         Undo last change.
19952         * lib/sha1.c, lib/md5.c: 63 != ~63.
19953         Reported by Andreas Schwab.
19954
19955         sha1.c, md5.c: Hoist a redundant expression.
19956         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
19957         "ctx->buflen" only once, before calling *_process_block.
19958         * lib/md5.c (md5_process_bytes): Likewise.
19959
19960 2008-03-14  Eric Blake  <ebb9@byu.net>
19961
19962         Bump copyright year in files generated by gnulib-tool.
19963         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
19964         gnulib-tool, rather than hard-coding it.
19965
19966         Fix 'gnulib-tool --version' output to work with git.
19967         * gnulib-tool (func_gnulib_dir): New function, extracted from...
19968         (startup): ...here.
19969         (func_version): Use it to invoke git-version-gen, rather than
19970         relying on CVS keyword expansion.  Modernize wording.
19971         (cvsdatestamp, last_checkin_date, version): Kill unused
19972         variables.
19973
19974 2008-03-12  Jim Meyering  <meyering@redhat.com>
19975
19976         Recognize optional cast of the argument to free.
19977         * build-aux/useless-if-before-free: Update regexps.
19978
19979         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
19980
19981 2008-03-11  Bruno Haible  <bruno@clisp.org>
19982
19983         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
19984         by a single package.
19985         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
19986         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
19987         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
19988         Reported by Sam Steingold <sds@gnu.org>.
19989
19990 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
19991
19992         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
19993         repositories.
19994
19995 2008-03-11  Bruno Haible  <bruno@clisp.org>
19996
19997         Avoid conflicts between local macro definitions.
19998         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
19999         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
20000
20001 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
20002             Bruno Haible  <bruno@clisp.org>
20003
20004         Make va_copy work with some version of xlc on AIX 5.1.
20005         * lib/stdarg.in.h: New file.
20006         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
20007         On AIX, use a <stdarg.h> file substitute.
20008         * modules/stdarg (Files): Add lib/stdarg.in.h.
20009         (Depends-on): Add include_next.
20010         (Makefile.am): Build a stdarg.h substitute if requested.
20011         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
20012
20013 2008-03-10  Bruno Haible  <bruno@clisp.org>
20014
20015         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
20016         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
20017         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20018
20019 2008-03-10  Bruno Haible  <bruno@clisp.org>
20020
20021         * modules/stdlib (Depends-on): Add include_next, remove
20022         absolute-header.
20023
20024 2008-03-09  Bruno Haible  <bruno@clisp.org>
20025
20026         * lib/freadahead.h (freadahead): Document more precisely.
20027         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
20028         the sum of both buffer sizes.
20029         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
20030         * NEWS: Document the change.
20031
20032 2008-03-09  Bruno Haible  <bruno@clisp.org>
20033
20034         Extend freadptr to return also the buffer size.
20035         * lib/freadptr.h (freadptr): Add sizep argument.
20036         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
20037         (freadptr): Add sizep argument. Determine buffer size like freadahead
20038         does.
20039         * tests/test-freadptr.c: Don't include freadahead.h.
20040         (main): Adapt for new calling convention of freadptr.
20041         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
20042         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
20043         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
20044         tests/test-freadptr2.sh.
20045         (Depends): Remove freadahead.
20046         (TESTS): Add test-freadptr2.sh.
20047         (check_PROGRAMS): Add test-freadptr2.
20048
20049 2008-03-09  Bruno Haible  <bruno@clisp.org>
20050
20051         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
20052         Report and solution by Simon Josefsson.
20053
20054 2008-03-06  Bruno Haible  <bruno@clisp.org>
20055
20056         Make fflush after ungetc work on BSD platforms.
20057         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
20058         * tests/test-fflush2.c: New file.
20059         * tests/test-fflush2.sh: New file.
20060         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
20061         tests/test-fflush2.c.
20062         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
20063         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
20064
20065 2008-03-06  Eric Blake  <ebb9@byu.net>
20066
20067         Likewise for ftello.
20068         * modules/ftello (Dependencies): Add extensions.
20069         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
20070
20071 2008-03-06  Bruno Haible  <bruno@clisp.org>
20072
20073         * modules/fseeko (Dependencies): Add extensions.
20074         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
20075         Needed on glibc systems.
20076
20077 2008-03-06  Bruno Haible  <bruno@clisp.org>
20078
20079         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
20080         email address.
20081         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20082
20083 2008-03-06  Bruno Haible  <bruno@clisp.org>
20084
20085         * users.txt: Add libgnupdf.
20086
20087 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
20088
20089         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
20090         (Header File Substitutes, Function Substitutes,
20091         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
20092         (Build robot for gnulib): Fix typo.
20093
20094 2008-03-06  Bruno Haible  <bruno@clisp.org>
20095
20096         * doc/gnulib-tool.texi (VCS Issues): Small updates.
20097         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20098
20099 2008-03-06  Bruno Haible  <bruno@clisp.org>
20100
20101         * doc/func.texi: New file, extracted from doc/gnulib.texi.
20102         * doc/gnulib.texi: Include it.
20103
20104 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20105
20106         * modules/func (License): Change license to unlimited; there was
20107         no LGPL parts in the module anyway.
20108
20109 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20110
20111         * modules/__func__: Renamed to modules/func.
20112         * modules/__func__-tests: Renamed to modules/func-tests.
20113         * tests/test-__func__.c: Renamed to tests/test-func.c.
20114         * m4/__func__.m4: Renamed to m4/func.m4.
20115         * doc/gnulib.texi (__func__): Section renamed to func.
20116         Suggested by Eric Blake <ebb9@byu.net>.
20117
20118 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20119
20120         * doc/gnulib.texi (__func__): Use C99 terminology when talking
20121         about __func__.  Make example self-contained.  Suggested by Eric
20122         Blake <ebb9@byu.net>.
20123
20124         * tests/test-__func__.c (main): Avoid extraneous () around __func.
20125         Suggested by Eric Blake <ebb9@byu.net>.
20126
20127 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20128
20129         * modules/__func__: New file.
20130         * modules/__func__-tests: New file.
20131         * tests/test-__func__.c: New file.
20132         * m4/__func__.m4: New file.
20133         * doc/gnulib.texi (__func__): Document __func__ module.
20134
20135 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20136
20137         * modules/byteswap (License): Re-license as LGPLv2+.
20138
20139 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20140
20141         * doc/Makefile: Add pdf target.
20142
20143 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20144
20145         * modules/inline (License): Use 'unlimited', since there are only
20146         *.m4 files in this module.
20147
20148 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20149             Bruno Haible  <bruno@clisp.org>
20150
20151         Add support for HP C 7.1 on OpenVMS 8.3.
20152         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
20153
20154 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20155
20156         Update VMS specifics.
20157         * lib/getopt.c [VMS]: Remove include of unixlib.h.
20158
20159 2008-03-02  Jim Meyering  <meyering@redhat.com>
20160
20161         Remove the last dependency on the "free" module.
20162         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
20163         Reported by Bob Proulx.
20164
20165         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
20166
20167         Remove useless "if" tests before free.  Deprecate "free" module.
20168         * doc/posix-functions/free.texi: Mention that this
20169         module is no longer useful.
20170         * modules/free (Notice): Say this module is obsolete.
20171         * modules/readutmp (Depends-on): Remove free.
20172         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
20173         * lib/putenv.c (putenv): Likewise.
20174         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
20175         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
20176         * tests/test-c-strcasestr.c (main): Likewise.
20177         * tests/test-c-strstr.c (main): Likewise.
20178         * tests/test-mbscasestr1.c (main): Likewise.
20179         * tests/test-mbscasestr2.c (main): Likewise.
20180         * tests/test-mbsstr1.c (main): Likewise.
20181         * tests/test-mbsstr2.c (main): Likewise.
20182         * tests/test-memmem.c (main): Likewise.
20183         * tests/test-strcasestr.c (main): Likewise.
20184         * tests/test-striconv.c (main): Likewise.
20185         * tests/test-striconveh.c (main): Likewise.
20186         * tests/test-striconveha.c (main): Likewise.
20187         * tests/test-strstr.c (main): Likewise.
20188
20189         * build-aux/git-version-gen: Adjust a comment and the Usage string.
20190
20191         bootstrap: sync from coreutils again
20192         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
20193
20194 2008-03-01  Jim Meyering  <meyering@redhat.com>
20195
20196         bootstrap: sync from coreutils
20197         * build-aux/bootstrap (update_po_files): Copy a .po file into place
20198         also when the target doesn't exist.
20199
20200 2008-03-01  Eric Blake  <ebb9@byu.net>
20201
20202         Fix bugs in last patch.
20203         * lib/memchr2.c (memchr2): Fix typo.
20204         * tests/test-memchr2.c: Test previous bug, and don't use GNU
20205         extension.
20206         Reported by Bruce Korb.
20207
20208         New module 'memchr2'.
20209         * modules/memchr2: New file.
20210         * modules/memchr2-tests: Likewise.
20211         * lib/memchr2.h: Likewise.
20212         * lib/memchr2.c: Likewise, based on memchr.c.
20213         * tests/test-memchr2.c: New test.
20214         * MODULES.html.sh (String handling): Add memchr2.
20215
20216 2008-02-29  Bruno Haible  <bruno@clisp.org>
20217
20218         * modules/freadseek-tests: New file.
20219         * tests/test-freadseek.sh: New file.
20220         * tests/test-freadseek.c: New file.
20221
20222         New module 'freadseek'.
20223         * modules/freadseek: New file.
20224         * lib/freadseek.h: New file.
20225         * lib/freadseek.c: New file.
20226         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
20227
20228 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
20229
20230         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
20231         wydawca.
20232
20233         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
20234         program_invocation_name and program_invocation_short_name are
20235         present.
20236
20237 2008-02-28  Bruno Haible  <bruno@clisp.org>
20238
20239         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
20240         * tests/test-freadptr.sh: Also test non-seekable stdin.
20241
20242 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
20243
20244         * build-aux/bootstrap (source_base, m4_base)
20245         (doc_base, tests_base): New variables.
20246         (gnulib_tool_options): Do not hardcode base directories, use
20247         the above variables instead.
20248
20249 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
20250
20251         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
20252
20253 2008-02-28  Bruno Haible  <bruno@clisp.org>
20254
20255         * modules/freadptr-tests: New file.
20256         * tests/test-freadptr.sh: New file.
20257         * tests/test-freadptr.c: New file.
20258
20259         New module 'freadptr'.
20260         * modules/freadptr: New file.
20261         * lib/freadptr.h: New file.
20262         * lib/freadptr.c: New file.
20263         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
20264
20265 2008-02-26  Karl Berry  <karl@freefriends.org>
20266
20267         Sync from Libtool:
20268         * libltdl/argz.c (argz_add, argz_count): New functions.
20269         * libltdl/argz.in.h: Declare them.
20270         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
20271
20272 2008-02-22  Bruno Haible  <bruno@clisp.org>
20273
20274         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
20275         is a pointer type.  Needed for HP-UX 10.
20276         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
20277         * doc/posix-functions/gmtime_r.texi: Likewise.
20278         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20279
20280 2008-02-24  Bruno Haible  <bruno@clisp.org>
20281
20282         * modules/environ-tests: New file.
20283         * tests/test-environ.c: New file.
20284
20285         New module 'environ'.
20286         * modules/environ: New file.
20287         * lib/unistd.in.h (environ): New declaration.
20288         * m4/environ.m4: New file.
20289         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
20290         after use.
20291         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
20292         HAVE_DECL_ENVIRON.
20293         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
20294         HAVE_DECL_ENVIRON.
20295         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
20296         wrong claim that 'environ' is missing on some systems.
20297         * modules/execute (Depends-on): Add environ.
20298         * lib/execute.c (environ): Remove fallback declaration.
20299         * modules/pipe (Depends-on): Add environ.
20300         * lib/pipe.c (environ): Remove fallback declaration.
20301         * modules/setenv (Depends-on): Add environ.
20302         * lib/setenv.c (environ): Remove fallback declaration.
20303         * modules/unsetenv (Depends-on): Add environ.
20304         * lib/unsetenv.c (environ): Remove fallback declaration.
20305         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
20306         m4/environ.m4.
20307         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
20308         (gl_PREREQ_UNSETENV): Likewise.
20309
20310 2008-02-24  Bruno Haible  <bruno@clisp.org>
20311
20312         * doc/posix-functions/environ.texi: Document the MacOS X problem.
20313
20314 2008-02-20  Bob Proulx  <bob@proulx.com>
20315
20316         Enable use of older two part flavor 'git describe'.
20317         * build-aux/git-version-gen: If using the older two part flavor of
20318         git version then recreate the third part now present in the
20319         newer three part flavor of git describe.
20320
20321 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
20322
20323         * lib/fts.c (fts_build): Typo correction to comment.
20324
20325 2008-02-17  Bruno Haible  <bruno@clisp.org>
20326
20327         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
20328         generating no-op conflicts.
20329
20330 2008-02-17  Bruno Haible  <bruno@clisp.org>
20331
20332         Speed up by 10%.
20333         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
20334         result_entries, rather than an index-based loop.
20335
20336 2008-02-17  Bruno Haible  <bruno@clisp.org>
20337
20338         Speed up by 25%.
20339         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
20340         'hashcode_cached'.
20341         (entry_create): New function.
20342         (entry_hashcode): Use the cached hashcode if possible.
20343         (read_changelog_file, try_split_merged_entry): Use entry_create.
20344
20345 2008-02-17  Bruno Haible  <bruno@clisp.org>
20346
20347         Speed up from O(n^2) to O(n) for long ChangeLog files.
20348         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
20349         (read_changelog_file): Change implementation of entries_reversed list
20350         to rbtreehash.
20351         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
20352
20353 2008-02-17  Bruno Haible  <bruno@clisp.org>
20354
20355         New option --split-merged-entry.
20356         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
20357         (find_paragraph_end, try_split_merged_entry): New functions.
20358         (long_options): Add option --split-merged-entry.
20359         (usage): Document option --split-merged-entry.
20360         (main): Implement option --split-merged-entry.
20361         Reported by Eric Blake.
20362
20363 2008-02-17  Bruno Haible  <bruno@clisp.org>
20364
20365         * lib/git-merge-changelog.c: Include c-strstr.h.
20366         (main): Support the "git pull --rebase" situation.
20367         * modules/git-merge-changelog (Depends-on): Add c-strstr.
20368         Reported by Eric Blake.
20369
20370 2008-02-16  Eric Blake  <ebb9@byu.net>
20371
20372         Avoid doubling \ in common case of "c-maybe" quoting style.
20373         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
20374         eliding outer quotes.
20375         * lib/quotearg.h: Document this.
20376         * tests/test-quotearg.c (result_strings, inputs, results_g)
20377         (flag_results, locale_results): Test it by adding a new string to
20378         each test group.
20379         (compare_strings): Test new string.
20380
20381 2008-02-13  Eric Blake  <ebb9@byu.net>
20382
20383         Avoid trigraph quoting in default output.
20384         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
20385         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
20386         unless explicitly requested.
20387         * tests/test-quotearg.c (flag_results, main): Add additional tests.
20388
20389 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
20390
20391         Don't rely on signed integer overflowing to negative value.
20392         * lib/getugroups.c (getugroups): Include <limits.h>.
20393         Instead, compare against INT_MAX, and increment only if the test passes.
20394
20395 2008-02-13  Jim Meyering  <meyering@redhat.com>
20396         and Eric Blake  <ebb9@byu.net>
20397
20398         Avoid shadowing warning and compile errors on Linux.
20399         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
20400         forwarding macros on Linux.
20401         (dcgettext): Define a stub, for Linux.
20402         (results_g, main): Avoid warnings.
20403
20404 2008-02-12  Eric Blake  <ebb9@byu.net>
20405
20406         Silence warning in last patch.
20407         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
20408
20409         Quotearg part 4: add tests, fix c-maybe colon quoting.
20410         * lib/quotearg.h: Improve documentation.
20411         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
20412         escapes when adding outer quotes.  When quoting trigraphs, use
20413         valid C notation.  When quoting NUL, omit extra characters if next
20414         character is not digit.  Alter prototype.
20415         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
20416         callers.
20417         * modules/quotearg-tests: New module.
20418         * tests/test-quotearg.c: New test.
20419
20420 2008-02-07  Eric Blake  <ebb9@byu.net>
20421
20422         Quotearg part 3: add flag to control outer quote elision.
20423         * lib/quotearg.h (c_maybe_quoting_style): New style.
20424         (enum quoting_flags): Better documentation of flags.
20425         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
20426         c-maybe style.
20427         (quotearg_buffer_restyled): Handle new flag to elide outer
20428         quotes.
20429
20430         Quotearg part 2: add flag that can control NUL elision.
20431         * lib/quotearg.h (set_quoting_flags): New prototype.
20432         * lib/quotearg.c (struct quoting_options): Add flag field.
20433         (set_quoting_flags): New function.
20434         (quotearg_buffer_restyled): Add flags parameter.
20435         (quotearg_alloc_mem): Set the flag if length cannot be returned.
20436         (quotearg_n_options): Set the flag, since length cannot be
20437         returned.
20438         (quoting_options_from_style): Default flags correctly.
20439
20440         Quotearg part 1: more wrappers, restore quotearg_char state.
20441         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
20442         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
20443         (quotearg_colon_mem): New wrappers.
20444         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
20445         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
20446         functions.
20447         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
20448         (quotearg_colon_mem): New functions.
20449
20450 2008-02-11  Bruno Haible  <bruno@clisp.org>
20451
20452         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
20453         library in the current directory: it does not work with parallel make.
20454         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20455
20456 2008-02-11  Bruno Haible  <bruno@clisp.org>
20457
20458         * .gitattributes: New file.
20459
20460 2008-02-11  Jim Meyering  <meyering@redhat.com>
20461
20462         useless-if-before-free: Fix reversed exit values.
20463         * build-aux/useless-if-before-free: Use correct values
20464         for EXIT_MATCH and EXIT_NO_MATCH.
20465
20466         * build-aux/useless-if-before-free: Close stdout carefully.
20467
20468 2008-02-10  Bruno Haible  <bruno@clisp.org>
20469
20470         New module 'git-merge-changelog'.
20471         * modules/git-merge-changelog: New file.
20472         * lib/git-merge-changelog.c: New file.
20473
20474 2008-02-10  Jim Meyering  <meyering@redhat.com>
20475
20476         useless-if-before-free: New option: --list (-l).
20477
20478         useless-if-before-free: Don't exit immediately upon open failure.
20479         * build-aux/useless-if-before-free: Exit 2 for errors.
20480         Upon failure to open a file, don't exit immediately.
20481         Rather, just warn and continue with any remaining files.
20482
20483 2008-02-10  Bruno Haible  <bruno@clisp.org>
20484
20485         New abstract list operation 'node_set_value'.
20486         * lib/gl_list.h (gl_list_node_set_value): New function.
20487         (struct gl_list_implementation): New field node_set_value.
20488         * lib/gl_list.c (gl_list_node_set_value): New function.
20489         * lib/gl_array_list.c (gl_array_node_set_value): New function.
20490         (gl_array_list_implementation): Update.
20491         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
20492         (gl_carray_list_implementation): Update.
20493         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
20494         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
20495         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
20496         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
20497         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
20498         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
20499         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
20500         Update.
20501         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
20502         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
20503         (gl_sublist_list_implementation): Update.
20504
20505 2008-02-10  Bruno Haible  <bruno@clisp.org>
20506
20507         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
20508         Needed when ELEMENT is #defined to 'some_type *'.
20509
20510 2008-02-10  Jim Meyering  <meyering@redhat.com>
20511
20512         New script and module: useless-if-before-free
20513         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
20514         * build-aux/useless-if-before-free: New file.
20515         * modules/useless-if-before-free: New file.
20516
20517         * build-aux/gitlog-to-changelog: Use committer date, not author date.
20518
20519         xstrtol_error: Fix typo.
20520         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
20521         s/exit_failure/exit_status/.
20522
20523 2008-02-09  Jim Meyering  <meyering@redhat.com>
20524
20525         New script and module: gitlog-to-changelog
20526         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
20527         * modules/gitlog-to-changelog: New file.
20528         * build-aux/gitlog-to-changelog: New file.
20529
20530 2008-02-08  Jim Meyering  <meyering@redhat.com>
20531
20532         Avoid two "parameter unused" warnings.
20533         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
20534         Mark "st" as used.
20535
20536         Use "git COMMAND", not "git-COMMAND".
20537         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
20538         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
20539         * build-aux/git-version-gen: Use "git status", not "git-status".
20540
20541 2008-02-07  Bruno Haible  <bruno@clisp.org>
20542
20543         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
20544         Avoids a crash on Windows Vista.
20545         Reported by Adam Strzelecki <ono@java.pl> via
20546         Simon Josefsson <simon@josefsson.org>.
20547
20548 2008-02-06  Bruno Haible  <bruno@clisp.org>
20549
20550         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
20551         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
20552         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
20553         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
20554         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
20555         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20556         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
20557         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
20558         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20559         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20560         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20561         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20562         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20563         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20564         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20565         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
20566         left-adjust flag.
20567         * tests/test-snprintf-posix.h (test_function): Likewise.
20568         * tests/test-sprintf-posix.h (test_function): Likewise.
20569         * tests/test-vasprintf-posix.c (test_function): Likewise.
20570         * doc/posix-functions/fprintf.texi: Update.
20571         * doc/posix-functions/printf.texi: Update.
20572         * doc/posix-functions/snprintf.texi: Update.
20573         * doc/posix-functions/sprintf.texi: Update.
20574         * doc/posix-functions/vfprintf.texi: Update.
20575         * doc/posix-functions/vprintf.texi: Update.
20576         * doc/posix-functions/vsnprintf.texi: Update.
20577         * doc/posix-functions/vsprintf.texi: Update.
20578         Reported by Peter Fales <psfales@alcatel-lucent.com>.
20579
20580 2008-02-06  Bruno Haible  <bruno@clisp.org>
20581
20582         Fix bug introduced on 2008-01-26.
20583         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
20584
20585 2008-02-06  Bruno Haible  <bruno@clisp.org>
20586
20587         Fix bug introduced on 2007-06-10.
20588         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
20589         !NEED_PRINTF_FLAG_ZERO.
20590
20591 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
20592
20593         getloadavg: use libperfstat on AIX5
20594         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
20595
20596 2008-02-03  Bruno Haible  <bruno@clisp.org>
20597
20598         * lib/diffseq.h: Add comments about required #includes.
20599         Reported by Michael Biggs <gnulib@doubleplum.net>.
20600
20601 2008-02-01  Bruno Haible  <bruno@clisp.org>
20602
20603         * users.txt: Add gnuit.
20604
20605 2008-01-31  Bruno Haible  <bruno@clisp.org>
20606
20607         * lib/md4.c (set_uint32): Mark as inline.
20608         * lib/md5.c (set_uint32): Likewise.
20609         * lib/sha1.c (set_uint32): Likewise.
20610         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
20611         * m4/md5.m4 (gl_MD5): Likewise.
20612         * m4/sha1.m4 (gl_SHA1): Likewise.
20613
20614 2008-01-31  Jim Meyering  <meyering@redhat.com>
20615
20616         Use "sizeof VAR", rather than a literal "4".
20617         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
20618         * lib/md4.c (md4_read_ctx): Likewise.
20619         * lib/sha1.c (sha1_read_ctx): Likewise.
20620
20621 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20622
20623         * tests/test-sha1.c: New file, based on test-md5.c.
20624
20625         * modules/crypto/sha1-tests: New file.
20626
20627 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20628
20629         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
20630
20631 2008-01-31  Jim Meyering  <meyering@redhat.com>
20632
20633         Prefer "sizeof v" over the equivalent "4".
20634         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
20635         * lib/md5.c (set_uint32): Likewise.
20636         * lib/sha1.c (set_uint32): Likewise.
20637
20638 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20639
20640         * lib/sha1.c (set_uint32): Mark function as static.
20641
20642 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20643
20644         md2: clarify comments to say that alignment is not required.
20645         * lib/md2.h: Remove warning about alignment in comment.
20646         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
20647         never been required.
20648
20649 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20650
20651         md4: adapt alignment constraint fix from sha1.
20652         * lib/md4.c (set_uint32): New function, from sha1.c
20653         (md4_read_ctx): Use it.
20654         (md4_finish_ctx): Doc fix.
20655         * lib/md4.h: Doc fix.
20656
20657 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20658
20659         md5: adapt alignment constraint fix from sha1.
20660         * lib/md5.c (set_uint32): New function, from sha1.c
20661         (md5_read_ctx): Use it.
20662         (md5_finish_ctx): Doc fix.
20663         * lib/md5.h: Doc fix.
20664
20665 2008-01-30  Peter Palfrader  <weasel@debian.org>
20666
20667         sha1: remove the result buffer alignment constraint
20668         * lib/sha1.c (set_uint32): New function.
20669         (sha1_read_ctx): Rewrite to remove the result buffer alignment
20670         constraint.
20671         (sha1_finish_ctx): Remove comment warning about alignment constraint.
20672         * lib/sha1.h: Likewise.
20673
20674 2008-01-30  Andreas Schwab  <schwab@suse.de>
20675             Bruno Haible  <bruno@clisp.org>
20676
20677         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
20678         correct definition of LDBL_MIN_EXP.
20679
20680 2008-01-30  Karl Berry  <karl@gnu.org>
20681
20682         * config/srclist-update: try to preserve x bit on updates.
20683         * config/srclistvars.sh: update for karl.
20684
20685 2008-01-29  Jim Meyering  <meyering@redhat.com>
20686
20687         vasnprintf.c: Avoid warning about unused label
20688         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
20689         "overflow" label definition and associated code with the
20690         same cpp condition that guards the sole use of that label.
20691
20692 2008-01-26  Bruno Haible  <bruno@clisp.org>
20693
20694         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
20695         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
20696         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
20697         * lib/isnanl-nolibm.h (isnanl): Likewise.
20698         Reported by Paul Eggert <eggert@cs.ucla.edu>.
20699
20700 2008-01-26  Bruno Haible  <bruno@clisp.org>
20701
20702         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
20703         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
20704
20705 2008-01-26  Bruno Haible  <bruno@clisp.org>
20706
20707         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
20708         GCC >= 4.0 built-in.
20709         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
20710
20711 2008-01-26  Bruno Haible  <bruno@clisp.org>
20712
20713         Rename isnan, applicable to 'double' only, to isnand.
20714         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
20715         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
20716         (configure.ac): Update.
20717         (Include): Replace "isnan.h" with "isnand.h".
20718         * m4/isnand.m4: Renamed from m4/isnan.m4.
20719         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
20720         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
20721         instead of isnan.c.
20722         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
20723         instead of HAVE_ISNAN_IN_LIBC.
20724         (isnand): Renamed from isnan.
20725         * lib/isnand.c: New file.
20726         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
20727         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
20728         (Makefile.am): Update.
20729         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
20730         Include isnand.h instead of isnan.h.
20731         (main): Test isnand instead of isnan.
20732         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
20733         isnan-nolibm.
20734         * modules/frexp (Depends-on): Likewise.
20735         * modules/frexp-tests (Depends-on): Likewise.
20736         * modules/frexp-nolibm (Depends-on): Likewise.
20737         * modules/frexp-nolibm-tests (Depends-on): Likewise.
20738         * modules/isfinite (Depends-on): Likewise.
20739         * modules/round-tests (Depends-on): Likewise.
20740         * modules/signbit (Depends-on): Likewise.
20741         * modules/signbit-tests (Depends-on): Likewise.
20742         * modules/snprintf-posix (Depends-on): Likewise.
20743         * modules/sprintf-posix (Depends-on): Likewise.
20744         * modules/trunc-tests (Depends-on): Likewise.
20745         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
20746         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
20747         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
20748         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
20749         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
20750         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
20751         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
20752         * modules/vasnprintf-posix (Depends-on): Likewise.
20753         * modules/vasprintf-posix (Depends-on): Likewise.
20754         * modules/vfprintf-posix (Depends-on): Likewise.
20755         * modules/vsnprintf-posix (Depends-on): Likewise.
20756         * modules/vsprintf-posix (Depends-on): Likewise.
20757         * lib/frexp.c: Include isnand.h instead of isnan.h.
20758         (ISNAN): Set to isnand instead of isnan.
20759         * lib/isfinite.c: Include isnand.h instead of isnan.h.
20760         (gl_isfinited): Use isnand instead of isnan.
20761         * lib/signbitd.c: Include isnand.h instead of isnan.h.
20762         (gl_signbitd): Use isnand instead of isnan.
20763         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
20764         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
20765         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
20766         (main): Use isnand instead of isnan.
20767         * tests/test-round1.c: Include isnand.h.
20768         (main): Use isnand instead of isnan.
20769         * tests/test-round2.c: Include isnand.h instead of isnan.h.
20770         (ISNAN): Set to isnand instead of isnan.
20771         * tests/test-trunc1.c: Include isnand.h.
20772         (main): Use isnand instead of isnan.
20773         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
20774         (equal): Use isnand instead of isnan.
20775         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
20776         isnand-nolibm.
20777         * NEWS: Mention the change.
20778
20779 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
20780             Bruno Haible  <bruno@clisp.org>
20781
20782         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
20783         the GCC builtins for signbits are present and set
20784         REPLACE_SIGNBIT_USING_GCC if so.
20785         * lib/math.in.h (signbit): Define using GCC builtins if
20786         REPLACE_SIGNBIT_USING_GCC is set.
20787         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
20788         REPLACE_SIGNBIT_USING_GCC.
20789         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
20790
20791 2008-01-25  Jim Meyering  <meyering@redhat.com>
20792
20793         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
20794         * lib/poll.c: Include <config.h>, not "config.h".
20795         * tests/test-getaddrinfo.c: Likewise.
20796
20797 2008-01-25  Simon Josefsson  <simon@josefsson.org>
20798
20799         * modules/sockets-tests: New file.
20800
20801 2008-01-24  Simon Josefsson  <simon@josefsson.org>
20802
20803         * modules/sockets: New module, can be used to call WSA_Startup and
20804         WSA_Cleanup when needed.
20805
20806         * lib/sockets.h, lib/sockets.c: New files.
20807
20808         * m4/sockets.m4: New file.
20809
20810         * tests/test-sockets.c: New file.
20811
20812 2008-01-19  Bruno Haible  <bruno@clisp.org>
20813
20814         * doc/posix-headers: Renamed from doc/headers.
20815         * doc/posix-functions: Renamed from doc/functions.
20816         * doc/gnulib.texi: Update.
20817
20818 2008-01-19  Bruno Haible  <bruno@clisp.org>
20819
20820         * doc/glibc-functions/strcasestr.texi: Include contents of
20821         doc/functions/strcasestr.texi, fixing the list of platforms.
20822         * doc/functions/strcasestr.texi: Remove file.
20823
20824 2008-01-19  Bruno Haible  <bruno@clisp.org>
20825
20826         * doc/glibc-functions/memmem.texi: Include contents of
20827         doc/functions/memmem.texi.
20828         * doc/functions/memmem.texi: Remove file.
20829
20830 2008-01-18  Bruno Haible  <bruno@clisp.org>
20831
20832         * doc/glibc-functions/*.texi: New files.
20833         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
20834         to use the new files.
20835
20836 2008-01-17  Bruno Haible  <bruno@clisp.org>
20837
20838         * tests/test-gethostname.c (main): Fix printf statement.
20839
20840 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20841
20842         * modules/gethostname-tests: New file.
20843
20844         * tests/test-gethostname.c: New file.
20845
20846 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20847
20848         * lib/gethostname.c: Include string.h unconditionally, strncpy is
20849         used by the UNAME case.  Reported by Bruno Haible
20850         <bruno@clisp.org>.
20851
20852 2008-01-17  Eric Blake  <ebb9@byu.net>
20853
20854         Convert c-strcasestr to be more efficient.
20855         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
20856         (Depends-on): Add c-strcase, remove malloca, strnlen.
20857         * tests/test-c-strcasestr.c (main): Enhance test.
20858         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
20859
20860 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
20861
20862         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
20863         Use it in creating po/Makevars.
20864
20865 2008-01-15  Simon Josefsson  <simon@josefsson.org>
20866
20867         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
20868         Applications that requires it should initialize libgcrypt
20869         manually.
20870
20871 2008-01-16  Simon Josefsson  <simon@josefsson.org>
20872
20873         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
20874
20875 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
20876
20877         Fix problem with getdate on mingw32 reported by Simon Josefsson
20878         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
20879         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
20880         tzname", when deciding whether to declare tzname.
20881         * lib/strftime.c (tzname): Likewise.
20882
20883 2008-01-15  Bruno Haible  <bruno@clisp.org>
20884
20885         Work around a MacOS X 10.5 bug in frexpl().
20886         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
20887         * doc/functions/frexpl.texi: Document the bug.
20888         Reported by Elias Pipping <pipping@gentoo.org>.
20889
20890 2008-01-14  Eric Blake  <ebb9@byu.net>
20891
20892         Touch up previous patch.
20893         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
20894         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
20895
20896         Convert strcasestr module to use Two-Way algorithm.
20897         * modules/strcasestr-simple: New module, based on the old
20898         strcasestr, but with Two-Way rather than KMP.
20899         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
20900         * lib/string.in.h (rpl_strcasestr): Declare.
20901         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
20902         performance.
20903         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
20904         * modules/string (Makefile.am): Support strcasestr.
20905         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
20906         * modules/strcasestr-tests (Depends-on): Check for alarm.
20907         * tests/test-strcasestr.c: Augment test.
20908         * lib/str-two-way.h: Clean up stray macro.
20909         * NEWS: Document new module.
20910         * MODULES.html.sh (string handling): Likewise.
20911         * doc/functions/strcasestr.texi: New file.
20912         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
20913         here, since it is not a POSIX function.
20914
20915 2008-01-14  Colin Watson  <cjwatson@debian.org>
20916             Bruno Haible  <bruno@clisp.org>
20917
20918         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
20919         works fine; if not, set REPLACE_STRSIGNAL.
20920         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
20921         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
20922         REPLACE_STRSIGNAL.
20923         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
20924         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
20925         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
20926
20927 2008-01-14  Bruno Haible  <bruno@clisp.org>
20928
20929         * modules/strsignal (Include): Change to <string.h>.
20930
20931 2008-01-14  Colin Watson  <cjwatson@debian.org>
20932
20933         * modules/argp (Notice): Add a notice recommending to change
20934         XGETTEXT_OPTIONS.
20935         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
20936
20937 2008-01-13  Colin Watson  <cjwatson@debian.org>
20938
20939         * modules/strsignal-tests: New file.
20940         * tests/test-strsignal.c: New file.
20941
20942         * lib/strsignal.c: New file, from glibc with modifications.
20943         * lib/siglist.h: New file, from glibc with modifications.
20944         * lib/string.in.h (strsignal): New declaration.
20945         * m4/strsignal.m4: New file.
20946         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
20947         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
20948         * modules/strsignal: New file.
20949         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
20950         HAVE_DECL_STRSIGNAL.
20951
20952 2008-01-13  Bruno Haible  <bruno@clisp.org>
20953
20954         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
20955         locale encoding is not ASCII. Needed for OpenBSD 4.0.
20956         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
20957         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
20958
20959 2008-01-13  Bruno Haible  <bruno@clisp.org>
20960
20961         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
20962         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
20963         * lib/argp.h (__attribute__): Likewise.
20964         * lib/c-stack.c (__attribute__): Likewise.
20965         * lib/error.h (__attribute__): Likewise.
20966         * lib/fts.c (__attribute__): Likewise.
20967         * lib/openat.h (__attribute__): Likewise.
20968         * lib/stdio.in.h (__attribute__): Likewise.
20969         * lib/string.in.h (__attribute__): Likewise.
20970         * lib/utimens.c (__attribute__): Likewise.
20971         * lib/vasnprintf.h (__attribute__): Likewise.
20972         * lib/xalloc.h (__attribute__): Likewise.
20973         * lib/xprintf.h (__attribute__): Likewise.
20974         * lib/xstrtol.h (__attribute__): Likewise.
20975         * lib/xvasprintf.h (__attribute__): Likewise.
20976
20977 2008-01-12  Bruno Haible  <bruno@clisp.org>
20978
20979         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
20980         * doc/glibc-headers/a.out.texi: New file.
20981         * doc/glibc-headers/aliases.texi: New file.
20982         * doc/glibc-headers/alloca.texi: New file.
20983         * doc/glibc-headers/ar.texi: New file.
20984         * doc/glibc-headers/argp.texi: New file.
20985         * doc/glibc-headers/argz.texi: New file.
20986         * doc/glibc-headers/byteswap.texi: New file.
20987         * doc/glibc-headers/crypt.texi: New file.
20988         * doc/glibc-headers/endian.texi: New file.
20989         * doc/glibc-headers/envz.texi: New file.
20990         * doc/glibc-headers/err.texi: New file.
20991         * doc/glibc-headers/error.texi: New file.
20992         * doc/glibc-headers/execinfo.texi: New file.
20993         * doc/glibc-headers/fpu_control.texi: New file.
20994         * doc/glibc-headers/fstab.texi: New file.
20995         * doc/glibc-headers/fts.texi: New file.
20996         * doc/glibc-headers/getopt.texi: New file.
20997         * doc/glibc-headers/ieee754.texi: New file.
20998         * doc/glibc-headers/ifaddrs.texi: New file.
20999         * doc/glibc-headers/libintl.texi: New file.
21000         * doc/glibc-headers/mcheck.texi: New file.
21001         * doc/glibc-headers/mntent.texi: New file.
21002         * doc/glibc-headers/obstack.texi: New file.
21003         * doc/glibc-headers/paths.texi: New file.
21004         * doc/glibc-headers/printf.texi: New file.
21005         * doc/glibc-headers/pty.texi: New file.
21006         * doc/glibc-headers/resolv.texi: New file.
21007         * doc/glibc-headers/shadow.texi: New file.
21008         * doc/glibc-headers/sysexits.texi: New file.
21009         * doc/glibc-headers/ttyent.texi: New file.
21010
21011 2008-01-12  Jim Meyering  <meyering@redhat.com>
21012
21013         announce-gen: emit Gnulib's git-based version string.
21014         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
21015         New option --gnulib-version=V, where V is expected to be
21016         the output of running git describe in the gnulib directory.
21017         (get_tool_versions): Request feedback on xdelta.  I suspect it's
21018         not useful, and plan to stop publishing an xdelta file with each
21019         coreutils release.
21020
21021         * build-aux/announce-gen: Also check for lzma-compressed files.
21022
21023 2008-01-11  Bruno Haible  <bruno@clisp.org>
21024
21025         * tests/test-memmem.c (main): Increase maximum allowed time.
21026         * tests/test-strstr.c (main): Likewise.
21027
21028 2008-01-11  Bruno Haible  <bruno@clisp.org>
21029
21030         * doc/functions/memmem.texi: Add more precisions about platforms.
21031         * doc/functions/strstr.texi: Likewise.
21032
21033 2008-01-10  Eric Blake  <ebb9@byu.net>
21034
21035         * m4/strstr.m4: Delete cruft from copy-n-paste.
21036         Reported by Bruno Haible.
21037
21038 2008-01-10  Bruno Haible  <bruno@clisp.org>
21039
21040         Make c-strstr rely on strstr.
21041         * lib/c-strstr.c: Don't include str-kmp.h.
21042         (c_strstr): Define in terms of strstr.
21043         * modules/c-strstr (Files): Remove lib/str-kmp.h.
21044         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
21045
21046 2008-01-10  Bruno Haible  <bruno@clisp.org>
21047
21048         * doc/gnulib.texi (String Functions in C Locale): New section.
21049         * doc/c-ctype.texi: New file.
21050         * doc/c-strcase.texi: New file.
21051         * doc/c-strcaseeq.texi: New file.
21052         * doc/c-strcasestr.texi: New file.
21053         * doc/c-strstr.texi: New file.
21054         * doc/c-strtod.texi: New file.
21055         * doc/c-strtold.texi: New file.
21056
21057 2008-01-10  Eric Blake  <ebb9@byu.net>
21058
21059         * lib/relocatable.h: Fix a comment.
21060
21061 2008-01-10  Eric Blake  <ebb9@byu.net>
21062
21063         Share two-way algorithm.
21064         * lib/str-two-way.h: New file, merged from...
21065         * lib/memmem.c: ...here...
21066         * lib/strstr.c: ...and here.
21067         * modules/memmem (Files): Use it.
21068         * modules/strstr (Files): Likewise.
21069
21070         Avoid quadratic strstr implementations.
21071         * lib/strstr.c: New file.
21072         * m4/strstr.m4: Likewise.
21073         * modules/strstr: Likewise.
21074         * modules/strstr-tests: Likewise.
21075         * tests/test-strstr.c: Likewise.
21076         * lib/string.in.h (rpl_strstr): Declare.
21077         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
21078         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
21079         * modules/string (Makefile.am): Likewise.
21080         * MODULES.html.sh (string handling): Mention new module.
21081         * doc/functions/strstr.texi (strstr): Document the bug.
21082
21083 2008-01-10  Bruno Haible  <bruno@clisp.org>
21084
21085         * lib/relocatable.h (relocate): State whether result is freshly
21086         allocated or not.
21087         * lib/relocatable.c (relocate): Return a freshly allocated string
21088         instead of a pointer to a privately held string.
21089         Reported by Sylvain Beucler <beuc@gnu.org>.
21090
21091 2008-01-10  Colin Watson  <cjwatson@debian.org>
21092
21093         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
21094         s/S_ISNLK/S_ISLNK/.
21095
21096 2008-01-09  Bruno Haible  <bruno@clisp.org>
21097
21098         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
21099         and other files.
21100         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
21101         if it's only a guess.
21102         * modules/memmem: Simplify by depending on memmem-simple.
21103
21104 2008-01-09  Bruno Haible  <bruno@clisp.org>
21105
21106         Work around OpenBSD 4.0 tdelete() bug.
21107         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
21108         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
21109         macros and don't redefine the enum values.
21110         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
21111         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
21112         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
21113
21114 2008-01-09  Bruno Haible  <bruno@clisp.org>
21115
21116         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
21117         (main): Don't perform the tests if setlocale did not install a UTF-8
21118         locale. Needed on OpenBSD 4.0.
21119         * modules/wcwidth-tests (Depends-on): Add localcharset.
21120
21121 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21122
21123         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
21124         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
21125         * NEWS: announce this.
21126         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
21127
21128 2008-01-09  Simon Josefsson  <simon@josefsson.org>
21129         and Eric Blake  <ebb9@byu.net>
21130
21131         Add memmem-simple module.
21132         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
21133         (gl_FUNC_MEMMEM): Separate performance from presence checks.
21134         * modules/memmem-simple: New file.
21135         * modules/memmem (Description): Tweak.
21136         * MODULES.html.sh (string handling): Mention new module.
21137         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
21138         addressed by memmem-simple.
21139         * NEWS: Document the difference.
21140
21141 2008-01-09  Eric Blake  <ebb9@byu.net>
21142
21143         Give gcc some memmem optimization hints.
21144         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
21145         (strcasestr): Declare as pure.
21146         * modules/memmem (Maintainer): Claim my implementation.
21147
21148 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21149
21150         Support AIX 6.1 and higher.
21151         * build-aux/config.libpath: Likewise.
21152         * build-aux/config.rpath: Likewise.
21153
21154 2008-01-08  Jim Meyering  <meyering@redhat.com>
21155             Bruno Haible  <bruno@clisp.org>
21156
21157         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
21158         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
21159         Reported by Peter Fales in
21160         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
21161
21162 2008-01-08  Bruno Haible  <bruno@clisp.org>
21163
21164         * modules/unictype/category-of (Depends-on): Add
21165         unictype/category-none.
21166         * modules/unictype/category-and-tests (Depends-on): Add
21167         unictype/category-{L,N,Lu,Nd}.
21168         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
21169         * modules/unictype/category-or-tests (Depends-on): Add
21170         unictype/category-{L,N}.
21171         * modules/unictype/category-name-tests (Depends-on): Add
21172         unictype/category-{Z,Nl}.
21173         Reported by Simon Josefsson.
21174
21175 2008-01-08  Bruno Haible  <bruno@clisp.org>
21176
21177         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
21178         convention better.
21179         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
21180         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
21181         Reported by Peter Miller <millerp@canb.auug.org.au>.
21182
21183 2008-01-08  Eric Blake  <ebb9@byu.net>
21184
21185         Rewrite memmem to guarantee linear complexity without malloc.
21186         * lib/memmem.c (memmem): Use Two-Way rather than
21187         Knuth-Morris-Pratt, to allow O(1) space usage.
21188         (critical_factorization, two_way_short_needle)
21189         (two_way_long_needle): New functions.
21190         (knuth_morris_pratt): Delete.
21191         * modules/memmem (Depends-on): No longer need malloca or stdbool.
21192         Add stdint.
21193         * tests/test-memmem.c (main): Add tests for periodic needle and
21194         sublinear performance.
21195         * doc/functions/memmem.texi (memmem): Document other deficiencies
21196         in cygwin and older glibc.
21197
21198 2008-01-08  Bruno Haible  <bruno@clisp.org>
21199
21200         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
21201         augmentation.
21202
21203 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
21204
21205         Add a configure time option: --disable-acl.
21206         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
21207         AC_ARG_ENABLE(acl).
21208
21209 2008-01-06  Simon Josefsson  <simon@josefsson.org>
21210
21211         * tests/test-localename.c: Don't include obsolete "setenv.h".
21212
21213         * modules/localename-tests (Depends-on): Need unsetenv.
21214
21215 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21216
21217         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
21218
21219 2008-01-06  Colin Watson  <cjwatson@debian.org>
21220
21221         * users.txt: Add man-db.
21222
21223 2008-01-07  Bruno Haible  <bruno@clisp.org>
21224
21225         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
21226         previous section name.
21227
21228 2008-01-07  Bruno Haible  <bruno@clisp.org>
21229
21230         * lib/progname.c (set_program_name): Don't strip off a leading
21231         "lt-" prefix outside a .libs directory.
21232         Suggested by Paul Eggert.
21233
21234 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
21235             Bruno Haible  <bruno@clisp.org>
21236
21237         Improve memory cleanup in 'relocatable' module.
21238         * lib/relocatable.h (compute_curr_prefix): Change return type to
21239         'char *'.
21240         * lib/relocatable.c (compute_curr_prefix): Change return type to
21241         'char *'. Free curr_installdir after use.
21242         (relocate): Free curr_prefix_better after use.
21243         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
21244
21245 2008-01-01  Bruno Haible  <bruno@clisp.org>
21246
21247         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
21248         failure on older glibc systems.
21249         Reported by Peter Fales <psfales@alcatel-lucent.com>.
21250
21251 2008-01-05  Eric Blake  <ebb9@byu.net>
21252
21253         Avoid quadratic system memmem.
21254         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
21255         Reported by Ralf Wildenhues.
21256
21257         Fix memmem test for mingw.
21258         * modules/memmem-tests (configure.ac): Check for alarm.
21259         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
21260         it.
21261         * doc/functions/memmem.texi: New file.
21262         * doc/gnulib.texi (Function Substitutes): Add memmem.
21263         Reported by Bruno Haible.
21264
21265 2008-01-04  Bruno Haible  <bruno@clisp.org>
21266
21267         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
21268         Require gl_HEADER_STRINGS_H_DEFAULTS, not
21269         gl_HEADER_STRING_H_DEFAULTS.
21270
21271 2008-01-04  Eric Blake  <ebb9@byu.net>
21272
21273         Shorten duration of memmem test.
21274         * tests/test-memmem.c (main): Use alarm to declare failure if test
21275         is taking too long.
21276         Reported by Ralf Wildenhues.
21277
21278 2007-12-21  Simon Josefsson  <simon@josefsson.org>
21279
21280         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
21281         string, needed by strerror.
21282
21283 2008-01-03  Colin Watson  <cjwatson@debian.org>
21284             Bruno Haible  <bruno@clisp.org>
21285
21286         * doc/gnulib-tool.texi (Localization): New section.
21287
21288 2008-01-02  Bruno Haible  <bruno@clisp.org>
21289
21290         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
21291         variables to 'unsigned char *' type.
21292         Reported by Paul Eggert.
21293
21294 2008-01-02  Jim Meyering  <jim@meyering.net>
21295
21296         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
21297
21298 2007-12-31  Jim Meyering  <jim@meyering.net>
21299
21300         Avoid use of private FTS type name.
21301         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
21302
21303 2007-12-30  Karl Berry  <karl@gnu.org>
21304
21305         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
21306         work around defect in Texinfo and/or the standalone Info browser.
21307
21308 2007-12-30  Bruno Haible  <bruno@clisp.org>
21309
21310         Unify 5 copies of the KMP code.
21311         * lib/str-kmp.h: New file.
21312         * lib/c-strcasestr.c: Include str-kmp.h.
21313         (knuth_morris_pratt): Remove function.
21314         (c_strcasestr): Update.
21315         * lib/c-strstr.c: Include str-kmp.h.
21316         (knuth_morris_pratt): Remove function.
21317         (c_strcasestr): Update.
21318         * lib/mbscasestr.c: Include str-kmp.h.
21319         (knuth_morris_pratt_unibyte): Remove function.
21320         * lib/mbsstr.c: Include str-kmp.h.
21321         (knuth_morris_pratt_unibyte): Remove function.
21322         * lib/strcasestr.c: Include str-kmp.h.
21323         (knuth_morris_pratt): Remove function.
21324         (strcasestr): Update.
21325         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
21326         * modules/c-strstr (Files): Likewise.
21327         * modules/mbscasestr (Files): Likewise.
21328         * modules/mbsstr (Files): Likewise.
21329         * modules/strcasestr (Files): Likewise.
21330         Suggested by Paul Eggert.
21331
21332 2007-12-30  Bruno Haible  <bruno@clisp.org>
21333
21334         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
21335         defined.
21336
21337 2007-12-30  Bruno Haible  <bruno@clisp.org>
21338
21339         * lib/xmalloca.h: Include xalloc.h.
21340         (xnmalloca): New macro.
21341
21342 2007-12-30  Bruno Haible  <bruno@clisp.org>
21343
21344         * lib/malloca.h (nmalloca): New macro.
21345         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
21346         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
21347         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
21348         knuth_morris_pratt_multibyte): Likewise.
21349         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
21350         knuth_morris_pratt_multibyte): Likewise.
21351         * lib/memmem.c (knuth_morris_pratt): Likewise.
21352         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
21353
21354 2007-12-25  Bruno Haible  <bruno@clisp.org>
21355
21356         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
21357         * lib/glob.c: Don't include openat.h.
21358         (link_exists2_p): Add back the code that deals with the
21359         !GLOB_ALTDIRFUNC case.
21360         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
21361         let it do the filename concatenation.
21362         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
21363         * modules/glob (Depends-on): Remove openat.
21364
21365 2007-12-31  Bruno Haible  <bruno@clisp.org>
21366
21367         * modules/dirfd (License): Change to LGPLv2+.
21368         Approved by Jim Meyering.
21369
21370 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
21371
21372         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
21373         when multiplying M by sizeof (size_t).
21374
21375 2007-12-10  Martin Lambers  <marlam@marlam.de>
21376
21377         Override getpagesize on mingw.
21378         * lib/getpagesize.c: New file.
21379         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
21380         * modules/getpagesize (Files): Add lib/getpagesize.c.
21381         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
21382         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21383         REPLACE_GETPAGESIZE.
21384         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
21385
21386 2007-12-25  Bruno Haible  <bruno@clisp.org>
21387
21388         * modules/localcharset (Notice): New field.
21389         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
21390         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
21391
21392 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
21393             Bruno Haible  <bruno@clisp.org>
21394
21395         Avoid using the syntax symbol() in formatted documentation.
21396         * MODULES.html.sh (func_module): When replacing symbol() with a
21397         hyperlink, remove the parentheses. Show an error if some remain.
21398         Recognize and render the '...' syntax.
21399         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
21400         Rework. Add paragraph about GCC's inlining.
21401         * doc/alloca.texi: Likewise.
21402         * doc/error.texi: Remove parentheses from symbol reference.
21403         * doc/gnulib-intro.texi: Likewise.
21404         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
21405         * modules/fnmatch (Description): Reword to say "the ... function".
21406         * modules/full-read (Description): Likewise.
21407         * modules/full-write (Description): Likewise.
21408         * modules/safe-read (Description): Likewise.
21409         * modules/safe-write (Description): Likewise.
21410         * modules/strchrnul (Description): Likewise.
21411         * modules/trim (Description): Likewise.
21412         * modules/error (Description): Remove parentheses from symbol
21413         references.
21414         * modules/verror (Description): Likewise.
21415         Reported by Karl Berry.
21416
21417 2007-12-25  Bruno Haible  <bruno@clisp.org>
21418
21419         Fixup after 2007-10-16 commit.
21420         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
21421
21422 2007-12-24  Bruno Haible  <bruno@clisp.org>
21423
21424         Make --enable-relocatable work with DESTDIR.
21425         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
21426         to compute installdir from destprog.
21427         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
21428         also set the RELOC_DESTDIR variable.
21429         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21430
21431 2007-12-24  Bruno Haible  <bruno@clisp.org>
21432
21433         Fix link error due to xalloc_die().
21434         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
21435         of xreadlink.
21436         * lib/relocwrapper.c: Update comments.
21437         * build-aux/install-reloc: Remove xreadlink.c from file list.
21438         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
21439         xreadlink.c.
21440         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21441
21442 2007-12-24  Bruno Haible  <bruno@clisp.org>
21443
21444         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
21445         * lib/setenv.h: Remove file.
21446         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
21447         lib/setenv.h.
21448         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
21449         (Depends-on): Add stdlib.
21450         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
21451         gl_FUNC_UNSETENV.
21452         (Include): Replace setenv.h with <stdlib.h>.
21453         * modules/unsetenv: New file.
21454         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
21455         * lib/unsetenv.c: Include <stdlib.h> first.
21456         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
21457         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
21458         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
21459         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
21460         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
21461         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21462         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
21463         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21464         * doc/functions/unsetenv.texi: Update.
21465         * modules/xsetenv (Depends-on): Add unsetenv.
21466         * modules/getdate (Depends-on): Likewise.
21467         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
21468         * lib/xsetenv.c: Don't include setenv.h.
21469         * lib/getdate.y: Likewise.
21470         * lib/relocwrapper.c: Likewise.
21471         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
21472         (Depends-on): Add stdlib.
21473         * NEWS: Mention the changes.
21474         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21475
21476 2007-12-23  Bruno Haible  <bruno@clisp.org>
21477
21478         * lib/memmem.c (memmem): Use lowercase variable names. Tab
21479         indentation.
21480
21481 2007-12-23  Bruno Haible  <bruno@clisp.org>
21482
21483         * lib/c-strcasestr.c: Add more comments.
21484         * lib/c-strstr.c: Likewise.
21485         * lib/mbscasestr.c: Likewise.
21486         * lib/mbsstr.c: Likewise.
21487         * lib/strcasestr.c: Likewise.
21488         * lib/memmem.c: Likewise.
21489
21490 2007-12-23  Bruno Haible  <bruno@clisp.org>
21491
21492         * tests/test-memmem.c: Include <string.h> first.
21493
21494 2007-12-22  Bruno Haible  <bruno@clisp.org>
21495
21496         * gnulib-tool (func_create_testdir): Change $auxdir while generating
21497         the contents of $testsbase.
21498         Reported by Ralf Wildenhues.
21499
21500 2007-12-22  Bruno Haible  <bruno@clisp.org>
21501
21502         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
21503         two variables local_ldadd_before, local_ldadd_last.
21504
21505 2007-12-20  Eric Blake  <ebb9@byu.net>
21506
21507         Work around circular library issue when cross-compiling.
21508         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
21509         that progname.o does not need to pull in rpl_memcmp.
21510
21511 2007-12-19  Eric Blake  <ebb9@byu.net>
21512
21513         Fix memmem to avoid O(n^2) worst-case complexity.
21514         * lib/memmem.c (knuth_morris_pratt): New function.
21515         (memmem): Use it if first few naive iterations fail.
21516         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
21517         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
21518         * modules/memchr (License): Likewise.
21519         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
21520         malloca.
21521         * tests/test-memmem.c: Rewrite, borrowing ideas from
21522         test-mbsstr1.c; the old version wouldn't even compile!
21523         * modules/memmem-tests: New file.
21524         * lib/string.in.h (rpl_memmem): Add declaration.
21525         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
21526         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
21527         REPLACE_MEMMEM.
21528
21529 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
21530
21531         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
21532         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
21533         before any system include files, and undef after them all.  This
21534         should fix a problem on VMS reported by John E. Malmberg in
21535         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
21536
21537 2007-12-17  Eric Blake  <ebb9@byu.net>
21538
21539         Revert addition of verify, for BSD/OS.
21540         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
21541         can't handle large files, for the sake of obsolete platforms.
21542         * modules/fseeko (Depends-on): Remove verify.
21543         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
21544         * doc/functions/ftello.texi (ftello): Likewise.
21545         * doc/functions/fgetpos.texi (fgetpos): Likewise.
21546         Reported by Larry Jones.
21547
21548 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
21549
21550         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
21551         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
21552
21553 2007-12-17  Jim Meyering  <meyering@redhat.com>
21554
21555         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
21556         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
21557         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
21558         * modules/getcwd (Depends-on): Add openat.
21559         Reported by Petr Salinger.
21560
21561 2007-12-17  Bruno Haible  <bruno@clisp.org>
21562
21563         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
21564         avoid a segmentation fault of the configure test on x86_64 systems.
21565
21566 2007-12-15  Jim Meyering  <meyering@redhat.com>
21567
21568         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
21569
21570 2007-12-13  Eric Blake  <ebb9@byu.net>
21571
21572         Another fseek test.
21573         * tests/test-fseek.c (main): Also test ungetc handling.
21574         * tests/test-fseeko.c (main): Likewise.
21575         * modules/fseeko (Depends-on): Add verify.
21576         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
21577         large.
21578         Reported by Larry Jones.
21579
21580         Fix fseeko on mingw.
21581         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
21582         seek.
21583
21584         Beef up fseek tests.
21585         * tests/test-fseek.c (main): Also test eof handling.
21586         * tests/test-fseeko.c (main): Likewise.
21587         Reported by Larry Jones.
21588
21589 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
21590
21591         Fix fseeko on BSD-based platforms.
21592         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
21593         successful seek.
21594
21595 2007-12-12  Eric Blake  <ebb9@byu.net>
21596
21597         Allow circular dependency of separate libtests.a
21598         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
21599         when use_libtests.
21600
21601 2007-12-11  Eric Blake  <ebb9@byu.net>
21602
21603         Fix bug with -0.0L in previous patch.
21604         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
21605         * tests/test-isnan.c (main): Also test on zeroes.
21606         * tests/test-isnanf.c (main): Likewise.
21607         * tests/test-isnanl.h (main): Likewise.
21608
21609         Detect pseudo-denormals on x86 even when cross-compiling.
21610         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
21611         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
21612         invalid bit patterns that happen to satisfy ==.
21613
21614         Avoid link failures with separate libtests.a.
21615         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
21616         last, to satisfy circular dependencies.
21617
21618 2007-12-11  Eric Blake  <ebb9@byu.net>
21619         and Bruno Haible  <bruno@clisp.org>
21620
21621         Fix OpenBSD 4.0 <float.h> handling of long double.
21622         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
21623         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
21624         * doc/headers/float.texi (float.h): Document OpenBSD bug.
21625
21626 2007-12-11  Jim Meyering  <meyering@redhat.com>
21627
21628         * users.txt: Add libvirt.
21629
21630         Support versions of autoconf prior to 2.59c.
21631         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
21632         if it is not already defined.
21633
21634 2007-12-09  Bruno Haible  <bruno@clisp.org>
21635
21636         Let 'gnulib-tool --import' collect sources needed for the tests in
21637         tests/ rather than in lib/.
21638         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
21639         argument. If true, add rules to generate libtests.a, and put libtests.a
21640         into $(LDADD). Consider source files in subdirectories and set
21641         uses_subdirs.
21642         (func_emit_initmacro_start, func_emit_initmacro_end,
21643         func_emit_initmacro_done): Pass all arguments explicitly.
21644         (func_import): Determine two module lists main_modules,
21645         testsrelated_modules. Determine use_libtests. Determine two variables
21646         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
21647         instead of just sed_transform_lib_file. Determine two variables
21648         main_files and testsrelated_files. Compute 'files' as the union of
21649         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
21650         func_add_or_update. In the generated gnulib-comp.m4, collect the
21651         object files for tests/ in different variables than those for lib/.
21652         Substitute LIBTESTS_LIBDEPS.
21653         (func_create_testdir): Combine the uses_subdirs results from
21654         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
21655
21656 2007-12-09  Bruno Haible  <bruno@clisp.org>
21657
21658         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
21659         the build-aux directory.
21660
21661 2007-12-09  Bruno Haible  <bruno@clisp.org>
21662
21663         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
21664         introduced on 2006-09-09.
21665
21666 2007-12-07  Jim Meyering  <meyering@redhat.com>
21667
21668         Let these macros work also with autoconf-2.59.
21669         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
21670         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
21671         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
21672
21673 2007-12-06  Jim Meyering  <meyering@redhat.com>
21674
21675         Avoid a configure-time syntax error in gl_FUNC_ACL.
21676         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
21677         function in each branch, before testing the cache variable.
21678
21679 2007-12-04  Eric Blake  <ebb9@byu.net>
21680
21681         Make scripts executable.
21682         * build-aux/config.guess: Add execute permissions.
21683         * build-aux/config.sub: Likewise.
21684         * build-aux/gendocs.sh: Likewise.
21685
21686         Fix frexp on mingw.
21687         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
21688         cross-compiling.
21689         * doc/functions/frexp.texi (frexp): Document the bug.
21690
21691         Make cygwin fseeko check more reliable.
21692         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
21693         version numbers, rather than unrelated feature check.
21694         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
21695         * doc/functions/ftello.texi (ftello): Likewise.
21696         Reported by Bruno Haible.
21697
21698         * m4/strerror.m4: Bump version number.
21699
21700 2007-12-03  Bruno Haible  <bruno@clisp.org>
21701
21702         * doc/functions/mprotect.texi: Mention the mingw problem.
21703
21704 2007-12-03  Eric Blake  <ebb9@byu.net>
21705
21706         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
21707         REPLACE_STRERROR is initialized before this macro.
21708
21709 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
21710
21711         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
21712         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
21713         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
21714         put -lsec in even for programs other than 'ls'.  This fixes a problem
21715         for gettext reported by Bruno Haible in
21716         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
21717         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
21718         Add support for Solaris 10.  This isn't efficient, but should get the
21719         job done for now.
21720
21721 2007-12-03  James Youngman  <jay@gnu.org>
21722
21723         * doc/regexprops-generic.texi: change "an close-group" to "a
21724         close-group" and "illegal" to "not allowed".
21725
21726 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21727
21728         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
21729         pr_byname.h. Needed for the rare case when the maintainer has done
21730         "make maintainer-clean" in the source directory and then attempts a
21731         build outside the source directory.
21732         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
21733         scripts_byname.h.
21734
21735 2007-12-02  Martin Lambers <marlam@marlam.de>
21736             Bruno Haible  <bruno@clisp.org>
21737
21738         * lib/getpagesize.h: Remove file.
21739         * lib/unistd.in.h: Include declaration of getpagesize here.
21740         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
21741         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
21742         HAVE_SYS_PARAM_H.
21743         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
21744         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21745         * modules/getpagesize (Files): Remove lib/getpagesize.h.
21746         (Depends-on): Add unistd.
21747         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21748         (Include): Use <unistd.h> instead of getpagesize.h.
21749         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
21750         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21751         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
21752         gl_GETPAGESIZE invocation, already handled by module dependency.
21753         * lib/pagealign_alloc.c: Don't include getpagesize.h.
21754
21755 2007-12-02  Bruno Haible  <bruno@clisp.org>
21756
21757         * modules/strings-tests: New file.
21758         * tests/test-strings.c: New file.
21759
21760         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
21761         * lib/strings.in.h: New file.
21762         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
21763         * m4/strings_h.m4: New file.
21764         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
21765         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
21766         * modules/strings: New file.
21767         * modules/string (Makefile.am): Update.
21768         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
21769         Reported by Karl Berry.
21770
21771 2007-12-01  Eric Blake  <ebb9@byu.net>
21772
21773         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
21774         accomodate fix in cygwin 1.5.25.
21775
21776 2007-12-01  Jim Meyering  <meyering@redhat.com>
21777
21778         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
21779         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
21780         that would inhibit utf8-optimization of a regexp containing line-
21781         or buffer-anchors, e.g., `^', `$'.
21782
21783 2007-11-30  Bruno Haible  <bruno@clisp.org>
21784
21785         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
21786         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
21787         glthread_recursive_lock_init.
21788         * lib/lock.c (glthread_recursive_lock_init)
21789         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
21790         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21791
21792 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
21793
21794         New function qset_acl, like set_acl but with syscall semantics.
21795         * lib/acl.h (qset_acl): New decl.
21796         * lib/acl.c (qset_acl): New function.
21797         (set_acl): Use new function.  Use more-consistent diagnostics.
21798
21799 2007-11-28  Jim Meyering  <meyering@redhat.com>
21800
21801         * modules/physmem (License): Change from GPL to LGPLv2+.
21802
21803 2007-11-26  Bruno Haible  <bruno@clisp.org>
21804
21805         * lib/vasnprintf.c (decode_long_double): Don't abort if the
21806         'long double' type has excess precision.
21807         Reported by Jim Meyering in
21808         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
21809
21810 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21811
21812         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
21813         Sync from <http://gnu.org/licenses>.
21814         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
21815         with license text from same location.
21816         * doc/maintain.texi, doc/standards.texi:  Sync from
21817         <http://savannah.gnu.org/projects/gnustandards>.
21818
21819 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
21820         and Jim Meyering  <meyering@redhat.com>
21821
21822         Adjust getdate' grammar to accept a slightly more regular language.
21823         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
21824         Before, the former was rejected.
21825         * lib/getdate.y (digits_to_date_time): New function, factored
21826         out of ...
21827         (number): ...here.  Just call digits_to_date_time.
21828         (hybrid): New non-terminal to handle an <unsigned number,
21829         signed relative offset> sequence consistently.
21830
21831 2007-11-18  Jim Meyering  <meyering@redhat.com>
21832
21833         Pull my changes from coreutils:
21834         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
21835         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
21836         use of $gnulib_tool_option_extras, so that it's separated from the
21837         preceding argument.
21838
21839         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
21840         * build-aux/bootstrap (cp_mark_as_generated): Create any required
21841         parent destination directories before copying a file into place.
21842
21843 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
21844
21845         bootstrap: work also with 4-argument variant of AC_INIT
21846         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
21847
21848 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21849
21850         Port test-getaddrinfo to Solaris.
21851         Problem reported by Bruno Haible in
21852         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
21853         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
21854         explanation of setting 'hints'.
21855         Don't reject an implementation merely because it returns EAI_SERVICE.
21856         (EAI_SERVICE): Define to 0 if not defined.
21857
21858 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
21859
21860         The license of gnu-make and posix-shell is now "GPLed build tool".
21861         * modules/gnu-make (License): Likewise.
21862         * modules/posix-shell (License): Likewise.
21863
21864         New module posix-shell, for determining a POSIX shell
21865         or perhaps something that is close enough to a POSIX shell.
21866         * m4/posix-shell.m4: New file.
21867         * modules/posix-shell: New file.
21868
21869         * MODULES.html.sh: Mention new module.
21870
21871         New module gnu-make, for determining whether we're using GNU Make.
21872         * m4/gnu-make.m4: New file.
21873         * modules/gnu-make: New file.
21874         * MODULES.html.sh: Mention new module.
21875
21876 2007-11-14  Jim Meyering  <meyering@redhat.com>
21877
21878         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
21879         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
21880         use this macro to create a function _definition_.
21881         Remove useless "#undef ARGMATCH_DIE".
21882
21883 2007-11-14  Bruno Haible  <bruno@clisp.org>
21884
21885         * lib/config.charset: Update for OpenBSD 4.1.
21886         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
21887
21888 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
21889
21890         Document 64-bit #if problems in stdint.texi.
21891         * doc/headers/stdint.texi (stdint.h): Mention problems with
21892         64-bit-#if, and how to work around them.
21893
21894         Don't insist on 'long long int' support in the preprocessor.  It
21895         breaks too many things.  For example, PRIdMAX still uses a 'long
21896         long int' format with the latest Sun compiler, even though
21897         HAVE_LONG_LONG_INT isn't defined due to that compiler's
21898         preprocessor problem.  This causes the latest coreutils to dump
21899         core on Solaris 10 sparc with the Sun C compiler.
21900         Instead, fix the 2007-10-16 problem in a different way, by evaluating
21901         the troublesome expressions at configure-time, not at #if-time.
21902         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
21903         preprocessor.
21904         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
21905         compile-time C checks, done at 'configure'-time.
21906         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
21907         * modules/inttypes (Makefile): Substitute the new symbols that
21908         gl_INTTYPES_H now generates.
21909         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
21910
21911 2007-11-12  Bruno Haible  <bruno@clisp.org>
21912
21913         Tests for Unicode character classification functions.
21914
21915         * modules/unictype/bidicategory-byname-tests: New file.
21916         * modules/unictype/bidicategory-name-tests: New file.
21917         * modules/unictype/bidicategory-of-tests: New file.
21918         * modules/unictype/bidicategory-test-tests: New file.
21919         * modules/unictype/block-list-tests: New file.
21920         * modules/unictype/block-of-tests: New file.
21921         * modules/unictype/block-test-tests: New file.
21922         * modules/unictype/category-C-tests: New file.
21923         * modules/unictype/category-Cc-tests: New file.
21924         * modules/unictype/category-Cf-tests: New file.
21925         * modules/unictype/category-Cn-tests: New file.
21926         * modules/unictype/category-Co-tests: New file.
21927         * modules/unictype/category-Cs-tests: New file.
21928         * modules/unictype/category-L-tests: New file.
21929         * modules/unictype/category-Ll-tests: New file.
21930         * modules/unictype/category-Lm-tests: New file.
21931         * modules/unictype/category-Lo-tests: New file.
21932         * modules/unictype/category-Lt-tests: New file.
21933         * modules/unictype/category-Lu-tests: New file.
21934         * modules/unictype/category-M-tests: New file.
21935         * modules/unictype/category-Mc-tests: New file.
21936         * modules/unictype/category-Me-tests: New file.
21937         * modules/unictype/category-Mn-tests: New file.
21938         * modules/unictype/category-N-tests: New file.
21939         * modules/unictype/category-Nd-tests: New file.
21940         * modules/unictype/category-Nl-tests: New file.
21941         * modules/unictype/category-No-tests: New file.
21942         * modules/unictype/category-P-tests: New file.
21943         * modules/unictype/category-Pc-tests: New file.
21944         * modules/unictype/category-Pd-tests: New file.
21945         * modules/unictype/category-Pe-tests: New file.
21946         * modules/unictype/category-Pf-tests: New file.
21947         * modules/unictype/category-Pi-tests: New file.
21948         * modules/unictype/category-Po-tests: New file.
21949         * modules/unictype/category-Ps-tests: New file.
21950         * modules/unictype/category-S-tests: New file.
21951         * modules/unictype/category-Sc-tests: New file.
21952         * modules/unictype/category-Sk-tests: New file.
21953         * modules/unictype/category-Sm-tests: New file.
21954         * modules/unictype/category-So-tests: New file.
21955         * modules/unictype/category-Z-tests: New file.
21956         * modules/unictype/category-Zl-tests: New file.
21957         * modules/unictype/category-Zp-tests: New file.
21958         * modules/unictype/category-Zs-tests: New file.
21959         * modules/unictype/category-and-not-tests: New file.
21960         * modules/unictype/category-and-tests: New file.
21961         * modules/unictype/category-byname-tests: New file.
21962         * modules/unictype/category-name-tests: New file.
21963         * modules/unictype/category-none-tests: New file.
21964         * modules/unictype/category-of-tests: New file.
21965         * modules/unictype/category-or-tests: New file.
21966         * modules/unictype/category-test-withtable-tests: New file.
21967         * modules/unictype/combining-class-tests: New file.
21968         * modules/unictype/ctype-alnum-tests: New file.
21969         * modules/unictype/ctype-alpha-tests: New file.
21970         * modules/unictype/ctype-blank-tests: New file.
21971         * modules/unictype/ctype-cntrl-tests: New file.
21972         * modules/unictype/ctype-digit-tests: New file.
21973         * modules/unictype/ctype-graph-tests: New file.
21974         * modules/unictype/ctype-lower-tests: New file.
21975         * modules/unictype/ctype-print-tests: New file.
21976         * modules/unictype/ctype-punct-tests: New file.
21977         * modules/unictype/ctype-space-tests: New file.
21978         * modules/unictype/ctype-upper-tests: New file.
21979         * modules/unictype/ctype-xdigit-tests: New file.
21980         * modules/unictype/decimal-digit-tests: New file.
21981         * modules/unictype/digit-tests: New file.
21982         * modules/unictype/mirror-tests: New file.
21983         * modules/unictype/numeric-tests: New file.
21984         * modules/unictype/property-alphabetic-tests: New file.
21985         * modules/unictype/property-ascii-hex-digit-tests: New file.
21986         * modules/unictype/property-bidi-arabic-digit-tests: New file.
21987         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
21988         * modules/unictype/property-bidi-block-separator-tests: New file.
21989         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
21990         * modules/unictype/property-bidi-common-separator-tests: New file.
21991         * modules/unictype/property-bidi-control-tests: New file.
21992         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
21993         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
21994         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
21995         * modules/unictype/property-bidi-european-digit-tests: New file.
21996         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
21997         * modules/unictype/property-bidi-left-to-right-tests: New file.
21998         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
21999         * modules/unictype/property-bidi-other-neutral-tests: New file.
22000         * modules/unictype/property-bidi-pdf-tests: New file.
22001         * modules/unictype/property-bidi-segment-separator-tests: New file.
22002         * modules/unictype/property-bidi-whitespace-tests: New file.
22003         * modules/unictype/property-byname-tests: New file.
22004         * modules/unictype/property-combining-tests: New file.
22005         * modules/unictype/property-composite-tests: New file.
22006         * modules/unictype/property-currency-symbol-tests: New file.
22007         * modules/unictype/property-dash-tests: New file.
22008         * modules/unictype/property-decimal-digit-tests: New file.
22009         * modules/unictype/property-default-ignorable-code-point-tests: New file.
22010         * modules/unictype/property-deprecated-tests: New file.
22011         * modules/unictype/property-diacritic-tests: New file.
22012         * modules/unictype/property-extender-tests: New file.
22013         * modules/unictype/property-format-control-tests: New file.
22014         * modules/unictype/property-grapheme-base-tests: New file.
22015         * modules/unictype/property-grapheme-extend-tests: New file.
22016         * modules/unictype/property-grapheme-link-tests: New file.
22017         * modules/unictype/property-hex-digit-tests: New file.
22018         * modules/unictype/property-hyphen-tests: New file.
22019         * modules/unictype/property-id-continue-tests: New file.
22020         * modules/unictype/property-id-start-tests: New file.
22021         * modules/unictype/property-ideographic-tests: New file.
22022         * modules/unictype/property-ids-binary-operator-tests: New file.
22023         * modules/unictype/property-ids-trinary-operator-tests: New file.
22024         * modules/unictype/property-ignorable-control-tests: New file.
22025         * modules/unictype/property-iso-control-tests: New file.
22026         * modules/unictype/property-join-control-tests: New file.
22027         * modules/unictype/property-left-of-pair-tests: New file.
22028         * modules/unictype/property-line-separator-tests: New file.
22029         * modules/unictype/property-logical-order-exception-tests: New file.
22030         * modules/unictype/property-lowercase-tests: New file.
22031         * modules/unictype/property-math-tests: New file.
22032         * modules/unictype/property-non-break-tests: New file.
22033         * modules/unictype/property-not-a-character-tests: New file.
22034         * modules/unictype/property-numeric-tests: New file.
22035         * modules/unictype/property-other-alphabetic-tests: New file.
22036         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
22037         * modules/unictype/property-other-grapheme-extend-tests: New file.
22038         * modules/unictype/property-other-id-continue-tests: New file.
22039         * modules/unictype/property-other-id-start-tests: New file.
22040         * modules/unictype/property-other-lowercase-tests: New file.
22041         * modules/unictype/property-other-math-tests: New file.
22042         * modules/unictype/property-other-uppercase-tests: New file.
22043         * modules/unictype/property-paired-punctuation-tests: New file.
22044         * modules/unictype/property-paragraph-separator-tests: New file.
22045         * modules/unictype/property-pattern-syntax-tests: New file.
22046         * modules/unictype/property-pattern-white-space-tests: New file.
22047         * modules/unictype/property-private-use-tests: New file.
22048         * modules/unictype/property-punctuation-tests: New file.
22049         * modules/unictype/property-quotation-mark-tests: New file.
22050         * modules/unictype/property-radical-tests: New file.
22051         * modules/unictype/property-sentence-terminal-tests: New file.
22052         * modules/unictype/property-soft-dotted-tests: New file.
22053         * modules/unictype/property-space-tests: New file.
22054         * modules/unictype/property-terminal-punctuation-tests: New file.
22055         * modules/unictype/property-test-tests: New file.
22056         * modules/unictype/property-titlecase-tests: New file.
22057         * modules/unictype/property-unassigned-code-value-tests: New file.
22058         * modules/unictype/property-unified-ideograph-tests: New file.
22059         * modules/unictype/property-uppercase-tests: New file.
22060         * modules/unictype/property-variation-selector-tests: New file.
22061         * modules/unictype/property-white-space-tests: New file.
22062         * modules/unictype/property-xid-continue-tests: New file.
22063         * modules/unictype/property-xid-start-tests: New file.
22064         * modules/unictype/property-zero-width-tests: New file.
22065         * modules/unictype/scripts-tests: New file.
22066         * modules/unictype/syntax-c-ident-tests: New file.
22067         * modules/unictype/syntax-c-whitespace-tests: New file.
22068         * modules/unictype/syntax-java-ident-tests: New file.
22069         * modules/unictype/syntax-java-whitespace-tests: New file.
22070         * tests/unictype/test-bidi_byname.c: New file.
22071         * tests/unictype/test-bidi_name.c: New file.
22072         * tests/unictype/test-bidi_of.c: New file.
22073         * tests/unictype/test-bidi_test.c: New file.
22074         * tests/unictype/test-block_list.c: New file.
22075         * tests/unictype/test-block_of.c: New file.
22076         * tests/unictype/test-block_test.c: New file.
22077         * tests/unictype/test-categ_and.c: New file.
22078         * tests/unictype/test-categ_and_not.c: New file.
22079         * tests/unictype/test-categ_byname.c: New file.
22080         * tests/unictype/test-categ_name.c: New file.
22081         * tests/unictype/test-categ_none.c: New file.
22082         * tests/unictype/test-categ_of.c: New file.
22083         * tests/unictype/test-categ_or.c: New file.
22084         * tests/unictype/test-categ_test_withtable.c: New file.
22085         * tests/unictype/test-combining.c: New file.
22086         * tests/unictype/test-decdigit.c: New file.
22087         * tests/unictype/test-digit.c: New file.
22088         * tests/unictype/test-mirror.c: New file.
22089         * tests/unictype/test-numeric.c: New file.
22090         * tests/unictype/test-pr_byname.c: New file.
22091         * tests/unictype/test-pr_test.c: New file.
22092         * tests/unictype/test-predicate-part1.h: New file.
22093         * tests/unictype/test-predicate-part2.h: New file.
22094         * tests/unictype/test-scripts.c: New file.
22095         * tests/unictype/test-sy_c_ident.c: New file.
22096         * tests/unictype/test-sy_java_ident.c: New file.
22097
22098         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
22099         for Unicode 5.0.0.
22100         * tests/unictype/test-categ_Cc.c: Likewise.
22101         * tests/unictype/test-categ_Cf.c: Likewise.
22102         * tests/unictype/test-categ_Cn.c: Likewise.
22103         * tests/unictype/test-categ_Co.c: Likewise.
22104         * tests/unictype/test-categ_Cs.c: Likewise.
22105         * tests/unictype/test-categ_L.c: Likewise.
22106         * tests/unictype/test-categ_Ll.c: Likewise.
22107         * tests/unictype/test-categ_Lm.c: Likewise.
22108         * tests/unictype/test-categ_Lo.c: Likewise.
22109         * tests/unictype/test-categ_Lt.c: Likewise.
22110         * tests/unictype/test-categ_Lu.c: Likewise.
22111         * tests/unictype/test-categ_M.c: Likewise.
22112         * tests/unictype/test-categ_Mc.c: Likewise.
22113         * tests/unictype/test-categ_Me.c: Likewise.
22114         * tests/unictype/test-categ_Mn.c: Likewise.
22115         * tests/unictype/test-categ_N.c: Likewise.
22116         * tests/unictype/test-categ_Nd.c: Likewise.
22117         * tests/unictype/test-categ_Nl.c: Likewise.
22118         * tests/unictype/test-categ_No.c: Likewise.
22119         * tests/unictype/test-categ_P.c: Likewise.
22120         * tests/unictype/test-categ_Pc.c: Likewise.
22121         * tests/unictype/test-categ_Pd.c: Likewise.
22122         * tests/unictype/test-categ_Pe.c: Likewise.
22123         * tests/unictype/test-categ_Pf.c: Likewise.
22124         * tests/unictype/test-categ_Pi.c: Likewise.
22125         * tests/unictype/test-categ_Po.c: Likewise.
22126         * tests/unictype/test-categ_Ps.c: Likewise.
22127         * tests/unictype/test-categ_S.c: Likewise.
22128         * tests/unictype/test-categ_Sc.c: Likewise.
22129         * tests/unictype/test-categ_Sk.c: Likewise.
22130         * tests/unictype/test-categ_Sm.c: Likewise.
22131         * tests/unictype/test-categ_So.c: Likewise.
22132         * tests/unictype/test-categ_Z.c: Likewise.
22133         * tests/unictype/test-categ_Zl.c: Likewise.
22134         * tests/unictype/test-categ_Zp.c: Likewise.
22135         * tests/unictype/test-categ_Zs.c: Likewise.
22136         * tests/unictype/test-ctype_alnum.c: Likewise.
22137         * tests/unictype/test-ctype_alpha.c: Likewise.
22138         * tests/unictype/test-ctype_blank.c: Likewise.
22139         * tests/unictype/test-ctype_cntrl.c: Likewise.
22140         * tests/unictype/test-ctype_digit.c: Likewise.
22141         * tests/unictype/test-ctype_graph.c: Likewise.
22142         * tests/unictype/test-ctype_lower.c: Likewise.
22143         * tests/unictype/test-ctype_print.c: Likewise.
22144         * tests/unictype/test-ctype_punct.c: Likewise.
22145         * tests/unictype/test-ctype_space.c: Likewise.
22146         * tests/unictype/test-ctype_upper.c: Likewise.
22147         * tests/unictype/test-ctype_xdigit.c: Likewise.
22148         * tests/unictype/test-decdigit.h: Likewise.
22149         * tests/unictype/test-digit.h: Likewise.
22150         * tests/unictype/test-numeric.h: Likewise.
22151         * tests/unictype/test-pr_alphabetic.c: Likewise.
22152         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
22153         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
22154         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
22155         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
22156         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
22157         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
22158         * tests/unictype/test-pr_bidi_control.c: Likewise.
22159         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
22160         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
22161         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
22162         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
22163         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
22164         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
22165         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
22166         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
22167         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
22168         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
22169         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
22170         * tests/unictype/test-pr_combining.c: Likewise.
22171         * tests/unictype/test-pr_composite.c: Likewise.
22172         * tests/unictype/test-pr_currency_symbol.c: Likewise.
22173         * tests/unictype/test-pr_dash.c: Likewise.
22174         * tests/unictype/test-pr_decimal_digit.c: Likewise.
22175         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
22176         * tests/unictype/test-pr_deprecated.c: Likewise.
22177         * tests/unictype/test-pr_diacritic.c: Likewise.
22178         * tests/unictype/test-pr_extender.c: Likewise.
22179         * tests/unictype/test-pr_format_control.c: Likewise.
22180         * tests/unictype/test-pr_grapheme_base.c: Likewise.
22181         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
22182         * tests/unictype/test-pr_grapheme_link.c: Likewise.
22183         * tests/unictype/test-pr_hex_digit.c: Likewise.
22184         * tests/unictype/test-pr_hyphen.c: Likewise.
22185         * tests/unictype/test-pr_id_continue.c: Likewise.
22186         * tests/unictype/test-pr_id_start.c: Likewise.
22187         * tests/unictype/test-pr_ideographic.c: Likewise.
22188         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
22189         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
22190         * tests/unictype/test-pr_ignorable_control.c: Likewise.
22191         * tests/unictype/test-pr_iso_control.c: Likewise.
22192         * tests/unictype/test-pr_join_control.c: Likewise.
22193         * tests/unictype/test-pr_left_of_pair.c: Likewise.
22194         * tests/unictype/test-pr_line_separator.c: Likewise.
22195         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
22196         * tests/unictype/test-pr_lowercase.c: Likewise.
22197         * tests/unictype/test-pr_math.c: Likewise.
22198         * tests/unictype/test-pr_non_break.c: Likewise.
22199         * tests/unictype/test-pr_not_a_character.c: Likewise.
22200         * tests/unictype/test-pr_numeric.c: Likewise.
22201         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
22202         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
22203         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
22204         * tests/unictype/test-pr_other_id_continue.c: Likewise.
22205         * tests/unictype/test-pr_other_id_start.c: Likewise.
22206         * tests/unictype/test-pr_other_lowercase.c: Likewise.
22207         * tests/unictype/test-pr_other_math.c: Likewise.
22208         * tests/unictype/test-pr_other_uppercase.c: Likewise.
22209         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
22210         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
22211         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
22212         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
22213         * tests/unictype/test-pr_private_use.c: Likewise.
22214         * tests/unictype/test-pr_punctuation.c: Likewise.
22215         * tests/unictype/test-pr_quotation_mark.c: Likewise.
22216         * tests/unictype/test-pr_radical.c: Likewise.
22217         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
22218         * tests/unictype/test-pr_soft_dotted.c: Likewise.
22219         * tests/unictype/test-pr_space.c: Likewise.
22220         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
22221         * tests/unictype/test-pr_titlecase.c: Likewise.
22222         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
22223         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
22224         * tests/unictype/test-pr_uppercase.c: Likewise.
22225         * tests/unictype/test-pr_variation_selector.c: Likewise.
22226         * tests/unictype/test-pr_white_space.c: Likewise.
22227         * tests/unictype/test-pr_xid_continue.c: Likewise.
22228         * tests/unictype/test-pr_xid_start.c: Likewise.
22229         * tests/unictype/test-pr_zero_width.c: Likewise.
22230         * tests/unictype/test-sy_c_whitespace.c: Likewise.
22231         * tests/unictype/test-sy_java_whitespace.c: Likewise.
22232
22233 2007-11-12  Bruno Haible  <bruno@clisp.org>
22234
22235         Unicode character classification functions.
22236         * lib/unictype.h: New file.
22237         * modules/unictype/base: New file.
22238         * modules/unictype/category-L: New file.
22239         * modules/unictype/category-Lu: New file.
22240         * modules/unictype/category-Ll: New file.
22241         * modules/unictype/category-Lt: New file.
22242         * modules/unictype/category-Lm: New file.
22243         * modules/unictype/category-Lo: New file.
22244         * modules/unictype/category-M: New file.
22245         * modules/unictype/category-Mn: New file.
22246         * modules/unictype/category-Mc: New file.
22247         * modules/unictype/category-Me: New file.
22248         * modules/unictype/category-N: New file.
22249         * modules/unictype/category-Nd: New file.
22250         * modules/unictype/category-Nl: New file.
22251         * modules/unictype/category-No: New file.
22252         * modules/unictype/category-P: New file.
22253         * modules/unictype/category-Pc: New file.
22254         * modules/unictype/category-Pd: New file.
22255         * modules/unictype/category-Ps: New file.
22256         * modules/unictype/category-Pe: New file.
22257         * modules/unictype/category-Pi: New file.
22258         * modules/unictype/category-Pf: New file.
22259         * modules/unictype/category-Po: New file.
22260         * modules/unictype/category-S: New file.
22261         * modules/unictype/category-Sm: New file.
22262         * modules/unictype/category-Sc: New file.
22263         * modules/unictype/category-Sk: New file.
22264         * modules/unictype/category-So: New file.
22265         * modules/unictype/category-Z: New file.
22266         * modules/unictype/category-Zs: New file.
22267         * modules/unictype/category-Zl: New file.
22268         * modules/unictype/category-Zp: New file.
22269         * modules/unictype/category-C: New file.
22270         * modules/unictype/category-Cc: New file.
22271         * modules/unictype/category-Cf: New file.
22272         * modules/unictype/category-Cs: New file.
22273         * modules/unictype/category-Co: New file.
22274         * modules/unictype/category-Cn: New file.
22275         * modules/unictype/category-or: New file.
22276         * modules/unictype/category-of: New file.
22277         * modules/unictype/category-test: New file.
22278         * modules/unictype/category-test-withtable: New file.
22279         * modules/unictype/category-byname: New file.
22280         * modules/unictype/category-none: New file.
22281         * modules/unictype/category-and: New file.
22282         * modules/unictype/category-and-not: New file.
22283         * modules/unictype/category-name: New file.
22284         * modules/unictype/combining-class: New file.
22285         * modules/unictype/category-all: New file.
22286         * modules/unictype/bidicategory-all: New file.
22287         * modules/unictype/bidicategory-byname: New file.
22288         * modules/unictype/bidicategory-name: New file.
22289         * modules/unictype/bidicategory-of: New file.
22290         * modules/unictype/bidicategory-test: New file.
22291         * modules/unictype/decimal-digit: New file.
22292         * modules/unictype/digit: New file.
22293         * modules/unictype/numeric: New file.
22294         * modules/unictype/mirror: New file.
22295         * modules/unictype/property-white-space: New file.
22296         * modules/unictype/property-alphabetic: New file.
22297         * modules/unictype/property-other-alphabetic: New file.
22298         * modules/unictype/property-not-a-character: New file.
22299         * modules/unictype/property-default-ignorable-code-point: New file.
22300         * modules/unictype/property-other-default-ignorable-code-point: New
22301         file.
22302         * modules/unictype/property-deprecated: New file.
22303         * modules/unictype/property-logical-order-exception: New file.
22304         * modules/unictype/property-variation-selector: New file.
22305         * modules/unictype/property-private-use: New file.
22306         * modules/unictype/property-unassigned-code-value: New file.
22307         * modules/unictype/property-uppercase: New file.
22308         * modules/unictype/property-other-uppercase: New file.
22309         * modules/unictype/property-lowercase: New file.
22310         * modules/unictype/property-other-lowercase: New file.
22311         * modules/unictype/property-titlecase: New file.
22312         * modules/unictype/property-soft-dotted: New file.
22313         * modules/unictype/property-id-start: New file.
22314         * modules/unictype/property-other-id-start: New file.
22315         * modules/unictype/property-id-continue: New file.
22316         * modules/unictype/property-other-id-continue: New file.
22317         * modules/unictype/property-xid-start: New file.
22318         * modules/unictype/property-xid-continue: New file.
22319         * modules/unictype/property-pattern-white-space: New file.
22320         * modules/unictype/property-pattern-syntax: New file.
22321         * modules/unictype/property-join-control: New file.
22322         * modules/unictype/property-grapheme-base: New file.
22323         * modules/unictype/property-grapheme-extend: New file.
22324         * modules/unictype/property-other-grapheme-extend: New file.
22325         * modules/unictype/property-grapheme-link: New file.
22326         * modules/unictype/property-bidi-control: New file.
22327         * modules/unictype/property-bidi-left-to-right: New file.
22328         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
22329         * modules/unictype/property-bidi-arabic-right-to-left: New file.
22330         * modules/unictype/property-bidi-european-digit: New file.
22331         * modules/unictype/property-bidi-eur-num-separator: New file.
22332         * modules/unictype/property-bidi-eur-num-terminator: New file.
22333         * modules/unictype/property-bidi-arabic-digit: New file.
22334         * modules/unictype/property-bidi-common-separator: New file.
22335         * modules/unictype/property-bidi-block-separator: New file.
22336         * modules/unictype/property-bidi-segment-separator: New file.
22337         * modules/unictype/property-bidi-whitespace: New file.
22338         * modules/unictype/property-bidi-non-spacing-mark: New file.
22339         * modules/unictype/property-bidi-boundary-neutral: New file.
22340         * modules/unictype/property-bidi-pdf: New file.
22341         * modules/unictype/property-bidi-embedding-or-override: New file.
22342         * modules/unictype/property-bidi-other-neutral: New file.
22343         * modules/unictype/property-hex-digit: New file.
22344         * modules/unictype/property-ascii-hex-digit: New file.
22345         * modules/unictype/property-ideographic: New file.
22346         * modules/unictype/property-unified-ideograph: New file.
22347         * modules/unictype/property-radical: New file.
22348         * modules/unictype/property-ids-binary-operator: New file.
22349         * modules/unictype/property-ids-trinary-operator: New file.
22350         * modules/unictype/property-zero-width: New file.
22351         * modules/unictype/property-space: New file.
22352         * modules/unictype/property-non-break: New file.
22353         * modules/unictype/property-iso-control: New file.
22354         * modules/unictype/property-format-control: New file.
22355         * modules/unictype/property-dash: New file.
22356         * modules/unictype/property-hyphen: New file.
22357         * modules/unictype/property-punctuation: New file.
22358         * modules/unictype/property-line-separator: New file.
22359         * modules/unictype/property-paragraph-separator: New file.
22360         * modules/unictype/property-quotation-mark: New file.
22361         * modules/unictype/property-sentence-terminal: New file.
22362         * modules/unictype/property-terminal-punctuation: New file.
22363         * modules/unictype/property-currency-symbol: New file.
22364         * modules/unictype/property-math: New file.
22365         * modules/unictype/property-other-math: New file.
22366         * modules/unictype/property-paired-punctuation: New file.
22367         * modules/unictype/property-left-of-pair: New file.
22368         * modules/unictype/property-combining: New file.
22369         * modules/unictype/property-composite: New file.
22370         * modules/unictype/property-decimal-digit: New file.
22371         * modules/unictype/property-numeric: New file.
22372         * modules/unictype/property-diacritic: New file.
22373         * modules/unictype/property-extender: New file.
22374         * modules/unictype/property-ignorable-control: New file.
22375         * modules/unictype/property-test: New file.
22376         * modules/unictype/property-byname: New file.
22377         * modules/unictype/property-all: New file.
22378         * modules/unictype/scripts: New file.
22379         * modules/unictype/scripts-all: New file.
22380         * modules/unictype/block-of: New file.
22381         * modules/unictype/block-test: New file.
22382         * modules/unictype/block-list: New file.
22383         * modules/unictype/block-all: New file.
22384         * modules/unictype/syntax-c-whitespace: New file.
22385         * modules/unictype/syntax-java-whitespace: New file.
22386         * modules/unictype/syntax-c-ident: New file.
22387         * modules/unictype/syntax-java-ident: New file.
22388         * modules/unictype/ctype-alnum: New file.
22389         * modules/unictype/ctype-alpha: New file.
22390         * modules/unictype/ctype-cntrl: New file.
22391         * modules/unictype/ctype-digit: New file.
22392         * modules/unictype/ctype-graph: New file.
22393         * modules/unictype/ctype-lower: New file.
22394         * modules/unictype/ctype-print: New file.
22395         * modules/unictype/ctype-punct: New file.
22396         * modules/unictype/ctype-space: New file.
22397         * modules/unictype/ctype-upper: New file.
22398         * modules/unictype/ctype-xdigit: New file.
22399         * modules/unictype/ctype-blank: New file.
22400         * lib/unictype/bidi_byname.c: New file.
22401         * lib/unictype/bidi_name.c: New file.
22402         * lib/unictype/bidi_of.c: New file.
22403         * lib/unictype/bidi_test.c: New file.
22404         * lib/unictype/bitmap.h: New file.
22405         * lib/unictype/block_test.c: New file.
22406         * lib/unictype/blocks.c: New file.
22407         * lib/unictype/categ_C.c: New file.
22408         * lib/unictype/categ_Cc.c: New file.
22409         * lib/unictype/categ_Cf.c: New file.
22410         * lib/unictype/categ_Cn.c: New file.
22411         * lib/unictype/categ_Co.c: New file.
22412         * lib/unictype/categ_Cs.c: New file.
22413         * lib/unictype/categ_L.c: New file.
22414         * lib/unictype/categ_Ll.c: New file.
22415         * lib/unictype/categ_Lm.c: New file.
22416         * lib/unictype/categ_Lo.c: New file.
22417         * lib/unictype/categ_Lt.c: New file.
22418         * lib/unictype/categ_Lu.c: New file.
22419         * lib/unictype/categ_M.c: New file.
22420         * lib/unictype/categ_Mc.c: New file.
22421         * lib/unictype/categ_Me.c: New file.
22422         * lib/unictype/categ_Mn.c: New file.
22423         * lib/unictype/categ_N.c: New file.
22424         * lib/unictype/categ_Nd.c: New file.
22425         * lib/unictype/categ_Nl.c: New file.
22426         * lib/unictype/categ_No.c: New file.
22427         * lib/unictype/categ_P.c: New file.
22428         * lib/unictype/categ_Pc.c: New file.
22429         * lib/unictype/categ_Pd.c: New file.
22430         * lib/unictype/categ_Pe.c: New file.
22431         * lib/unictype/categ_Pf.c: New file.
22432         * lib/unictype/categ_Pi.c: New file.
22433         * lib/unictype/categ_Po.c: New file.
22434         * lib/unictype/categ_Ps.c: New file.
22435         * lib/unictype/categ_S.c: New file.
22436         * lib/unictype/categ_Sc.c: New file.
22437         * lib/unictype/categ_Sk.c: New file.
22438         * lib/unictype/categ_Sm.c: New file.
22439         * lib/unictype/categ_So.c: New file.
22440         * lib/unictype/categ_Z.c: New file.
22441         * lib/unictype/categ_Zl.c: New file.
22442         * lib/unictype/categ_Zp.c: New file.
22443         * lib/unictype/categ_Zs.c: New file.
22444         * lib/unictype/categ_and.c: New file.
22445         * lib/unictype/categ_and_not.c: New file.
22446         * lib/unictype/categ_byname.c: New file.
22447         * lib/unictype/categ_name.c: New file.
22448         * lib/unictype/categ_none.c: New file.
22449         * lib/unictype/categ_of.c: New file.
22450         * lib/unictype/categ_or.c: New file.
22451         * lib/unictype/categ_test.c: New file.
22452         * lib/unictype/combining.c: New file.
22453         * lib/unictype/ctype_alnum.c: New file.
22454         * lib/unictype/ctype_alpha.c: New file.
22455         * lib/unictype/ctype_blank.c: New file.
22456         * lib/unictype/ctype_cntrl.c: New file.
22457         * lib/unictype/ctype_digit.c: New file.
22458         * lib/unictype/ctype_graph.c: New file.
22459         * lib/unictype/ctype_lower.c: New file.
22460         * lib/unictype/ctype_print.c: New file.
22461         * lib/unictype/ctype_punct.c: New file.
22462         * lib/unictype/ctype_space.c: New file.
22463         * lib/unictype/ctype_upper.c: New file.
22464         * lib/unictype/ctype_xdigit.c: New file.
22465         * lib/unictype/decdigit.c: New file.
22466         * lib/unictype/digit.c: New file.
22467         * lib/unictype/identsyntaxmap.h: New file.
22468         * lib/unictype/mirror.c: New file.
22469         * lib/unictype/numeric.c: New file.
22470         * lib/unictype/pr_alphabetic.c: New file.
22471         * lib/unictype/pr_ascii_hex_digit.c: New file.
22472         * lib/unictype/pr_bidi_arabic_digit.c: New file.
22473         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
22474         * lib/unictype/pr_bidi_block_separator.c: New file.
22475         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
22476         * lib/unictype/pr_bidi_common_separator.c: New file.
22477         * lib/unictype/pr_bidi_control.c: New file.
22478         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
22479         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
22480         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
22481         * lib/unictype/pr_bidi_european_digit.c: New file.
22482         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
22483         * lib/unictype/pr_bidi_left_to_right.c: New file.
22484         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
22485         * lib/unictype/pr_bidi_other_neutral.c: New file.
22486         * lib/unictype/pr_bidi_pdf.c: New file.
22487         * lib/unictype/pr_bidi_segment_separator.c: New file.
22488         * lib/unictype/pr_bidi_whitespace.c: New file.
22489         * lib/unictype/pr_byname.c: New file.
22490         * lib/unictype/pr_byname.gperf: New file.
22491         * lib/unictype/pr_combining.c: New file.
22492         * lib/unictype/pr_composite.c: New file.
22493         * lib/unictype/pr_currency_symbol.c: New file.
22494         * lib/unictype/pr_dash.c: New file.
22495         * lib/unictype/pr_decimal_digit.c: New file.
22496         * lib/unictype/pr_default_ignorable_code_point.c: New file.
22497         * lib/unictype/pr_deprecated.c: New file.
22498         * lib/unictype/pr_diacritic.c: New file.
22499         * lib/unictype/pr_extender.c: New file.
22500         * lib/unictype/pr_format_control.c: New file.
22501         * lib/unictype/pr_grapheme_base.c: New file.
22502         * lib/unictype/pr_grapheme_extend.c: New file.
22503         * lib/unictype/pr_grapheme_link.c: New file.
22504         * lib/unictype/pr_hex_digit.c: New file.
22505         * lib/unictype/pr_hyphen.c: New file.
22506         * lib/unictype/pr_id_continue.c: New file.
22507         * lib/unictype/pr_id_start.c: New file.
22508         * lib/unictype/pr_ideographic.c: New file.
22509         * lib/unictype/pr_ids_binary_operator.c: New file.
22510         * lib/unictype/pr_ids_trinary_operator.c: New file.
22511         * lib/unictype/pr_ignorable_control.c: New file.
22512         * lib/unictype/pr_iso_control.c: New file.
22513         * lib/unictype/pr_join_control.c: New file.
22514         * lib/unictype/pr_left_of_pair.c: New file.
22515         * lib/unictype/pr_line_separator.c: New file.
22516         * lib/unictype/pr_logical_order_exception.c: New file.
22517         * lib/unictype/pr_lowercase.c: New file.
22518         * lib/unictype/pr_math.c: New file.
22519         * lib/unictype/pr_non_break.c: New file.
22520         * lib/unictype/pr_not_a_character.c: New file.
22521         * lib/unictype/pr_numeric.c: New file.
22522         * lib/unictype/pr_other_alphabetic.c: New file.
22523         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
22524         * lib/unictype/pr_other_grapheme_extend.c: New file.
22525         * lib/unictype/pr_other_id_continue.c: New file.
22526         * lib/unictype/pr_other_id_start.c: New file.
22527         * lib/unictype/pr_other_lowercase.c: New file.
22528         * lib/unictype/pr_other_math.c: New file.
22529         * lib/unictype/pr_other_uppercase.c: New file.
22530         * lib/unictype/pr_paired_punctuation.c: New file.
22531         * lib/unictype/pr_paragraph_separator.c: New file.
22532         * lib/unictype/pr_pattern_syntax.c: New file.
22533         * lib/unictype/pr_pattern_white_space.c: New file.
22534         * lib/unictype/pr_private_use.c: New file.
22535         * lib/unictype/pr_punctuation.c: New file.
22536         * lib/unictype/pr_quotation_mark.c: New file.
22537         * lib/unictype/pr_radical.c: New file.
22538         * lib/unictype/pr_sentence_terminal.c: New file.
22539         * lib/unictype/pr_soft_dotted.c: New file.
22540         * lib/unictype/pr_space.c: New file.
22541         * lib/unictype/pr_terminal_punctuation.c: New file.
22542         * lib/unictype/pr_test.c: New file.
22543         * lib/unictype/pr_titlecase.c: New file.
22544         * lib/unictype/pr_unassigned_code_value.c: New file.
22545         * lib/unictype/pr_unified_ideograph.c: New file.
22546         * lib/unictype/pr_uppercase.c: New file.
22547         * lib/unictype/pr_variation_selector.c: New file.
22548         * lib/unictype/pr_white_space.c: New file.
22549         * lib/unictype/pr_xid_continue.c: New file.
22550         * lib/unictype/pr_xid_start.c: New file.
22551         * lib/unictype/pr_zero_width.c: New file.
22552         * lib/unictype/scripts.c: New file.
22553         * lib/unictype/sy_c_ident.c: New file.
22554         * lib/unictype/sy_c_whitespace.c: New file.
22555         * lib/unictype/sy_java_ident.c: New file.
22556         * lib/unictype/sy_java_whitespace.c: New file.
22557
22558         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
22559         Unicode 5.0.0.
22560         * lib/unictype/blocks.h: Likewise.
22561         * lib/unictype/categ_C.h: Likewise.
22562         * lib/unictype/categ_Cc.h: Likewise.
22563         * lib/unictype/categ_Cf.h: Likewise.
22564         * lib/unictype/categ_Cn.h: Likewise.
22565         * lib/unictype/categ_Co.h: Likewise.
22566         * lib/unictype/categ_Cs.h: Likewise.
22567         * lib/unictype/categ_L.h: Likewise.
22568         * lib/unictype/categ_Ll.h: Likewise.
22569         * lib/unictype/categ_Lm.h: Likewise.
22570         * lib/unictype/categ_Lo.h: Likewise.
22571         * lib/unictype/categ_Lt.h: Likewise.
22572         * lib/unictype/categ_Lu.h: Likewise.
22573         * lib/unictype/categ_M.h: Likewise.
22574         * lib/unictype/categ_Mc.h: Likewise.
22575         * lib/unictype/categ_Me.h: Likewise.
22576         * lib/unictype/categ_Mn.h: Likewise.
22577         * lib/unictype/categ_N.h: Likewise.
22578         * lib/unictype/categ_Nd.h: Likewise.
22579         * lib/unictype/categ_Nl.h: Likewise.
22580         * lib/unictype/categ_No.h: Likewise.
22581         * lib/unictype/categ_P.h: Likewise.
22582         * lib/unictype/categ_Pc.h: Likewise.
22583         * lib/unictype/categ_Pd.h: Likewise.
22584         * lib/unictype/categ_Pe.h: Likewise.
22585         * lib/unictype/categ_Pf.h: Likewise.
22586         * lib/unictype/categ_Pi.h: Likewise.
22587         * lib/unictype/categ_Po.h: Likewise.
22588         * lib/unictype/categ_Ps.h: Likewise.
22589         * lib/unictype/categ_S.h: Likewise.
22590         * lib/unictype/categ_Sc.h: Likewise.
22591         * lib/unictype/categ_Sk.h: Likewise.
22592         * lib/unictype/categ_Sm.h: Likewise.
22593         * lib/unictype/categ_So.h: Likewise.
22594         * lib/unictype/categ_Z.h: Likewise.
22595         * lib/unictype/categ_Zl.h: Likewise.
22596         * lib/unictype/categ_Zp.h: Likewise.
22597         * lib/unictype/categ_Zs.h: Likewise.
22598         * lib/unictype/categ_of.h: Likewise.
22599         * lib/unictype/combining.h: Likewise.
22600         * lib/unictype/ctype_alnum.h: Likewise.
22601         * lib/unictype/ctype_alpha.h: Likewise.
22602         * lib/unictype/ctype_blank.h: Likewise.
22603         * lib/unictype/ctype_cntrl.h: Likewise.
22604         * lib/unictype/ctype_digit.h: Likewise.
22605         * lib/unictype/ctype_graph.h: Likewise.
22606         * lib/unictype/ctype_lower.h: Likewise.
22607         * lib/unictype/ctype_print.h: Likewise.
22608         * lib/unictype/ctype_punct.h: Likewise.
22609         * lib/unictype/ctype_space.h: Likewise.
22610         * lib/unictype/ctype_upper.h: Likewise.
22611         * lib/unictype/ctype_xdigit.h: Likewise.
22612         * lib/unictype/decdigit.h: Likewise.
22613         * lib/unictype/digit.h: Likewise.
22614         * lib/unictype/mirror.h: Likewise.
22615         * lib/unictype/numeric.h: Likewise.
22616         * lib/unictype/pr_alphabetic.h: Likewise.
22617         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
22618         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
22619         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
22620         * lib/unictype/pr_bidi_block_separator.h: Likewise.
22621         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
22622         * lib/unictype/pr_bidi_common_separator.h: Likewise.
22623         * lib/unictype/pr_bidi_control.h: Likewise.
22624         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
22625         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
22626         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
22627         * lib/unictype/pr_bidi_european_digit.h: Likewise.
22628         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
22629         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
22630         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
22631         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
22632         * lib/unictype/pr_bidi_pdf.h: Likewise.
22633         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
22634         * lib/unictype/pr_bidi_whitespace.h: Likewise.
22635         * lib/unictype/pr_combining.h: Likewise.
22636         * lib/unictype/pr_composite.h: Likewise.
22637         * lib/unictype/pr_currency_symbol.h: Likewise.
22638         * lib/unictype/pr_dash.h: Likewise.
22639         * lib/unictype/pr_decimal_digit.h: Likewise.
22640         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
22641         * lib/unictype/pr_deprecated.h: Likewise.
22642         * lib/unictype/pr_diacritic.h: Likewise.
22643         * lib/unictype/pr_extender.h: Likewise.
22644         * lib/unictype/pr_format_control.h: Likewise.
22645         * lib/unictype/pr_grapheme_base.h: Likewise.
22646         * lib/unictype/pr_grapheme_extend.h: Likewise.
22647         * lib/unictype/pr_grapheme_link.h: Likewise.
22648         * lib/unictype/pr_hex_digit.h: Likewise.
22649         * lib/unictype/pr_hyphen.h: Likewise.
22650         * lib/unictype/pr_id_continue.h: Likewise.
22651         * lib/unictype/pr_id_start.h: Likewise.
22652         * lib/unictype/pr_ideographic.h: Likewise.
22653         * lib/unictype/pr_ids_binary_operator.h: Likewise.
22654         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
22655         * lib/unictype/pr_ignorable_control.h: Likewise.
22656         * lib/unictype/pr_iso_control.h: Likewise.
22657         * lib/unictype/pr_join_control.h: Likewise.
22658         * lib/unictype/pr_left_of_pair.h: Likewise.
22659         * lib/unictype/pr_line_separator.h: Likewise.
22660         * lib/unictype/pr_logical_order_exception.h: Likewise.
22661         * lib/unictype/pr_lowercase.h: Likewise.
22662         * lib/unictype/pr_math.h: Likewise.
22663         * lib/unictype/pr_non_break.h: Likewise.
22664         * lib/unictype/pr_not_a_character.h: Likewise.
22665         * lib/unictype/pr_numeric.h: Likewise.
22666         * lib/unictype/pr_other_alphabetic.h: Likewise.
22667         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
22668         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
22669         * lib/unictype/pr_other_id_continue.h: Likewise.
22670         * lib/unictype/pr_other_id_start.h: Likewise.
22671         * lib/unictype/pr_other_lowercase.h: Likewise.
22672         * lib/unictype/pr_other_math.h: Likewise.
22673         * lib/unictype/pr_other_uppercase.h: Likewise.
22674         * lib/unictype/pr_paired_punctuation.h: Likewise.
22675         * lib/unictype/pr_paragraph_separator.h: Likewise.
22676         * lib/unictype/pr_pattern_syntax.h: Likewise.
22677         * lib/unictype/pr_pattern_white_space.h: Likewise.
22678         * lib/unictype/pr_private_use.h: Likewise.
22679         * lib/unictype/pr_punctuation.h: Likewise.
22680         * lib/unictype/pr_quotation_mark.h: Likewise.
22681         * lib/unictype/pr_radical.h: Likewise.
22682         * lib/unictype/pr_sentence_terminal.h: Likewise.
22683         * lib/unictype/pr_soft_dotted.h: Likewise.
22684         * lib/unictype/pr_space.h: Likewise.
22685         * lib/unictype/pr_terminal_punctuation.h: Likewise.
22686         * lib/unictype/pr_titlecase.h: Likewise.
22687         * lib/unictype/pr_unassigned_code_value.h: Likewise.
22688         * lib/unictype/pr_unified_ideograph.h: Likewise.
22689         * lib/unictype/pr_uppercase.h: Likewise.
22690         * lib/unictype/pr_variation_selector.h: Likewise.
22691         * lib/unictype/pr_white_space.h: Likewise.
22692         * lib/unictype/pr_xid_continue.h: Likewise.
22693         * lib/unictype/pr_xid_start.h: Likewise.
22694         * lib/unictype/pr_zero_width.h: Likewise.
22695         * lib/unictype/scripts.h: Likewise.
22696         * lib/unictype/scripts_byname.gperf: Likewise.
22697         * lib/unictype/sy_c_ident.h: Likewise.
22698         * lib/unictype/sy_c_whitespace.h: Likewise.
22699         * lib/unictype/sy_java_ident.h: Likewise.
22700         * lib/unictype/sy_java_whitespace.h: Likewise.
22701
22702         * lib/unictype/Makefile: New file.
22703         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
22704         glibc.
22705         * lib/unictype/3level.h: New file, copied from glibc.
22706         * lib/unictype/3levelbit.h: New file.
22707
22708 2007-11-11  Bruno Haible  <bruno@clisp.org>
22709
22710         * modules/gperf: New file.
22711         * modules/iconv_open (Depends-on): Add it.
22712         (Makefile.am): Remove the GPERF definition.
22713
22714 2007-11-11  Bruno Haible  <bruno@clisp.org>
22715
22716         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
22717         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
22718
22719 2007-11-11  Bruno Haible  <bruno@clisp.org>
22720
22721         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
22722         (usage): Remove function.
22723
22724 2007-11-11  Bruno Haible  <bruno@clisp.org>
22725
22726         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
22727         gl_FUNC_CEILF_LIBS.
22728         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
22729         gl_FUNC_CEIL_LIBS.
22730         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
22731         gl_FUNC_CEILL_LIBS.
22732         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
22733         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
22734         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
22735
22736 2007-11-11  Bruno Haible  <bruno@clisp.org>
22737
22738         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
22739         roundf were declared but do not exist on functions.
22740         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
22741         roundl were declared but do not exist on functions.
22742         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
22743         HAVE_FLOORL_AND_CEILL, respectively.
22744         Needed for Sun C on Solaris 10.
22745
22746 2007-11-11  Bruno Haible  <bruno@clisp.org>
22747
22748         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
22749         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
22750         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
22751         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
22752         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
22753         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
22754         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
22755         HAVE_DECL_ROUNDF.
22756         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
22757         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
22758         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
22759         of HAVE_DECL_ROUND*.
22760         * modules/math (Makefile.am): Update.
22761
22762 2007-11-10  Bruno Haible  <bruno@clisp.org>
22763
22764         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
22765         ptrdiff_t as m4/intl.m4.
22766
22767 2007-11-10  Jim Meyering  <meyering@redhat.com>
22768
22769         Avoid link failure for the argmatch test.
22770         * tests/test-argmatch.c (usage): Define function to avoid a link
22771         failure: argmatch_die requires a usage function.
22772
22773 2007-11-09  Bruno Haible  <bruno@clisp.org>
22774
22775         * doc/functions/snprintf.texi: Mention BeOS deficiency.
22776         * doc/functions/vsnprintf.texi: Likewise.
22777         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
22778         with a size argument < 2.
22779
22780 2007-11-09  Bruno Haible  <bruno@clisp.org>
22781
22782         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
22783         buffer. Fixes an inefficiency introduced on 2007-11-03.
22784
22785 2007-11-09  Bruno Haible  <bruno@clisp.org>
22786
22787         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
22788         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
22789
22790 2007-11-08  Jim Meyering  <meyering@redhat.com>
22791
22792         Change cache variable name prefix "jm_" to "gl_" everywhere.
22793         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
22794         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
22795         * m4/uptime.m4: s/gl_/jm_/
22796
22797 2007-11-07  Bruno Haible  <bruno@clisp.org>
22798
22799         Update to GNU gettext 0.17.
22800         * m4/intl.m4: Update to GNU gettext 0.17.
22801         * m4/po.m4: Likewise.
22802         * modules/gettext (Files): Remove m4/ulonglong.m4.
22803         (configure.ac): Require gettext infrastructure from version 0.17.
22804
22805 2007-11-06  Bruno Haible  <bruno@clisp.org>
22806
22807         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
22808         symbolic values are not defined in a public header.
22809         * lib/freadable.c (freadable) [QNX]: Likewise.
22810         * lib/freadahead.c (freadahead) [QNX]: Likewise.
22811         * lib/freading.c (freading) [QNX]: Likewise.
22812         * lib/fseterr.c (fseterr) [QNX]: Likewise.
22813         * lib/fwritable.c (fwritable) [QNX]: Likewise.
22814         * lib/fwriting.c (fwriting) [QNX]: Likewise.
22815         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
22816         Reported by Alain Magloire.
22817
22818         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
22819
22820 2007-11-05  Bruno Haible  <bruno@clisp.org>
22821
22822         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
22823         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
22824         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
22825         Reported by Eric Blake.
22826
22827 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22828             Bruno Haible  <bruno@clisp.org>
22829
22830         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
22831         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
22832         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
22833         (malloc): Undefine also before including <stdlib.h>.
22834         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
22835         Needed on OSF/1 4.0.
22836
22837 2007-11-05  Jim Meyering  <meyering@redhat.com>
22838
22839         git-version-gen: sync from coreutils.
22840         * build-aux/git-version-gen: Add comments.
22841         Change the first '-' to '.' in the snapshot version string,
22842         e.g., 6.9-377-08144 -> 6.9.377-08144
22843         Remove first parameter.
22844         Don't declare a version "-dirty" merely because a time
22845         stamp has changed.
22846
22847 2007-11-04  Bruno Haible  <bruno@clisp.org>
22848
22849         * lib/lock.h: Protect all macro definitions containing an 'if'
22850         statement through a "do { ... } while (0)".
22851         * lib/tls.h: Likewise.
22852
22853 2007-11-04  Bruno Haible  <bruno@clisp.org>
22854
22855         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
22856
22857 2007-11-04  Bruno Haible  <bruno@clisp.org>
22858
22859         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
22860         * modules/fprintf-posix (Depends-on): Add nocrash.
22861         * modules/snprintf-posix (Depends-on): Likewise.
22862         * modules/sprintf-posix (Depends-on): Likewise.
22863         * modules/vasnprintf-posix (Depends-on): Likewise.
22864         * modules/vasprintf-posix (Depends-on): Likewise.
22865         * modules/vfprintf-posix (Depends-on): Likewise.
22866         * modules/vsnprintf-posix (Depends-on): Likewise.
22867         * modules/vsprintf-posix (Depends-on): Likewise.
22868         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22869         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22870         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22871         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22872         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22873         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22874         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22875
22876 2007-11-04  Bruno Haible  <bruno@clisp.org>
22877
22878         * modules/nocrash: New file.
22879         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
22880         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
22881
22882 2007-11-04  Bruno Haible  <bruno@clisp.org>
22883
22884         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
22885         precision handling.
22886         * tests/test-vasprintf-posix.c (test_function): Likewise.
22887         * tests/test-snprintf-posix.h (test_function): Likewise.
22888         * tests/test-sprintf-posix.h (test_function): Likewise.
22889
22890         Fix *printf behaviour for large precisions on mingw and BeOS.
22891         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
22892         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
22893         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
22894         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
22895         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22896         gl_PRINTF_PRECISION and test its result. Invoke
22897         gl_PREREQ_VASNPRINTF_PRECISION.
22898         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22899         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22900         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22901         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22902         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22903         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22904         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22905         * doc/functions/fprintf.texi: Update.
22906         * doc/functions/printf.texi: Update.
22907         * doc/functions/snprintf.texi: Update.
22908         * doc/functions/sprintf.texi: Update.
22909         * doc/functions/vfprintf.texi: Update.
22910         * doc/functions/vprintf.texi: Update.
22911         * doc/functions/vsnprintf.texi: Update.
22912         * doc/functions/vsprintf.texi: Update.
22913
22914 2007-11-04  Bruno Haible  <bruno@clisp.org>
22915
22916         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
22917
22918 2007-11-04  Bruno Haible  <bruno@clisp.org>
22919
22920         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
22921         Reported by Sylvain Beucler <beuc@gnu.org>.
22922
22923 2007-11-03  Bruno Haible  <bruno@clisp.org>
22924
22925         * tests/test-fprintf-posix2.sh: New file.
22926         * tests/test-fprintf-posix2.c: New file.
22927         * modules/fprintf-posix-tests (Files): Add them.
22928         (TESTS): Add test-fprintf-posix2.sh.
22929         (configure.ac): Check for getrlimit and setrlimit.
22930         (check_PROGRAMS): Add test-fprintf-posix2.
22931
22932         * tests/test-printf-posix2.sh: New file.
22933         * tests/test-printf-posix2.c: New file.
22934         * modules/printf-posix-tests (Files): Add them.
22935         (TESTS): Add test-printf-posix2.sh.
22936         (configure.ac): Check for getrlimit and setrlimit.
22937         (check_PROGRAMS): Add test-printf-posix2.
22938
22939         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
22940         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
22941         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
22942         (decode_double): New function, copied from decode_long_double.
22943         (scale10_round_decimal_decoded): New function, extracted from
22944         scale10_round_decimal_long_double.
22945         (scale10_round_decimal_long_double): Use it.
22946         (scale10_round_decimal_double): New function.
22947         (floorlog10): New function.
22948         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
22949         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
22950         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
22951         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22952         gl_PRINTF_ENOMEM and test its result. Invoke
22953         gl_PREREQ_VASNPRINTF_ENOMEM.
22954         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22955         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22956         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22957         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22958         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22959         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22960         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22961         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
22962         * modules/snprintf-posix (Depends-on): Likewise.
22963         * modules/sprintf-posix (Depends-on): Likewise.
22964         * modules/vasnprintf-posix (Depends-on): Likewise.
22965         * modules/vasprintf-posix (Depends-on): Likewise.
22966         * modules/vfprintf-posix (Depends-on): Likewise.
22967         * modules/vsnprintf-posix (Depends-on): Likewise.
22968         * modules/vsprintf-posix (Depends-on): Likewise.
22969         * doc/functions/fprintf.texi: Update.
22970         * doc/functions/printf.texi: Update.
22971         * doc/functions/snprintf.texi: Update.
22972         * doc/functions/sprintf.texi: Update.
22973         * doc/functions/vfprintf.texi: Update.
22974         * doc/functions/vprintf.texi: Update.
22975         * doc/functions/vsnprintf.texi: Update.
22976         * doc/functions/vsprintf.texi: Update.
22977
22978 2007-11-03  Bruno Haible  <bruno@clisp.org>
22979
22980         * modules/frexp-nolibm-tests: New file.
22981
22982         * modules/frexp-nolibm: New file.
22983         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
22984
22985 2007-11-03  Bruno Haible  <bruno@clisp.org>
22986
22987         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
22988         value is C99 compliant.
22989         Needed for OSF/1 5.1.
22990
22991 2007-11-03  Bruno Haible  <bruno@clisp.org>
22992
22993         Fix out-of-memory handling of vasnprintf.
22994         * lib/printf-parse.c: Include <errno.h>.
22995         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
22996         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
22997         is already set.
22998
22999 2007-11-02  Eric Blake  <ebb9@byu.net>
23000
23001         Fix tests on cygwin.
23002         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
23003
23004 2007-11-01  Bruno Haible  <bruno@clisp.org>
23005
23006         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
23007         warning.
23008         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
23009         needed for POSIX compatibility.
23010
23011 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
23012
23013         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
23014         for compatibility with GNU.
23015
23016 2007-11-01  Bruno Haible  <bruno@clisp.org>
23017
23018         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
23019         (putenv): Renamed from rpl_putenv. Change argument type from
23020         'const char *' to 'char *'.
23021         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
23022         of defining putenv in config.h, just set REPLACE_PUTENV.
23023         * modules/putenv (Depends-on): Add stdlib.
23024         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
23025         (Include): Use <stdlib.h>.
23026         * lib/stdlib.in.h (putenv): New declaration.
23027         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
23028         REPLACE_PUTENV.
23029         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
23030         REPLACE_PUTENV.
23031         Needed for MacOS X 10.5.0.
23032         Reported by Peter O'Gorman <peter@pogma.com>.
23033
23034 2007-11-01  Jim Meyering  <meyering@redhat.com>
23035
23036         Treat an empty date string exactly like "0".
23037         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
23038         if the remaining date string (to be parsed) is empty, use "0".
23039         Reported by Mischa Molhoek and discussed in this thread:
23040         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
23041
23042 2007-10-31  Bruno Haible  <bruno@clisp.org>
23043
23044         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
23045         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
23046         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
23047         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
23048         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
23049         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
23050
23051 2007-10-31  Bruno Haible  <bruno@clisp.org>
23052
23053         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
23054         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
23055         (AC_TYPE_LONG_LONG_INT): Use it.
23056         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
23057         it as well.
23058         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
23059         to m4/longlong.m4.
23060         * modules/stdint (Files): Remove m4/ulonglong.m4.
23061         * modules/strtoull (Files): Use m4/longlong.m4 instead of
23062         m4/ulonglong.m4.
23063         * modules/strtoumax (Files): Likewise.
23064
23065 2007-10-30  Bruno Haible  <bruno@clisp.org>
23066
23067         * modules/xvasprintf-posix: New file.
23068         Suggested by Eric Blake.
23069
23070 2007-10-30  Bruno Haible  <bruno@clisp.org>
23071
23072         * modules/xprintf-posix-tests: New file.
23073         * tests/test-xprintf-posix.sh: New file.
23074         * tests/test-xprintf-posix.c: New file.
23075         * tests/test-xfprintf-posix.c: New file.
23076
23077         * modules/xprintf-posix: New file.
23078
23079 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23080
23081         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
23082         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
23083         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
23084
23085 2007-10-29  Bruno Haible  <bruno@clisp.org>
23086
23087         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
23088         contain the special marker '_cv_'.
23089         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
23090         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
23091         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
23092         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
23093         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
23094         Reported by Ralf Wildenhues.
23095
23096 2007-10-29  Bruno Haible  <bruno@clisp.org>
23097
23098         * gnulib-tool (func_import): When --lgpl is not specified, set
23099         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
23100         GPLv3.
23101         Reported by Simon Josefsson.
23102
23103 2007-10-28  Bruno Haible  <bruno@clisp.org>
23104
23105         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
23106         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
23107         HAVE_DECL_ISFINITE.
23108         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23109         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
23110         HAVE_DECL_ISFINITE.
23111
23112 2007-10-28  Bruno Haible  <bruno@clisp.org>
23113
23114         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
23115         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
23116
23117 2007-10-28  Bruno Haible  <bruno@clisp.org>
23118
23119         Fix link errors with Sun C 5.0 on Solaris 10.
23120         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
23121         function is declared but not present in the compiler's libm.
23122         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
23123         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
23124         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
23125         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
23126         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
23127         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
23128         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
23129         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23130         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
23131         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
23132         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
23133         HAVE_DECL_FLOORL.
23134
23135 2007-10-28  Bruno Haible  <bruno@clisp.org>
23136
23137         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
23138         gl_FUNC_FLOORL. Cache the result.
23139         (gl_FUNC_FLOORL): Use it.
23140         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
23141         gl_FUNC_CEILL. Cache the result.
23142         (gl_FUNC_CEILL): Use it.
23143
23144         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
23145         gl_FUNC_FLOOR. Cache the result.
23146         (gl_FUNC_FLOOR): Use it.
23147         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
23148         gl_FUNC_CEIL. Cache the result.
23149         (gl_FUNC_CEIL): Use it.
23150
23151         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
23152         gl_FUNC_FLOORF. Cache the result.
23153         (gl_FUNC_FLOORF): Use it.
23154         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
23155         gl_FUNC_CEILF. Cache the result.
23156         (gl_FUNC_CEILF): Use it.
23157
23158 2007-10-28  Bruno Haible  <bruno@clisp.org>
23159
23160         * gnulib-tool: Allow specifying the LGPL version number through
23161         --lgpl=2 or --lgpl=3.
23162         (func_usage): Document --lgpl with argument.
23163         Handle --lgpl=... arguments.
23164         (func_import): Recognize also gl_LGPL calls with an argument. When
23165         --lgpl=2 is used and the module's license is just LGPL, report an
23166         error. Set sed_transform_lib_file according to the lgpl variable. In
23167         the generated files, use --lgpl or gl_LGPL invocations with argument,
23168         if necessary.
23169         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
23170         an LGPv2+ license.
23171         * doc/gnulib-tool.texi (Modified imports): Update explanation of
23172         gl_LGPL macro.
23173
23174 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23175             Bruno Haible  <bruno@clisp.org>
23176
23177         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
23178         (u16_uctomb_aux): Likewise.
23179         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
23180         !HAVE_INLINE.
23181         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
23182
23183 2007-10-28  Bruno Haible  <bruno@clisp.org>
23184
23185         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
23186         Invoke AM_GETTEXT_OPTION if it exists.
23187         * modules/vasprintf: Likewise.
23188         * modules/verror: Likewise.
23189         * modules/xprintf: Likewise.
23190         * modules/xvasprintf: Likewise.
23191
23192 2007-10-27  Ben Pfaff  <blp@gnu.org>
23193
23194         * lib/math.in.h: Define isfinite macro and prototypes for
23195         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
23196         implementations.
23197         * m4/math_h.m4: New substitutions for isfinite module.
23198         * lib/isfinite.c: New file.
23199         * m4/isfinite.m4: New file.
23200         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
23201         * modules/isfinite: New file.
23202         * modules/isfinite-tests: New file.
23203         * tests/tests-isfinite.c: New file.
23204         * doc/functions/isfinite.texi: Mention isfinite module.
23205         * MODULES.html.sh: Mention new module.
23206
23207 2007-10-27  Ben Pfaff  <blp@gnu.org>
23208
23209         Ralf Wildenhues reported that Tru64 4.0D declares the round
23210         functions but does not have definitions.
23211         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
23212         cannot be found in any library, set the output variable to
23213         "missing" instead of "".
23214         * m4/round.m4: Also use our substitute if we cannot find round in
23215         any library, even if it is declared.
23216         * m4/roundf.m4: Likewise for roundf.
23217         * m4/roundl.m4: Likewise for roundl.
23218         * lib/math.in.h: Undefine roundf, round, roundl before defining
23219         their replacements, to allow for hypothetical systems where these
23220         may be defined as macros but not available in libraries.
23221
23222 2007-10-27  Bruno Haible  <bruno@clisp.org>
23223
23224         * doc/gnulib.texi: Invoke @firstparagraphindent.
23225         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
23226         changes in gnulib.
23227         (Source changes): New section.
23228
23229 2007-10-26  Bruno Haible  <bruno@clisp.org>
23230
23231         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
23232         borrowed from autoconf.
23233
23234 2007-10-26  Bruno Haible  <bruno@clisp.org>
23235
23236         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
23237         strerror returned the empty string. Needed on HP-UX 11.00.
23238
23239 2007-10-24  Micah Cowan  <micah@cowan.name>
23240
23241         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
23242         * build-aux/bootstrap: Remove support for now-unnecessary option,
23243         --cvs-user, and envvars CVS_USER, CVS_RSH.
23244
23245 2007-10-24  Jim Meyering  <meyering@redhat.com>
23246
23247         Avoid diagnostics from sha1sum when there is no cached checksum.
23248         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
23249         if the po.s1 file hasn't been created yet.
23250
23251         * build-aux/bootstrap: Sync from coreutils:
23252         2007-10-24  Jim Meyering  <meyering@redhat.com>
23253         Get gnulib from the git repository, not from an obsolete cvs one.
23254         * build-aux/bootstrap: Suggestion from Micah Cowan.
23255         2007-10-04  Jim Meyering  <jim@meyering.net>
23256         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
23257         (update_po_files): Work also when there are no .po files in po/.
23258
23259 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
23260
23261         * README: Append ".git" to git and cg examples.
23262         Problem reported by Benoit Sigoure.
23263
23264 2007-10-23  Micah Cowan  <micah@cowan.name>
23265
23266         * users.txt: Add wget.
23267
23268 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23269
23270         Fix linking of some unistdio tests on FreeBSD.
23271         * modules/unistdio/u16-vsnprintf-tests
23272         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
23273         * modules/unistdio/u16-vsprintf-tests
23274         (test_u16_vsnprintf1_LDADD): Likewise.
23275         * modules/unistdio/u32-vsnprintf-tests
23276         (test_u32_vsnprintf1_LDADD): Likewise.
23277         * modules/unistdio/u32-vsprintf-tests
23278         (test_u32_vsprintf1_LDADD): Likewise.
23279         * modules/unistdio/u8-vsnprintf-tests
23280         (test_u8_vsnprintf1_LDADD): Likewise.
23281         * modules/unistdio/u8-vsprintf-tests
23282         (test_u8_vsprintf1_LDADD): Likewise.
23283         * modules/unistdio/ulc-vsnprintf-tests
23284         (test_ulc_vsnprintf1_LDADD): Likewise.
23285         * modules/unistdio/ulc-vsprintf-tests
23286         (test_ulc_vsprintf1_LDADD): Likewise.
23287
23288         Fix linking of some uniconv tests on FreeBSD.
23289         * modules/uniconv/u16-conv-from-enc-tests
23290         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
23291         * modules/uniconv/u16-conv-to-enc-tests
23292         (test_u16_conv_to_enc_LDADD): Likewise.
23293         * modules/uniconv/u16-strconv-from-enc-tests
23294         (test_u16_strconv_from_enc_LDADD): Likewise.
23295         * modules/uniconv/u16-strconv-to-enc-tests
23296         (test_u16_strconv_to_enc_LDADD): Likewise.
23297         * modules/uniconv/u32-conv-from-enc-tests
23298         (test_u32_conv_from_enc_LDADD): Likewise.
23299         * modules/uniconv/u32-conv-to-enc-tests
23300         (test_u32_conv_to_enc_LDADD): Likewise.
23301         * modules/uniconv/u32-strconv-from-enc-tests
23302         (test_u32_strconv_from_enc_LDADD): Likewise.
23303         * modules/uniconv/u32-strconv-to-enc-tests
23304         (test_u32_strconv_to_enc_LDADD): Likewise.
23305         * modules/uniconv/u8-conv-from-enc-tests
23306         (test_u8_conv_from_enc_LDADD): Likewise.
23307         * modules/uniconv/u8-conv-to-enc-tests
23308         (test_u8_conv_to_enc_LDADD): Likewise.
23309         * modules/uniconv/u8-strconv-from-enc-tests
23310         (test_u8_strconv_from_enc_LDADD): Likewise.
23311         * modules/uniconv/u8-strconv-to-enc-tests
23312         (test_u8_strconv_to_enc_LDADD): Likewise.
23313
23314 2007-10-22  Bruno Haible  <bruno@clisp.org>
23315
23316         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
23317         size.
23318
23319 2007-10-22  Eric Blake  <ebb9@byu.net>
23320
23321         Tweak x*printf documentation.
23322         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
23323         variable name and comments.
23324         Suggested by Bruno Haible.
23325
23326 2007-10-22  Bruno Haible  <bruno@clisp.org>
23327
23328         * lib/acl.c (copy_acl): Fix file name in comment.
23329
23330 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23331
23332         Fix Tru64 problem with stdbool.h.
23333         * lib/stdbool.in.h (false, true):
23334         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
23335         Don't declare as an enum in this situation; it runs afoul of Tru64.
23336         Problem reported by Steven M. Schweda in
23337         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
23338
23339 2007-10-22  Eric Blake  <ebb9@byu.net>
23340
23341         Also wrap vf?printf.
23342         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
23343         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
23344         (xvprintf, xvfprintf): New functions.
23345
23346 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23347
23348         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
23349         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
23350
23351         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
23352         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
23353
23354 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23355
23356         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
23357         by Bruno Haible.
23358
23359 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23360
23361         * lib/getloadavg.c
23362         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
23363         Undef `sys' after including sys/table.h, for Tru64 4.0D.
23364
23365         * tests/test-i-ring.c: Work for C89.
23366
23367 2007-10-22  Bruno Haible  <bruno@clisp.org>
23368
23369         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
23370         -1u, in preprocessor expression, so that we don't test for the bug
23371         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
23372         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
23373
23374 2007-10-22  Eric Blake  <ebb9@byu.net>
23375
23376         * tests/test-yesno.sh: Silence stderr during test.
23377
23378 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23379
23380         * modules/crypto/gc-camellia: New file.
23381
23382         * m4/gc-camellia.m4: New file.
23383
23384         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
23385
23386         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
23387
23388 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23389
23390         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
23391         --help to stdout.  Reported by sms@antinode.org (Steven
23392         M. Schweda).
23393
23394 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23395
23396         * users.txt: Fix link to libksba.
23397
23398 2007-10-21  Ben Pfaff  <blp@gnu.org>
23399
23400         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
23401         round.c roundf implementation that depends on floorf and ceilf to
23402         be tested unconditionally.
23403
23404 2007-10-21  Ben Pfaff  <blp@gnu.org>
23405
23406         * m4/check-libm-func.m4: Removed.
23407         * m4/check-math-lib.m4: New file.
23408         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
23409         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
23410         definition and lack of AC_LIBOBJ([roundf]).
23411         * m4/roundl.m4: Ditto, and similarly for roundl.
23412         * modules/round: Reference new m4 file.
23413         * modules/roundf: Ditto.
23414         * modules/roundl: Ditto.
23415         * tests/test-round2.c (main): Use ROUND instead of round.
23416         Bug report from Bruno Haible.
23417
23418 2007-10-21  Bruno Haible  <bruno@clisp.org>
23419
23420         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
23421         context.
23422
23423 2007-10-21  Bruno Haible  <bruno@clisp.org>
23424
23425         * tests/test-wcwidth.c (main): Allow negative result for some control
23426         characters.
23427
23428         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
23429         Needed on OSF/1 5.1.
23430
23431 2007-10-21  Bruno Haible  <bruno@clisp.org>
23432
23433         * tests/test-floorf1.c: Include isnanf.h.
23434         (main): Use isnanf() instead of isnan().
23435         * tests/test-ceilf1.c: Include isnanf.h.
23436         (main): Use isnanf() instead of isnan().
23437         * tests/test-truncf1.c: Include isnanf.h.
23438         (main): Use isnanf() instead of isnan().
23439         * tests/test-roundf1.c: Include isnanf.h.
23440         (main): Use isnanf() instead of isnan().
23441
23442 2007-10-21  Eric Blake  <ebb9@byu.net>
23443
23444         * users.txt: Update URL for m4.
23445
23446 2007-10-21  Bruno Haible  <bruno@clisp.org>
23447
23448         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
23449
23450 2007-10-21  Bruno Haible  <bruno@clisp.org>
23451
23452         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
23453         Git's management files if the CVS files are not present.
23454
23455 2007-10-20  Bruno Haible  <bruno@clisp.org>
23456
23457         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
23458         gcc-3.4.x.
23459
23460 2007-10-20  Ben Pfaff  <blp@gnu.org>
23461
23462         * lib/math.in.h: Declare round, roundf, roundl if we are providing
23463         implementations.
23464         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
23465         * lib/round.c: New file.
23466         * lib/roundf.c: New file.
23467         * lib/roundl.c: New file.
23468         * m4/round.m4: New file.
23469         * m4/roundf.m4: New file.
23470         * m4/roundl.m4: New file.
23471         * m4/check-libm-func-m4: New file.
23472         * modules/math: Replace round, roundf, roundl related @VARS@ in
23473         math.in.h.
23474         * modules/round: New file.
23475         * modules/round-tests: New file.
23476         * modules/roundf: New file.
23477         * modules/roundf-tests: New file.
23478         * modules/roundl: New file.
23479         * modules/roundl-tests: New file.
23480         * tests/test-round1.c: New file.
23481         * tests/test-round2.c: New file.
23482         * tests/test-roundf1.c: New file.
23483         * tests/test-roundf2.c: New file.
23484         * tests/test-roundl.c: New file.
23485         * doc/functions/round.texi: Mention round module.
23486         * doc/functions/roundf.texi: Mention roundf module.
23487         * doc/functions/roundl.texi: Mention roundl module.
23488         * MODULES.html.sh: Mention new modules.
23489         Thanks to Bruno Haible for suggestions.
23490
23491 2007-10-20  Jim Meyering  <meyering@redhat.com>
23492
23493         * lib/xprintf.c: Include <config.h> unconditionally.
23494
23495         Change xprintf's license to GPL.
23496         * modules/xprintf (License): s/LGPL/GPL/, since this module
23497         depends on modules (exit and exitfail) which are GPL.
23498         Suggestion from Bruno Haible.
23499
23500         xprintf fixes.
23501         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
23502         Use a clearer diagnostic.
23503         Patch from Bruno Haible.
23504
23505 2007-10-20  Bruno Haible  <bruno@clisp.org>
23506
23507         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
23508         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
23509         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23510
23511 2007-10-20  Bruno Haible  <bruno@clisp.org>
23512
23513         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
23514         precision in the comparison result > x - 1 or similar.
23515         * tests/test-ceilf2.c (correct_result_p): Likewise.
23516         * tests/test-truncf2.c (correct_result_p): Likewise.
23517         * tests/test-trunc2.c (correct_result_p): Likewise.
23518         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23519
23520 2007-10-20  Bruno Haible  <bruno@clisp.org>
23521
23522         * modules/ceil: New file.
23523         * m4/ceil.m4: New file.
23524         * doc/functions/ceil.texi: Mention the 'ceil' module.
23525
23526 2007-10-20  Bruno Haible  <bruno@clisp.org>
23527
23528         * modules/floor: New file.
23529         * m4/floor.m4: New file.
23530         * doc/functions/floor.texi: Mention the 'floor' module.
23531
23532 2007-10-20  Bruno Haible  <bruno@clisp.org>
23533
23534         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
23535         of %a.
23536         * modules/floorf-tests (Depends-on): Likewise.
23537         * modules/truncf-tests (Depends-on): Likewise.
23538         * modules/trunc-tests (Depends-on): Likewise.
23539         Reported by Ben Pfaff.
23540
23541 2007-10-19  Jim Meyering  <meyering@redhat.com>
23542
23543         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
23544         Don't bother testing specific errno values.  Just test ferror.
23545
23546         New module: xprintf
23547         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
23548
23549 2007-10-19  Bruno Haible  <bruno@clisp.org>
23550
23551         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
23552         syntax.
23553         * modules/javaexec (Makefile.am): Likewise.
23554         * modules/relocatable-prog (Makefile.am): Likewise.
23555         Suggested by Jim Meyering.
23556
23557 2007-10-18  Bruno Haible  <bruno@clisp.org>
23558
23559         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
23560         Reported by Jim Meyering.
23561
23562 2007-10-18  Eric Blake  <ebb9@byu.net>
23563
23564         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
23565
23566 2007-10-18  Bruno Haible  <bruno@clisp.org>
23567
23568         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
23569         the format string into writable memory. Needed in Fortify conditions.
23570
23571 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
23572             Bruno Haible  <bruno@clisp.org>
23573
23574         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
23575         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
23576         * modules/trim (Depends-on): Add mbchar.
23577         (configure.ac): Add gl_FUNC_MBRTOWC.
23578         (Makefile.am): Augment lib_SOURCES.
23579
23580 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
23581
23582         Modify glob.c to use fstatat and dirfd, to simplify it.
23583         Suggested by Eric Blake.
23584         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
23585         Don't include <stdbool.h>; not used.
23586         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
23587         (link_exists_p): Simplify implementation, since we can now assume
23588         dirfd and fstatat.
23589         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
23590
23591 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23592
23593         * gnulib-tool (func_get_dependencies): Fix sed script to
23594         match only tests.
23595
23596 2007-10-17  Bruno Haible  <bruno@clisp.org>
23597
23598         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
23599         allow locale names without encoding suffix.
23600         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
23601         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
23602
23603 2007-10-16  Bruno Haible  <bruno@clisp.org>
23604
23605         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
23606         * lib/getgroups.c (getgroups): Likewise.
23607         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
23608
23609 2007-10-16  Bruno Haible  <bruno@clisp.org>
23610
23611         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
23612         * modules/malloc-posix (License): Likewise.
23613         * modules/realloc-posix (License): Likewise.
23614         * modules/calloc-posix (License): Likewise.
23615         * modules/intprops (License): Change from GPL to LGPL, with
23616         Paul Eggert's approval.
23617
23618 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23619
23620         Merge glibc changes into lib/glob.c.
23621
23622         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
23623         2007-10-15 04:59:03 UTC.  Here are the changes:
23624
23625         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
23626
23627         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
23628
23629         * lib/glob.c: Add some branch prediction throughout.
23630
23631         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
23632
23633         [BZ #5103]
23634         * lib/glob.c (glob): Recognize patterns starting \/.
23635
23636         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
23637
23638         [BZ #3996]
23639         * lib/glob.c (attribute_hidden): Define if not defined.
23640         (glob): Unescape dirname, filename or username when needed and not
23641         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
23642         is NULL.  Handle unescaped [ in pattern without closing ].
23643         Don't pass GLOB_CHECK down to recursive glob for directories.
23644         (__glob_pattern_type): New function.
23645         (__glob_pattern_p): Implement using __glob_pattern_type.
23646         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
23647         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
23648         Remove unreachable code.
23649
23650         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
23651
23652         * lib/glob.c (glob_in_dir): Add some comments and asserts to
23653         explain why there are no leaks.
23654
23655         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
23656
23657         [BZ #3253]
23658         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
23659         time, rather allocate increasingly bigger arrays of pointers, if
23660         possible with alloca, if too large with malloc.
23661
23662 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23663
23664         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
23665         Problem reported by H.Merijn Brand in
23666         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
23667         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
23668         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
23669
23670 2007-10-15  Bruno Haible  <bruno@clisp.org>
23671
23672         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
23673         with explicit rpl_ prefix.
23674         * lib/fopen.c (fopen): Likewise.
23675         * lib/freopen.c (freopen): Likewise.
23676         * lib/iconv.c (iconv): Likewise.
23677         * lib/iconv_close.c (iconv_close): Likewise.
23678
23679 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23680
23681         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
23682
23683 2007-10-15  Bruno Haible  <bruno@clisp.org>
23684
23685         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
23686         <stddef.h> instead of <stdlib.h> since we only need NULL.
23687         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23688
23689 2007-10-15  Bruno Haible  <bruno@clisp.org>
23690
23691         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
23692         Replace paragraph talking about LIBOBJS.
23693         Reported by Colin Watson <cjwatson@debian.org>.
23694
23695 2007-10-15  Bruno Haible  <bruno@clisp.org>
23696
23697         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
23698         <stdlib.h> before using NULL.
23699
23700 2007-10-15  Simon Josefsson  <simon@josefsson.org>
23701
23702         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
23703         Reported by Albert Chin <china@thewrittenword.com>.
23704
23705 2007-10-14  Bruno Haible  <bruno@clisp.org>
23706
23707         * modules/iconv_open-utf-tests: New file.
23708         * tests/test-iconv-utf.c: New file.
23709
23710         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
23711         * modules/iconv_open-utf: New file.
23712         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
23713         (iconv, iconv_close): New declarations.
23714         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
23715         be defined.
23716         (iconv_open): Add special handling of conversion between UTF-8 and
23717         UTF-{16,32}{BE,LE}.
23718         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
23719         * lib/iconv_close.c: New file.
23720         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
23721         gl_FUNC_ICONV_OPEN.
23722         (gl_FUNC_ICONV_OPEN): Use it.
23723         (gl_FUNC_ICONV_OPEN_UTF): New macro.
23724         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
23725         and REPLACE_ICONV_UTF.
23726         * modules/iconv_open (Depends-on): Add c-strcase.
23727         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
23728         ICONV_CONST.
23729         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
23730
23731 2007-10-13  Albert Chin  <china@thewrittenword.com>
23732             Bruno Haible  <bruno@clisp.org>
23733
23734         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
23735         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
23736
23737 2007-10-13  Bruno Haible  <bruno@clisp.org>
23738
23739         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
23740         defined, use the ISO C99 inline semantics.
23741         * lib/argp.h (ARGP_EI): Likewise.
23742
23743 2007-10-13  Bruno Haible  <bruno@clisp.org>
23744
23745         Handle 'inline' change in gcc 4.3.0.
23746         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
23747         argp_fmtstream_write, argp_fmtstream_set_lmargin,
23748         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
23749         argp_fmtstream_point): Disable 'extern' declaration if the function
23750         definition is going to be provided inline.
23751         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
23752         semantics, not the ISO C99 inline semantics.
23753         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
23754         'extern' declaration if the function definition is going to be provided
23755         inline.
23756         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
23757         the GNU C inline semantics, not the ISO C99 inline semantics. With
23758         GCC 4.2, avoid a warning.
23759
23760 2007-10-13  Bruno Haible  <bruno@clisp.org>
23761
23762         * lib/freading.h (freading): Enable the use of __freading for
23763         glibc >= 2.7.
23764         * lib/freading.c (freading): Likewise.
23765
23766 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
23767
23768         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
23769         "warning: C99 inline functions are not supported; using GNU89".
23770
23771 2007-10-12  Bruno Haible  <bruno@clisp.org>
23772
23773         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
23774         of 2.
23775         * tests/test-ceilf2.c: New file.
23776         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
23777
23778         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
23779         * modules/ceilf-tests: Update.
23780
23781 2007-10-12  Bruno Haible  <bruno@clisp.org>
23782
23783         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
23784         of 2.
23785         * tests/test-floorf2.c: New file.
23786         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
23787
23788         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
23789         * modules/floorf-tests: Update.
23790
23791 2007-10-12  Bruno Haible  <bruno@clisp.org>
23792
23793         * tests/test-trunc2.c: New file.
23794         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
23795
23796         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
23797         * modules/trunc-tests: Update.
23798
23799 2007-10-12  Bruno Haible  <bruno@clisp.org>
23800
23801         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
23802         of 2.
23803         * tests/test-truncf2.c: New file.
23804         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
23805
23806         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
23807         * modules/truncf-tests: Update.
23808
23809 2007-10-11  Eric Blake  <ebb9@byu.net>
23810
23811         Don't claim strerror is broken on Interix.
23812         * doc/functions/strerror.texi (strerror): Known broken systems are
23813         now Solaris 8, and not Interix.
23814         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
23815         Interix on cross-compile.
23816         Reported by Martin Koeppe in
23817         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
23818
23819 2007-10-11  Bruno Haible  <bruno@clisp.org>
23820
23821         * modules/i-ring-tests: New file.
23822         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
23823         instead of assert.
23824
23825 2007-10-11  Bruno Haible  <bruno@clisp.org>
23826
23827         * modules/filenamecat-tests: New file.
23828         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
23829         * lib/filenamecat.c: Remove test code.
23830
23831 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
23832
23833         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
23834
23835         * lib/strerror.c: Include <string.h> always, to test interface,
23836         and to remove the need for the dummy.
23837         Include intprops.h to compute width instead of doing it ourselves
23838         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
23839         (strerror): Define it to return NULL if there's no system strerror.
23840         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
23841         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
23842         ancient pre-strerror Unix systems well any more.  Saying "unknown
23843         system error" is enough.
23844         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
23845         simpler strerror.c implementation.
23846         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
23847         Simplify the tests to reflect the simpler strerror implementation.
23848         * modules/strerror (Depends-on): Add intprops.
23849
23850 2007-10-09  Eric Blake  <ebb9@byu.net>
23851
23852         Silence test-fpending.
23853         * modules/fpending-tests (Files): Add wrapper script.
23854         * tests/test-fpending.sh: New file.
23855
23856 2007-10-09  Bruno Haible  <bruno@clisp.org>
23857
23858         * MODULES.html.sh (func_module): Don't create a hyperlink for
23859         function names like 'printf_frexp'.
23860         (Misc): Add crc, memxor.
23861         (Characteristics of floating types): New section.
23862         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
23863         isnanf-nolibm, signbit, trunc, truncf, truncl.
23864         (Enhancements for ISO C 99 functions): New subsection Input/output.
23865         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
23866         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
23867         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
23868         (Compatibility checks for POSIX:2001 functions): Add clock-time.
23869         (Enhancements for POSIX:2001 functions): Add chdir-long.
23870         (File system functions): Add areadlink, chdir-safer, read-file.
23871         Remove cycle-check.
23872         (File system as inode set): New section.
23873         (Date and time): Add gethrxtime.
23874         (Multithreading): Add openmp.
23875         (Internationalization functions): Add localename.
23876         (Unicode string functions): Add unistr/u*-mbsnlen.
23877         (Support for maintaining and releasing projects): Add git-version-gen.
23878         (Lone files): Remove directories.
23879
23880 2007-10-08  Ben Pfaff  <blp@gnu.org>
23881
23882         * lib/xmalloca.h: Fix typo in comment.
23883
23884 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
23885
23886         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
23887         when avoiding problems with integer overflow.  Use a portable test
23888         instead.
23889
23890 2007-10-08  Simon Josefsson  <simon@josefsson.org>
23891
23892         * modules/dummy (License): Change to LGPLv2+.
23893         * modules/float (License): Likewise
23894         * modules/realloc (License): Likewise
23895         * modules/stdlib (License): Likewise
23896
23897 2007-10-07  Bruno Haible  <bruno@clisp.org>
23898
23899         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
23900         * floor.c (TWO_MANT_DIG): Likewise.
23901         * ceil.c (TWO_MANT_DIG): Likewise.
23902         Reported by Ben Pfaff.
23903
23904 2007-10-07  Bruno Haible  <bruno@clisp.org>
23905
23906         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
23907         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
23908         * lib/frexp.c (FUNC): Likewise.
23909         * lib/printf-frexp.h (printf_frexp): Likewise.
23910         * lib/printf-frexpl.h (printf_frexpl): Likewise.
23911         * lib/printf-frexp.c (FUNC): Likewise.
23912         Suggested by Jim Meyering.
23913
23914 2007-10-07  Jim Meyering  <meyering@redhat.com>
23915
23916         Make xnanosleep's integer overflow test more robust.
23917         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
23918         so that gcc-4.3.0 doesn't optimize away this test for overflow.
23919
23920 2007-10-07  Bruno Haible  <bruno@clisp.org>
23921
23922         * NEWS: Mention the license change.
23923
23924         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
23925         abbreviations in the modules files.
23926
23927         Change copyright notice from GPLv2+ to GPLv3+.
23928         * README: Change copyright notice.
23929         * MODULES.html.sh: Likewise.
23930         * build-aux/bootstrap.conf: Likewise.
23931         * build-aux/config.libpath: Likewise.
23932         * build-aux/csharpcomp.sh.in: Likewise.
23933         * build-aux/csharpexec.sh.in: Likewise.
23934         * build-aux/install-reloc: Likewise.
23935         * build-aux/javacomp.sh.in: Likewise.
23936         * build-aux/javaexec.sh.in: Likewise.
23937         * build-aux/ldd.sh.in: Likewise.
23938         * build-aux/reloc-ldflags: Likewise.
23939         * build-aux/relocatable.sh.in: Likewise.
23940         * build-aux/x-to-1.in: Likewise.
23941         * check-module: Likewise.
23942         * config/srclistvars.sh: Likewise.
23943         * gnulib-tool: Likewise.
23944         * lib/acl-internal.h: Likewise.
23945         * lib/acl.c: Likewise.
23946         * lib/acl.h: Likewise.
23947         * lib/acl_entries.c: Likewise.
23948         * lib/areadlink-with-size.c: Likewise.
23949         * lib/areadlink.c: Likewise.
23950         * lib/areadlink.h: Likewise.
23951         * lib/argmatch.c: Likewise.
23952         * lib/argmatch.h: Likewise.
23953         * lib/argp-ba.c: Likewise.
23954         * lib/argp-eexst.c: Likewise.
23955         * lib/argp-fmtstream.c: Likewise.
23956         * lib/argp-fmtstream.h: Likewise.
23957         * lib/argp-fs-xinl.c: Likewise.
23958         * lib/argp-help.c: Likewise.
23959         * lib/argp-namefrob.h: Likewise.
23960         * lib/argp-parse.c: Likewise.
23961         * lib/argp-pin.c: Likewise.
23962         * lib/argp-pv.c: Likewise.
23963         * lib/argp-pvh.c: Likewise.
23964         * lib/argp-xinl.c: Likewise.
23965         * lib/argp.h: Likewise.
23966         * lib/at-func.c: Likewise.
23967         * lib/atanl.c: Likewise.
23968         * lib/backupfile.c: Likewise.
23969         * lib/backupfile.h: Likewise.
23970         * lib/basename.c: Likewise.
23971         * lib/binary-io.h: Likewise.
23972         * lib/byteswap.in.h: Likewise.
23973         * lib/c-stack.c: Likewise.
23974         * lib/c-stack.h: Likewise.
23975         * lib/c-strcasestr.c: Likewise.
23976         * lib/c-strcasestr.h: Likewise.
23977         * lib/c-strstr.c: Likewise.
23978         * lib/c-strstr.h: Likewise.
23979         * lib/c-strtod.c: Likewise.
23980         * lib/calloc.c: Likewise.
23981         * lib/canon-host.c: Likewise.
23982         * lib/canon-host.h: Likewise.
23983         * lib/canonicalize-lgpl.c: Likewise.
23984         * lib/canonicalize.c: Likewise.
23985         * lib/canonicalize.h: Likewise.
23986         * lib/ceil.c: Likewise.
23987         * lib/ceilf.c: Likewise.
23988         * lib/ceill.c: Likewise.
23989         * lib/chdir-long.c: Likewise.
23990         * lib/chdir-long.h: Likewise.
23991         * lib/chdir-safer.c: Likewise.
23992         * lib/chdir-safer.h: Likewise.
23993         * lib/chown.c: Likewise.
23994         * lib/classpath.c: Likewise.
23995         * lib/classpath.h: Likewise.
23996         * lib/clean-temp.c: Likewise.
23997         * lib/clean-temp.h: Likewise.
23998         * lib/cloexec.c: Likewise.
23999         * lib/close-stream.c: Likewise.
24000         * lib/closein.c: Likewise.
24001         * lib/closein.h: Likewise.
24002         * lib/closeout.c: Likewise.
24003         * lib/closeout.h: Likewise.
24004         * lib/concat-filename.c: Likewise.
24005         * lib/copy-file.c: Likewise.
24006         * lib/copy-file.h: Likewise.
24007         * lib/count-one-bits.h: Likewise.
24008         * lib/crc.c: Likewise.
24009         * lib/crc.h: Likewise.
24010         * lib/creat-safer.c: Likewise.
24011         * lib/csharpcomp.c: Likewise.
24012         * lib/csharpcomp.h: Likewise.
24013         * lib/csharpexec.c: Likewise.
24014         * lib/csharpexec.h: Likewise.
24015         * lib/cycle-check.c: Likewise.
24016         * lib/cycle-check.h: Likewise.
24017         * lib/diacrit.c: Likewise.
24018         * lib/diacrit.h: Likewise.
24019         * lib/diffseq.h: Likewise.
24020         * lib/dirchownmod.c: Likewise.
24021         * lib/dirent.in.h: Likewise.
24022         * lib/dirfd.c: Likewise.
24023         * lib/dirfd.h: Likewise.
24024         * lib/dirname.c: Likewise.
24025         * lib/dirname.h: Likewise.
24026         * lib/dummy.c: Likewise.
24027         * lib/dup-safer.c: Likewise.
24028         * lib/dup2.c: Likewise.
24029         * lib/eealloc.h: Likewise.
24030         * lib/error.c: Likewise.
24031         * lib/error.h: Likewise.
24032         * lib/euidaccess.c: Likewise.
24033         * lib/exclude.c: Likewise.
24034         * lib/exclude.h: Likewise.
24035         * lib/execute.c: Likewise.
24036         * lib/execute.h: Likewise.
24037         * lib/exitfail.c: Likewise.
24038         * lib/exitfail.h: Likewise.
24039         * lib/expl.c: Likewise.
24040         * lib/fatal-signal.c: Likewise.
24041         * lib/fatal-signal.h: Likewise.
24042         * lib/fbufmode.c: Likewise.
24043         * lib/fbufmode.h: Likewise.
24044         * lib/fchdir.c: Likewise.
24045         * lib/fchmodat.c: Likewise.
24046         * lib/fchownat.c: Likewise.
24047         * lib/fcntl--.h: Likewise.
24048         * lib/fcntl-safer.h: Likewise.
24049         * lib/fcntl.in.h: Likewise.
24050         * lib/fd-safer.c: Likewise.
24051         * lib/fflush.c: Likewise.
24052         * lib/file-has-acl.c: Likewise.
24053         * lib/file-set.c: Likewise.
24054         * lib/file-type.c: Likewise.
24055         * lib/file-type.h: Likewise.
24056         * lib/fileblocks.c: Likewise.
24057         * lib/filemode.c: Likewise.
24058         * lib/filemode.h: Likewise.
24059         * lib/filename.h: Likewise.
24060         * lib/filenamecat.c: Likewise.
24061         * lib/filenamecat.h: Likewise.
24062         * lib/findprog.c: Likewise.
24063         * lib/findprog.h: Likewise.
24064         * lib/float.in.h: Likewise.
24065         * lib/floor.c: Likewise.
24066         * lib/floorf.c: Likewise.
24067         * lib/floorl.c: Likewise.
24068         * lib/fopen-safer.c: Likewise.
24069         * lib/fopen.c: Likewise.
24070         * lib/fpending.c: Likewise.
24071         * lib/fpending.h: Likewise.
24072         * lib/fprintf.c: Likewise.
24073         * lib/fprintftime.h: Likewise.
24074         * lib/fpucw.h: Likewise.
24075         * lib/fpurge.c: Likewise.
24076         * lib/fpurge.h: Likewise.
24077         * lib/freadable.c: Likewise.
24078         * lib/freadable.h: Likewise.
24079         * lib/freadahead.c: Likewise.
24080         * lib/freadahead.h: Likewise.
24081         * lib/freading.c: Likewise.
24082         * lib/freading.h: Likewise.
24083         * lib/free.c: Likewise.
24084         * lib/freopen.c: Likewise.
24085         * lib/frexp.c: Likewise.
24086         * lib/frexpl.c: Likewise.
24087         * lib/fseek.c: Likewise.
24088         * lib/fseterr.c: Likewise.
24089         * lib/fseterr.h: Likewise.
24090         * lib/fstatat.c: Likewise.
24091         * lib/fstrcmp.c: Likewise.
24092         * lib/fstrcmp.h: Likewise.
24093         * lib/fsusage.c: Likewise.
24094         * lib/fsusage.h: Likewise.
24095         * lib/ftell.c: Likewise.
24096         * lib/ftello.c: Likewise.
24097         * lib/fts-cycle.c: Likewise.
24098         * lib/fts.c: Likewise.
24099         * lib/fts_.h: Likewise.
24100         * lib/full-read.c: Likewise.
24101         * lib/full-read.h: Likewise.
24102         * lib/full-write.c: Likewise.
24103         * lib/full-write.h: Likewise.
24104         * lib/fwritable.c: Likewise.
24105         * lib/fwritable.h: Likewise.
24106         * lib/fwriteerror.c: Likewise.
24107         * lib/fwriteerror.h: Likewise.
24108         * lib/fwriting.c: Likewise.
24109         * lib/fwriting.h: Likewise.
24110         * lib/gcd.c: Likewise.
24111         * lib/gcd.h: Likewise.
24112         * lib/getcwd.c: Likewise.
24113         * lib/getdate.h: Likewise.
24114         * lib/getdate.y: Likewise.
24115         * lib/getdomainname.c: Likewise.
24116         * lib/getdomainname.h: Likewise.
24117         * lib/getgroups.c: Likewise.
24118         * lib/gethostname.c: Likewise.
24119         * lib/gethrxtime.c: Likewise.
24120         * lib/gethrxtime.h: Likewise.
24121         * lib/getloadavg.c: Likewise.
24122         * lib/getndelim2.c: Likewise.
24123         * lib/getndelim2.h: Likewise.
24124         * lib/getnline.c: Likewise.
24125         * lib/getnline.h: Likewise.
24126         * lib/getopt.c: Likewise.
24127         * lib/getopt.in.h: Likewise.
24128         * lib/getopt1.c: Likewise.
24129         * lib/getopt_int.h: Likewise.
24130         * lib/getpagesize.h: Likewise.
24131         * lib/getsubopt.c: Likewise.
24132         * lib/gettime.c: Likewise.
24133         * lib/getugroups.c: Likewise.
24134         * lib/getugroups.h: Likewise.
24135         * lib/getusershell.c: Likewise.
24136         * lib/gl_anyavltree_list1.h: Likewise.
24137         * lib/gl_anyavltree_list2.h: Likewise.
24138         * lib/gl_anyhash_list1.h: Likewise.
24139         * lib/gl_anyhash_list2.h: Likewise.
24140         * lib/gl_anylinked_list1.h: Likewise.
24141         * lib/gl_anylinked_list2.h: Likewise.
24142         * lib/gl_anyrbtree_list1.h: Likewise.
24143         * lib/gl_anyrbtree_list2.h: Likewise.
24144         * lib/gl_anytree_list1.h: Likewise.
24145         * lib/gl_anytree_list2.h: Likewise.
24146         * lib/gl_anytree_oset.h: Likewise.
24147         * lib/gl_anytreehash_list1.h: Likewise.
24148         * lib/gl_anytreehash_list2.h: Likewise.
24149         * lib/gl_array_list.c: Likewise.
24150         * lib/gl_array_list.h: Likewise.
24151         * lib/gl_array_oset.c: Likewise.
24152         * lib/gl_array_oset.h: Likewise.
24153         * lib/gl_avltree_list.c: Likewise.
24154         * lib/gl_avltree_list.h: Likewise.
24155         * lib/gl_avltree_oset.c: Likewise.
24156         * lib/gl_avltree_oset.h: Likewise.
24157         * lib/gl_avltreehash_list.c: Likewise.
24158         * lib/gl_avltreehash_list.h: Likewise.
24159         * lib/gl_carray_list.c: Likewise.
24160         * lib/gl_carray_list.h: Likewise.
24161         * lib/gl_linked_list.c: Likewise.
24162         * lib/gl_linked_list.h: Likewise.
24163         * lib/gl_linkedhash_list.c: Likewise.
24164         * lib/gl_linkedhash_list.h: Likewise.
24165         * lib/gl_list.c: Likewise.
24166         * lib/gl_list.h: Likewise.
24167         * lib/gl_oset.c: Likewise.
24168         * lib/gl_oset.h: Likewise.
24169         * lib/gl_rbtree_list.c: Likewise.
24170         * lib/gl_rbtree_list.h: Likewise.
24171         * lib/gl_rbtree_oset.c: Likewise.
24172         * lib/gl_rbtree_oset.h: Likewise.
24173         * lib/gl_rbtreehash_list.c: Likewise.
24174         * lib/gl_rbtreehash_list.h: Likewise.
24175         * lib/gl_sublist.c: Likewise.
24176         * lib/gl_sublist.h: Likewise.
24177         * lib/group-member.c: Likewise.
24178         * lib/group-member.h: Likewise.
24179         * lib/hard-locale.c: Likewise.
24180         * lib/hard-locale.h: Likewise.
24181         * lib/hash-pjw.c: Likewise.
24182         * lib/hash-pjw.h: Likewise.
24183         * lib/hash-triple.c: Likewise.
24184         * lib/hash.c: Likewise.
24185         * lib/hash.h: Likewise.
24186         * lib/human.c: Likewise.
24187         * lib/human.h: Likewise.
24188         * lib/i-ring.c: Likewise.
24189         * lib/i-ring.h: Likewise.
24190         * lib/idcache.c: Likewise.
24191         * lib/imaxabs.c: Likewise.
24192         * lib/imaxdiv.c: Likewise.
24193         * lib/inet_pton.c: Likewise.
24194         * lib/inet_pton.h: Likewise.
24195         * lib/intprops.h: Likewise.
24196         * lib/inttostr.c: Likewise.
24197         * lib/inttostr.h: Likewise.
24198         * lib/inttypes.in.h: Likewise.
24199         * lib/isapipe.c: Likewise.
24200         * lib/isdir.c: Likewise.
24201         * lib/isnan.c: Likewise.
24202         * lib/isnan.h: Likewise.
24203         * lib/isnanf.c: Likewise.
24204         * lib/isnanf.h: Likewise.
24205         * lib/isnanl-nolibm.h: Likewise.
24206         * lib/isnanl.c: Likewise.
24207         * lib/isnanl.h: Likewise.
24208         * lib/javacomp.c: Likewise.
24209         * lib/javacomp.h: Likewise.
24210         * lib/javaexec.c: Likewise.
24211         * lib/javaexec.h: Likewise.
24212         * lib/javaversion.c: Likewise.
24213         * lib/javaversion.h: Likewise.
24214         * lib/javaversion.java: Likewise.
24215         * lib/lbrkprop.h: Likewise.
24216         * lib/lchmod.h: Likewise.
24217         * lib/lchown.c: Likewise.
24218         * lib/ldexpl.c: Likewise.
24219         * lib/linebreak.c: Likewise.
24220         * lib/linebreak.h: Likewise.
24221         * lib/linebuffer.c: Likewise.
24222         * lib/linebuffer.h: Likewise.
24223         * lib/locale.in.h: Likewise.
24224         * lib/logl.c: Likewise.
24225         * lib/long-options.c: Likewise.
24226         * lib/long-options.h: Likewise.
24227         * lib/lstat.c: Likewise.
24228         * lib/lstat.h: Likewise.
24229         * lib/math.in.h: Likewise.
24230         * lib/mbchar.c: Likewise.
24231         * lib/mbchar.h: Likewise.
24232         * lib/mbfile.h: Likewise.
24233         * lib/mbiter.h: Likewise.
24234         * lib/mbscasecmp.c: Likewise.
24235         * lib/mbscasestr.c: Likewise.
24236         * lib/mbschr.c: Likewise.
24237         * lib/mbscspn.c: Likewise.
24238         * lib/mbslen.c: Likewise.
24239         * lib/mbsncasecmp.c: Likewise.
24240         * lib/mbsnlen.c: Likewise.
24241         * lib/mbspbrk.c: Likewise.
24242         * lib/mbspcasecmp.c: Likewise.
24243         * lib/mbsrchr.c: Likewise.
24244         * lib/mbssep.c: Likewise.
24245         * lib/mbsspn.c: Likewise.
24246         * lib/mbsstr.c: Likewise.
24247         * lib/mbstok_r.c: Likewise.
24248         * lib/mbswidth.c: Likewise.
24249         * lib/mbswidth.h: Likewise.
24250         * lib/mbuiter.h: Likewise.
24251         * lib/memcasecmp.c: Likewise.
24252         * lib/memcasecmp.h: Likewise.
24253         * lib/memchr.c: Likewise.
24254         * lib/memcmp.c: Likewise.
24255         * lib/memcoll.c: Likewise.
24256         * lib/memcoll.h: Likewise.
24257         * lib/memcpy.c: Likewise.
24258         * lib/memrchr.c: Likewise.
24259         * lib/mkancesdirs.c: Likewise.
24260         * lib/mkdir-p.c: Likewise.
24261         * lib/mkdir-p.h: Likewise.
24262         * lib/mkdir.c: Likewise.
24263         * lib/mkdirat.c: Likewise.
24264         * lib/mkdtemp.c: Likewise.
24265         * lib/mkstemp-safer.c: Likewise.
24266         * lib/mkstemp.c: Likewise.
24267         * lib/modechange.c: Likewise.
24268         * lib/modechange.h: Likewise.
24269         * lib/mountlist.c: Likewise.
24270         * lib/mountlist.h: Likewise.
24271         * lib/mpsort.c: Likewise.
24272         * lib/nanosleep.c: Likewise.
24273         * lib/obstack.c: Likewise.
24274         * lib/obstack.h: Likewise.
24275         * lib/open-safer.c: Likewise.
24276         * lib/open.c: Likewise.
24277         * lib/openat-die.c: Likewise.
24278         * lib/openat-priv.h: Likewise.
24279         * lib/openat-proc.c: Likewise.
24280         * lib/openat.c: Likewise.
24281         * lib/openat.h: Likewise.
24282         * lib/pagealign_alloc.c: Likewise.
24283         * lib/pagealign_alloc.h: Likewise.
24284         * lib/physmem.c: Likewise.
24285         * lib/physmem.h: Likewise.
24286         * lib/pipe-safer.c: Likewise.
24287         * lib/pipe.c: Likewise.
24288         * lib/pipe.h: Likewise.
24289         * lib/posixtm.c: Likewise.
24290         * lib/posixtm.h: Likewise.
24291         * lib/posixver.c: Likewise.
24292         * lib/printf-frexp.c: Likewise.
24293         * lib/printf-frexp.h: Likewise.
24294         * lib/printf-frexpl.c: Likewise.
24295         * lib/printf-frexpl.h: Likewise.
24296         * lib/printf.c: Likewise.
24297         * lib/progname.c: Likewise.
24298         * lib/progname.h: Likewise.
24299         * lib/progreloc.c: Likewise.
24300         * lib/putenv.c: Likewise.
24301         * lib/quote.c: Likewise.
24302         * lib/quote.h: Likewise.
24303         * lib/quotearg.c: Likewise.
24304         * lib/quotearg.h: Likewise.
24305         * lib/raise.c: Likewise.
24306         * lib/readline.c: Likewise.
24307         * lib/readline.h: Likewise.
24308         * lib/readlink.c: Likewise.
24309         * lib/readtokens.c: Likewise.
24310         * lib/readtokens.h: Likewise.
24311         * lib/readtokens0.c: Likewise.
24312         * lib/readtokens0.h: Likewise.
24313         * lib/readutmp.c: Likewise.
24314         * lib/readutmp.h: Likewise.
24315         * lib/realloc.c: Likewise.
24316         * lib/relocwrapper.c: Likewise.
24317         * lib/rename-dest-slash.c: Likewise.
24318         * lib/rename.c: Likewise.
24319         * lib/rmdir.c: Likewise.
24320         * lib/rpmatch.c: Likewise.
24321         * lib/safe-read.c: Likewise.
24322         * lib/safe-read.h: Likewise.
24323         * lib/safe-write.c: Likewise.
24324         * lib/safe-write.h: Likewise.
24325         * lib/same-inode.h: Likewise.
24326         * lib/same.c: Likewise.
24327         * lib/same.h: Likewise.
24328         * lib/save-cwd.c: Likewise.
24329         * lib/save-cwd.h: Likewise.
24330         * lib/savedir.c: Likewise.
24331         * lib/savedir.h: Likewise.
24332         * lib/savewd.c: Likewise.
24333         * lib/savewd.h: Likewise.
24334         * lib/search.in.h: Likewise.
24335         * lib/setenv.c: Likewise.
24336         * lib/setenv.h: Likewise.
24337         * lib/settime.c: Likewise.
24338         * lib/sh-quote.c: Likewise.
24339         * lib/sh-quote.h: Likewise.
24340         * lib/sig2str.c: Likewise.
24341         * lib/sig2str.h: Likewise.
24342         * lib/signal.in.h: Likewise.
24343         * lib/signbitd.c: Likewise.
24344         * lib/signbitf.c: Likewise.
24345         * lib/signbitl.c: Likewise.
24346         * lib/sigprocmask.c: Likewise.
24347         * lib/sincosl.c: Likewise.
24348         * lib/sleep.c: Likewise.
24349         * lib/sprintf.c: Likewise.
24350         * lib/sqrtl.c: Likewise.
24351         * lib/stat-time.h: Likewise.
24352         * lib/stdio--.h: Likewise.
24353         * lib/stdio-safer.h: Likewise.
24354         * lib/stdlib--.h: Likewise.
24355         * lib/stdlib-safer.h: Likewise.
24356         * lib/stdlib.in.h: Likewise.
24357         * lib/stpcpy.c: Likewise.
24358         * lib/stpncpy.c: Likewise.
24359         * lib/strchrnul.c: Likewise.
24360         * lib/strcspn.c: Likewise.
24361         * lib/strerror.c: Likewise.
24362         * lib/strftime.c: Likewise.
24363         * lib/strftime.h: Likewise.
24364         * lib/striconveh.c: Likewise.
24365         * lib/striconveh.h: Likewise.
24366         * lib/striconveha.c: Likewise.
24367         * lib/striconveha.h: Likewise.
24368         * lib/stripslash.c: Likewise.
24369         * lib/strnlen1.c: Likewise.
24370         * lib/strnlen1.h: Likewise.
24371         * lib/strtod.c: Likewise.
24372         * lib/strtoimax.c: Likewise.
24373         * lib/strtok_r.c: Likewise.
24374         * lib/strtol.c: Likewise.
24375         * lib/strtoll.c: Likewise.
24376         * lib/strtoul.c: Likewise.
24377         * lib/strtoull.c: Likewise.
24378         * lib/sysexits.in.h: Likewise.
24379         * lib/tempname.c: Likewise.
24380         * lib/tempname.h: Likewise.
24381         * lib/timespec.h: Likewise.
24382         * lib/tls.c: Likewise.
24383         * lib/tls.h: Likewise.
24384         * lib/tmpdir.c: Likewise.
24385         * lib/tmpdir.h: Likewise.
24386         * lib/tmpfile-safer.c: Likewise.
24387         * lib/tmpfile.c: Likewise.
24388         * lib/trigl.c: Likewise.
24389         * lib/trigl.h: Likewise.
24390         * lib/trim.c: Likewise.
24391         * lib/trim.h: Likewise.
24392         * lib/trunc.c: Likewise.
24393         * lib/truncf.c: Likewise.
24394         * lib/truncl.c: Likewise.
24395         * lib/tsearch.c: Likewise.
24396         * lib/unicodeio.c: Likewise.
24397         * lib/unicodeio.h: Likewise.
24398         * lib/unistd--.h: Likewise.
24399         * lib/unistd-safer.h: Likewise.
24400         * lib/unistdio/ulc-fprintf.c: Likewise.
24401         * lib/unistdio/ulc-vfprintf.c: Likewise.
24402         * lib/unlinkdir.c: Likewise.
24403         * lib/unlinkdir.h: Likewise.
24404         * lib/unlocked-io.h: Likewise.
24405         * lib/unsetenv.c: Likewise.
24406         * lib/userspec.c: Likewise.
24407         * lib/utime.c: Likewise.
24408         * lib/utimecmp.c: Likewise.
24409         * lib/utimecmp.h: Likewise.
24410         * lib/utimens.c: Likewise.
24411         * lib/verify.h: Likewise.
24412         * lib/verror.c: Likewise.
24413         * lib/verror.h: Likewise.
24414         * lib/version-etc-fsf.c: Likewise.
24415         * lib/version-etc.c: Likewise.
24416         * lib/version-etc.h: Likewise.
24417         * lib/vfprintf.c: Likewise.
24418         * lib/vprintf.c: Likewise.
24419         * lib/vsprintf.c: Likewise.
24420         * lib/w32spawn.h: Likewise.
24421         * lib/wait-process.c: Likewise.
24422         * lib/wait-process.h: Likewise.
24423         * lib/wcwidth.c: Likewise.
24424         * lib/write-any-file.c: Likewise.
24425         * lib/xalloc-die.c: Likewise.
24426         * lib/xalloc.h: Likewise.
24427         * lib/xasprintf.c: Likewise.
24428         * lib/xgetcwd.c: Likewise.
24429         * lib/xgetcwd.h: Likewise.
24430         * lib/xgetdomainname.c: Likewise.
24431         * lib/xgetdomainname.h: Likewise.
24432         * lib/xgethostname.c: Likewise.
24433         * lib/xmalloc.c: Likewise.
24434         * lib/xmalloca.c: Likewise.
24435         * lib/xmalloca.h: Likewise.
24436         * lib/xmemcoll.c: Likewise.
24437         * lib/xnanosleep.c: Likewise.
24438         * lib/xreadlink.c: Likewise.
24439         * lib/xreadlink.h: Likewise.
24440         * lib/xsetenv.c: Likewise.
24441         * lib/xsetenv.h: Likewise.
24442         * lib/xstriconv.c: Likewise.
24443         * lib/xstriconv.h: Likewise.
24444         * lib/xstrndup.c: Likewise.
24445         * lib/xstrndup.h: Likewise.
24446         * lib/xstrtod.c: Likewise.
24447         * lib/xstrtod.h: Likewise.
24448         * lib/xstrtol-error.c: Likewise.
24449         * lib/xstrtol.c: Likewise.
24450         * lib/xstrtol.h: Likewise.
24451         * lib/xtime.h: Likewise.
24452         * lib/xvasprintf.c: Likewise.
24453         * lib/xvasprintf.h: Likewise.
24454         * lib/yesno.c: Likewise.
24455         * lib/yesno.h: Likewise.
24456         * posix-modules: Likewise.
24457         * tests/test-alloca-opt.c: Likewise.
24458         * tests/test-arcfour.c: Likewise.
24459         * tests/test-arctwo.c: Likewise.
24460         * tests/test-argmatch.c: Likewise.
24461         * tests/test-argp-2.sh: Likewise.
24462         * tests/test-argp.c: Likewise.
24463         * tests/test-arpa_inet.c: Likewise.
24464         * tests/test-array_list.c: Likewise.
24465         * tests/test-array_oset.c: Likewise.
24466         * tests/test-atexit.c: Likewise.
24467         * tests/test-avltree_list.c: Likewise.
24468         * tests/test-avltree_oset.c: Likewise.
24469         * tests/test-avltreehash_list.c: Likewise.
24470         * tests/test-base64.c: Likewise.
24471         * tests/test-binary-io.c: Likewise.
24472         * tests/test-byteswap.c: Likewise.
24473         * tests/test-c-ctype.c: Likewise.
24474         * tests/test-c-strcasecmp.c: Likewise.
24475         * tests/test-c-strcasestr.c: Likewise.
24476         * tests/test-c-strncasecmp.c: Likewise.
24477         * tests/test-c-strstr.c: Likewise.
24478         * tests/test-canonicalize-lgpl.c: Likewise.
24479         * tests/test-canonicalize.c: Likewise.
24480         * tests/test-carray_list.c: Likewise.
24481         * tests/test-ceilf.c: Likewise.
24482         * tests/test-ceill.c: Likewise.
24483         * tests/test-count-one-bits.c: Likewise.
24484         * tests/test-crc.c: Likewise.
24485         * tests/test-dirname.c: Likewise.
24486         * tests/test-fbufmode.c: Likewise.
24487         * tests/test-fcntl.c: Likewise.
24488         * tests/test-fflush.c: Likewise.
24489         * tests/test-floorf.c: Likewise.
24490         * tests/test-floorl.c: Likewise.
24491         * tests/test-fopen.c: Likewise.
24492         * tests/test-fprintf-posix.c: Likewise.
24493         * tests/test-fprintf-posix.h: Likewise.
24494         * tests/test-fpurge.c: Likewise.
24495         * tests/test-freadable.c: Likewise.
24496         * tests/test-freadahead.c: Likewise.
24497         * tests/test-freading.c: Likewise.
24498         * tests/test-freopen.c: Likewise.
24499         * tests/test-frexp.c: Likewise.
24500         * tests/test-frexpl.c: Likewise.
24501         * tests/test-fseek.c: Likewise.
24502         * tests/test-fseeko.c: Likewise.
24503         * tests/test-fseterr.c: Likewise.
24504         * tests/test-fstrcmp.c: Likewise.
24505         * tests/test-ftell.c: Likewise.
24506         * tests/test-ftello.c: Likewise.
24507         * tests/test-fwritable.c: Likewise.
24508         * tests/test-fwriting.c: Likewise.
24509         * tests/test-getaddrinfo.c: Likewise.
24510         * tests/test-getpass.c: Likewise.
24511         * tests/test-gettimeofday.c: Likewise.
24512         * tests/test-hmac-md5.c: Likewise.
24513         * tests/test-hmac-sha1.c: Likewise.
24514         * tests/test-iconv.c: Likewise.
24515         * tests/test-iconvme.c: Likewise.
24516         * tests/test-inttypes.c: Likewise.
24517         * tests/test-isnan.c: Likewise.
24518         * tests/test-isnanf.c: Likewise.
24519         * tests/test-isnanl-nolibm.c: Likewise.
24520         * tests/test-isnanl.c: Likewise.
24521         * tests/test-isnanl.h: Likewise.
24522         * tests/test-ldexpl.c: Likewise.
24523         * tests/test-linked_list.c: Likewise.
24524         * tests/test-linkedhash_list.c: Likewise.
24525         * tests/test-locale.c: Likewise.
24526         * tests/test-localename.c: Likewise.
24527         * tests/test-lock.c: Likewise.
24528         * tests/test-lseek.c: Likewise.
24529         * tests/test-malloca.c: Likewise.
24530         * tests/test-math.c: Likewise.
24531         * tests/test-mbscasecmp.c: Likewise.
24532         * tests/test-mbscasestr1.c: Likewise.
24533         * tests/test-mbscasestr2.c: Likewise.
24534         * tests/test-mbscasestr3.c: Likewise.
24535         * tests/test-mbscasestr4.c: Likewise.
24536         * tests/test-mbschr.c: Likewise.
24537         * tests/test-mbscspn.c: Likewise.
24538         * tests/test-mbsncasecmp.c: Likewise.
24539         * tests/test-mbspbrk.c: Likewise.
24540         * tests/test-mbspcasecmp.c: Likewise.
24541         * tests/test-mbsrchr.c: Likewise.
24542         * tests/test-mbsspn.c: Likewise.
24543         * tests/test-mbsstr1.c: Likewise.
24544         * tests/test-mbsstr2.c: Likewise.
24545         * tests/test-mbsstr3.c: Likewise.
24546         * tests/test-md5.c: Likewise.
24547         * tests/test-memmem.c: Likewise.
24548         * tests/test-netinet_in.c: Likewise.
24549         * tests/test-open.c: Likewise.
24550         * tests/test-printf-frexp.c: Likewise.
24551         * tests/test-printf-frexpl.c: Likewise.
24552         * tests/test-printf-posix.c: Likewise.
24553         * tests/test-printf-posix.h: Likewise.
24554         * tests/test-rbtree_list.c: Likewise.
24555         * tests/test-rbtree_oset.c: Likewise.
24556         * tests/test-rbtreehash_list.c: Likewise.
24557         * tests/test-read-file.c: Likewise.
24558         * tests/test-rijndael.c: Likewise.
24559         * tests/test-search.c: Likewise.
24560         * tests/test-signbit.c: Likewise.
24561         * tests/test-sleep.c: Likewise.
24562         * tests/test-snprintf-posix.c: Likewise.
24563         * tests/test-snprintf-posix.h: Likewise.
24564         * tests/test-snprintf.c: Likewise.
24565         * tests/test-sprintf-posix.c: Likewise.
24566         * tests/test-sprintf-posix.h: Likewise.
24567         * tests/test-stat-time.c: Likewise.
24568         * tests/test-stdbool.c: Likewise.
24569         * tests/test-stdint.c: Likewise.
24570         * tests/test-stdio.c: Likewise.
24571         * tests/test-stdlib.c: Likewise.
24572         * tests/test-stpncpy.c: Likewise.
24573         * tests/test-strcasestr.c: Likewise.
24574         * tests/test-striconv.c: Likewise.
24575         * tests/test-striconveh.c: Likewise.
24576         * tests/test-striconveha.c: Likewise.
24577         * tests/test-string.c: Likewise.
24578         * tests/test-sys_select.c: Likewise.
24579         * tests/test-sys_socket.c: Likewise.
24580         * tests/test-sys_stat.c: Likewise.
24581         * tests/test-sys_time.c: Likewise.
24582         * tests/test-sysexits.c: Likewise.
24583         * tests/test-time.c: Likewise.
24584         * tests/test-tls.c: Likewise.
24585         * tests/test-trunc.c: Likewise.
24586         * tests/test-truncf.c: Likewise.
24587         * tests/test-truncl.c: Likewise.
24588         * tests/test-unistd.c: Likewise.
24589         * tests/test-vasnprintf-posix.c: Likewise.
24590         * tests/test-vasnprintf-posix2.c: Likewise.
24591         * tests/test-vasnprintf.c: Likewise.
24592         * tests/test-vasprintf-posix.c: Likewise.
24593         * tests/test-vasprintf.c: Likewise.
24594         * tests/test-verify.c: Likewise.
24595         * tests/test-vfprintf-posix.c: Likewise.
24596         * tests/test-vprintf-posix.c: Likewise.
24597         * tests/test-vsnprintf-posix.c: Likewise.
24598         * tests/test-vsnprintf.c: Likewise.
24599         * tests/test-vsprintf-posix.c: Likewise.
24600         * tests/test-wchar.c: Likewise.
24601         * tests/test-wctype.c: Likewise.
24602         * tests/test-wcwidth.c: Likewise.
24603         * tests/test-xstrtol.c: Likewise.
24604         * tests/test-xvasprintf.c: Likewise.
24605         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
24606         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
24607         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
24608         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
24609         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
24610         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
24611         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
24612         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
24613         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
24614         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
24615         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
24616         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
24617         * tests/uniname/test-uninames.c: Likewise.
24618         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
24619         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
24620         * tests/unistdio/test-u16-printf1.h: Likewise.
24621         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
24622         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
24623         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
24624         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
24625         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
24626         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
24627         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
24628         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
24629         * tests/unistdio/test-u32-printf1.h: Likewise.
24630         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
24631         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
24632         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
24633         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
24634         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
24635         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
24636         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
24637         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
24638         * tests/unistdio/test-u8-printf1.h: Likewise.
24639         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
24640         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
24641         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
24642         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
24643         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
24644         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
24645         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
24646         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
24647         * tests/unistdio/test-ulc-printf1.h: Likewise.
24648         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
24649         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
24650         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
24651         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
24652         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
24653         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
24654         * tests/uniwidth/test-u16-strwidth.c: Likewise.
24655         * tests/uniwidth/test-u16-width.c: Likewise.
24656         * tests/uniwidth/test-u32-strwidth.c: Likewise.
24657         * tests/uniwidth/test-u32-width.c: Likewise.
24658         * tests/uniwidth/test-u8-strwidth.c: Likewise.
24659         * tests/uniwidth/test-u8-width.c: Likewise.
24660         * tests/uniwidth/test-uc_width.c: Likewise.
24661         * config/srclist-update: Likewise.
24662         (fixlicense): Update to GPLv3+.
24663
24664         Change copyright notice from LGPLv2.1+ to LGPLv3+.
24665         * tests/test-tsearch.c: Change copyright notice.
24666
24667         Change copyright notice from LGPLv2.0+ to LGPLv3+.
24668         * lib/c-strcaseeq.h: Change copyright notice.
24669         * lib/streq.h: Likewise.
24670         * lib/uniconv.h: Likewise.
24671         * lib/uniconv/u-conv-from-enc.h: Likewise.
24672         * lib/uniconv/u-conv-to-enc.h: Likewise.
24673         * lib/uniconv/u-strconv-from-enc.h: Likewise.
24674         * lib/uniconv/u-strconv-to-enc.h: Likewise.
24675         * lib/uniconv/u16-conv-from-enc.c: Likewise.
24676         * lib/uniconv/u16-conv-to-enc.c: Likewise.
24677         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
24678         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
24679         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
24680         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
24681         * lib/uniconv/u32-conv-from-enc.c: Likewise.
24682         * lib/uniconv/u32-conv-to-enc.c: Likewise.
24683         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
24684         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
24685         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
24686         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
24687         * lib/uniconv/u8-conv-from-enc.c: Likewise.
24688         * lib/uniconv/u8-conv-to-enc.c: Likewise.
24689         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
24690         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
24691         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
24692         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
24693         * lib/uniname.h: Likewise.
24694         * lib/uniname/uniname.c: Likewise.
24695         * lib/unistdio.h: Likewise.
24696         * lib/unistdio/u-asnprintf.h: Likewise.
24697         * lib/unistdio/u-asprintf.h: Likewise.
24698         * lib/unistdio/u-printf-args.c: Likewise.
24699         * lib/unistdio/u-printf-args.h: Likewise.
24700         * lib/unistdio/u-printf-parse.h: Likewise.
24701         * lib/unistdio/u-snprintf.h: Likewise.
24702         * lib/unistdio/u-sprintf.h: Likewise.
24703         * lib/unistdio/u-vasprintf.h: Likewise.
24704         * lib/unistdio/u-vsnprintf.h: Likewise.
24705         * lib/unistdio/u-vsprintf.h: Likewise.
24706         * lib/unistdio/u16-asnprintf.c: Likewise.
24707         * lib/unistdio/u16-asprintf.c: Likewise.
24708         * lib/unistdio/u16-printf-parse.c: Likewise.
24709         * lib/unistdio/u16-snprintf.c: Likewise.
24710         * lib/unistdio/u16-sprintf.c: Likewise.
24711         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
24712         * lib/unistdio/u16-u16-asprintf.c: Likewise.
24713         * lib/unistdio/u16-u16-snprintf.c: Likewise.
24714         * lib/unistdio/u16-u16-sprintf.c: Likewise.
24715         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
24716         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
24717         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
24718         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
24719         * lib/unistdio/u16-vasnprintf.c: Likewise.
24720         * lib/unistdio/u16-vasprintf.c: Likewise.
24721         * lib/unistdio/u16-vsnprintf.c: Likewise.
24722         * lib/unistdio/u16-vsprintf.c: Likewise.
24723         * lib/unistdio/u32-asnprintf.c: Likewise.
24724         * lib/unistdio/u32-asprintf.c: Likewise.
24725         * lib/unistdio/u32-printf-parse.c: Likewise.
24726         * lib/unistdio/u32-snprintf.c: Likewise.
24727         * lib/unistdio/u32-sprintf.c: Likewise.
24728         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
24729         * lib/unistdio/u32-u32-asprintf.c: Likewise.
24730         * lib/unistdio/u32-u32-snprintf.c: Likewise.
24731         * lib/unistdio/u32-u32-sprintf.c: Likewise.
24732         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
24733         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
24734         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
24735         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
24736         * lib/unistdio/u32-vasnprintf.c: Likewise.
24737         * lib/unistdio/u32-vasprintf.c: Likewise.
24738         * lib/unistdio/u32-vsnprintf.c: Likewise.
24739         * lib/unistdio/u32-vsprintf.c: Likewise.
24740         * lib/unistdio/u8-asnprintf.c: Likewise.
24741         * lib/unistdio/u8-asprintf.c: Likewise.
24742         * lib/unistdio/u8-printf-parse.c: Likewise.
24743         * lib/unistdio/u8-snprintf.c: Likewise.
24744         * lib/unistdio/u8-sprintf.c: Likewise.
24745         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
24746         * lib/unistdio/u8-u8-asprintf.c: Likewise.
24747         * lib/unistdio/u8-u8-snprintf.c: Likewise.
24748         * lib/unistdio/u8-u8-sprintf.c: Likewise.
24749         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
24750         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
24751         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
24752         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
24753         * lib/unistdio/u8-vasnprintf.c: Likewise.
24754         * lib/unistdio/u8-vasprintf.c: Likewise.
24755         * lib/unistdio/u8-vsnprintf.c: Likewise.
24756         * lib/unistdio/u8-vsprintf.c: Likewise.
24757         * lib/unistdio/ulc-asnprintf.c: Likewise.
24758         * lib/unistdio/ulc-asprintf.c: Likewise.
24759         * lib/unistdio/ulc-printf-parse.c: Likewise.
24760         * lib/unistdio/ulc-snprintf.c: Likewise.
24761         * lib/unistdio/ulc-sprintf.c: Likewise.
24762         * lib/unistdio/ulc-vasnprintf.c: Likewise.
24763         * lib/unistdio/ulc-vasprintf.c: Likewise.
24764         * lib/unistdio/ulc-vsnprintf.c: Likewise.
24765         * lib/unistdio/ulc-vsprintf.c: Likewise.
24766         * lib/unistr.h: Likewise.
24767         * lib/unistr/u-cpy-alloc.h: Likewise.
24768         * lib/unistr/u-cpy.h: Likewise.
24769         * lib/unistr/u-endswith.h: Likewise.
24770         * lib/unistr/u-move.h: Likewise.
24771         * lib/unistr/u-set.h: Likewise.
24772         * lib/unistr/u-startswith.h: Likewise.
24773         * lib/unistr/u-stpcpy.h: Likewise.
24774         * lib/unistr/u-stpncpy.h: Likewise.
24775         * lib/unistr/u-strcat.h: Likewise.
24776         * lib/unistr/u-strcpy.h: Likewise.
24777         * lib/unistr/u-strcspn.h: Likewise.
24778         * lib/unistr/u-strdup.h: Likewise.
24779         * lib/unistr/u-strlen.h: Likewise.
24780         * lib/unistr/u-strncat.h: Likewise.
24781         * lib/unistr/u-strncpy.h: Likewise.
24782         * lib/unistr/u-strnlen.h: Likewise.
24783         * lib/unistr/u-strpbrk.h: Likewise.
24784         * lib/unistr/u-strspn.h: Likewise.
24785         * lib/unistr/u-strstr.h: Likewise.
24786         * lib/unistr/u-strtok.h: Likewise.
24787         * lib/unistr/u16-check.c: Likewise.
24788         * lib/unistr/u16-chr.c: Likewise.
24789         * lib/unistr/u16-cmp.c: Likewise.
24790         * lib/unistr/u16-cpy-alloc.c: Likewise.
24791         * lib/unistr/u16-cpy.c: Likewise.
24792         * lib/unistr/u16-endswith.c: Likewise.
24793         * lib/unistr/u16-mblen.c: Likewise.
24794         * lib/unistr/u16-mbsnlen.c: Likewise.
24795         * lib/unistr/u16-mbtouc-aux.c: Likewise.
24796         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
24797         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
24798         * lib/unistr/u16-mbtouc.c: Likewise.
24799         * lib/unistr/u16-mbtoucr.c: Likewise.
24800         * lib/unistr/u16-move.c: Likewise.
24801         * lib/unistr/u16-next.c: Likewise.
24802         * lib/unistr/u16-prev.c: Likewise.
24803         * lib/unistr/u16-set.c: Likewise.
24804         * lib/unistr/u16-startswith.c: Likewise.
24805         * lib/unistr/u16-stpcpy.c: Likewise.
24806         * lib/unistr/u16-stpncpy.c: Likewise.
24807         * lib/unistr/u16-strcat.c: Likewise.
24808         * lib/unistr/u16-strchr.c: Likewise.
24809         * lib/unistr/u16-strcmp.c: Likewise.
24810         * lib/unistr/u16-strcpy.c: Likewise.
24811         * lib/unistr/u16-strcspn.c: Likewise.
24812         * lib/unistr/u16-strdup.c: Likewise.
24813         * lib/unistr/u16-strlen.c: Likewise.
24814         * lib/unistr/u16-strmblen.c: Likewise.
24815         * lib/unistr/u16-strmbtouc.c: Likewise.
24816         * lib/unistr/u16-strncat.c: Likewise.
24817         * lib/unistr/u16-strncmp.c: Likewise.
24818         * lib/unistr/u16-strncpy.c: Likewise.
24819         * lib/unistr/u16-strnlen.c: Likewise.
24820         * lib/unistr/u16-strpbrk.c: Likewise.
24821         * lib/unistr/u16-strrchr.c: Likewise.
24822         * lib/unistr/u16-strspn.c: Likewise.
24823         * lib/unistr/u16-strstr.c: Likewise.
24824         * lib/unistr/u16-strtok.c: Likewise.
24825         * lib/unistr/u16-to-u32.c: Likewise.
24826         * lib/unistr/u16-to-u8.c: Likewise.
24827         * lib/unistr/u16-uctomb-aux.c: Likewise.
24828         * lib/unistr/u16-uctomb.c: Likewise.
24829         * lib/unistr/u32-check.c: Likewise.
24830         * lib/unistr/u32-chr.c: Likewise.
24831         * lib/unistr/u32-cmp.c: Likewise.
24832         * lib/unistr/u32-cpy-alloc.c: Likewise.
24833         * lib/unistr/u32-cpy.c: Likewise.
24834         * lib/unistr/u32-endswith.c: Likewise.
24835         * lib/unistr/u32-mblen.c: Likewise.
24836         * lib/unistr/u32-mbsnlen.c: Likewise.
24837         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
24838         * lib/unistr/u32-mbtouc.c: Likewise.
24839         * lib/unistr/u32-mbtoucr.c: Likewise.
24840         * lib/unistr/u32-move.c: Likewise.
24841         * lib/unistr/u32-next.c: Likewise.
24842         * lib/unistr/u32-prev.c: Likewise.
24843         * lib/unistr/u32-set.c: Likewise.
24844         * lib/unistr/u32-startswith.c: Likewise.
24845         * lib/unistr/u32-stpcpy.c: Likewise.
24846         * lib/unistr/u32-stpncpy.c: Likewise.
24847         * lib/unistr/u32-strcat.c: Likewise.
24848         * lib/unistr/u32-strchr.c: Likewise.
24849         * lib/unistr/u32-strcmp.c: Likewise.
24850         * lib/unistr/u32-strcpy.c: Likewise.
24851         * lib/unistr/u32-strcspn.c: Likewise.
24852         * lib/unistr/u32-strdup.c: Likewise.
24853         * lib/unistr/u32-strlen.c: Likewise.
24854         * lib/unistr/u32-strmblen.c: Likewise.
24855         * lib/unistr/u32-strmbtouc.c: Likewise.
24856         * lib/unistr/u32-strncat.c: Likewise.
24857         * lib/unistr/u32-strncmp.c: Likewise.
24858         * lib/unistr/u32-strncpy.c: Likewise.
24859         * lib/unistr/u32-strnlen.c: Likewise.
24860         * lib/unistr/u32-strpbrk.c: Likewise.
24861         * lib/unistr/u32-strrchr.c: Likewise.
24862         * lib/unistr/u32-strspn.c: Likewise.
24863         * lib/unistr/u32-strstr.c: Likewise.
24864         * lib/unistr/u32-strtok.c: Likewise.
24865         * lib/unistr/u32-to-u16.c: Likewise.
24866         * lib/unistr/u32-to-u8.c: Likewise.
24867         * lib/unistr/u32-uctomb.c: Likewise.
24868         * lib/unistr/u8-check.c: Likewise.
24869         * lib/unistr/u8-chr.c: Likewise.
24870         * lib/unistr/u8-cmp.c: Likewise.
24871         * lib/unistr/u8-cpy-alloc.c: Likewise.
24872         * lib/unistr/u8-cpy.c: Likewise.
24873         * lib/unistr/u8-endswith.c: Likewise.
24874         * lib/unistr/u8-mblen.c: Likewise.
24875         * lib/unistr/u8-mbsnlen.c: Likewise.
24876         * lib/unistr/u8-mbtouc-aux.c: Likewise.
24877         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
24878         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
24879         * lib/unistr/u8-mbtouc.c: Likewise.
24880         * lib/unistr/u8-mbtoucr.c: Likewise.
24881         * lib/unistr/u8-move.c: Likewise.
24882         * lib/unistr/u8-next.c: Likewise.
24883         * lib/unistr/u8-prev.c: Likewise.
24884         * lib/unistr/u8-set.c: Likewise.
24885         * lib/unistr/u8-startswith.c: Likewise.
24886         * lib/unistr/u8-stpcpy.c: Likewise.
24887         * lib/unistr/u8-stpncpy.c: Likewise.
24888         * lib/unistr/u8-strcat.c: Likewise.
24889         * lib/unistr/u8-strchr.c: Likewise.
24890         * lib/unistr/u8-strcmp.c: Likewise.
24891         * lib/unistr/u8-strcpy.c: Likewise.
24892         * lib/unistr/u8-strcspn.c: Likewise.
24893         * lib/unistr/u8-strdup.c: Likewise.
24894         * lib/unistr/u8-strlen.c: Likewise.
24895         * lib/unistr/u8-strmblen.c: Likewise.
24896         * lib/unistr/u8-strmbtouc.c: Likewise.
24897         * lib/unistr/u8-strncat.c: Likewise.
24898         * lib/unistr/u8-strncmp.c: Likewise.
24899         * lib/unistr/u8-strncpy.c: Likewise.
24900         * lib/unistr/u8-strnlen.c: Likewise.
24901         * lib/unistr/u8-strpbrk.c: Likewise.
24902         * lib/unistr/u8-strrchr.c: Likewise.
24903         * lib/unistr/u8-strspn.c: Likewise.
24904         * lib/unistr/u8-strstr.c: Likewise.
24905         * lib/unistr/u8-strtok.c: Likewise.
24906         * lib/unistr/u8-to-u16.c: Likewise.
24907         * lib/unistr/u8-to-u32.c: Likewise.
24908         * lib/unistr/u8-uctomb-aux.c: Likewise.
24909         * lib/unistr/u8-uctomb.c: Likewise.
24910         * lib/unitypes.h: Likewise.
24911         * lib/uniwidth.h: Likewise.
24912         * lib/uniwidth/cjk.h: Likewise.
24913         * lib/uniwidth/u16-strwidth.c: Likewise.
24914         * lib/uniwidth/u16-width.c: Likewise.
24915         * lib/uniwidth/u32-strwidth.c: Likewise.
24916         * lib/uniwidth/u32-width.c: Likewise.
24917         * lib/uniwidth/u8-strwidth.c: Likewise.
24918         * lib/uniwidth/u8-width.c: Likewise.
24919         * lib/uniwidth/width.c: Likewise.
24920
24921 2007-10-07  Bruno Haible  <bruno@clisp.org>
24922
24923         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
24924         The file is still under LGPL (see modules/inttypes).
24925
24926 2007-10-06  Bruno Haible  <bruno@clisp.org>
24927
24928         * modules/trunc (Dependencies): Add 'extensions'.
24929         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
24930         Reported by Ben Pfaff <blp@gnu.org>.
24931
24932 2007-10-06  Bruno Haible  <bruno@clisp.org>
24933
24934         * modules/freopen-tests: New file.
24935         * tests/test-freopen.c: New file.
24936
24937         * modules/fopen-tests: New file.
24938         * tests/test-fopen.c: New file.
24939
24940         * modules/fopen: New file.
24941         * lib/fopen.c: New file.
24942         * m4/fopen.m4: New file.
24943         * modules/freopen: New file.
24944         * lib/freopen.c: New file.
24945         * m4/freopen.m4: New file.
24946         * lib/stdio.in.h (fopen, freopen): New declarations.
24947         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
24948         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
24949         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
24950         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
24951         * doc/functions/fopen.texi: Mention the 'fopen' module.
24952         * doc/functions/freopen.texi: Mention the 'freopen' module.
24953
24954 2007-10-06  Bruno Haible  <bruno@clisp.org>
24955
24956         * modules/open-tests: New file.
24957         * tests/test-open.c: New file.
24958
24959         * modules/open: New file.
24960         * lib/open.c: New file.
24961         * m4/open.m4: New file.
24962         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
24963         lib/open.c does.
24964         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
24965         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
24966         macros.
24967         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
24968         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
24969         REPLACE_OPEN.
24970         * doc/functions/open.texi: Mention the 'open' module.
24971
24972 2007-10-04  Bruno Haible  <bruno@clisp.org>
24973
24974         * modules/ceill-tests: New file.
24975         * tests/test-ceill.c: New file.
24976
24977         * modules/ceill: New file.
24978         * lib/ceill.c: Replace entire file.
24979         * m4/ceill.m4: New file.
24980         * lib/math.in.h (ceill): Replace declaration.
24981         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
24982         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
24983         * doc/functions/ceill.texi: Mention the 'ceill' module.
24984         * modules/mathl (Files): Remove lib/ceill.c.
24985         (Depends-on): Add ceill.
24986
24987 2007-10-04  Bruno Haible  <bruno@clisp.org>
24988
24989         * modules/ceilf-tests: New file.
24990         * tests/test-ceilf.c: New file.
24991
24992         * modules/ceilf: New file.
24993         * lib/ceil.c: New file.
24994         * lib/ceilf.c: New file.
24995         * m4/ceilf.m4: New file.
24996         * lib/math.in.h (ceilf): New declaration.
24997         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
24998         HAVE_DECL_CEILF.
24999         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
25000         HAVE_DECL_CEILF.
25001         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
25002
25003 2007-10-04  Bruno Haible  <bruno@clisp.org>
25004
25005         * modules/floorl-tests: New file.
25006         * tests/test-floorl.c: New file.
25007
25008         * modules/floorl: New file.
25009         * lib/floorl.c: Replace entire file.
25010         * m4/floorl.m4: New file.
25011         * lib/math.in.h (floorl): Replace declaration.
25012         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
25013         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
25014         * doc/functions/floorl.texi: Mention the 'floorl' module.
25015         * modules/mathl (Files): Remove lib/floorl.c.
25016         (Depends-on): Add floorl.
25017
25018 2007-10-04  Bruno Haible  <bruno@clisp.org>
25019
25020         * modules/floorf-tests: New file.
25021         * tests/test-floorf.c: New file.
25022
25023         * modules/floorf: New file.
25024         * lib/floor.c: New file.
25025         * lib/floorf.c: New file.
25026         * m4/floorf.m4: New file.
25027         * lib/math.in.h (floorf): New declaration.
25028         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
25029         HAVE_DECL_FLOORF.
25030         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
25031         HAVE_DECL_FLOORF.
25032         * doc/functions/floorf.texi: Mention the 'floorf' module.
25033
25034 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
25035             Bruno Haible  <bruno@clisp.org>
25036
25037         Advertise for the Git server instead of the CVS server.
25038         * doc/gnulib-intro.texi (Steady Development): Mention the Git
25039         repository instead of the CVS one.
25040         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
25041         about all VCS systems generically.
25042         * doc/gnulib.texi (Introduction): Capitalize `Git'.
25043
25044 2007-10-04  Bruno Haible  <bruno@clisp.org>
25045
25046         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
25047         means.
25048         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
25049
25050 2007-10-04  Bruno Haible  <bruno@clisp.org>
25051
25052         * modules/truncl-tests: New file.
25053         * tests/test-truncl.c: New file.
25054
25055         * modules/truncl: New file.
25056         * lib/truncl.c: New file.
25057         * m4/truncl.m4: New file.
25058         * lib/math.in.h (truncl): New declaration.
25059         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
25060         HAVE_DECL_TRUNCL.
25061         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
25062         HAVE_DECL_TRUNCL.
25063         * doc/functions/truncl.texi: Mention the 'truncl' module.
25064
25065 2007-10-04  Bruno Haible  <bruno@clisp.org>
25066
25067         * modules/truncf-tests: New file.
25068         * tests/test-truncf.c: New file.
25069
25070         * modules/truncf: New file.
25071         * lib/trunc.c: Make paramerizable through USE_* macros.
25072         * lib/truncf.c: New file.
25073         * m4/truncf.m4: New file.
25074         * lib/math.in.h (truncf): New declaration.
25075         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
25076         HAVE_DECL_TRUNCF.
25077         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
25078         HAVE_DECL_TRUNCF.
25079         * doc/functions/truncf.texi: Mention the 'truncf' module.
25080
25081 2007-10-03  Bruno Haible  <bruno@clisp.org>
25082
25083         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
25084         augmentation also for tests modules.
25085         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
25086         * modules/atexit-tests (Makefile.am): Likewise.
25087         * modules/binary-io-tests (Makefile.am): Likewise.
25088         * modules/c-strcase-tests (Makefile.am): Likewise.
25089         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
25090         * modules/canonicalize-tests (Makefile.am): Likewise.
25091         * modules/closein-tests (Makefile.am): Likewise.
25092         * modules/fprintf-posix-tests (Makefile.am): Likewise.
25093         * modules/freadahead-tests (Makefile.am): Likewise.
25094         * modules/fseek-tests (Makefile.am): Likewise.
25095         * modules/fseeko-tests (Makefile.am): Likewise.
25096         * modules/ftell-tests (Makefile.am): Likewise.
25097         * modules/ftello-tests (Makefile.am): Likewise.
25098         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
25099         * modules/isnanl-tests (Makefile.am): Likewise.
25100         * modules/lseek-tests (Makefile.am): Likewise.
25101         * modules/mbscasecmp-tests (Makefile.am): Likewise.
25102         * modules/mbscasestr-tests (Makefile.am): Likewise.
25103         * modules/mbschr-tests (Makefile.am): Likewise.
25104         * modules/mbscspn-tests (Makefile.am): Likewise.
25105         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
25106         * modules/mbspbrk-tests (Makefile.am): Likewise.
25107         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
25108         * modules/mbsrchr-tests (Makefile.am): Likewise.
25109         * modules/mbsspn-tests (Makefile.am): Likewise.
25110         * modules/mbsstr-tests (Makefile.am): Likewise.
25111         * modules/printf-posix-tests (Makefile.am): Likewise.
25112         * modules/snprintf-posix-tests (Makefile.am): Likewise.
25113         * modules/sprintf-posix-tests (Makefile.am): Likewise.
25114         * modules/tsearch-tests (Makefile.am): Likewise.
25115         * modules/uniname/uniname-tests (Makefile.am): Likewise.
25116         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
25117         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
25118         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
25119         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
25120         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
25121         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
25122         * modules/vprintf-posix-tests (Makefile.am): Likewise.
25123         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
25124         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
25125         * modules/xstrtoimax-tests (Makefile.am): Likewise.
25126         * modules/xstrtol-tests (Makefile.am): Likewise.
25127         * modules/xstrtoumax-tests (Makefile.am): Likewise.
25128         * modules/yesno-tests (Makefile.am): Likewise.
25129
25130 2007-10-03  Bruno Haible  <bruno@clisp.org>
25131
25132         * modules/trunc-tests: New file.
25133         * tests/test-trunc.c: New file.
25134
25135         * modules/trunc: New file.
25136         * lib/trunc.c: New file.
25137         * m4/trunc.m4: New file.
25138         * lib/math.in.h (trunc): New declaration.
25139         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
25140         HAVE_DECL_TRUNC.
25141         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
25142         HAVE_DECL_TRUNC.
25143         * doc/functions/trunc.texi: Mention the 'trunc' module.
25144
25145 2007-10-03  Bruno Haible  <bruno@clisp.org>
25146
25147         * tests/test-fpending.c: New file, mostly copied
25148         from coreutils/lib/t-fpending.c.
25149         * modules/fpending-tests: New file.
25150
25151 2007-10-03  Bruno Haible  <bruno@clisp.org>
25152
25153         Port the stdio extensions to QNX (untested).
25154         * lib/fseterr.c (fseterr): Add support for QNX.
25155         * lib/fbufmode.c (fbufmode): Likewise.
25156         * lib/freadable.c (freadable): Likewise.
25157         * lib/fwritable.c (fwritable): Likewise.
25158         * lib/freading.c (freading): Likewise.
25159         * lib/fwriting.c (fwriting): Likewise.
25160         * lib/freadahead.c (freadahed): Likewise.
25161         * lib/fpurge.c (fpurge): Likewise.
25162         * lib/fseeko.c (rpl_fseeko): Likewise.
25163
25164 2007-10-03  Bruno Haible  <bruno@clisp.org>
25165             Jim Meyering  <jim@meyering.net>
25166             Eric Blake  <ebb9@byu.net>
25167
25168         * doc/relocatable.texi: Use @command instead of @program.
25169
25170 2007-10-02  Jim Meyering  <jim@meyering.net>
25171
25172         Perform one more "_.h" -> ".in.h" substitution.
25173         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
25174         instead of unistd_.h here, too.
25175
25176 2007-10-01  Bruno Haible  <bruno@clisp.org>
25177
25178         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
25179         Needed for the alloca-opt module.
25180
25181 2007-09-30  Bruno Haible  <bruno@clisp.org>
25182
25183         * lib/alloca.in.h: Renamed from lib/alloca_.h.
25184         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
25185         alloca_.h.
25186         * lib/argz.in.h: Renamed from lib/argz_.h.
25187         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
25188         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
25189         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
25190         byteswap_.h.
25191         * lib/dirent.in.h: Renamed from lib/dirent_.h.
25192         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
25193         dirent_.h.
25194         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
25195         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
25196         fcntl_.h.
25197         * lib/float.in.h: Renamed from lib/float_.h.
25198         * modules/float (Files, Makefile.am): Use float.in.h instead of
25199         float_.h.
25200         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
25201         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
25202         fnmatch_.h.
25203         * lib/getopt.in.h: Renamed from lib/getopt_.h.
25204         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
25205         getopt_.h.
25206         * lib/glob.in.h: Renamed from lib/glob_.h.
25207         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
25208         * lib/iconv.in.h: Renamed from lib/iconv_.h.
25209         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
25210         iconv_.h.
25211         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
25212         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
25213         inttypes_.h.
25214         * lib/locale.in.h: Renamed from lib/locale_.h.
25215         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
25216         locale_.h.
25217         * lib/math.in.h: Renamed from lib/math_.h.
25218         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
25219         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
25220         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
25221         of netinet_in_.h. Add dependency.
25222         * lib/poll.in.h: Renamed from lib/poll_.h.
25223         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
25224         * lib/search.in.h: Renamed from lib/search_.h.
25225         * modules/search (Files, Makefile.am): Use search.in.h instead of
25226         search_.h.
25227         * lib/signal.in.h: Renamed from lib/signal_.h.
25228         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
25229         _signal.h.
25230         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
25231         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
25232         stdbool_.h.
25233         * lib/stdint.in.h: Renamed from lib/stdint_.h.
25234         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
25235         stdint_.h.
25236         * lib/stdio.in.h: Renamed from lib/stdio_.h.
25237         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
25238         stdio_.h.
25239         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
25240         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
25241         stdlib_.h.
25242         * lib/string.in.h: Renamed from lib/string_.h.
25243         * modules/string (Files, Makefile.am): Use string.in.h instead of
25244         string_.h.
25245         * doc/gnulib-tool.texi (Initial import): Update.
25246         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
25247         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
25248         of sys_select_.h. Add dependency.
25249         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
25250         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
25251         of sys_socket_.h.
25252         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
25253         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
25254         sys_stat_.h.
25255         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
25256         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
25257         sys_time_.h.
25258         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
25259         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
25260         sysexits_.h.
25261         * lib/time.in.h: Renamed from lib/time_.h.
25262         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
25263         * lib/unistd.in.h: Renamed from lib/unistd_.h.
25264         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
25265         unistd_.h.
25266         * lib/wchar.in.h: Renamed from lib/wchar_.h.
25267         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
25268         wchar_.h.
25269         * lib/wctype.in.h: Renamed from lib/wctype_.h.
25270         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
25271         wctype_.h.
25272         * build-aux/bootstrap (slurp): Update.
25273         * lib/.cppi-disable: Update.
25274
25275 2007-09-30  Bruno Haible  <bruno@clisp.org>
25276
25277         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
25278         Needed on BeOS.
25279
25280 2007-09-30  Bruno Haible  <bruno@clisp.org>
25281
25282         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
25283
25284 2007-09-29  Bruno Haible  <bruno@clisp.org>
25285
25286         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
25287
25288 2007-09-29  Bruno Haible  <bruno@clisp.org>
25289
25290         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
25291         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
25292         * build-aux/install-reloc: Compile also areadlink.c.
25293         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
25294
25295 2007-09-29  Bruno Haible  <bruno@clisp.org>
25296
25297         * gnulib-tool (func_emit_initmacro_done): Indentation.
25298
25299 2007-09-29  Bruno Haible  <bruno@clisp.org>
25300
25301         * README: Add CVS checkout update instructions.
25302         Info from Bob Proulx <bob@proulx.com>.
25303
25304 2007-09-28  Eric Blake  <ebb9@byu.net>
25305
25306         Provide move-if-change.
25307         * build-aux/move-if-change: New file, based on best practice
25308         rather than any canonical upstream location.
25309
25310 2007-09-28  Jim Meyering  <jim@meyering.net>
25311
25312         Fix canonicalize loop-detection corner case.
25313         Do not attempt to stat the symlink values stored via seen_triple.
25314         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
25315         on linux-2.6.18, (but not 2.6.22).
25316         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
25317         triple_compare.  The former compares dev,ino,filename, while the latter
25318         would actually stat dirname(filename) when dev and ino were equal.
25319         * lib/hash-triple.c: Install <string.h>.
25320         (STREQ): Define.
25321         (triple_compare_ino_str): New function.
25322         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
25323
25324 2007-09-28  Eric Blake  <ebb9@byu.net>
25325
25326         Enforce that AC_REPLACE_FUNCS files exist.
25327         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
25328         override check for typos.
25329
25330         Fix test-closein on Solaris 10.
25331         * tests/test-closein.c (main): Don't assume stdin can be inherited
25332         closed on all systems.
25333         * tests/test-closein.sh: Likewise.
25334         Reported by Piotr Tarnowski.
25335
25336 2007-09-28  Jim Meyering  <jim@meyering.net>
25337
25338         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
25339
25340 2007-09-27  Jim Meyering  <jim@meyering.net>
25341
25342         canonicalize: Avoid a false-positive cycle failure.
25343         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
25344         Sort.  Remove cycle-check.
25345         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
25346         not cycle-check.h.
25347         (seen_triple): New function.
25348         (canonicalize_filename_mode): Use it instead of cycle-check.
25349         * tests/test-canonicalize.c: Add a test for this bug.
25350         * tests/test-canonicalize.sh: Set up and run the test.
25351
25352         New module, file-set, from coreutils.
25353         * modules/file-set: Define it.
25354         * lib/file-set.c, lib/file-set.h: Implement.
25355
25356         New module, hash-triple, from coreutils.
25357         * modules/hash-triple: Define it.
25358         * lib/hash-triple.c, lib/hash-triple.h: Implement.
25359
25360 2007-09-25  Eric Blake  <ebb9@byu.net>
25361
25362         Fix strerror on Interix.
25363         * lib/string_.h (strerror): Declare replacement.
25364         * doc/functions/strerror.texi (strerror): Document the Interix
25365         shortcoming.
25366         * modules/string (Makefile.am): Support new hooks.
25367         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
25368         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
25369         gl_FUNC_STRERROR_SEPARATE.
25370         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
25371         * lib/strerror.c (rpl_strerror): Provide replacement.
25372         * modules/strerror (Depends-on): Add string.
25373         (configure.ac): Detect use of module.
25374         * tests/test-strerror.c: New file.
25375         * modules/strerror-tests: New test module.
25376         * modules/argp (Depends-on): Add strerror.
25377         * modules/error (Depends-on): Likewise.
25378         Reported by Martin Koeppe.
25379
25380 2007-09-24  Bruno Haible  <bruno@clisp.org>
25381
25382         * README: Update git instructions.
25383
25384 2007-09-24  Eric Blake  <ebb9@byu.net>
25385
25386         Revert fpending breakage from 2007-09-08.
25387         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
25388         __fpending.c.
25389
25390 2007-09-24  Jim Meyering  <jim@meyering.net>
25391
25392         filenamecat.c: Add a test.
25393         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
25394         showing how the function works when DIR is the empty string.
25395
25396 2007-09-21  Simon Josefsson  <simon@josefsson.org>
25397
25398         * tests/test-canonicalize.sh: Turn on executable bit.
25399
25400 2007-09-19  Eric Blake  <ebb9@byu.net>
25401
25402         * README: Update CVS instructions.
25403
25404 2007-09-18  Bruno Haible  <bruno@clisp.org>
25405
25406         * modules/areadlink: New file.
25407         * lib/areadlink.h (areadlink): New declaration.
25408         * lib/areadlink.c: New file, based on lib/xreadlink.c.
25409
25410 2007-09-17  Jim Meyering  <jim@meyering.net>
25411
25412         * lib/savewd.c (ESTALE) [!defined]: Define.
25413         Reported to be required on Interix by Martin Koeppe.
25414
25415 2007-09-17  Bruno Haible  <bruno@clisp.org>
25416
25417         * gnulib-tool (func_version): Use $version.
25418
25419 2007-09-16  Bruno Haible  <bruno@clisp.org>
25420
25421         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
25422         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
25423         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
25424         Reported by Greg Schafer <gschafer@zip.com.au>.
25425
25426 2007-09-15  Bruno Haible  <bruno@clisp.org>
25427
25428         * gnulib-tool (sed): Try a little harder to make bash understand the
25429         alias.
25430         Reported by Bruce Korb <bruce.korb@gmail.com>.
25431
25432 2007-09-13  Eric Blake  <ebb9@byu.net>
25433
25434         * ChangeLog: Remove conflict markers.
25435
25436 2007-09-13  Simon Josefsson  <simon@josefsson.org>
25437
25438         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
25439         Reported by Bruno Haible <bruno@clisp.org>.
25440
25441 2007-09-12  Bruno Haible  <bruno@clisp.org>
25442
25443         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
25444         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
25445         is not defined.
25446
25447 2007-09-12  Eric Blake  <ebb9@byu.net>
25448
25449         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
25450         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
25451         Autoconf definition.
25452         * modules/euidaccess (Depends-on): Add extensions, for
25453         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
25454         * modules/fnmatch (Depends-on): Likewise.
25455         * modules/getaddrinfo (Depends-on): Likewise.
25456         * modules/getdelim (Depends-on): Likewise.
25457         * modules/getline (Depends-on): Likewise.
25458         * modules/getsubopt (Depends-on): Likewise.
25459         * modules/gettext (Depends-on): Likewise.
25460         * modules/group-member (Depends-on): Likewise.
25461         * modules/mbchar (Depends-on): Likewise.
25462         * modules/memmem (Depends-on): Likewise.
25463         * modules/mempcpy (Depends-on): Likewise.
25464         * modules/memrchr (Depends-on): Likewise.
25465         * modules/pagealign_alloc (Depends-on): Likewise.
25466         * modules/readutmp (Depends-on): Likewise.
25467         * modules/stpcpy (Depends-on): Likewise.
25468         * modules/stpncpy (Depends-on): Likewise.
25469         * modules/strchrnul (Depends-on): Likewise.
25470         * modules/strndup (Depends-on): Likewise.
25471         * modules/strsep (Depends-on): Likewise.
25472         * modules/strverscmp (Depends-on): Likewise.
25473         * modules/vasprintf (Depends-on): Likewise.
25474         * modules/wcwidth (Depends-on): Likewise.
25475         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
25476         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
25477         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
25478         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
25479         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
25480         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25481         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
25482         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
25483         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
25484         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
25485         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25486         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
25487         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
25488         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
25489         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
25490         * m4/readutmp.m4 (gl_READUTMP): Likewise.
25491         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
25492         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
25493         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
25494         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
25495         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25496         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
25497         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
25498         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
25499         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
25500         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
25501         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
25502         so that lock.m4 can be used in gettext without extensions module.
25503
25504 2007-09-11  Bruno Haible  <bruno@clisp.org>
25505
25506         * m4/isc-posix.m4: Remove file.
25507         Suggested by Eric Blake.
25508
25509 2007-09-11  Eric Blake  <ebb9@byu.net>
25510
25511         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
25512
25513 2007-09-10  Bruno Haible  <bruno@clisp.org>
25514
25515         * posix-modules: Fix typo in error message.
25516         Reported by Matt <mkraai@beckman.com>.
25517
25518 2007-09-09  Bruno Haible  <bruno@clisp.org>
25519
25520         * doc/functions/getdelim.texi: Update list of platforms lacking the
25521         function.
25522         * doc/functions/getline.texi: Likewise.
25523
25524 2007-09-09  Jim Meyering  <jim@meyering.net>
25525
25526         * lib/hash.c (hash_initialize): Detect calloc failure.
25527         Reported by Bruno Haible.
25528
25529 2007-09-09  Bruno Haible  <bruno@clisp.org>
25530
25531         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
25532         malloc or realloc fails.
25533
25534 2007-09-09  Bruno Haible  <bruno@clisp.org>
25535
25536         * modules/getcwd (Depends-on): Add malloc-posix.
25537         * modules/glob (Depends-on): Likewise.
25538         * modules/putenv (Depends-on): Likewise.
25539         * modules/strdup (Depends-on): Likewise.
25540         * modules/getdelim (Depends-on): Add realloc-posix.
25541         * modules/read-file (Depends-on): Likewise.
25542
25543 2007-09-09  Bruno Haible  <bruno@clisp.org>
25544
25545         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
25546         (gl_FUNC_MALLOC_POSIX): Require it.
25547         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
25548         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
25549         * modules/realloc (Files): Add m4/malloc.m4.
25550         * modules/calloc (Files): Likewise.
25551
25552 2007-09-09  Bruno Haible  <bruno@clisp.org>
25553
25554         * modules/malloc-posix: New file.
25555         * modules/malloc (Depends-on): Add malloc-posix.
25556         * lib/malloc.c: Include errno.h.
25557         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
25558         and a POSIX-compatible malloc into a single function. Set ENOMEM
25559         when returning NULL.
25560         * m4/malloc.m4: New file.
25561         * doc/functions/malloc.texi: Mention the malloc-posix module.
25562         * lib/stdlib_.h (malloc): New declaration.
25563         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25564         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
25565         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
25566         and HAVE_MALLOC_POSIX.
25567
25568 2007-09-09  Bruno Haible  <bruno@clisp.org>
25569
25570         * modules/realloc-posix: New file.
25571         * modules/realloc (Depends-on): Add realloc-posix.
25572         * lib/realloc.c: Include errno.h.
25573         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
25574         and a POSIX-compatible realloc into a single function. Set ENOMEM
25575         when returning NULL.
25576         * m4/realloc.m4: New file.
25577         * doc/functions/realloc.texi: Mention the realloc-posix module.
25578         * lib/stdlib_.h (realloc): New declaration.
25579         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25580         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
25581         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
25582         and HAVE_REALLOC_POSIX.
25583
25584 2007-09-09  Bruno Haible  <bruno@clisp.org>
25585
25586         * modules/calloc-posix: New file.
25587         * modules/calloc (Depends-on): Add calloc-posix.
25588         * lib/calloc.c: Include errno.h.
25589         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
25590         and a POSIX-compatible calloc into a single function. Set ENOMEM
25591         when returning NULL.
25592         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
25593         * doc/functions/calloc.texi: Mention the calloc-posix module.
25594         * lib/stdlib_.h (calloc): New declaration.
25595         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25596         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
25597         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
25598         and HAVE_CALLOC_POSIX.
25599
25600 2007-09-09  Bruno Haible  <bruno@clisp.org>
25601
25602         Allow for modules to show an arbitrary notice.
25603         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
25604         * gnulib-tool: New option --extract-notice.
25605         (func_usage): Document it.
25606         (sed_extract_prog): Update.
25607         (func_get_notice): New function.
25608         (func_modules_notice): New function.
25609         (func_import, func_create_testdir): Invoke it.
25610         Suggested by Jim Meyering.
25611
25612 2007-09-09  Bruno Haible  <bruno@clisp.org>
25613
25614         * gnulib-tool: New options --verbose, --quiet.
25615         (func_usage): Document them.
25616         (verbose): New variable.
25617         (func_execute_command): New function.
25618         (func_import): Don't show the module list and the file list if
25619         $verbose < 0.
25620         (func_create_testdir): Likewise. Use func_execute_command.
25621         (func_create_megatestdir): Use func_execute_command.
25622
25623 2007-09-08  Bruno Haible  <bruno@clisp.org>
25624
25625         * gnulib-tool (func_import): Prefer rsync over wget when available,
25626         for fetching the PO files.
25627
25628 2007-09-08  Bruno Haible  <bruno@clisp.org>
25629
25630         * posix-modules: New file. Portions copied from gnulib-tool.
25631         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
25632
25633 2007-09-08  Jim Meyering  <jim@meyering.net>
25634
25635         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
25636         * lib/fpending.h: Rename from __fpending.h.
25637         * lib/fpending.c: Rename from __fpending.c.
25638         Include "fpending.h", not "__fpending.h".
25639         * lib/__fpending.h, lib/__fpending.c: Remove files.
25640         * modules/fpending (Files): Reflect new file names.
25641         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
25642
25643 2007-09-08  Bruno Haible  <bruno@clisp.org>
25644
25645         * m4/inttypes-h.m4: Remove stub file.
25646
25647 2007-09-07  Simon Josefsson  <simon@josefsson.org>
25648
25649         * doc/headers/stdint.texi: Discuss #include_next issue.
25650
25651 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25652
25653         * build-aux/bootstrap: Remove obsolete comment about wget --help.
25654
25655 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25656
25657         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
25658         in variable name.
25659
25660 2007-09-03  Jim Meyering  <jim@meyering.net>
25661
25662         New module: git-version-gen.
25663         * modules/git-version-gen: New file.
25664
25665         Import changes from coreutils for bootstrap script.
25666
25667         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
25668
25669         bootstrap: uses rsync to download the .po files
25670         * build-aux/bootstrap (po_download_command_format): New global.
25671         (download_po_files): Use rsync.
25672         (update_po_files): Don't remove .po files after download,
25673         so future rsync runs can take advantage of the copies.
25674
25675         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
25676
25677         Solve the unnecessary-.po-file-regeneration problem once and for all.
25678         * build-aux/bootstrap (download_po_files): New function, renamed from
25679         get_translations.  Now, downloads, but doesn't update LINGUAS.
25680         (update_po_files): New function.
25681
25682         bootstrap: Ignore more.
25683         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
25684         uniwidth to e.g., lib/.gitignore.
25685         (slurp): Handle the sys_stat_.h -> sys mapping, too.
25686
25687         * build-aux/bootstrap: New setting: vc_ignore.
25688         (insert_sorted_if_absent): Create $file if absent.
25689         Adapt to new, possibly empty, list: $vc_ignore.
25690
25691         bootstrap: generate more ignorable names
25692         * build-aux/bootstrap (slurp): When generating ignorable names,
25693         also map .sin to .sed, .gperf to .c, and .y to .c.
25694
25695 2007-09-03  Jim Meyering  <jim@meyering.net>
25696
25697         * build-aux/git-version-gen: New file, from coreutils.  For details, see
25698         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
25699
25700 2007-09-02  Bruno Haible  <bruno@clisp.org>
25701
25702         Fix mis-recognition of 'mcs' on QNX 6.
25703         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
25704         output contains the string "Mono".
25705         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
25706         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
25707
25708 2007-09-01  Bruno Haible  <bruno@clisp.org>
25709
25710         Fix collision between uniwidth/* and linebreak modules.
25711         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
25712         u32_width): Remove declarations.
25713         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
25714         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
25715         streq3, streq2, streq1, streq0): Remove functions.
25716         (STREQ): Remove macro.
25717         (is_cjk_encoding): Remove function.
25718         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
25719         (uc_width, u8_width, u16_width, u32_width): Remove functions.
25720         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
25721         * NEWS: Document the change.
25722
25723 2007-09-01  Bruno Haible  <bruno@clisp.org>
25724
25725         * lib/streq.h: Add double-inclusion guard.
25726
25727 2007-09-01  Karl Berry  <karl@gnu.org>
25728
25729         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
25730
25731 2007-08-28  Jim Meyering  <jim@meyering.net>
25732
25733         Rename mreadlink_with_size to areadlink_with_size.
25734         * NEWS: Document the change.
25735         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
25736         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
25737         * lib/mreadlink.h: Rename this to...
25738         * lib/areadlink.h: ...this.
25739         * modules/mreadlink-with-size: Rename this to...
25740         * modules/areadlink-with-size: ...this.
25741         * lib/canonicalize.c: Reflect the renaming.
25742         * modules/canonicalize: Likewise.
25743
25744 2007-08-26  Bruno Haible  <bruno@clisp.org>
25745
25746         * gnulib-tool (func_import): When deciding which files to remove,
25747         consider also dangling symbolic links.
25748         Reported by Eric Blake.
25749
25750 2007-08-26  Bruno Haible  <bruno@clisp.org>
25751
25752         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
25753
25754 2007-08-23  Simon Josefsson  <simon@josefsson.org>
25755
25756         * lib/readline.c: Don't include getline.h, the prototype is now
25757         found in stdio.h.
25758
25759 2007-08-23  Jim Meyering  <jim@meyering.net>
25760
25761         Getdelim touchup.
25762         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
25763         around the funlockfile call, since funlockfile never sets errno.
25764         Don't set errno upon failed realloc.
25765
25766 2007-08-22  Eric Blake  <ebb9@byu.net>
25767
25768         Getline touchups.
25769         * lib/getdelim.c (getdelim): Revert regression that required *n to
25770         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
25771         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
25772         getdelim, rather than whether implementation is missing.
25773         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
25774         * lib/stdio_.h (getline): Also declare if replacement is
25775         required.
25776         * doc/functions/getdelim.texi: New file.
25777         * doc/functions/getline.texi: Likewise.
25778         * doc/gnulib.texi (Function Substitutes): Add new files.
25779         Reported by Bruno Haible.
25780
25781 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
25782
25783         * users.txt: Add Guile.
25784
25785 2007-08-22  Eric Blake  <ebb9@byu.net>
25786
25787         * tests/test-getdelim.c (main): Use remove, not unlink.
25788         * tests/test-getline.c (main): Likewise.
25789
25790         Move getline and getdelim into stdio.h, per POSIX 200x.
25791         * modules/getline (Files): Remove getline.h.
25792         (Depends-on): Add stdio.
25793         (configure.ac): Add module indicator.
25794         * modules/getdelim (Files): Remove getdelim.h.
25795         (Depends-on): Add stdio.
25796         (configure.ac): Add module indicator.
25797         * modules/stdio (Makefile.am): Work with new indicators.
25798         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
25799         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
25800         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25801         * lib/getdelim.h: Delete.
25802         * lib/getline.h: Delete.
25803         * lib/stdio_.h (getdelim, getline): Declare.
25804         * modules/getdelim-tests: New module.
25805         * modules/getline-tests: Likewise.
25806         * tests/test-getdelim.c: New file.
25807         * tests/test-getline.c: Likewise.
25808         * NEWS: Document the change.
25809         * lib/getline.c: Update choice of header.
25810         * lib/csharpcomp.c: Likewise.
25811         * lib/getpass.c: Likewise.
25812         * lib/javacomp.c: Likewise.
25813         * lib/javaversion.c: Likewise.
25814         * lib/yesno.c: Likewise.
25815         * lib/getdelim.c: Likewise.
25816         (getdelim): Set errno on failure, and avoid memory leak.
25817
25818 2007-08-19  Bruno Haible  <bruno@clisp.org>
25819
25820         * modules/closein (Depends-on): Add freadahead.
25821         * lib/closein.c: Include freadahead.h.
25822         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
25823         is zero.
25824
25825 2007-08-19  Bruno Haible  <bruno@clisp.org>
25826
25827         * modules/freadahead-tests: New file.
25828         * tests/test-freadahead.sh: New file.
25829         * tests/test-freadahead.c: New file.
25830
25831         * modules/freadahead: New file.
25832         * lib/freadahead.h: New file.
25833         * lib/freadahead.c: New file.
25834         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
25835         fbufmode, fpurge, freadable, fwritable.
25836
25837 2007-08-19  Eric Blake  <ebb9@byu.net>
25838
25839         Test yesno in combination with closein.
25840         * lib/yesno.c (yesno): Document use of stdin.
25841         * modules/yesno-tests (Files): New module.
25842         * tests/test-yesno.c (main): New file.
25843         * tests/test-yesno.sh: Likewise.
25844
25845 2007-08-19  Bruno Haible  <bruno@clisp.org>
25846
25847         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
25848         * lib/fseeko.c (rpl_fseeko): Likewise.
25849         * lib/fseterr.c (fseterr): Likewise.
25850
25851 2007-08-19  Bruno Haible  <bruno@clisp.org>
25852
25853         * tests/test-lseek.c (main): Disable a test for BeOS.
25854         * doc/functions/lseek.texi: Document the BeOS bug.
25855
25856 2007-08-19  Bruno Haible  <bruno@clisp.org>
25857             Eric Blake  <ebb9@byu.net>
25858
25859         * lib/lseek.c: Include <sys/stat.h>.
25860         (rpl_lseek): Add workaround code also for Unix platforms.
25861         Needed for BeOS.
25862         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
25863         * doc/functions/lseek.texi: Document BeOS definiency.
25864
25865 2007-08-18  Bruno Haible  <bruno@clisp.org>
25866
25867         * modules/fstrcmp-tests: New file.
25868         * tests/test-fstrcmp.c: New file.
25869
25870 2007-08-18  Bruno Haible  <bruno@clisp.org>
25871
25872         * modules/fstrcmp: New file, from GNU gettext with modifications.
25873         * lib/fstrcmp.h: New file, from GNU gettext.
25874         * lib/fstrcmp.c: New file, from GNU gettext.
25875         * MODULES.html.sh (String handling): Add fstrcmp.
25876
25877 2007-08-18  Bruno Haible  <bruno@clisp.org>
25878
25879         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
25880         'bool'.
25881         (diag, compareseq): Remove const from the ctxt argument.
25882         (USE_HEURISTIC): Undefine at the end.
25883
25884 2007-08-18  Jim Meyering  <jim@meyering.net>
25885
25886         New file: lib/idcache.h
25887         * NEWS: Mention the addition.
25888         * modules/idcache (Files): Add lib/idcache.h
25889         * lib/idcache.c: Include "idcache.h".
25890         Don't include <sys/types.h>.
25891         Add a FIXME comment.
25892         Move file-scoped "static" declarations to the top.
25893         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
25894
25895 2007-08-17  Bruno Haible  <bruno@clisp.org>
25896         and Paul Eggert  <eggert@cs.ucla.edu>
25897
25898         * MODULES.html.sh: Add diffseq.
25899         * modules/diffseq: New file.
25900         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
25901         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
25902
25903 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
25904
25905         Import changes from coreutils for bootstrap script.
25906
25907         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
25908
25909         * build-aux/bootstrap (slurp): Work even in environments where
25910         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
25911         current code does not slurp files whose names start with ".", and
25912         this looks like it might be a troublesome area.
25913
25914         2007-07-11  Jim Meyering  <jim@meyering.net>
25915
25916         If there's a GPL vN copyright comment, require that N == 3.
25917
25918         2007-07-08  Jim Meyering  <jim@meyering.net>
25919
25920         Run the coreutils-specific code only if tests/Makefile.am.in exists.
25921         * build-aux/bootstrap (mam_template): Move definition out of loop.
25922
25923         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
25924
25925         * build-aux/bootstrap (symlink_to_dir): Rename function from
25926         symlink_to_gnulib.  Add a directory parameter.  Update all
25927         callers.
25928         (cp_mark_as_generated): Also check for -- and link to -- files in
25929         gl/.
25930
25931         2007-07-08  Jim Meyering  <jim@meyering.net>
25932
25933         Adapt to deeper hierarchy in gnulib.
25934         * build-aux/bootstrap (symlink_to_dir): If the destination
25935         directory doesn't exist, create it. This is required at least for
25936         "lib/uniwidth/cjk.h".
25937
25938         2007-05-15  Jim Meyering  <jim@meyering.net>
25939
25940         * build-aux/bootstrap: Now that generated Makefile.am files
25941         are no longer under version control, they must be created at
25942         bootstrap time.
25943
25944 2007-08-14  Ben Pfaff  <blp@gnu.org>
25945
25946         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
25947
25948 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
25949
25950         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
25951         given the changes below.
25952         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
25953         even on hosts that have padding bits beyond the supported 64.
25954
25955 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
25956
25957         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
25958         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
25959         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
25960         depends on it.
25961         (xstrtol_error): Remove.
25962         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
25963         but with a different signature.
25964         (ATTRIBUTE_NORETURN, __attribute__): New macros.
25965         * lib/xstrtol-error.c: Include exitfail.h.
25966         (xstrtol_fatal): New function, with a different signature from the
25967         old xstrtol_error, so that the caller need not worry about passing
25968         in an exit status, or about storage management of the option argument.
25969         (xstrtol_error): Now a static function.  Redo signature to
25970         implement xstrtol_fatal.  Output the correct number of hyphens in
25971         front of the option so that the caller need not worry about
25972         storage management.
25973         (N_): New macro.
25974         (_): Remove; not used now.
25975         * modules/xstrtol: Depend on getopt.
25976         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
25977         of old STRTOL_FATAL_ERROR macro.
25978         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
25979         of test program.
25980         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
25981         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
25982
25983 2007-08-08  Eric Blake  <ebb9@byu.net>
25984
25985         * lib/xstrtol-error.c: Add missing include.
25986
25987         Move xstrtol messages into gnulib domain, when --pobase is used.
25988         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
25989         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
25990         * modules/xstrtol (Files): Distribute new file.
25991         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
25992         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
25993         * tests/test-xstrtol.c: ...into new file.
25994         * tests/test-xstrtoul.c: Also test xstrtoul.
25995         * tests/test-xstrtoimax.c: Also test xstrtoimax.
25996         * tests/test-xstrtoumax.c: Also test xstrtoumax.
25997         * tests/test-xstrtol.sh: Drive the tests.
25998         * tests/test-xstrtoimax.sh: Likewise.
25999         * tests/test-xstrtoumax.sh: Likewise.
26000         * modules/xstrtol-tests: New module.
26001         * modules/xstrtoimax-tests: Likewise.
26002         * modules/xstrtoumax-tests: Likewise.
26003
26004 2007-08-08  Jim Meyering  <jim@meyering.net>
26005
26006         New function: mfile_name_concat.
26007         * lib/filenamecat.c (mfile_name_concat): New function, just like
26008         file_name_concat, but return NULL upon failure rather than exiting
26009         with a diagnostic.
26010         * lib/filenamecat.h: Declare it.
26011
26012 2007-08-07  Bruno Haible  <bruno@clisp.org>
26013
26014         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
26015         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
26016         warning from gcc.
26017         Reported by Eric Blake.
26018
26019 2007-08-07  Simon Josefsson  <simon@josefsson.org>
26020
26021         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
26022         * modules/crypto/arcfour (License): Likewise.
26023         * modules/crypto/des-tests (License): Likewise.
26024         * modules/crypto/gc-arctwo-tests (License): Likewise.
26025         * modules/crypto/gc-des-tests (License): Likewise.
26026         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
26027         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
26028         * modules/crypto/gc-md2-tests (License): Likewise.
26029         * modules/crypto/gc-md4-tests (License): Likewise.
26030         * modules/crypto/gc-md5-tests (License): Likewise.
26031         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
26032         * modules/crypto/gc-rijndael-tests (License): Likewise.
26033         * modules/crypto/gc-sha1-tests (License): Likewise.
26034         * modules/crypto/gc-tests (License): Likewise.
26035         * modules/crypto/hmac-md5 (License): Likewise.
26036         * modules/crypto/hmac-sha1 (License): Likewise.
26037         * modules/crypto/md2-tests (License): Likewise.
26038         * modules/crypto/md4-tests (License): Likewise.
26039         * modules/crypto/md5 (License): Likewise.
26040         * modules/crypto/rijndael (License): Likewise.
26041         * modules/crypto/sha1 (License): Likewise.
26042         * modules/memxor (License): Likewise.
26043
26044 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26045         and Bruno Haible  <bruno@clisp.org>
26046
26047         * NEWS: Describe interface changes to human, xstrtol.
26048         * lib/human.h: Include <xstrtol.h>.
26049         (human_options): Return enum strtol_error, not int.  Remove
26050         bool arg; take int * instead.
26051         * lib/human.c: Don't include "gettext.h".
26052         (_): Remove; no longer used.
26053         Don't include <xstrtol.h>, since human.h does it.
26054         (human_options): Adjust to abovementioned interface changes.
26055         Do not report error to stderr; that's now the caller's
26056         responsibility.
26057         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
26058         interface change.
26059         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
26060         Str, Argument_type_string.  All uses changed.  Put " argument"
26061         in diagnostics to make them clearer.  Change wording of suffix
26062         message for clarity.
26063         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
26064         Argument_type_string.
26065         (STRTOL_FATAL_WARN): Remove; no longer used.
26066         * modules/human (Depends-on): Remove gettext-h.
26067
26068 2007-08-06  Simon Josefsson  <simon@josefsson.org>
26069
26070         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
26071
26072 2007-07-31  Bruno Haible  <bruno@clisp.org>
26073
26074         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
26075         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
26076         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
26077
26078 2007-07-31  Bruno Haible  <bruno@clisp.org>
26079
26080         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
26081         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
26082
26083 2007-07-30  Bruno Haible  <bruno@clisp.org>
26084
26085         * modules/base64 (License): Use the synonymous term "LGPLv2+".
26086         * modules/c-ctype (License): Likewise.
26087         * modules/c-strcase (License): Likewise.
26088         * modules/check-version (License): Likewise.
26089         * modules/iconv (License): Likewise.
26090         * modules/iconv_open (License): Likewise.
26091         * modules/read-file (License): Likewise.
26092         * modules/striconv (License): Likewise.
26093         * modules/strverscmp (License): Likewise.
26094         * modules/vasprintf (License): Likewise.
26095         * modules/crypto/des (License): Likewise.
26096         * modules/crypto/gc (License): Likewise.
26097         * modules/crypto/gc-arcfour (License): Likewise.
26098         * modules/crypto/gc-arctwo (License): Likewise.
26099         * modules/crypto/gc-des (License): Likewise.
26100         * modules/crypto/gc-hmac-md5 (License): Likewise.
26101         * modules/crypto/gc-hmac-sha1 (License): Likewise.
26102         * modules/crypto/gc-md2 (License): Likewise.
26103         * modules/crypto/gc-md4 (License): Likewise.
26104         * modules/crypto/gc-md5 (License): Likewise.
26105         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
26106         * modules/crypto/gc-random (License): Likewise.
26107         * modules/crypto/gc-rijndael (License): Likewise.
26108         * modules/crypto/gc-sha1 (License): Likewise.
26109         * modules/crypto/md2 (License): Likewise.
26110         * modules/crypto/md4 (License): Likewise.
26111
26112 2007-07-30  Jim Meyering  <jim@meyering.net>
26113
26114         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
26115         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
26116         it has valid stat data.  This bug would cause du not to count the
26117         sizes of inaccessible directories.
26118         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
26119         in <http://bugzilla.redhat.com/250077>.
26120
26121 2007-07-25  Peter O'Gorman  <peter@pogma.com>
26122             Bruno Haible  <bruno@clisp.org>
26123
26124         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
26125         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
26126         #include_next, gives a diagnostic about it, but reports no error in
26127         the exit code.
26128         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
26129
26130 2007-07-24  Ben Pfaff  <blp@gnu.org>
26131
26132         Improve name: "count-one-bits" is better than "popcount".
26133         * MODULES.html.sh: Update name.
26134         * lib/popcount.h: Renamed lib/count-one-bits.h.
26135         (popcount): Renamed count_one_bits.
26136         (popcountl): Renamed count_one_bits_l.
26137         (popcountll): Renamed count_one_bits_ll.
26138         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
26139         * modules/popcount: Renamed module/count-one-bits.
26140         * modules/popcount-tests: Renamed module/count-one-bits-tests.
26141         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
26142
26143 2007-07-23  Ben Pfaff  <blp@gnu.org>
26144
26145         * lib/popcount.h (popcount32): Reduce size of constants, to allow
26146         better code generation, and add U to large constants to avoid
26147         warnings, in non-GCC case.
26148         Suggested by Bruno Haible.
26149
26150 2007-07-23  Ben Pfaff  <blp@gnu.org>
26151
26152         * lib/popcount.h: Use verify_true instead of if...abort.
26153         * modules/popcount: Depend on verify module.
26154         Suggested by Jim Meyering.
26155
26156 2007-07-23  Bruno Haible  <bruno@clisp.org>
26157
26158         * gnulib-tool (func_import): Create a .cvsignore file also when the
26159         directory is not yet in CVS but the toplevel directory is. When
26160         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
26161         Reported by Karl Berry.
26162
26163 2007-07-22  Ben Pfaff  <blp@gnu.org>
26164
26165         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
26166         case.
26167         Suggested by Eric Blake.
26168
26169 2007-07-22  Ben Pfaff  <blp@gnu.org>
26170
26171         New module: popcount.
26172         * MODULES.html.sh: Add popcount.
26173         * modules/popcount: New file.
26174         * modules/popcount-tests: New file.
26175         * tests/test-popcount.c: New file.
26176         * lib/popcount.h: New file.
26177         * m4/popcount.m4: New file.
26178
26179 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
26180
26181         * build-aux/announce-gen: Update to GPLv3.
26182
26183         * build-aux/config.guess: Update from config.
26184
26185 2007-07-21  Bruno Haible  <bruno@clisp.org>
26186
26187         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
26188         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
26189
26190 2007-07-20  Jim Meyering  <jim@meyering.net>
26191
26192         * check-module: Diagnose a self-dependency.
26193
26194 2007-07-19  Bruno Haible  <bruno@clisp.org>
26195
26196         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
26197         empty.
26198         Reported by Eric Blake.
26199
26200 2007-07-18  Bruno Haible  <bruno@clisp.org>
26201
26202         * gnulib-tool: New options --po-base, --po-domain.
26203         (func_usage): Document them.
26204         (pobase, po_domain): New variables.
26205         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
26206         DEFAULT_TEXT_DOMAIN.
26207         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
26208         (func_import): Consider pobase and po_domain. Create a po/ directory.
26209         (func_create_testdir): Set pobase and po_domain to empty.
26210         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
26211         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
26212
26213 2007-07-18  Bruno Haible  <bruno@clisp.org>
26214
26215         * gnulib-tool (func_get_automake_snippet): Synthesize also an
26216         EXTRA_DIST augmentation for files in build-aux/.
26217
26218 2007-07-16  Bruno Haible  <bruno@clisp.org>
26219
26220         * modules/lseek (License): Use the synonymous term "LGPLv2+".
26221         * modules/getdelim (License): Likewise.
26222
26223 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26224
26225         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
26226         * modules/d-type (License): Likewise.
26227         * modules/extensions (License): Likewise.
26228         * modules/fnmatch (License): Likewise.
26229         * modules/fseeko (License): Likewise.
26230         * modules/getaddrinfo (License): Likewise.
26231         * modules/getline (License): Likewise.
26232         * modules/getlogin_r (License): Likewise.
26233         * modules/getpass (License): Likewise.
26234         * modules/gettimeofday (License): Likewise.
26235         * modules/glob (License): Likewise.
26236         * modules/inet_ntop (License): Likewise.
26237         * modules/malloc (License): Likewise.
26238         * modules/malloca (License): Likewise.
26239         * modules/memmem (License): Likewise.
26240         * modules/mempcpy (License): Likewise.
26241         * modules/memset (License): Likewise.
26242         * modules/minmax (License): Likewise.
26243         * modules/mktime (License): Likewise.
26244         * modules/netinet_in (License): Likewise.
26245         * modules/pathmax (License): Likewise.
26246         * modules/poll (License): Likewise.
26247         * modules/regex (License): Likewise.
26248         * modules/snprintf (License): Likewise.
26249         * modules/stdbool (License): Likewise.
26250         * modules/stdint (License): Likewise.
26251         * modules/stdio (License): Likewise.
26252         * modules/strcase (License): Likewise.
26253         * modules/strcasestr (License): Likewise.
26254         * modules/strdup (License): Likewise.
26255         * modules/string (License): Likewise.
26256         * modules/strndup (License): Likewise.
26257         * modules/strnlen (License): Likewise.
26258         * modules/strpbrk (License): Likewise.
26259         * modules/strptime (License): Likewise.
26260         * modules/strsep (License): Likewise.
26261         * modules/sys_select (License): Likewise.
26262         * modules/sys_socket (License): Likewise.
26263         * modules/sys_stat (License): Likewise.
26264         * modules/sys_time (License): Likewise.
26265         * modules/time (License): Likewise.
26266         * modules/time_r (License): Likewise.
26267         * modules/timegm (License): Likewise.
26268         * modules/unistd (License): Likewise.
26269         * modules/vsnprintf (License): Likewise.
26270         * modules/wctype (License): Likewise.
26271
26272 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26273
26274         * modules/argz (License): LGPLv2+.
26275
26276 2007-07-15  Karl Berry  <karl@gnu.org>
26277
26278         * doc/gnulib.texi: revise node structure per new fdl.texi.
26279
26280 2007-07-14  Bruno Haible  <bruno@clisp.org>
26281
26282         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
26283         the output file.
26284         * lib/uniname/uninames.h: Regenerated.
26285
26286 2007-07-14  Karl Berry  <karl@gnu.org>
26287
26288         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
26289         omitting sectioning and index commands.
26290
26291 2007-07-13  Bruno Haible  <bruno@clisp.org>
26292
26293         New gnulib-tool option --more-symlinks.
26294         * gnulib-tool (func_usage): Document --more-symlinks.
26295         (do_copyrights): New variable.
26296         Recognize option --more-symlinks.
26297         (func_import): Don't add a copyright notice transform to
26298         sed_transform_lib_file if do_copyrights is empty.
26299
26300 2007-07-13  Bruno Haible  <bruno@clisp.org>
26301
26302         * lib/vasnprintf.c (decimal_point_char): Define also if
26303         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
26304         && !NEED_PRINTF_DIRECTIVE_A.
26305         Reported by Clemens Koller <clemens.koller@anagramm.de> via
26306         Gary V. Vaughan <gary@gnu.org>.
26307
26308 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
26309
26310         * lib/inttypes_.h: Undo previous change, since it was fixed
26311         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
26312
26313 2007-07-13  Bruno Haible  <bruno@clisp.org>
26314
26315         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
26316         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
26317
26318 2007-07-13  Jim Meyering  <jim@meyering.net>
26319
26320         df: Don't fail for Tru64's "file-on-file mount".
26321         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
26322         so we fall through and use statfs instead.  Details here:
26323         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
26324         Reported by Albert Chin.
26325
26326 2007-07-13  Bruno Haible  <bruno@clisp.org>
26327
26328         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
26329         * modules/configmake (License): Likewise.
26330         * modules/gettext (License): Likewise.
26331         * modules/gettext-h (License): Likewise.
26332         * modules/include_next (License): Likewise.
26333         * modules/link-warning (License): Likewise.
26334         * modules/localcharset (License): Likewise.
26335         * modules/localename (License): Likewise.
26336         * modules/lock (License): Likewise.
26337         * modules/relocatable-lib-lgpl (License): Likewise.
26338         * modules/size_max (License): Likewise.
26339         * modules/vasnprintf (License): Likewise.
26340         * modules/wchar (License): Likewise.
26341         * modules/xsize (License): Likewise.
26342
26343 2007-07-13  Bruno Haible  <bruno@clisp.org>
26344
26345         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
26346         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
26347
26348 2007-07-12  Bruno Haible  <bruno@clisp.org>
26349
26350         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
26351         in the modules files.
26352
26353 2007-07-11  Karl Berry  <karl@gnu.org>
26354
26355         * MODULES.html.sh (func_module): use
26356          sed -e '\|^'"${includefile}"'$|d'
26357          instead of /.../d, to avoid errors on $includefile's containing /.
26358
26359 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
26360
26361         * gnulib-tool (func_import): Avoid duplication of --avoid
26362         statements
26363         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
26364         names to `_' in variable names.
26365
26366 2007-07-10  Eric Blake  <ebb9@byu.net>
26367
26368         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
26369         * NEWS: Document this change.
26370
26371 2007-07-08  Bruno Haible  <bruno@clisp.org>
26372
26373         Update to Unicode 5.0.
26374         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
26375         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
26376         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
26377         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
26378         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
26379         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
26380         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
26381         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
26382         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
26383         U+10A3F, U+1D242..U+1D244.
26384         (nonspacing_table_ind): Update.
26385         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
26386         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
26387
26388 2007-07-08  Bruno Haible  <bruno@clisp.org>
26389
26390         Update to Unicode 5.0.
26391         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
26392         code transform. Extend the name index field of unicode_name_to_code and
26393         unicode_code_to_name from 16 to 24 bits.
26394         * lib/uniname/uniname.c (unicode_character_name,
26395         unicode_name_character): Add the range 0x12xxx to the code transform.
26396         * lib/uniname/uninames.h: Regenerated.
26397         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
26398
26399 2007-07-07  Bruno Haible  <bruno@clisp.org>
26400
26401         * modules/wcwidth-tests: New file.
26402         * tests/test-wcwidth.c: New file.
26403
26404         Work around MacOS X wcwidth() bug.
26405         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
26406         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
26407         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
26408         original wcwidth in non-UTF-8 locales.
26409         * modules/wcwidth (Depends-on): Add localcharset, streq,
26410         uniwidth/width.
26411         * doc/functions/wcwidth.texi: Update.
26412
26413 2007-07-07  Bruno Haible  <bruno@clisp.org>
26414
26415         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
26416         (wcwidth): New declaration.
26417         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
26418         macros.
26419         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
26420         here. Prepare for creating <wchar.h> unconditionally.
26421         * modules/wchar (Depends-on): Add link-warning.
26422         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
26423         REPLACE_WCWIDTH, and GL_LINK_WARNING.
26424         * lib/wcwidth.h: Remove file.
26425         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
26426         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
26427         * modules/wcwidth (Files): Remove lib/wcwidth.h.
26428         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
26429         (Include): Replace wcwidth.h with <wchar.h>.
26430         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
26431         * lib/mbchar.h: Don't include wcwidth.h.
26432         * lib/mbswidth.c: Likewise.
26433         * NEWS: Mention the change.
26434
26435 2007-07-07  Bruno Haible  <bruno@clisp.org>
26436
26437         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
26438         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
26439         definition with an external declaration.
26440         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
26441         defined as a function. Remove AC_C_INLINE requirement.
26442         * modules/wcwidth (Files): Add lib/wcwidth.c.
26443         (Makefile.am): Remove redundant statement.
26444
26445 2007-07-07  Bruno Haible  <bruno@clisp.org>
26446
26447         * MODULES.html.sh (Unicode string functions): Add the new modules.
26448
26449         * tests/uniwidth/test-u32-strwidth.c: New file.
26450         * modules/uniwidth/u32-strwidth-tests: New file.
26451
26452         * lib/uniwidth/u32-strwidth.c: New file.
26453         * modules/uniwidth/u32-strwidth: New file.
26454
26455         * tests/uniwidth/test-u16-strwidth.c: New file.
26456         * modules/uniwidth/u16-strwidth-tests: New file.
26457
26458         * lib/uniwidth/u16-strwidth.c: New file.
26459         * modules/uniwidth/u16-strwidth: New file.
26460
26461         * tests/uniwidth/test-u8-strwidth.c: New file.
26462         * modules/uniwidth/u8-strwidth-tests: New file.
26463
26464         * lib/uniwidth/u8-strwidth.c: New file.
26465         * modules/uniwidth/u8-strwidth: New file.
26466
26467         * tests/uniwidth/test-u32-width.c: New file.
26468         * modules/uniwidth/u32-width-tests: New file.
26469
26470         * lib/uniwidth/u32-width.c: New file.
26471         * modules/uniwidth/u32-width: New file.
26472
26473         * tests/uniwidth/test-u16-width.c: New file.
26474         * modules/uniwidth/u16-width-tests: New file.
26475
26476         * lib/uniwidth/u16-width.c: New file.
26477         * modules/uniwidth/u16-width: New file.
26478
26479         * tests/uniwidth/test-u8-width.c: New file.
26480         * modules/uniwidth/u8-width-tests: New file.
26481
26482         * lib/uniwidth/u8-width.c: New file.
26483         * modules/uniwidth/u8-width: New file.
26484
26485         * tests/uniwidth/test-uc_width.c: New file.
26486         * modules/uniwidth/width-tests: New file.
26487
26488         * lib/uniwidth/width.c: New file, from GNU libiconv.
26489         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
26490         * modules/uniwidth/width: New file.
26491
26492         * lib/uniwidth.h: New file, from GNU libiconv.
26493         * modules/uniwidth/base: New file.
26494
26495 2007-07-07  Bruno Haible  <bruno@clisp.org>
26496
26497         * lib/uniname.h: New file, from GNU gettext.
26498         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
26499         * lib/uniname/uninames.h: New file, from GNU gettext.
26500         * lib/uniname/uniname.c: New file, from GNU gettext.
26501         * tests/uniname/test-uninames.sh: New file.
26502         * tests/uniname/test-uninames.c: New file, from GNU gettext.
26503         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
26504         * modules/uniname/base: New file.
26505         * modules/uniname/uniname: New file.
26506         * modules/uniname/uniname-tests: New file.
26507         * MODULES.html.sh (Unicode string functions): Add the new modules.
26508
26509 2007-07-06  Bruno Haible  <bruno@clisp.org>
26510
26511         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
26512
26513 2007-07-06  Bruno Haible  <bruno@clisp.org>
26514
26515         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
26516         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
26517         includes <cygwin/sys_time.h> which includes <sys/select.h> which
26518         include <sys/time.h>.
26519         Reported by Eric Blake.
26520
26521 2007-07-06  Eric Blake  <ebb9@byu.net>
26522
26523         Fix testing canonicalize on cygwin.
26524         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
26525         Revert patch from 2007-06-19.
26526         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
26527         canonicalize module is also in use.
26528         * tests/test-canonicalize.c: New file.
26529         * tests/test-canonicalize.sh: Likewise.
26530         * modules/canonicalize-tests: Likewise.
26531
26532 2007-07-06  Jim Meyering  <jim@meyering.net>
26533
26534         * lib/getugroups.c (getugroups): Detect getgrent failure.
26535         Adjust comment to reflect reality: this function may return -1.
26536
26537 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
26538
26539         * build-aux/bootstrap (TP_URL,get_translations): Update to use
26540         the new TP address.
26541         (usage): Fix typo
26542         (gnulib_mk): New variable.
26543
26544 2007-07-05  Jim Meyering  <jim@meyering.net>
26545
26546         Don't let endgrent clobber errno, no matter how improbable.
26547         * lib/getugroups.c (getugroups): Save and restore errno around
26548         endgrent call.
26549
26550         Close the group DB even when failing with 2^31 or more members.
26551         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
26552
26553 2007-07-04  Jim Meyering  <jim@meyering.net>
26554
26555         * lib/getugroups.h: New file.
26556         * lib/getugroups.c: Include "getugroups.h".
26557         Remove uses of "register" keyword.
26558         Move local variable, "cp", down into scope where used.
26559         Give "username" parameter the "const" attribute.
26560         * modules/getugroups (Files): Add lib/getugroups.h
26561
26562 2007-07-04  Karl Berry  <karl@gnu.org>
26563
26564         * MODULES.html.sh (func_all_modules): Complete rename of
26565         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
26566
26567 2007-07-02  Bruno Haible  <bruno@clisp.org>
26568
26569         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
26570         mode, when inttypes.h comes from gnulib.
26571         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
26572
26573 2007-07-02  Simon Josefsson  <simon@josefsson.org>
26574
26575         * NEWS: Mention lgpl module name change.
26576
26577         * modules/lgpl-2.1: Renamed from lgpl.
26578
26579         * NEWS: Mention gpl module name change.
26580
26581         * modules/gpl-3.0: New file, based on gpl-2.0.
26582
26583         * modules/gpl-2.0: Renamed from gpl.
26584
26585         * modules/gpl: Fix filename, doc/gpl.texi is now found at
26586         doc/gpl-2.0.texi.
26587
26588 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
26589
26590         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
26591         #define __STDC_LIMIT_MACROS temporarily while including
26592         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
26593         Problem reported by Joel E. Denny in
26594         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
26595
26596 2007-07-01  Bruno Haible  <bruno@clisp.org>
26597
26598         * lib/unistdio.h: New file.
26599         * lib/unistdio/u-asnprintf.h: New file.
26600         * lib/unistdio/u-asprintf.h: New file.
26601         * lib/unistdio/u-printf-args.c: New file.
26602         * lib/unistdio/u-printf-args.h: New file.
26603         * lib/unistdio/u-printf-parse.h: New file.
26604         * lib/unistdio/u-snprintf.h: New file.
26605         * lib/unistdio/u-sprintf.h: New file.
26606         * lib/unistdio/u-vasprintf.h: New file.
26607         * lib/unistdio/u-vsnprintf.h: New file.
26608         * lib/unistdio/u-vsprintf.h: New file.
26609         * lib/unistdio/ulc-asnprintf.c: New file.
26610         * lib/unistdio/ulc-asprintf.c: New file.
26611         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
26612         * lib/unistdio/ulc-printf-parse.c: New file.
26613         * lib/unistdio/ulc-snprintf.c: New file.
26614         * lib/unistdio/ulc-sprintf.c: New file.
26615         * lib/unistdio/ulc-vasnprintf.c: New file.
26616         * lib/unistdio/ulc-vasprintf.c: New file.
26617         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
26618         * lib/unistdio/ulc-vsnprintf.c: New file.
26619         * lib/unistdio/ulc-vsprintf.c: New file.
26620         * lib/unistdio/u8-asnprintf.c: New file.
26621         * lib/unistdio/u8-asprintf.c: New file.
26622         * lib/unistdio/u8-printf-parse.c: New file.
26623         * lib/unistdio/u8-snprintf.c: New file.
26624         * lib/unistdio/u8-sprintf.c: New file.
26625         * lib/unistdio/u8-vasnprintf.c: New file.
26626         * lib/unistdio/u8-vasprintf.c: New file.
26627         * lib/unistdio/u8-vsnprintf.c: New file.
26628         * lib/unistdio/u8-vsprintf.c: New file.
26629         * lib/unistdio/u8-u8-asnprintf.c: New file.
26630         * lib/unistdio/u8-u8-asprintf.c: New file.
26631         * lib/unistdio/u8-u8-snprintf.c: New file.
26632         * lib/unistdio/u8-u8-sprintf.c: New file.
26633         * lib/unistdio/u8-u8-vasnprintf.c: New file.
26634         * lib/unistdio/u8-u8-vasprintf.c: New file.
26635         * lib/unistdio/u8-u8-vsnprintf.c: New file.
26636         * lib/unistdio/u8-u8-vsprintf.c: New file.
26637         * lib/unistdio/u16-asnprintf.c: New file.
26638         * lib/unistdio/u16-asprintf.c: New file.
26639         * lib/unistdio/u16-printf-parse.c: New file.
26640         * lib/unistdio/u16-snprintf.c: New file.
26641         * lib/unistdio/u16-sprintf.c: New file.
26642         * lib/unistdio/u16-vasnprintf.c: New file.
26643         * lib/unistdio/u16-vasprintf.c: New file.
26644         * lib/unistdio/u16-vsnprintf.c: New file.
26645         * lib/unistdio/u16-vsprintf.c: New file.
26646         * lib/unistdio/u16-u16-asnprintf.c: New file.
26647         * lib/unistdio/u16-u16-asprintf.c: New file.
26648         * lib/unistdio/u16-u16-snprintf.c: New file.
26649         * lib/unistdio/u16-u16-sprintf.c: New file.
26650         * lib/unistdio/u16-u16-vasnprintf.c: New file.
26651         * lib/unistdio/u16-u16-vasprintf.c: New file.
26652         * lib/unistdio/u16-u16-vsnprintf.c: New file.
26653         * lib/unistdio/u16-u16-vsprintf.c: New file.
26654         * lib/unistdio/u32-asnprintf.c: New file.
26655         * lib/unistdio/u32-asprintf.c: New file.
26656         * lib/unistdio/u32-printf-parse.c: New file.
26657         * lib/unistdio/u32-snprintf.c: New file.
26658         * lib/unistdio/u32-sprintf.c: New file.
26659         * lib/unistdio/u32-vasnprintf.c: New file.
26660         * lib/unistdio/u32-vasprintf.c: New file.
26661         * lib/unistdio/u32-vsnprintf.c: New file.
26662         * lib/unistdio/u32-vsprintf.c: New file.
26663         * lib/unistdio/u32-u32-asnprintf.c: New file.
26664         * lib/unistdio/u32-u32-asprintf.c: New file.
26665         * lib/unistdio/u32-u32-snprintf.c: New file.
26666         * lib/unistdio/u32-u32-sprintf.c: New file.
26667         * lib/unistdio/u32-u32-vasnprintf.c: New file.
26668         * lib/unistdio/u32-u32-vasprintf.c: New file.
26669         * lib/unistdio/u32-u32-vsnprintf.c: New file.
26670         * lib/unistdio/u32-u32-vsprintf.c: New file.
26671         * tests/unistdio/test-ulc-asnprintf1.c: New file.
26672         * tests/unistdio/test-ulc-asnprintf1.h: New file.
26673         * tests/unistdio/test-ulc-printf1.h: New file.
26674         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
26675         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
26676         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
26677         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
26678         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
26679         * tests/unistdio/test-ulc-vasprintf1.c: New file.
26680         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
26681         * tests/unistdio/test-ulc-vsprintf1.c: New file.
26682         * tests/unistdio/test-u8-asnprintf1.c: New file.
26683         * tests/unistdio/test-u8-asnprintf1.h: New file.
26684         * tests/unistdio/test-u8-printf1.h: New file.
26685         * tests/unistdio/test-u8-vasnprintf1.c: New file.
26686         * tests/unistdio/test-u8-vasnprintf2.c: New file.
26687         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
26688         * tests/unistdio/test-u8-vasnprintf3.c: New file.
26689         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
26690         * tests/unistdio/test-u8-vasprintf1.c: New file.
26691         * tests/unistdio/test-u8-vsnprintf1.c: New file.
26692         * tests/unistdio/test-u8-vsprintf1.c: New file.
26693         * tests/unistdio/test-u16-asnprintf1.c: New file.
26694         * tests/unistdio/test-u16-asnprintf1.h: New file.
26695         * tests/unistdio/test-u16-printf1.h: New file.
26696         * tests/unistdio/test-u16-vasnprintf1.c: New file.
26697         * tests/unistdio/test-u16-vasnprintf2.c: New file.
26698         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
26699         * tests/unistdio/test-u16-vasnprintf3.c: New file.
26700         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
26701         * tests/unistdio/test-u16-vasprintf1.c: New file.
26702         * tests/unistdio/test-u16-vsnprintf1.c: New file.
26703         * tests/unistdio/test-u16-vsprintf1.c: New file.
26704         * tests/unistdio/test-u32-asnprintf1.c: New file.
26705         * tests/unistdio/test-u32-asnprintf1.h: New file.
26706         * tests/unistdio/test-u32-printf1.h: New file.
26707         * tests/unistdio/test-u32-vasnprintf1.c: New file.
26708         * tests/unistdio/test-u32-vasnprintf2.c: New file.
26709         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
26710         * tests/unistdio/test-u32-vasnprintf3.c: New file.
26711         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
26712         * tests/unistdio/test-u32-vasprintf1.c: New file.
26713         * tests/unistdio/test-u32-vsnprintf1.c: New file.
26714         * tests/unistdio/test-u32-vsprintf1.c: New file.
26715         * modules/unistdio/base: New file.
26716         * modules/unistdio/u-printf-args: New file.
26717         * modules/unistdio/ulc-asnprintf: New file.
26718         * modules/unistdio/ulc-asprintf: New file.
26719         * modules/unistdio/ulc-fprintf: New file.
26720         * modules/unistdio/ulc-printf-parse: New file.
26721         * modules/unistdio/ulc-snprintf: New file.
26722         * modules/unistdio/ulc-sprintf: New file.
26723         * modules/unistdio/ulc-vasnprintf: New file.
26724         * modules/unistdio/ulc-vasprintf: New file.
26725         * modules/unistdio/ulc-vfprintf: New file.
26726         * modules/unistdio/ulc-vsnprintf: New file.
26727         * modules/unistdio/ulc-vsprintf: New file.
26728         * modules/unistdio/u8-asnprintf: New file.
26729         * modules/unistdio/u8-asprintf: New file.
26730         * modules/unistdio/u8-printf-parse: New file.
26731         * modules/unistdio/u8-snprintf: New file.
26732         * modules/unistdio/u8-sprintf: New file.
26733         * modules/unistdio/u8-vasnprintf: New file.
26734         * modules/unistdio/u8-vasprintf: New file.
26735         * modules/unistdio/u8-vsnprintf: New file.
26736         * modules/unistdio/u8-vsprintf: New file.
26737         * modules/unistdio/u8-u8-asnprintf: New file.
26738         * modules/unistdio/u8-u8-asprintf: New file.
26739         * modules/unistdio/u8-u8-snprintf: New file.
26740         * modules/unistdio/u8-u8-sprintf: New file.
26741         * modules/unistdio/u8-u8-vasnprintf: New file.
26742         * modules/unistdio/u8-u8-vasprintf: New file.
26743         * modules/unistdio/u8-u8-vsnprintf: New file.
26744         * modules/unistdio/u8-u8-vsprintf: New file.
26745         * modules/unistdio/u16-asnprintf: New file.
26746         * modules/unistdio/u16-asprintf: New file.
26747         * modules/unistdio/u16-printf-parse: New file.
26748         * modules/unistdio/u16-snprintf: New file.
26749         * modules/unistdio/u16-sprintf: New file.
26750         * modules/unistdio/u16-vasnprintf: New file.
26751         * modules/unistdio/u16-vasprintf: New file.
26752         * modules/unistdio/u16-vsnprintf: New file.
26753         * modules/unistdio/u16-vsprintf: New file.
26754         * modules/unistdio/u16-u16-asnprintf: New file.
26755         * modules/unistdio/u16-u16-asprintf: New file.
26756         * modules/unistdio/u16-u16-snprintf: New file.
26757         * modules/unistdio/u16-u16-sprintf: New file.
26758         * modules/unistdio/u16-u16-vasnprintf: New file.
26759         * modules/unistdio/u16-u16-vasprintf: New file.
26760         * modules/unistdio/u16-u16-vsnprintf: New file.
26761         * modules/unistdio/u16-u16-vsprintf: New file.
26762         * modules/unistdio/u32-asnprintf: New file.
26763         * modules/unistdio/u32-asprintf: New file.
26764         * modules/unistdio/u32-printf-parse: New file.
26765         * modules/unistdio/u32-snprintf: New file.
26766         * modules/unistdio/u32-sprintf: New file.
26767         * modules/unistdio/u32-vasnprintf: New file.
26768         * modules/unistdio/u32-vasprintf: New file.
26769         * modules/unistdio/u32-vsnprintf: New file.
26770         * modules/unistdio/u32-vsprintf: New file.
26771         * modules/unistdio/u32-u32-asnprintf: New file.
26772         * modules/unistdio/u32-u32-asprintf: New file.
26773         * modules/unistdio/u32-u32-snprintf: New file.
26774         * modules/unistdio/u32-u32-sprintf: New file.
26775         * modules/unistdio/u32-u32-vasnprintf: New file.
26776         * modules/unistdio/u32-u32-vasprintf: New file.
26777         * modules/unistdio/u32-u32-vsnprintf: New file.
26778         * modules/unistdio/u32-u32-vsprintf: New file.
26779         * modules/unistdio/ulc-asnprintf-tests: New file.
26780         * modules/unistdio/ulc-vasnprintf-tests: New file.
26781         * modules/unistdio/ulc-vasprintf-tests: New file.
26782         * modules/unistdio/ulc-vsnprintf-tests: New file.
26783         * modules/unistdio/ulc-vsprintf-tests: New file.
26784         * modules/unistdio/u8-asnprintf-tests: New file.
26785         * modules/unistdio/u8-vasnprintf-tests: New file.
26786         * modules/unistdio/u8-vasprintf-tests: New file.
26787         * modules/unistdio/u8-vsnprintf-tests: New file.
26788         * modules/unistdio/u8-vsprintf-tests: New file.
26789         * modules/unistdio/u16-asnprintf-tests: New file.
26790         * modules/unistdio/u16-vasnprintf-tests: New file.
26791         * modules/unistdio/u16-vasprintf-tests: New file.
26792         * modules/unistdio/u16-vsnprintf-tests: New file.
26793         * modules/unistdio/u16-vsprintf-tests: New file.
26794         * modules/unistdio/u32-asnprintf-tests: New file.
26795         * modules/unistdio/u32-vasnprintf-tests: New file.
26796         * modules/unistdio/u32-vasprintf-tests: New file.
26797         * modules/unistdio/u32-vsnprintf-tests: New file.
26798         * modules/unistdio/u32-vsprintf-tests: New file.
26799         * MODULES.html.sh (Unicode string functions): Add the new modules.
26800
26801 2007-07-01  Bruno Haible  <bruno@clisp.org>
26802
26803         * lib/sprintf.c (sprintf): Limit the available length estimation,
26804         to avoid address wraparound.
26805         * lib/vsprintf.c (vsprintf): Likewise.
26806         * modules/sprintf-posix (Dependencies): Add stdint.
26807         * modules/vsprintf-posix (Dependencies): Likewise.
26808
26809 2007-07-01  Bruno Haible  <bruno@clisp.org>
26810
26811         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
26812         Windows PATH as well. Conservative double-quoting. Comments.
26813
26814 2007-07-01  Bruno Haible  <bruno@clisp.org>
26815             Eric Blake  <ebb9@byu.net>
26816             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26817
26818         * gnulib-tool (self_abspathname): Fix algorithm to cope with
26819         empty components in $PATH, denoting '.'.
26820
26821 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26822
26823         * gnulib-tool: Fix indentation.
26824         (func_create_megatestdir): Likewise.
26825         Report by Bruno Haible.
26826
26827 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26828
26829         Sync from Automake.
26830         * build-aux/gnupload: Fix shell portability issues with for loops.
26831         Report by Karl Berry.
26832
26833 2007-06-29  Simon Josefsson  <simon@josefsson.org>
26834
26835         * build-aux/maint.mk (POURL): Use translationproject.org.
26836
26837 2007-06-27  Simon Josefsson  <simon@josefsson.org>
26838             Bruno Haible  <bruno@clisp.org>
26839
26840         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
26841         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
26842         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
26843         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
26844         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
26845
26846 2007-06-27  Bruno Haible  <bruno@clisp.org>
26847
26848         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
26849         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
26850
26851 2007-06-26  Karl Berry  <karl@gnu.org>
26852
26853         * MODULES.html.sh: remove xreadlink-with-size.
26854
26855 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26856
26857         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
26858         method that I hope also handles the double-include problem noted
26859         by Bruno Haible in
26860         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
26861
26862 2007-06-23  Bruno Haible  <bruno@clisp.org>
26863
26864         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
26865         Don't let the 'mostlyclean' target fail if the last subdirectory could
26866         not be removed.
26867         Reported by Karl Berry.
26868
26869 2007-06-23  Bruno Haible  <bruno@clisp.org>
26870
26871         * gnulib-tool (echo): Add a speedier workaround for ksh.
26872         * tests/test-echo.sh: Likewise.
26873
26874 2007-06-23  Bruno Haible  <bruno@clisp.org>
26875
26876         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
26877         * tests/test-echo.sh: Likewise.
26878
26879 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26880
26881         * gnulib-tool (IFS): Initialize early, so we don't set it to
26882         empty later.
26883         (self_abspathname): Rewrite algorithm to set it, reindent.
26884         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
26885         (func_create_megatestdir): Merge some sed scripts.
26886
26887 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26888
26889         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
26890         exposed by Sun Studio 11 cc on Solaris 8.
26891
26892 2007-06-22  Bruno Haible  <bruno@clisp.org>
26893
26894         * gnulib-tool (echo): Ensure the echo primitive does not interpret
26895         backslashes.
26896         * tests/test-echo.sh: New file.
26897
26898 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26899
26900         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
26901         simplify `sed_replace_build_aux' scripts, they are portable but
26902         echoing them with `echo' is not.
26903         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
26904
26905 2007-06-21  Karl Berry  <karl@gnu.org>
26906
26907         * config/srclist.txt: guess we can't handle the licenses via
26908         srclist at the moment.
26909
26910 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
26911
26912         * MODULES.html.sh: Add include_next.
26913         * modules/include_next: New file.
26914
26915 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
26916
26917         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
26918         INCLUDE_NEXT.
26919         (gl_CHECK_NEXT_HEADERS): New macro.
26920         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
26921         the obsolescent gl_ABSOLUTE_HEADER.
26922         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
26923         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
26924         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
26925         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
26926         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
26927         * m4/math_h.m4 (gl_MATH_H): Likewise.
26928         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
26929         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
26930         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
26931         * m4/stdint.m4 (gl_STDINT_H): Likewise.
26932         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
26933         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
26934         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
26935         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
26936         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
26937         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
26938         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
26939         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
26940         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
26941         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
26942         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
26943         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
26944         * m4/inttypes.m4 (gl_INTTYPES_H): Define
26945         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
26946         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
26947         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
26948         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
26949         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
26950         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
26951         * lib/float_.h: Likewise.
26952         * lib/inttypes_.h: Likewise.
26953         * lib/math_.h: Likewise.
26954         * lib/search_.h: Likewise.
26955         * lib/signal_.h: Likewise.
26956         * lib/stdint_.h: Likewise.
26957         * lib/stdio_.h: Likewise.
26958         * lib/stdlib_.h: Likewise.
26959         * lib/string_.h: Likewise.
26960         * lib/sys_stat_.h: Likewise.
26961         * lib/sys_time_.h: Likewise.
26962         * lib/time_.h: Likewise.
26963         * lib/unistd_.h: Likewise.
26964         * lib/wchar_.h: Likewise.
26965         * lib/wctype_.h: Likewise.
26966         * lib/dirent_.h: Likewise.
26967         * lib/iconv_.h: Likewise.
26968         * lib/locale_.h: Likewise.
26969         * lib/netinet_in_.h: Likewise.
26970         * lib/sys_select_.h: Likewise.
26971         * lib/sys_socket_.h: Likewise.
26972         * lib/sysexits_.h: Likewise.
26973         * modules/fcntl (Depends-on): Depend on include_next, not
26974         absolute_header.
26975         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
26976         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
26977         * modules/fchdir: Likewise.
26978         * modules/float: Likewise.
26979         * modules/iconv_open: Likewise.
26980         * modules/inttypes: Likewise.
26981         * modules/locale: Likewise.
26982         * modules/math: Likewise.
26983         * modules/netinet_in: Likewise.
26984         * modules/search: Likewise.
26985         * modules/signal: Likewise.
26986         * modules/stdint: Likewise.
26987         * modules/stdio: Likewise.
26988         * modules/stdlib: Likewise.
26989         * modules/string: Likewise.
26990         * modules/sys_select: Likewise.
26991         * modules/sys_socket: Likewise.
26992         * modules/sys_stat: Likewise.
26993         * modules/sys_time: Likewise.
26994         * modules/sysexits: Likewise.
26995         * modules/time: Likewise.
26996         * modules/unistd: Likewise.
26997         * modules/wchar: Likewise.
26998         * modules/wctype: Likewise.
26999         * modules/sys_stat: Change maintainer to "all".
27000         * modules/unistd: Likewise.
27001
27002 2007-06-20  Karl Berry  <karl@gnu.org>
27003
27004         * config/srclist.txt: track www changes in license files.
27005
27006 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
27007
27008         * build-aux/bootstrap: Remove stray dot.
27009         Make sure build_aux settings are honored when linking
27010         gnulib_extra_files.
27011
27012 2007-06-19  Eric Blake  <ebb9@byu.net>
27013
27014         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
27015         Allow compilation on cygwin.
27016
27017 2007-06-19  Jim Meyering  <jim@meyering.net>
27018
27019         xreadlink-with-size: Remove module.  No longer used.
27020         Ex-callers now use xreadlink or mreadlink-with-size.
27021         * modules/xreadlink-with-size: Remove module.
27022         * lib/xreadlink-with-size.c: Remove file.
27023         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
27024         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
27025         just before the function definition *is* accurate.
27026
27027         Eliminate one way canonicalize_filename_mode could exit.
27028         * lib/canonicalize.c (canonicalize_filename_mode):
27029         Use mreadlink_with_size, not xreadlink_with_size.
27030
27031 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
27032
27033         Detect porting problems to FreeBSD/arm, which has time_t wider than
27034         long int.  Original problem reported for GNU diff by Xin Li in
27035         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
27036         * modules/getdate (Depends-on): Add intprops, verify.
27037         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
27038         is an integer type no wider than long int.
27039
27040 2007-06-18  Jim Meyering  <jim@meyering.net>
27041
27042         New module: mreadlink-with-size.
27043         * MODULES.html.sh: Add mreadlink-with-size.
27044         * modules/mreadlink-with-size: New module
27045         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
27046         not xreadlink-with-size.
27047         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
27048
27049 2007-06-16  Bruno Haible  <bruno@clisp.org>
27050
27051         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
27052         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
27053         Reported by Gary V. Vaughan <gary@gnu.org>.
27054
27055 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
27056
27057         Revamp lchown so that it lives in unistd.h where it belongs.
27058         * lib/lchown.h: Remove.
27059         * lib/dirchownmod.c: Don't include lib/lchown.h.
27060         * lib/fchownat.c: Likewise.
27061         * lib/openat.c: Likewise.
27062         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
27063         does not follow symlinks.
27064         (EOPNOTSUPP): Define if not defined.
27065         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
27066         is defined to 0.
27067         (lchown): New decl.
27068         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
27069         Do not check for lchown decl.
27070         Set REPLACE_LCHOWN.
27071         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
27072         REPLACE_LCHOWN.
27073         * modules/chown: Make it clear it follows symlinks.
27074         * modules/lchown: Make it clear it doesn't follow symlinks.
27075         (Files): Remove lib/lchown.h
27076         (Depends-on): Add unistd.
27077         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
27078         (Include): Include <unistd.h>, not "lchown.h".
27079         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
27080         REPLACE_LCHOWN.
27081
27082 2007-06-15  Jim Meyering  <jim@meyering.net>
27083
27084         Change license (GPL to LGPL) of fsusage and dependents.
27085         * modules/fsusage (License): Change to LGPL.
27086         * modules/full-read (License): Likewise.
27087         * modules/full-write (License): Likewise.
27088         * modules/safe-read (License): Likewise.
27089         * modules/safe-write (License): Likewise.
27090
27091 2007-06-14  Ben Pfaff  <blp@gnu.org>
27092
27093         Missing part of allocsa -> malloca transition.
27094         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
27095         gl_MALLOCA.
27096
27097 2007-06-12  Bruno Haible  <bruno@clisp.org>
27098
27099         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
27100         to ia64, x86_64, i386.
27101         Reported by Eric Blake.
27102
27103 2007-06-12  Bruno Haible  <bruno@clisp.org>
27104
27105         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
27106         cross-compiling to x86_64.
27107
27108 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
27109
27110         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
27111         glitch reported by Ralf Wildenhues in
27112         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
27113
27114         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
27115         Vin Shelton.
27116
27117 2007-06-11  Bruno Haible  <bruno@clisp.org>
27118
27119         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
27120         replacement string.
27121         Reported by Eric Blake.
27122
27123 2007-06-10  Bruno Haible  <bruno@clisp.org>
27124
27125         Prepare vasnprintf code for use with Unicode strings.
27126         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
27127         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
27128         TYPE_U32_STRING.
27129         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
27130         a_u32_string variants.
27131         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27132         * lib/printf-args.c: Don't include config.h and the specification
27133         header if PRINTF_FETCHARGS is already defined.
27134         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27135         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
27136         TYPE_U16_STRING, TYPE_U32_STRING.
27137         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
27138         u16_directive, u16_directives, u32_directive, u32_directives): New
27139         types.
27140         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
27141         New declarations.
27142         * lib/printf-parse.c: Don't include config.h and the specification
27143         header if PRINTF_PARSE is already defined. Eliminate the set of
27144         parameters for WIDE_CHAR_VERSION; the user of this file must provide
27145         them now. Include c-ctype.h.
27146         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
27147         directive and CHAR_T_ONLY_ASCII.
27148         * lib/vasnprintf.c: Don't include config.h and the specification header
27149         if VASNPRINTF is already defined.
27150         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
27151         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
27152         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
27153         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
27154         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
27155         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
27156         code accordingly.
27157         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
27158         pad_ourselves also in this case, with the 'c' and 's' directives, and
27159         with a different notion of "width".
27160         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
27161
27162 2007-06-10  Bruno Haible  <bruno@clisp.org>
27163
27164         * modules/unistr/u32-mbsnlen: New file.
27165         * lib/unistr/u32-mbsnlen.c: New file.
27166
27167         * modules/unistr/u16-mbsnlen: New file.
27168         * lib/unistr/u16-mbsnlen.c: New file.
27169
27170         * modules/unistr/u8-mbsnlen: New file.
27171         * lib/unistr/u8-mbsnlen.c: New file.
27172
27173         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
27174         declarations.
27175
27176 2007-06-10  Bruno Haible  <bruno@clisp.org>
27177
27178         * lib/string_.h (mbsnlen): New declaration.
27179         * lib/mbsnlen.c: New file.
27180         * m4/mbsnlen.m4: New file.
27181         * modules/mbsnlen: New file.
27182         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
27183         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
27184         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
27185
27186 2007-06-10  Bruno Haible  <bruno@clisp.org>
27187
27188         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
27189
27190 2007-06-10  Bruno Haible  <bruno@clisp.org>
27191
27192         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
27193         * lib/mbuiter.h: Likewise.
27194
27195 2007-06-10  Bruno Haible  <bruno@clisp.org>
27196
27197         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
27198         declaration.
27199
27200 2007-06-10  Karl Berry  <karl@gnu.org>
27201
27202         * config/srclist.txt: remove gettext entries, Bruno prefers
27203         to update individually.
27204
27205 2007-06-10  Bruno Haible  <bruno@clisp.org>
27206
27207         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
27208         'maxlen'. Ensure only length + width bytes are allocated, not
27209         length + 1 + width.
27210
27211 2007-06-09  Bruno Haible  <bruno@clisp.org>
27212
27213         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
27214         (CHAR_T): Remove macro.
27215         (VASNPRINTF): Update.
27216
27217 2007-06-09  Bruno Haible  <bruno@clisp.org>
27218
27219         * MODULES.html.sh (Unicode string functions): Add the new modules.
27220
27221         * modules/uniconv/u32-conv-to-enc: New file.
27222         * lib/uniconv/u32-conv-to-enc.c: New file.
27223         * modules/uniconv/u32-conv-to-enc-tests: New file.
27224         * tests/uniconv/test-u32-conv-to-enc.c: New file.
27225
27226         * modules/uniconv/u16-conv-to-enc: New file.
27227         * lib/uniconv/u16-conv-to-enc.c: New file.
27228         * lib/uniconv/u-conv-to-enc.h: New file.
27229         * modules/uniconv/u16-conv-to-enc-tests: New file.
27230         * tests/uniconv/test-u16-conv-to-enc.c: New file.
27231
27232         * modules/uniconv/u8-conv-to-enc: New file.
27233         * lib/uniconv/u8-conv-to-enc.c: New file.
27234         * modules/uniconv/u8-conv-to-enc-tests: New file.
27235         * tests/uniconv/test-u8-conv-to-enc.c: New file.
27236
27237         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
27238         u32_conv_to_encoding): New declarations.
27239
27240 2007-06-09  Bruno Haible  <bruno@clisp.org>
27241
27242         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
27243
27244 2007-06-09  Bruno Haible  <bruno@clisp.org>
27245
27246         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
27247         * modules/malloca: Renamed from modules/allocsa, updated.
27248         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
27249         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
27250         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
27251         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
27252         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
27253         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
27254         * modules/xmalloca: Renamed from modules/xallocsa, updated.
27255         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
27256         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
27257         * modules/c-strcasestr (Depends-on): Update.
27258         * lib/c-strcasestr.c: Update.
27259         * modules/c-strstr (Depends-on): Update.
27260         * lib/c-strstr.c: Update.
27261         * modules/canonicalize-lgpl (Depends-on): Update.
27262         * lib/canonicalize-lgpl.c: Update.
27263         * modules/clean-temp (Depends-on): Update.
27264         * lib/clean-temp.c: Update.
27265         * modules/csharpcomp (Depends-on): Update.
27266         * lib/csharpcomp.c: Update.
27267         * modules/csharpexec (Depends-on): Update.
27268         * lib/csharpexec.c: Update.
27269         * modules/javacomp (Depends-on): Update.
27270         * lib/javacomp.c: Update.
27271         * modules/javaexec (Depends-on): Update.
27272         * lib/javaexec.c: Update.
27273         * modules/mbscasestr (Depends-on): Update.
27274         * lib/mbscasestr.c: Update.
27275         * modules/mbsstr (Depends-on): Update.
27276         * lib/mbsstr.c: Update.
27277         * modules/setenv (Depends-on): Update.
27278         * lib/setenv.c: Update.
27279         * modules/strcasestr (Depends-on): Update.
27280         * lib/strcasestr.c: Update.
27281         * modules/striconveha (Depends-on): Update.
27282         * lib/striconveha.c: Update.
27283         * modules/relocatable-prog-wrapper (Files): Update.
27284         * lib/relocwrapper.c: Update.
27285         * build-aux/install-reloc: Update.
27286         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
27287
27288 2007-06-08  Bruno Haible  <bruno@clisp.org>
27289
27290         Port to uClibc.
27291         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
27292         * lib/fpurge.c (fpurge): Likewise.
27293         * lib/freading.c (freading): Likewise.
27294         * lib/fseeko.c (rpl_fseeko): Likewise.
27295         * lib/fseterr.c (fseterr): Likewise.
27296         * lib/fwriting.c (fwriting): Likewise.
27297         * tests/test-fflush.c (main): Avoid a failure on uClibc.
27298
27299 2007-06-08  Bruno Haible  <bruno@clisp.org>
27300
27301         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
27302         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
27303         * modules/gettext (Files): Add m4/intlmacosx.m4.
27304
27305 2007-06-07  Bruno Haible  <bruno@clisp.org>
27306
27307         * modules/localename-tests: New file.
27308         * tests/test-localename.c: New file.
27309
27310         New module 'localename'.
27311         * lib/localename.h: New file.
27312         * lib/localename.c: New file, from GNU gettext.
27313         * m4/localename.m4: New file.
27314         * modules/localename: New file.
27315
27316 2007-06-07  Bruno Haible  <bruno@clisp.org>
27317
27318         Work around the lack of <wchar.h> on some builds of uClibc.
27319         * doc/headers/wchar.texi: Update.
27320         * lib/wchar_.h: Include <wchar.h> only if it exists.
27321         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
27322         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
27323         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
27324         doesn't exist.
27325         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
27326         * modules/mbfile (Depends-on): Add wchar.
27327         * modules/mbiter (Depends-on): Likewise.
27328         * modules/mbuiter (Depends-on): Likewise.
27329         Reported by Simon Josefsson.
27330
27331 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
27332
27333         Work around problem reported by Steven M. Schweda in
27334         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
27335         Tru64 5.1B with the Compaq compiler environment installed declares
27336         an 'isblank' function but does not define it in the C library.
27337         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
27338         * lib/regex_internal.h (isblank): Likewise.
27339         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
27340         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
27341
27342 2007-06-05  Bruno Haible  <bruno@clisp.org>
27343
27344         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
27345         ia64.
27346         * modules/printf-safe: New file.
27347         * modules/fprintf-posix (Depends-on): Add printf-safe.
27348         * modules/printf-posix (Depends-on): Likewise.
27349         * modules/snprintf-posix (Depends-on): Likewise.
27350         * modules/sprintf-posix (Depends-on): Likewise.
27351         * modules/vasnprintf-posix (Depends-on): Likewise.
27352         * modules/vasprintf-posix (Depends-on): Likewise.
27353         * modules/vfprintf-posix (Depends-on): Likewise.
27354         * modules/vprintf-posix (Depends-on): Likewise.
27355         * modules/vsnprintf-posix (Depends-on): Likewise.
27356         * modules/vsprintf-posix (Depends-on): Likewise.
27357         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
27358         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
27359         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
27360         "no" on i386, x86_64, ia64.
27361         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
27362         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27363         on i386, x86_64, ia64.
27364         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
27365         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27366         on i386, x86_64, ia64.
27367         * tests/test-vasnprintf-posix.c: Include float.h.
27368         (LDBL80_WORDS): New macro.
27369         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27370         on i386, x86_64, ia64.
27371         * tests/test-vasprintf-posix.c: Include float.h.
27372         (LDBL80_WORDS): New macro.
27373         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27374         on i386, x86_64, ia64.
27375         * tests/test-snprintf-posix.c: Include float.h.
27376         * tests/test-sprintf-posix.c: Likewise.
27377         * tests/test-vsnprintf-posix.c: Likewise.
27378         * tests/test-vsprintf-posix.c: Likewise.
27379
27380 2007-06-05  Bruno Haible  <bruno@clisp.org>
27381
27382         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
27383         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
27384         non-IEEE numbers on i386, x86_64, ia64.
27385         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
27386         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
27387         * tests/test-isnanl.h: Include float.h.
27388         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
27389
27390 2007-06-05  Bruno Haible  <bruno@clisp.org>
27391
27392         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
27393         also the %a / %A. Handle the %a / %A code before this extra handling.
27394
27395 2007-06-05  Bruno Haible  <bruno@clisp.org>
27396
27397         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
27398         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
27399
27400 2007-06-05  Bruno Haible  <bruno@clisp.org>
27401
27402         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
27403         typo in variable name.
27404
27405 2007-06-05  Eric Blake  <ebb9@byu.net>
27406
27407         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
27408         Reported by Simon Josefsson.
27409
27410 2007-06-04  Bruno Haible  <bruno@clisp.org>
27411
27412         Avoid test failures on some PowerPC platforms.
27413         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
27414         Define differently for PowerPC.
27415         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
27416         Reported by Gary V. Vaughan <gary@gnu.org>.
27417
27418 2007-06-02  Bruno Haible  <bruno@clisp.org>
27419
27420         Fix test-stdint failure on FreeBSD/ia64.
27421         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
27422         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
27423         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
27424         * doc/headers/stdint.texi: Update.
27425
27426 2007-06-01  Bruno Haible  <bruno@clisp.org>
27427
27428         * tests/test-binary-io.c (main): Pass a third argument to open().
27429         Reported by Gary V. Vaughan <gary@gnu.org>.
27430
27431 2007-06-01  Bruno Haible  <bruno@clisp.org>
27432
27433         * doc/functions/frexpl.texi: Update for mingw.
27434
27435 2007-06-01  Bruno Haible  <bruno@clisp.org>
27436
27437         * tests/test-lseek.c (main): Disable test of errno for invalid third
27438         argument.
27439         * doc/functions/lseek.texi: Update.
27440         Reported by Gary V. Vaughan <gary@gnu.org>.
27441
27442 2007-05-28  Bruno Haible  <bruno@clisp.org>
27443
27444         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
27445
27446 2007-05-31  Eric Blake  <ebb9@byu.net>
27447
27448         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
27449         cross compiling.
27450
27451 2007-05-30  Eric Blake  <ebb9@byu.net>
27452         and Bruno Haible  <bruno@clisp.org>
27453
27454         Work around mingw test failures exposed by m4-1.4.9b.
27455         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
27456         * tests/test-unistd.c: Disable uid_t and git_t tests for the
27457         moment.
27458
27459 2007-05-30  Bruno Haible  <bruno@clisp.org>
27460
27461         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
27462         assuming that they are closed. Needed on HP-UX 11.
27463
27464 2007-05-29  Bruno Haible  <bruno@clisp.org>
27465
27466         Fix a problem with #include_next.
27467         * lib/dirent_.h: Split the double-inclusion guard.
27468         * lib/fcntl_.h: Likewise.
27469         * lib/float_.h: Likewise.
27470         * lib/iconv_.h: Likewise.
27471         * lib/inttypes_.h: Likewise.
27472         * lib/locale_.h: Likewise.
27473         * lib/math_.h: Likewise.
27474         * lib/netinet_in_.h: Likewise.
27475         * lib/search_.h: Likewise.
27476         * lib/signal_.h: Likewise.
27477         * lib/stdint_.h: Likewise.
27478         * lib/stdio_.h: Likewise.
27479         * lib/stdlib_.h: Likewise.
27480         * lib/string_.h: Likewise.
27481         * lib/sys_select_.h: Likewise.
27482         * lib/sys_socket_.h: Likewise.
27483         * lib/sys_stat_.h: Likewise.
27484         * lib/sys_time_.h: Likewise.
27485         * lib/sysexits_.h: Likewise.
27486         * lib/time_.h: Likewise.
27487         * lib/unistd_.h: Likewise.
27488         * lib/wchar_.h: Likewise.
27489         * lib/wctype_.h: Likewise.
27490
27491 2007-05-29  Bruno Haible  <bruno@clisp.org>
27492
27493         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
27494         for the moment.
27495
27496 2007-05-29  Bruno Haible  <bruno@clisp.org>
27497
27498         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
27499         invocation.
27500         Reported by Eric Blake.
27501
27502 2007-05-29  Bruno Haible  <bruno@clisp.org>
27503
27504         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
27505         compiling case.
27506
27507 2007-05-29  Eric Blake  <ebb9@byu.net>
27508             Bruno Haible  <bruno@clisp.org>
27509
27510         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
27511         cross compiles.
27512
27513 2007-05-28  Eric Blake  <ebb9@byu.net>
27514
27515         * modules/closein-tests (test_closein_LDADD): Support test on
27516         cygwin with libtool.
27517
27518 2007-05-28  Bruno Haible  <bruno@clisp.org>
27519
27520         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
27521         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
27522         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
27523         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
27524         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
27525         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
27526         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
27527         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
27528         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
27529
27530 2007-05-28  Eric Blake  <ebb9@byu.net>
27531
27532         Unconditionally include <config.h> in unit tests.
27533         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
27534         * tests/test-allocsa.c, tests/test-arcfour.c,
27535         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
27536         tests/test-array_list.c, tests/test-array_oset.c,
27537         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
27538         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
27539         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
27540         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
27541         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
27542         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
27543         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
27544         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
27545         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
27546         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
27547         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
27548         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
27549         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
27550         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
27551         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
27552         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
27553         test-md5.c, test-memmem.c, test-printf-posix.c,
27554         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
27555         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
27556         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
27557         test-strcasestr.c, test-striconv.c, test-striconveh.c,
27558         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
27559         test-vasnprintf-posix2.c, test-vasnprintf.c,
27560         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
27561         test-vfprintf-posix.c, test-vprintf-posix.c,
27562         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
27563         test-xvasprintf.c: Likewise.
27564
27565 2007-05-28  Bruno Haible  <bruno@clisp.org>
27566
27567         * gnulib-tool (func_import): Remember the --with-tests command-line
27568         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
27569         Reported by Eric Blake.
27570
27571 2007-05-28  Bruno Haible  <bruno@clisp.org>
27572
27573         * modules/ftell-tests: New file.
27574         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
27575         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
27576
27577         * lib/ftell.c: New file.
27578         * modules/ftell: New file.
27579         * m4/ftell.m4: New file.
27580         * doc/functions/ftell.texi: Update.
27581         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
27582         REPLACE_FTELL.
27583         * lib/stdio_.h (rpl_ftell): New declaration.
27584         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
27585         REPLACE_FTELL.
27586
27587 2007-05-28  Eric Blake  <ebb9@byu.net>
27588
27589         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
27590
27591 2007-05-28  Bruno Haible  <bruno@clisp.org>
27592
27593         * modules/fseek-tests: New file.
27594         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
27595         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
27596
27597         * lib/fseek.c: New file.
27598         * modules/fseek: New file.
27599         * m4/fseek.m4: New file.
27600         * doc/functions/fseek.texi: Update.
27601         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
27602         REPLACE_FSEEK.
27603         * lib/stdio_.h (rpl_fseek): New declaration.
27604         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
27605         REPLACE_FSEEK.
27606
27607 2007-05-28  Bruno Haible  <bruno@clisp.org>
27608
27609         * lib/stdio_.h (fflush): More comments.
27610
27611 2007-05-28  Bruno Haible  <bruno@clisp.org>
27612
27613         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
27614         runtime test.
27615
27616 2007-05-28  Eric Blake  <ebb9@byu.net>
27617
27618         Improve lseek module.
27619         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
27620         * lib/unistd_.h (lseek): Scale back link warning message.
27621         * tests/test-lseek.c: Beef up test.
27622         * tests/test-lseek.sh: Exercise more facets of lseek.
27623         Reported by Bruno Haible.
27624
27625 2007-05-28  Bruno Haible  <bruno@clisp.org>
27626
27627         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
27628         to define.
27629
27630 2007-05-27  Bruno Haible  <bruno@clisp.org>
27631
27632         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
27633
27634 2007-05-27  Bruno Haible  <bruno@clisp.org>
27635
27636         * modules/openmp: New file.
27637         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
27638         Noah Misch.
27639
27640 2007-05-26  Bruno Haible  <bruno@clisp.org>
27641
27642         * modules/chdir-long (Depends-on): Add fchdir.
27643         * modules/chdir-safer (Depends-on): Likewise.
27644         * modules/fts (Depends-on): Likewise.
27645         * modules/fts-lgpl (Depends-on): Likewise.
27646         * modules/openat (Depends-on): Likewise.
27647         * modules/savewd (Depends-on): Likewise.
27648
27649 2007-05-24  Eric Blake  <ebb9@byu.net>
27650
27651         Fix lseek on mingw.
27652         * modules/lseek: New module.
27653         * m4/lseek.m4: New file.
27654         * lib/lseek.c: New file.
27655         * modules/lseek-tests: New file.
27656         * tests/test-lseek.c: New file.
27657         * tests/test-lseek.sh: New file.
27658         * MODULES.html.sh: Document lseek module.
27659         * modules/fflush (Depends-on): Add lseek, fseeko.
27660         * modules/fseeko (Depends-on): Likewise.
27661         * modules/ftello (Depends-on): Likewise.
27662         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
27663         broken.
27664         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
27665         broken.
27666         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
27667         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
27668         * lib/ftello.c (rpl_ftello): Likewise.
27669         * tests/test-fseeko.c (main): Test this.
27670         * tests/test-fseeko.sh: Likewise.
27671         * tests/test-ftello.c (main): Likewise.
27672         * tests/test-ftello.sh: Likewise.
27673         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
27674         implies replacing fseek.
27675         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
27676         HAVE_FTELLO.
27677         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
27678         * modules/unistd (Makefile.am): Likewise.
27679         * lib/unistd_.h (lseek): Declare a replacement.
27680         * doc/functions/lseek.texi (lseek): Document this fix.
27681         * doc/functions/fseek.texi (fseek): Likewise.
27682         * doc/functions/ftell.texi (ftell): Likewise.
27683
27684 2007-05-24  Bruno Haible  <bruno@clisp.org>
27685
27686         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
27687         in the printed representation of a NaN.
27688         * tests/test-vasprintf-posix.c (test_function): Likewise.
27689         * tests/test-snprintf-posix.h (test_function): Likewise.
27690         * tests/test-sprintf-posix.h (test_function): Likewise.
27691         Reported by Eric Blake.
27692
27693 2007-05-23  Eric Blake  <ebb9@byu.net>
27694
27695         Fix fseeko/ftello on cygwin 1.5.24.
27696         * doc/functions/fseeko.texi (fseeko): Document the fix.
27697         * doc/functions/ftello.texi (ftello): Document the fix.
27698         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
27699         * doc/functions/stdout.text (stdout): New file.
27700         * doc/functions/stderr.text (stderr): New file.
27701         * doc/gnulib.texi (Function Substitutes): Use new files.
27702         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
27703         prior to 1.7.0.
27704         * tests/test-ftello.c (main): Likewise for ftello.
27705         * tests/test-fseeko.sh: New file.
27706         * tests/test-ftello.sh: New file.
27707         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
27708         with seekable stdin.
27709         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
27710         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
27711         (gl_REPLACE_FSEEKO): New macro.
27712         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
27713         * modules/fseeko (Files): Distribute fseeko.c.
27714         * modules/ftello (Files): Distribute ftello.c.
27715         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
27716         mode.
27717         * lib/ftello.c (rpl_ftello): New file.
27718         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
27719         fseeko, ftello.
27720         (gl_STDIN_LARGE_OFFSET): New macro.
27721         * modules/stdio (Makefile.am): Perform the replacement.
27722         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
27723
27724 2007-05-23  Bruno Haible  <bruno@clisp.org>
27725
27726         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
27727         GNULIB_POSIXCHECK is defined.
27728
27729 2007-05-21  Bruno Haible  <bruno@clisp.org>
27730
27731         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
27732         Check also the output for NaN arguments. When cross-compiling, guess
27733         no on IRIX.
27734         * lib/vasnprintf.c: Update comments.
27735         * tests/test-vasnprintf-posix.c (strisnan): New function.
27736         (test_function): Use it.
27737         * tests/test-vasprintf-posix.c (strisnan): New function.
27738         (test_function): Use it.
27739         * tests/test-snprintf-posix.h (strisnan): New function.
27740         (test_function): Use it.
27741         * tests/test-sprintf-posix.h (strisnan): New function.
27742         (test_function): Use it.
27743         Reported by Eric Blake.
27744
27745 2007-05-20  Bruno Haible  <bruno@clisp.org>
27746
27747         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
27748         numbers that fails on BeOS.
27749         * doc/functions/frexpl.texi: Update.
27750
27751 2007-05-20  Jim Meyering  <jim@meyering.net>
27752
27753         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
27754         forced upon us by glibc-2.6.
27755
27756 2007-05-20  Bruno Haible  <bruno@clisp.org>
27757
27758         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
27759         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
27760         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
27761         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
27762         NEED_PRINTF_INFINITE.
27763         (is_infinitel): New function.
27764         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
27765         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
27766         gl_PREREQ_VASNPRINTF_INFINITE.
27767         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
27768         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27769         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
27770         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
27771         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
27772         gl_PREREQ_VASNPRINTF_INFINITE.
27773         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27774         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27775         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27776         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27777         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27778         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27779         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27780         * doc/functions/fprintf.texi: Update.
27781         * doc/functions/printf.texi: Update.
27782         * doc/functions/snprintf.texi: Update.
27783         * doc/functions/sprintf.texi: Update.
27784         * doc/functions/vfprintf.texi: Update.
27785         * doc/functions/vprintf.texi: Update.
27786         * doc/functions/vsnprintf.texi: Update.
27787         * doc/functions/vsprintf.texi: Update.
27788
27789 2007-05-20  Bruno Haible  <bruno@clisp.org>
27790
27791         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
27792         was not found in libc.
27793         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
27794
27795 2007-05-20  Bruno Haible  <bruno@clisp.org>
27796
27797         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27798         printed as "-nan" instead of "nan".
27799         * tests/test-vasprintf-posix.c (test_function): Likewise.
27800         * tests/test-snprintf-posix.h (test_function): Likewise.
27801         * tests/test-sprintf-posix.h (test_function): Likewise.
27802         Needed for HP-UX 11.
27803
27804 2007-05-20  Jim Meyering  <jim@meyering.net>
27805
27806         Fix buggy test for the fchownat-deref bug.
27807         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
27808         symlink required for the run-test.  Without it, this test would
27809         always declare that fchownat doesn't work, and client code would
27810         unnecessarily use the replacement function with fixed libc.
27811         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
27812         Reported by Greg Schafer.
27813
27814 2007-05-19  Bruno Haible  <bruno@clisp.org>
27815
27816         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
27817         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
27818         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
27819         Needed for IRIX 6.5 and Solaris 2.5.1.
27820
27821 2007-05-19  Bruno Haible  <bruno@clisp.org>
27822
27823         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
27824         (test_function): Skip tests involving -0.0 on platforms where
27825         -0.0 = 0.0.
27826         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
27827         (test_function): Skip tests involving -0.0 on platforms where
27828         -0.0 = 0.0.
27829         * tests/test-snprintf-posix.h (have_minus_zero): New function.
27830         (test_function): Skip tests involving -0.0 on platforms where
27831         -0.0 = 0.0.
27832         * tests/test-sprintf-posix.h (have_minus_zero): New function.
27833         (test_function): Skip tests involving -0.0 on platforms where
27834         -0.0 = 0.0.
27835         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
27836         tests.
27837         * tests/test-printf-posix.h (test_function): Likewise.
27838         * tests/test-printf-posix.output: Remove all -0.0 related results.
27839         Needed for IRIX 6.5.
27840
27841 2007-05-19  Bruno Haible  <bruno@clisp.org>
27842
27843         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27844         printed as "nan0x7fffffff" instead of "nan".
27845         * tests/test-vasprintf-posix.c (test_function): Likewise.
27846         * tests/test-snprintf-posix.h (test_function): Likewise.
27847         * tests/test-sprintf-posix.h (test_function): Likewise.
27848         * tests/test-fprintf-posix.h (NaN): Remove macro.
27849         (test_function): Remove all NaN related tests.
27850         * tests/test-printf-posix.h (NaN): Remove macro.
27851         (test_function): Remove all NaN related tests.
27852         * tests/test-printf-posix.output: Remove all NaN related results.
27853         Needed for IRIX 6.5.
27854
27855 2007-05-19  Bruno Haible  <bruno@clisp.org>
27856
27857         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
27858         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
27859
27860 2007-05-19  Bruno Haible  <bruno@clisp.org>
27861
27862         * lib/float_.h: New file.
27863         * m4/float_h.m4: New file.
27864         * modules/float: New file.
27865         * modules/isnanl (Dependencies): Add float.
27866         * modules/isnanl-nolibm (Dependencies): Likewise.
27867         * modules/mathl (Dependencies): Likewise.
27868         * modules/printf-frexpl (Dependencies): Likewise.
27869         * modules/signbit (Dependencies): Likewise.
27870         * modules/vasnprintf (Dependencies): Likewise.
27871         * doc/headers/float.texi: Update.
27872
27873 2007-05-19  Jim Meyering  <jim@meyering.net>
27874
27875         * lib/utimens.c (gl_futimens): Rename from futimens,
27876         now that glibc-2.6 declares futimens.
27877         * lib/utimens.h: Likewise.
27878
27879 2007-05-19  Bruno Haible  <bruno@clisp.org>
27880
27881         Avoid test failures on mingw.
27882         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
27883         * tests/test-printf-posix.sh: Likewise.
27884         * tests/test-vfprintf-posix.sh: Likewise.
27885         * tests/test-vprintf-posix.sh: Likewise.
27886
27887 2007-05-19  Bruno Haible  <bruno@clisp.org>
27888
27889         Fix *printf result for NaN, Inf, -0.0 on mingw.
27890         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
27891         * lib/vasnprintf.c: Include math.h and isnan.h.
27892         (is_infinite_or_zero): New function.
27893         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
27894         values in the %f, %F, %e, %E, %g, %G directives.
27895         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
27896         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27897         gl_PRINTF_INFINITE and test its result. Invoke
27898         gl_PREREQ_VASNPRINTF_INFINITE.
27899         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27900         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27901         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27902         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27903         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27904         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27905         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27906         * doc/functions/fprintf.texi: Update.
27907         * doc/functions/printf.texi: Update.
27908         * doc/functions/snprintf.texi: Update.
27909         * doc/functions/sprintf.texi: Update.
27910         * doc/functions/vfprintf.texi: Update.
27911         * doc/functions/vprintf.texi: Update.
27912         * doc/functions/vsnprintf.texi: Update.
27913         * doc/functions/vsprintf.texi: Update.
27914
27915 2007-05-19  Bruno Haible  <bruno@clisp.org>
27916
27917         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
27918         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
27919         Instead of multiplying with 10^k, set extra_zeroes to k.
27920         (scale10_round_long_double): Remove function.
27921
27922 2007-05-18  Bruno Haible  <bruno@clisp.org>
27923
27924         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
27925         introduced on 2007-05-06.
27926
27927 2007-05-18  Bruno Haible  <bruno@clisp.org>
27928
27929         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
27930         %g directives.
27931         * tests/test-vasprintf-posix.c (test_function): Likewise.
27932         * tests/test-snprintf-posix.h (test_function): Likewise.
27933         * tests/test-sprintf-posix.h (test_function): Likewise.
27934
27935 2007-05-18  Bruno Haible  <bruno@clisp.org>
27936
27937         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
27938         (strmatch): New function.
27939         (test_function): Test the %f directive on numbers of various exponents.
27940         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
27941         (strmatch): New function.
27942         (test_function): Test the %f directive on numbers of various exponents.
27943         * tests/test-snprintf-posix.h (strmatch): New function.
27944         (test_function): Test the %f directive on numbers of various exponents.
27945         * tests/test-sprintf-posix.h (strmatch): New function.
27946         (test_function): Test the %f directive on numbers of various exponents.
27947         * tests/test-snprintf-posix.c (SIZEOF): New macro.
27948         * tests/test-sprintf-posix.c (SIZEOF): New macro.
27949         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
27950         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
27951
27952 2007-05-18  Bruno Haible  <bruno@clisp.org>
27953
27954         Add support for 'long double' number output.
27955         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
27956         * lib/vasnprintf.c: Include math.h and float+.h.
27957         (mp_limb_t): New type.
27958         (GMP_LIMB_BITS): New macro.
27959         (mp_twolimb_t): New type.
27960         (GMP_TWOLIMB_BITS): New macro.
27961         (mpn_t): New type.
27962         (multiply, divide, convert_to_decimal, decode_long_double,
27963         scale10_round_long_double, scale10_round_decimal_long_double,
27964         floorlog10l): New functions.
27965         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
27966         for the %f, %F, %e, %E, %g, %G directives.
27967         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
27968         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27969         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
27970         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
27971         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27972         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27973         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27974         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27975         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27976         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27977         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27978         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
27979         * modules/snprintf-posix (Depends-on): Likewise.
27980         * modules/sprintf-posix (Depends-on): Likewise.
27981         * modules/vasnprintf-posix (Depends-on): Likewise.
27982         * modules/vasprintf-posix (Depends-on): Likewise.
27983         * modules/vfprintf-posix (Depends-on): Likewise.
27984         * modules/vsnprintf-posix (Depends-on): Likewise.
27985         * modules/vsprintf-posix (Depends-on): Likewise.
27986         * modules/vasnprintf (Files): Add lib/float+.h.
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-18  Bruno Haible  <bruno@clisp.org>
27997
27998         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
27999
28000 2007-05-18  Bruno Haible  <bruno@clisp.org>
28001
28002         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
28003         for printing 64-bit integers. Needed for mingw.
28004
28005 2007-05-18  Bruno Haible  <bruno@clisp.org>
28006
28007         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
28008         gl_FUNC_FREXPL_WORKS.
28009         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
28010
28011 2007-05-18  Bruno Haible  <bruno@clisp.org>
28012
28013         * modules/frexpl-nolibm-tests: New file.
28014
28015         * modules/frexpl-nolibm: New file.
28016         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
28017
28018 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
28019
28020         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
28021         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28022         GCC 4.2, which otherwise issues a lot of warnings.
28023         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
28024         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
28025         Likewise.
28026         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
28027         * modules/iconv_open (iconv.h): Likewise.
28028         * modules/locale (locale.h): Likewise.
28029         * modules/netinet_in (netinet/in.h): Likewise.
28030         * modules/sys_select (sys_select.h): Likewise.
28031         * modules/sys_socket (sys/socket.h): Likewise.
28032         * modules/sys_stat (sys/stat.h): Likewise.
28033         * modules/sysexits (sysexits.h): Likewise.
28034         * modules/unistd (unistd.h): Likewise.
28035
28036 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28037
28038         * modules/closein-tests (Makefile.am): Distribute
28039         `test-closein.sh'.
28040
28041 2007-05-17  Bruno Haible  <bruno@clisp.org>
28042
28043         * tests/test-printf-posix.output: Renamed from
28044         tests/test-fprintf-posix.out.
28045         * modules/fprintf-posix-tests: Update.
28046         * modules/printf-posix-tests: Update.
28047         * modules/vfprintf-posix-tests: Update.
28048         * modules/vprintf-posix-tests: Update.
28049         * tests/test-fprintf-posix.sh: Update.
28050         * tests/test-printf-posix.sh: Update.
28051         * tests/test-vfprintf-posix.sh: Update.
28052         * tests/test-vprintf-posix.sh: Update.
28053         Reported by Ralf Wildenhues.
28054
28055 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
28056
28057         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
28058         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28059         GCC 4.2, which otherwise issues a lot of warnings.
28060         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
28061         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
28062         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
28063         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
28064         it should no longer be needed.
28065         * lib/string_.h: Likewise.
28066         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
28067         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
28068         * modules/inttypes (inttypes.h): Likewise.
28069         * modules/math (math.h): Likewise.
28070         * modules/search (search.h): Likewise.
28071         * modules/signal (signal.h): Likewise.
28072         * modules/stdint (stdint.h): Likewise.
28073         * modules/stdio (stdio.h): Likewise.
28074         * modules/stdlib (stdlib.h): Likewise.
28075         * modules/string (string.h): Likewise.
28076         * modules/sys_time (sys/time.h): Likewise.
28077         * modules/time (time.h): Likewise.
28078         * modules/wchar (wchar.h): Likewise.
28079         * modules/wctype (wtype.h): Likewise.
28080
28081 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
28082
28083         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
28084
28085 2007-05-13  Bruno Haible  <bruno@clisp.org>
28086
28087         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
28088         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
28089         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
28090         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
28091         (gl_PREREQ_STRTOK_R): Don't require it here.
28092
28093 2007-05-13  Bruno Haible  <bruno@clisp.org>
28094
28095         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
28096         when used in C++ mode.
28097
28098 2007-05-12  Bruno Haible  <bruno@clisp.org>
28099
28100         * lib/linebuffer.h: Tweak doc.
28101         * lib/linebuffer.c: Likewise.
28102
28103 2007-05-12  James Youngman  <jay@gnu.org>
28104
28105         * lib/linebuffer.c (readlinebuffer_delim): New function,
28106         like readlinebuffer, but use a caller-specified delimiter.
28107         (readlinebuffer): Just call readlinebuffer_delim with '\n'
28108         as the delimiter.
28109         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
28110
28111 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
28112
28113         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
28114         * modules/openat (Files): Remove openat-die.c.
28115         (Depends-on): Add openat-die.
28116         * modules/openat-die: New module.
28117
28118 2007-05-06  Bruno Haible  <bruno@clisp.org>
28119
28120         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
28121         Update with info about Cygwin.
28122         * doc/functions/fprintf.texi: Update.
28123         * doc/functions/printf.texi: Update.
28124         * doc/functions/snprintf.texi: Update.
28125         * doc/functions/sprintf.texi: Update.
28126         * doc/functions/vfprintf.texi: Update.
28127         * doc/functions/vprintf.texi: Update.
28128         * doc/functions/vsnprintf.texi: Update.
28129         * doc/functions/vsprintf.texi: Update.
28130         Reported by Eric Blake.
28131
28132 2007-05-06  Bruno Haible  <bruno@clisp.org>
28133
28134         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
28135         padding ourselves for the floating-point directives.
28136         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
28137         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
28138         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28139         gl_PRINTF_FLAG_ZERO and test its result. Invoke
28140         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
28141         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28142         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28143         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28144         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28145         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28146         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28147         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28148         * tests/test-snprintf-posix.h (test_function): Also check the width
28149         and some flags in the %f directive.
28150         * tests/test-sprintf-posix.h (test_function): Likewise.
28151         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28152         * tests/test-vasprintf-posix.c (test_function): Likewise.
28153         * doc/functions/fprintf.texi: Update.
28154         * doc/functions/printf.texi: Update.
28155         * doc/functions/snprintf.texi: Update.
28156         * doc/functions/sprintf.texi: Update.
28157         * doc/functions/vfprintf.texi: Update.
28158         * doc/functions/vprintf.texi: Update.
28159         * doc/functions/vsnprintf.texi: Update.
28160         * doc/functions/vsprintf.texi: Update.
28161
28162 2007-05-06  Bruno Haible  <bruno@clisp.org>
28163
28164         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
28165         pass the ' flag character to sprintf or snprintf.
28166         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
28167         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
28168         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28169         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
28170         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
28171         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28172         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28173         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28174         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28175         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28176         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28177         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28178         * tests/test-snprintf-posix.h (test_function): Also check the grouping
28179         flag.
28180         * tests/test-sprintf-posix.h (test_function): Likewise.
28181         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28182         * tests/test-vasprintf-posix.c (test_function): Likewise.
28183         * doc/functions/fprintf.texi: Update.
28184         * doc/functions/printf.texi: Update.
28185         * doc/functions/snprintf.texi: Update.
28186         * doc/functions/sprintf.texi: Update.
28187         * doc/functions/vfprintf.texi: Update.
28188         * doc/functions/vprintf.texi: Update.
28189         * doc/functions/vsnprintf.texi: Update.
28190         * doc/functions/vsprintf.texi: Update.
28191
28192 2007-05-01  Bruno Haible  <bruno@clisp.org>
28193
28194         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
28195
28196 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
28197
28198         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
28199         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
28200
28201 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
28202
28203         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
28204         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
28205         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
28206
28207 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
28208
28209         * lib/argp-help.c (struct hol_entry): New member `ord'.
28210         (HOL_ENTRY_PTRCMP): Use ord for comparison
28211         (hol_sort): Initialize ord.
28212
28213 2007-05-01  Bruno Haible  <bruno@clisp.org>
28214
28215         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
28216         Reported by Eric Blake.
28217         * doc/gnulib.texi (Function Substitutes): Update.
28218
28219 2007-05-01  Bruno Haible  <bruno@clisp.org>
28220
28221         * doc/functions.texi: Remove file, now redundant through
28222         doc/functions/*.texi.
28223
28224 2007-05-01  Bruno Haible  <bruno@clisp.org>
28225
28226         * modules/argp (Depends-on): Add sleep.
28227
28228 2007-05-01  Bruno Haible  <bruno@clisp.org>
28229
28230         * modules/sleep-tests: New file.
28231         * tests/test-sleep.c: New file.
28232
28233         * modules/sleep: New file.
28234         * lib/sleep.c: New file.
28235         * m4/sleep.m4: New file.
28236         * lib/unistd_.h (sleep): New declaration.
28237         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
28238         HAVE_SLEEP.
28239         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
28240         * doc/functions/sleep.texi: Document the sleep module.
28241
28242 2007-05-01  Bruno Haible  <bruno@clisp.org>
28243
28244         * lib/sigprocmask.h: Remove file.
28245         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
28246         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
28247         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
28248         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
28249         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
28250         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
28251         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
28252         HAVE_SIGSET_T as a shell variable.
28253         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
28254         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
28255         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
28256         (Depends-on): Add signal. Remove verify.
28257         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
28258         (Include): Mention <signal.h> instead of sigprocmask.h.
28259         * NEWS: Mention the change.
28260         * lib/fatal-signal.c: Don't include sigprocmask.h.
28261
28262 2007-05-01  Bruno Haible  <bruno@clisp.org>
28263
28264         * modules/signal: New file.
28265         * lib/signal_.h: New file.
28266         * m4/signal_h.m4: New file.
28267
28268 2007-05-01  Bruno Haible  <bruno@clisp.org>
28269
28270         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
28271         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
28272         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
28273         HAVE_WCTYPE_CTMP_BUG into wctype.h.
28274
28275 2007-05-01  Bruno Haible  <bruno@clisp.org>
28276
28277         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
28278         configure time.
28279         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
28280         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
28281         * modules/sys_stat (Makefile.am): Substitute their values into
28282         sys/stat.h.
28283
28284 2007-05-01  Bruno Haible  <bruno@clisp.org>
28285
28286         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
28287         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
28288         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
28289
28290 2007-05-01  Bruno Haible  <bruno@clisp.org>
28291
28292         * doc/header/assert.texi: Undo last change: don't mention the gnulib
28293         'assert' module here.
28294
28295 2007-05-01  Bruno Haible  <bruno@clisp.org>
28296
28297         * doc/functions/*.texi: New files.
28298         * doc/functions/google-ranking.txt: New file.
28299         * doc/gnulib.texi (Function Substitutes): New chapter.
28300         (ctime, inet_ntoa): Remove sections.
28301         * doc/ctime.texi: Remove file.
28302         * doc/inet_ntoa.texi: Remove file.
28303         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
28304         dependencies.
28305         (%.info): New rule, specifying a --reference-limit.
28306
28307 2007-05-01  Bruno Haible  <bruno@clisp.org>
28308
28309         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
28310
28311 2007-05-01  Bruno Haible  <bruno@clisp.org>
28312
28313         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
28314         the portability of 'mkdir' to mingw systems.
28315
28316 2007-05-01  Bruno Haible  <bruno@clisp.org>
28317
28318         * doc/headers/google-ranking.txt: New file.
28319
28320 2007-04-30  Eric Blake  <ebb9@byu.net>
28321
28322         Prefer fseeko to fseek.
28323         * modules/getpass (Depends-on): Add fseeko.
28324         * lib/getpass.c (getpass): Use fseeko, not fseek.
28325
28326 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
28327
28328         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
28329         assumes the sorting is stable, while most qsort implementations
28330         are not.  Use argument addresses to ensure they never compare as
28331         equal.
28332
28333         * tests/test-argp-2.sh (usage-indent test): Fix output
28334         (func_compare): Restore diff options
28335         * tests/test-argp.c: Restore #include "progname.h"
28336
28337 2007-04-29  Bruno Haible  <bruno@clisp.org>
28338
28339         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
28340         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28341         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
28342         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28343         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
28344         (configure.ac): Define CHECK_SNPRINTF_POSIX.
28345         (TESTS, check_PROGRAMS): Add test-snprintf.
28346         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
28347         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
28348         (TESTS, check_PROGRAMS): Add test-vsnprintf.
28349         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
28350         assertions that fail on HP-UX, OSF/1, or IRIX.
28351         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
28352
28353 2007-04-29  Bruno Haible  <bruno@clisp.org>
28354
28355         * MODULES.html.sh (posix_functions): Remove 'contents'.
28356
28357 2007-04-29  Karl Berry  <karl@gnu.org>
28358
28359         * config/srclist.txt (gendocs_template_min): new entry.
28360
28361 2007-04-29  Bruno Haible  <bruno@clisp.org>
28362
28363         Work around fpurge bug on BSD systems.
28364         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
28365         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
28366         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
28367         fpurge to rpl_fpurge if the system already has this function.
28368         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
28369         the case where the system already has this function. Correct invariants
28370         on BSD systems.
28371         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
28372         BSD systems.
28373
28374 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
28375
28376         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
28377         proposed by Sven Verdoolaege.
28378
28379         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
28380         options.
28381         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
28382         (usage and help tests): Update
28383
28384 2007-04-29  Bruno Haible  <bruno@clisp.org>
28385
28386         * tests/test-fflush.c (main): Use a file of size 17, not 10.
28387         Print more information in case of failure. Disable a test on BeOS.
28388
28389 2007-04-29  Bruno Haible  <bruno@clisp.org>
28390
28391         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
28392         This helps debugging on systems on which no gdb is available.
28393
28394 2007-04-29  Bruno Haible  <bruno@clisp.org>
28395
28396         * lib/freading.h: Improve comments.
28397         * lib/fwriting.h: Likewise.
28398         * tests/test-freading.c (main): Don't check freading immediately after
28399         repositioning. Needed for glibc.
28400
28401 2007-04-29  Bruno Haible  <bruno@clisp.org>
28402
28403         * lib/freading.c (freading): Trivial simplification.
28404
28405 2007-04-28  Bruno Haible  <bruno@clisp.org>
28406
28407         * tests/test-fwriting.c (main): Also test the interaction between
28408         fflush and fwriting.
28409         * modules/fwriting-tests (Depends-on): Add fflush.
28410
28411         * tests/test-freading.c (main): Also test the interaction between
28412         fflush and freading.
28413         * modules/freading-tests (Depends-on): Add fflush.
28414
28415 2007-04-28  Bruno Haible  <bruno@clisp.org>
28416
28417         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
28418         fseeko and ftello.
28419         Suggested by Eric Blake.
28420
28421 2007-04-28  Jim Meyering  <jim@meyering.net>
28422
28423         Avoid false-negative in gl_STDINT_H's C99 conformance test.
28424         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
28425         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
28426
28427 2007-04-27  Eric Blake  <ebb9@byu.net>
28428
28429         * doc/headers/assert.texi (assert.h): Document assert module use.
28430
28431 2007-04-27  Bruno Haible  <bruno@clisp.org>
28432
28433         * doc/headers/*.texi: New files.
28434         * doc/gnulib.texi (Header File Substitutes): New chapter.
28435         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
28436         dependencies.
28437         (standards.info ,standards.html, standards.dvi): Update dependencies.
28438         (mostlyclean, clean): New targets.
28439
28440 2007-04-27  Bruno Haible  <bruno@clisp.org>
28441
28442         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
28443         * modules/sysexits (Files, Makefile.am): Update.
28444
28445         * lib/sys_socket_.h: Renamed from lib/socket_.h.
28446         * modules/sys_socket (Files, Makefile.am): Update.
28447
28448         * lib/sys_stat_.h: Renamed from lib/stat_.h.
28449         * modules/sys_stat (Files, Makefile.am): Update.
28450
28451 2007-04-27  Eric Blake  <ebb9@byu.net>
28452
28453         * lib/freading.h: Improve comments.
28454         * lib/fwriting.h: Likewise.
28455         * lib/fflush.c: Likewise.
28456
28457         Fix closein for mingw.
28458         * modules/closein-tests: Add tests for closein.
28459         * tests/test-closein.c: New file.
28460         * tests/test-closein.sh: Likewise.
28461         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
28462         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
28463
28464 2007-04-27  Bruno Haible  <bruno@clisp.org>
28465
28466         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
28467         version is < 6.
28468         * lib/math_.h [__DECC]: Likewise.
28469         * lib/stdio_.h [__DECC]: Likewise.
28470         * lib/stdlib_.h [__DECC]: Likewise.
28471         * lib/string_.h [__DECC]: Likewise.
28472         * lib/time_.h [__DECC]: Likewise.
28473         * lib/wchar_.h [__DECC]: Likewise.
28474         * lib/wctype_.h [__DECC]: Likewise.
28475
28476 2007-04-27  Bruno Haible  <bruno@clisp.org>
28477
28478         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
28479
28480 2007-04-27  Bruno Haible  <bruno@clisp.org>
28481
28482         * lib/fflush.c: Add comments.
28483         * modules/fpurge-tests (Depends-on): Add fflush.
28484         * modules/freadable-tests (Depends-on): Likewise.
28485         * modules/fwritable-tests (Depends-on): Likewise.
28486
28487 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
28488
28489         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
28490         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
28491         Report by Bruno Haible <bruno@clisp.org>.
28492
28493 2007-04-26  Eric Blake  <ebb9@byu.net>
28494
28495         Fix fflush on mingw.
28496         * modules/fflush (Depends-on): Add freading.
28497         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
28498         but unread data.
28499
28500 2007-04-26  Eric Blake  <ebb9@byu.net>
28501         and Bruno Haible  <bruno@clisp.org>
28502
28503         Implement freading and fwriting.
28504         * lib/freading.c: New file.
28505         * lib/freading.h: Likewise.
28506         * m4/freading.m4: Likewise.
28507         * modules/freading: Likewise.
28508         * modules/freading-tests: Likewise.
28509         * tests/test-freading.c: Likewise.
28510         * lib/fwriting.c: New file.
28511         * lib/fwriting.h: Likewise.
28512         * m4/fwriting.m4: Likewise.
28513         * modules/fwriting: Likewise.
28514         * modules/fwriting-tests: Likewise.
28515         * tests/test-fwriting.c: Likewise.
28516         * MODULES.html.sh (File stream based Input/Output): Mention them.
28517
28518 2007-04-26  Bruno Haible  <bruno@clisp.org>
28519
28520         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
28521         'long' when we assume it.
28522         Suggested by Eric Blake.
28523
28524 2007-04-26  Bruno Haible  <bruno@clisp.org>
28525
28526         Ensure fseeko, ftello are declared on glibc systems.
28527         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
28528         * modules/fseeko (configure.ac-early): Likewise.
28529         * modules/ftello (configure.ac-early): Likewise.
28530         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
28531         AC_FUNC_FSEEKO for this.
28532         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
28533         (gl_CHECK_FSEEKO): Remove macro.
28534
28535 2007-04-26  Bruno Haible  <bruno@clisp.org>
28536
28537         * tests/test-fflush.c (main): Also check the ftell result after
28538         fflush and fseek/fseeko.
28539         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
28540         file descriptor position cache in the stream.
28541         * lib/fseeko.c (rpl_fseeko): Likewise.
28542
28543 2007-04-26  Bruno Haible  <bruno@clisp.org>
28544
28545         * modules/fflush-tests (Depends-on): Add fseeko.
28546
28547 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
28548             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28549
28550         * lib/argz_.h: ensure error_t definition is obtained in same
28551         mechanism system argz.h would have.
28552         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
28553         argz facilities are known bad.  Err on the side of caution if
28554         cross-compiling.
28555
28556 2007-04-25  Eric Blake  <ebb9@byu.net>
28557
28558         * lib/fpurge.c (includes): Use stdlib.h for free.
28559         * tests/test-fflush.c (main): Also test fflush-fseeko.
28560
28561 2007-04-25  Bruno Haible  <bruno@clisp.org>
28562
28563         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
28564         * lib/fseeko.c: New file.
28565         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
28566         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
28567         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
28568         gl_FUNC_FSEEKO.
28569         (gl_FUNC_FSEEKO): Invoke it.
28570         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
28571         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
28572         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
28573
28574 2007-04-25  Bruno Haible  <bruno@clisp.org>
28575
28576         * modules/fflush (Depends-on): Add ftello.
28577
28578 2007-04-25  Bruno Haible  <bruno@clisp.org>
28579
28580         * modules/ftello-tests: New file.
28581         * tests/test-ftello.c: New file.
28582
28583         * modules/ftello: New file.
28584         * m4/ftello.m4: New file.
28585         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
28586         HAVE_FTELLO.
28587         * lib/stdio_.h (ftello): New declaration.
28588         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
28589         HAVE_FTELLO.
28590
28591 2007-04-25  Bruno Haible  <bruno@clisp.org>
28592
28593         * modules/fseeko-tests: New file.
28594         * tests/test-fseeko.c: New file.
28595
28596         * modules/fseeko: New file.
28597         * m4/fseeko.m4: New file.
28598         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
28599         HAVE_FSEEKO.
28600         * lib/stdio_.h (fseeko): New declaration.
28601         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
28602         HAVE_FSEEKO.
28603
28604 2007-04-25  Bruno Haible  <bruno@clisp.org>
28605
28606         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
28607
28608 2007-04-25  Bruno Haible  <bruno@clisp.org>
28609
28610         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
28611         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
28612         * tests/test-unistd.c: Likewise.
28613         * tests/test-fcntl.c: Likewise.
28614
28615 2007-04-23  Eric Blake  <ebb9@byu.net>
28616
28617         * lib/fflush.c: Fix missing include.
28618         Reported by Bruno Haible.
28619
28620 2007-04-23  Bruno Haible  <bruno@clisp.org>
28621
28622         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
28623         Reported by Eric Blake.
28624
28625 2007-04-23  Bruno Haible  <bruno@clisp.org>
28626
28627         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
28628
28629 2007-04-23  Bruno Haible  <bruno@clisp.org>
28630
28631         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
28632
28633 2007-04-23  Bruno Haible  <bruno@clisp.org>
28634
28635         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
28636         Needed on HP-UX 11.
28637
28638 2007-04-16  Eric Blake  <ebb9@byu.net>
28639
28640         Make fflush rely on fpurge.
28641         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
28642         open coding all variants.
28643         * modules/fflush (Depends-on): Add fpurge and unistd.
28644         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
28645         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
28646
28647         Fix --with-tests compilation on cygwin.
28648         * modules/argmatch-tests (Makefile.am): List gnulib library first
28649         in LDADD.
28650         * modules/argp-tests (Makefile.am): Likewise.
28651         * modules/array-list-tests (Makefile.am): Likewise.
28652         * modules/array-oset-tests (Makefile.am): Likewise.
28653         * modules/avltree-list-tests (Makefile.am): Likewise.
28654         * modules/avltree-oset-tests (Makefile.am): Likewise.
28655         * modules/avltreehash-list-tests (Makefile.am): Likewise.
28656         * modules/carray-list-tests (Makefile.am): Likewise.
28657         * modules/dirname-tests (Makefile.am): Likewise.
28658         * modules/frexp-tests (Makefile.am): Likewise.
28659         * modules/isnanl-tests (Makefile.am): Likewise.
28660         * modules/linked-list-tests (Makefile.am): Likewise.
28661         * modules/linkedhash-list-tests (Makefile.am): Likewise.
28662         * modules/lock-tests (Makefile.am): Likewise.
28663         * modules/rbtree-list-tests (Makefile.am): Likewise.
28664         * modules/rbtree-oset-tests (Makefile.am): Likewise.
28665         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
28666         * modules/tls-tests (Makefile.am): Likewise.
28667         * modules/tsearch-tests (Makefile.am): Likewise.
28668         * modules/xvasprintf-tests (Makefile.am): Likewise.
28669
28670         Fix fpurge for cygwin.
28671         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
28672         value.
28673         * modules/fpurge-tests (Depends-on): Clean up trash.
28674
28675 2007-04-16  Simon Josefsson  <simon@josefsson.org>
28676
28677         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
28678
28679         * m4/autobuild.m4: Re-indent.
28680
28681 2007-04-13  Bruno Haible  <bruno@clisp.org>
28682
28683         * modules/fpurge-tests: New file.
28684         * tests/test-fpurge.c: New file.
28685
28686         * modules/fpurge: New file.
28687         * lib/fpurge.h: New file.
28688         * lib/fpurge.c: New file.
28689         * m4/fpurge.m4: New file.
28690
28691 2007-04-13  Bruno Haible  <bruno@clisp.org>
28692
28693         * modules/fbufmode-tests: New file.
28694         * tests/test-fbufmode.c: New file.
28695
28696         * modules/fbufmode: New file.
28697         * lib/fbufmode.h: New file.
28698         * lib/fbufmode.c: New file.
28699         * m4/fbufmode.m4: New file.
28700
28701 2007-04-13  Bruno Haible  <bruno@clisp.org>
28702
28703         * modules/fwritable-tests: New file.
28704         * tests/test-fwritable.c: New file.
28705
28706         * modules/fwritable: New file.
28707         * lib/fwritable.h: New file.
28708         * lib/fwritable.c: New file.
28709         * m4/fwritable.m4: New file.
28710
28711 2007-04-13  Bruno Haible  <bruno@clisp.org>
28712
28713         * modules/freadable-tests: New file.
28714         * tests/test-freadable.c: New file.
28715
28716         * modules/freadable: New file.
28717         * lib/freadable.h: New file.
28718         * lib/freadable.c: New file.
28719         * m4/freadable.m4: New file.
28720
28721 2007-04-13  Bruno Haible  <bruno@clisp.org>
28722
28723         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
28724         MOSTLYCLEANFILES.
28725
28726 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
28727
28728         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
28729         gzip bootstrap.conf to avoid dragging in i18n machinery.
28730         (gnulib_tool_option): Use it.
28731
28732 2007-04-13  Bruno Haible  <bruno@clisp.org>
28733
28734         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
28735         %F directives.
28736         * tests/test-vasprintf-posix.c (test_function): Likewise.
28737         * tests/test-snprintf-posix.h (test_function): Likewise.
28738         * tests/test-sprintf-posix.h (test_function): Likewise.
28739         * tests/test-fprintf-posix.h (test_function): Likewise.
28740         * tests/test-printf-posix.h (test_function): Likewise.
28741         * tests/test-fprintf-posix.out: Likewise.
28742
28743 2007-04-13  Bruno Haible  <bruno@clisp.org>
28744
28745         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
28746         * modules/tls-tests (configure.ac): Likewise.
28747         Reported by Arto C. Nirkko <anirkko@insel.ch>.
28748
28749 2007-04-13  Bruno Haible  <bruno@clisp.org>
28750
28751         * lib/tls.c (glthread_tls_get): Fix return type.
28752         Patch by Arto C. Nirkko <anirkko@insel.ch>.
28753
28754 2007-04-12  Eric Blake  <ebb9@byu.net>
28755
28756         * modules/gettime (Depends-on): Remove gettime.
28757         Reported by Dmitry V. Levin.
28758
28759 2007-04-12  Bruno Haible  <bruno@clisp.org>
28760
28761         * modules/fflush (Include): Mention <stdio.h>.
28762         * modules/strtoimax (Include): Mention <inttypes.h>.
28763         * modules/strtoumax (Include): Likewise.
28764
28765 2007-04-12  Eric Blake  <ebb9@byu.net>
28766
28767         * .cvsignore: New file.
28768         * .gitignore: Likewise.
28769
28770 2007-04-12  Bruno Haible  <bruno@clisp.org>
28771
28772         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
28773         not before, since $(LDADD) often contains libgnu.a.
28774         * modules/striconv-tests (test_striconv_LDADD): Likewise.
28775         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
28776         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
28777         Needed on Cygwin.
28778
28779 2007-04-12  Eric Blake  <ebb9@byu.net>
28780
28781         Work around glibc's failure to flush stdin on fclose.
28782         * lib/closein.c (close_stdin): Flush stdin before closing.
28783
28784         Work around glibc's failure to reset seekable stdin on exit.
28785         * modules/closein: New module.
28786         * lib/closein.c: New file.
28787         * lib/closein.h: Likewise.
28788         * m4/closein.m4: Likewise.
28789         * MODULES.html.sh (File stream based Input/Output): Document it.
28790
28791 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28792
28793         * gnulib-tool: Rename generated 'autobuild' script to
28794         'do-autobuild' in --create-megatestdir output.
28795
28796         * doc/gnulib.texi (Build robot for gnulib): Fix.
28797
28798 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28799
28800         * modules/sysexits (Depends-on): Add absolute-header.
28801
28802 2007-04-12  Eric Blake  <ebb9@byu.net>
28803
28804         No need to preserve errno on success.
28805         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
28806         Reported by Bruno Haible.
28807
28808 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28809
28810         * MODULES.html.sh (Support for maintaining and releasing
28811         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
28812
28813 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28814
28815         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
28816
28817 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28818
28819         * modules/autobuild: New module.
28820
28821         * m4/autobuild.m4: New file.
28822
28823 2007-04-11  Bruno Haible  <bruno@clisp.org>
28824
28825         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
28826         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
28827         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
28828         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
28829         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28830         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28831         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28832         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28833         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28834         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28835         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
28836         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28837         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28838         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
28839         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28840         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28841         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
28842         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28843         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28844         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
28845         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28846         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28847         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
28848         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28849         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28850         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
28851         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28852         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28853         Reported by Eric Blake.
28854
28855 2007-04-11  Bruno Haible  <bruno@clisp.org>
28856
28857         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
28858
28859 2007-04-10  Bruno Haible  <bruno@clisp.org>
28860
28861         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
28862         for NaN and Infinity. Needed on FreeBSD 6.1.
28863         * tests/test-vasnprintf-posix.c (test_function): Undo last change
28864         regarding results for "%010a" of Infinity and NaN.
28865         * tests/test-vasprintf-posix.c (test_function): Likewise.
28866         * tests/test-snprintf-posix.h (test_function): Likewise.
28867         * tests/test-sprintf-posix.h (test_function): Likewise.
28868         * tests/test-fprintf-posix.h (test_function): Likewise.
28869         * tests/test-printf-posix.h (test_function): Likewise.
28870         * tests/test-fprintf-posix.out: Likewise.
28871
28872 2007-04-10  Bruno Haible  <bruno@clisp.org>
28873
28874         * modules/locale-tests: New file.
28875         * tests/test-locale.c: New file.
28876
28877         * modules/locale: New file.
28878         * lib/locale_.h: New file.
28879         * m4/locale_h.m4: New file.
28880
28881 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
28882             Bruno Haible  <bruno@clisp.org>
28883
28884         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
28885         be determined, test for availability of the copysignf, copysign,
28886         copysignl functions.
28887         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
28888         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
28889         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
28890
28891 2007-04-09  Eric Blake  <ebb9@byu.net>
28892
28893         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
28894         * modules/stdio (Makefile.am): Support fflush.
28895         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
28896         * modules/fflush: New file.
28897         * lib/fflush.c: Likewise.
28898         * m4/fflush.m4: Likewise.
28899         * modules/fflush-tests: New test.
28900         * tests/test-fflush.c: Likewise.
28901         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
28902
28903 2007-04-06  Bruno Haible  <bruno@clisp.org>
28904
28905         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
28906         (VASNPRINTF): Use signbit for faster determination whether to print a
28907         minus sign.
28908         * modules/vasnprintf (Files): Remove lib/float+.h.
28909         * modules/fprintf-posix (Depends-on): Add signbit.
28910         * modules/snprintf-posix (Depends-on): Likewise.
28911         * modules/sprintf-posix (Depends-on): Likewise.
28912         * modules/vasnprintf-posix (Depends-on): Likewise.
28913         * modules/vasprintf-posix (Depends-on): Likewise.
28914         * modules/vfprintf-posix (Depends-on): Likewise.
28915         * modules/vsnprintf-posix (Depends-on): Likewise.
28916         * modules/vsprintf-posix (Depends-on): Likewise.
28917
28918 2007-04-06  Bruno Haible  <bruno@clisp.org>
28919
28920         * tests/test-frexp.c (main): Test also the sign bit of zero results.
28921         * tests/test-frexpl.c (main): Likewise.
28922         * tests/test-ldexpl.c (main): Likewise.
28923         * modules/frexp-tests (Depends-on): Add signbit.
28924         * modules/frexpl-tests (Depdends-on): Likewise.
28925         * modules/ldexpl-tests (Depdends-on): Likewise.
28926
28927 2007-04-06  Bruno Haible  <bruno@clisp.org>
28928
28929         * modules/signbit-tests: New file.
28930         * tests/test-signbit.c: New file.
28931
28932         * modules/signbit: New file.
28933         * lib/signbitf.c: New file.
28934         * lib/signbitd.c: New file.
28935         * lib/signbitl.c: New file.
28936         * m4/signbit.m4: New file.
28937         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
28938         (signbit): New macro.
28939         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
28940         REPLACE_SIGNBIT.
28941         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
28942         REPLACE_FREXPL into math.h.
28943
28944 2007-04-06  Bruno Haible  <bruno@clisp.org>
28945
28946         * modules/isnanf-nolibm-tests: New file.
28947         * tests/test-isnanf.c: New file.
28948
28949         * modules/isnanf-nolibm: New file.
28950         * lib/isnanf.h: New file.
28951         * lib/isnanf.c: New file.
28952         * lib/isnan.c: Consider the USE_FLOAT macro.
28953         * m4/isnanf.m4: New file.
28954
28955 2007-04-06  Bruno Haible  <bruno@clisp.org>
28956
28957         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
28958         (Link): New section.
28959
28960         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
28961
28962 2007-04-06  Bruno Haible  <bruno@clisp.org>
28963
28964         Assume the 'long double' type.
28965         * m4/longdouble.m4: Remove file.
28966         * config/srclist.txt: Don't mention longdouble.m4.
28967         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
28968         * lib/float+.h: Likewise.
28969         * lib/frexp.c: Likewise.
28970         * lib/printf-args.h: Likewise.
28971         * lib/printf-args.c: Likewise.
28972         * lib/printf-frexp.c: Likewise.
28973         * lib/printf-parse.c: Likewise.
28974         * lib/vasnprintf.c: Likewise.
28975         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
28976         * m4/intl.m4: Likewise.
28977         * m4/isnanl.m4: Likewise.
28978         * m4/printf.m4: Likewise.
28979         * m4/printf-frexpl.m4: Likewise.
28980         * m4/vasnprintf.m4: Likewise.
28981         * modules/allocsa (Files): Remove m4/longdouble.m4.
28982         * modules/gettext (Files): Likewise.
28983         * modules/relocatable-prog-wrapper (Files): Likewise.
28984         * modules/vasnprintf (Files): Likewise.
28985         * modules/isnanl (Files): Likewise.
28986         (Include): Simplify.
28987         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
28988         (Include): Simplify.
28989         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
28990         (Include): Simplify.
28991         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
28992         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28993         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
28994         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28995         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
28996         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28997         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
28998         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28999         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29000         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29001         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
29002         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29003         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
29004         * tests/test-isnanl.c: Likewise.
29005         * tests/test-snprintf-posix.h: Likewise.
29006         * tests/test-sprintf-posix.h: Likewise.
29007         * tests/test-vasnprintf-posix.c: Likewise.
29008         * tests/test-vasnprintf-posix2.c: Likewise.
29009         * tests/test-vasprintf-posix.c: Likewise.
29010
29011 2007-04-06  Bruno Haible  <bruno@clisp.org>
29012
29013         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
29014         * lib/math_.h [__DECC]: Include the overridden include file through
29015         #include_next, outside the double-inclusion guard.
29016         * lib/stdio_.h [__DECC]: Likewise.
29017         * lib/stdlib_.h [__DECC]: Likewise.
29018         * lib/string_.h [__DECC]: Likewise.
29019         * lib/time_.h [__DECC]: Likewise.
29020         * lib/wchar_.h [__DECC]: Likewise.
29021         * lib/wctype_.h [__DECC]: Likewise.
29022         * lib/inttypes_.h [__DECC]: Likewise.
29023         Reported by Albert Chin <china@thewrittenword.com> in
29024         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
29025
29026 2007-04-04  Eric Blake  <ebb9@byu.net>
29027
29028         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
29029         1.5.x.
29030
29031 2007-04-04  Bruno Haible  <bruno@clisp.org>
29032
29033         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
29034         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
29035
29036 2007-04-04  Bruno Haible  <bruno@clisp.org>
29037
29038         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
29039         results for "%010a" of Infinity and NaN.
29040         * tests/test-vasprintf-posix.c (test_function): Likewise.
29041         * tests/test-snprintf-posix.h (test_function): Likewise.
29042         * tests/test-sprintf-posix.h (test_function): Likewise.
29043         * tests/test-fprintf-posix.h (test_function): Remove these tests.
29044         * tests/test-printf-posix.h (test_function): Likewise.
29045         * tests/test-fprintf-posix.out: Update.
29046         Needed for FreeBSD 6.1.
29047
29048 2007-04-04  Bruno Haible  <bruno@clisp.org>
29049
29050         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
29051         directly used by the gnulib modules nor by gnulib-tool.
29052
29053 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
29054
29055         * DEPENDENCIES: Give overall description of version dependency
29056         desirability.  Use more-typical names for apps.
29057         Add shell, coreutils, diffutils, grep, tar, gzip.
29058
29059 2007-04-04  Simon Josefsson  <simon@josefsson.org>
29060
29061         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
29062
29063 2007-04-04  Karl Berry  <karl@gnu.org>
29064
29065         * MODULES.html.sh (func_module): missing '.
29066
29067 2007-04-03  Bruno Haible  <bruno@clisp.org>
29068
29069         * modules/argmatch-tests (Makefile.am): New variable
29070         test_argmatch_LDADD.
29071         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
29072         * modules/array-list-tests (Makefile.am): New variable
29073         test_array_list_LDADD.
29074         * modules/array-oset-tests (Makefile.am): New variable
29075         test_array_oset_LDADD.
29076         * modules/avltree-list-tests (Makefile.am): New variable
29077         test_avltree_list_LDADD.
29078         * modules/avltree-oset-tests (Makefile.am): New variable
29079         test_avltree_oset_LDADD.
29080         * modules/avltreehash-list-tests (Makefile.am): New variable
29081         test_avltreehash_list_LDADD.
29082         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
29083         test_canonicalize_lgpl_LDADD.
29084         * modules/carray-list-tests (Makefile.am): New variable
29085         test_carray_list_LDADD.
29086         * modules/dirname-tests (Makefile.am): New variable
29087         test_dirname_LDADD.
29088         * modules/linked-list-tests (Makefile.am): New variable
29089         test_linked_list_LDADD.
29090         * modules/linkedhash-list-tests (Makefile.am): New variable
29091         test_linkedhash_list_LDADD.
29092         * modules/rbtree-list-tests (Makefile.am): New variable
29093         test_rbtree_list_LDADD.
29094         * modules/rbtree-oset-tests (Makefile.am): New variable
29095         test_rbtree_oset_LDADD.
29096         * modules/rbtreehash-list-tests (Makefile.am): New variable
29097         test_rbtreehash_list_LDADD.
29098         * modules/xvasprintf-tests (Makefile.am): New variable
29099         test_xvasprintf_LDADD.
29100         Reported by Eric Blake.
29101
29102 2007-04-03  Eric Blake  <ebb9@byu.net>
29103
29104         * DEPENDENCIES: Weaken m4 requirements.
29105
29106 2007-04-03  Bruno Haible  <bruno@clisp.org>
29107
29108         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
29109         * modules/isnanl-tests (configure.ac): Likewise.
29110
29111 2007-04-03  Ben Pfaff  <blp@gnu.org>
29112
29113         * modules/iconv_open: Add $(srcdir)/ to source directory
29114         references in Makefile fragments that call gperf, to fix VPATH
29115         builds.
29116
29117 2007-04-03  Bruno Haible  <bruno@clisp.org>
29118
29119         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
29120         * lib/ldexpl.c: Undo last change.
29121
29122 2007-04-03  Bruno Haible  <bruno@clisp.org>
29123
29124         * modules/printf-frexpl (Depends-on): Undo last change.
29125         (Files): Add m4/ldexpl.m4.
29126
29127 2007-04-03  Bruno Haible  <bruno@clisp.org>
29128
29129         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
29130         * modules/isnanl (Link): New section.
29131
29132         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
29133         * modules/frexp (Link): New section.
29134
29135         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
29136         * modules/frexpl (Link): New section.
29137
29138         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
29139         * modules/ldexpl (Link): New section.
29140
29141 2007-04-03  Bruno Haible  <bruno@clisp.org>
29142
29143         * modules/TEMPLATE-EXTENDED: New file.
29144         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
29145
29146 2007-04-03  Bruno Haible  <bruno@clisp.org>
29147
29148         * DEPENDENCIES: New file.
29149         Suggested by Simon Josefsson.
29150
29151 2007-04-03  Bruno Haible  <bruno@clisp.org>
29152
29153         * doc/gnulib.texi: Escape @.
29154
29155 2007-04-03  James Youngman  <jay@gnu.org>
29156         and Paul Eggert  <eggert@cs.ucla.edu>
29157
29158         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
29159         birthtime on all systems that have birthtime, not just those which
29160         use st_birthtimensec rather than st_birthtim.  Putting zero in
29161         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
29162         that the birth time is not available for files on an NFS mount.
29163
29164 2007-04-03  Simon Josefsson  <simon@josefsson.org>
29165
29166         * modules/memxor: Move back from crypto/, suggested by Bruno.
29167         * modules/crypto/hmac-sha1: Fix memxor dependency.
29168
29169         * modules/crypto/gc: Moved from ../.
29170
29171 2007-04-02  Eric Blake  <ebb9@byu.net>
29172
29173         * lib/ldexpl.c (includes): Avoid libm.
29174
29175         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
29176
29177 2007-04-02  Bruno Haible  <bruno@clisp.org>
29178
29179         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
29180         on IRIX.
29181
29182 2007-04-02  Bruno Haible  <bruno@clisp.org>
29183
29184         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
29185         x86 or x86_64 platforms running MacOS X.
29186         Reported by Ryan Schmidt <@ryandesign.com>.
29187
29188 2007-04-02  Bruno Haible  <bruno@clisp.org>
29189
29190         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
29191         i386.
29192
29193 2007-04-01  Simon Josefsson  <simon@josefsson.org>
29194
29195         * modules/crypto/arcfour: Moved from ../.
29196         * modules/crypto/arcfour-tests: Moved from ../.
29197         * modules/crypto/arctwo: Moved from ../.
29198         * modules/crypto/arctwo-tests: Moved from ../.
29199         * modules/crypto/des: Moved from ../.
29200         * modules/crypto/des-tests: Moved from ../.
29201         * modules/crypto/gc-arcfour: Moved from ../.
29202         * modules/crypto/gc-arcfour-tests: Moved from ../.
29203         * modules/crypto/gc-arctwo: Moved from ../.
29204         * modules/crypto/gc-arctwo-tests: Moved from ../.
29205         * modules/crypto/gc-des: Moved from ../.
29206         * modules/crypto/gc-des-tests: Moved from ../.
29207         * modules/crypto/gc-hmac-md5: Moved from ../.
29208         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
29209         * modules/crypto/gc-hmac-sha1: Moved from ../.
29210         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
29211         * modules/crypto/gc-md2: Moved from ../.
29212         * modules/crypto/gc-md2-tests: Moved from ../.
29213         * modules/crypto/gc-md4: Moved from ../.
29214         * modules/crypto/gc-md4-tests: Moved from ../.
29215         * modules/crypto/gc-md5: Moved from ../.
29216         * modules/crypto/gc-md5-tests: Moved from ../.
29217         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
29218         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
29219         * modules/crypto/gc-random: Moved from ../.
29220         * modules/crypto/gc-rijndael: Moved from ../.
29221         * modules/crypto/gc-rijndael-tests: Moved from ../.
29222         * modules/crypto/gc-sha1: Moved from ../.
29223         * modules/crypto/gc-sha1-tests: Moved from ../.
29224         * modules/crypto/gc-tests: Moved from ../.
29225         * modules/crypto/hmac-md5: Moved from ../.
29226         * modules/crypto/hmac-md5-tests: Moved from ../.
29227         * modules/crypto/hmac-sha1: Moved from ../.
29228         * modules/crypto/hmac-sha1-tests: Moved from ../.
29229         * modules/crypto/md2: Moved from ../.
29230         * modules/crypto/md2-tests: Moved from ../.
29231         * modules/crypto/md4: Moved from ../.
29232         * modules/crypto/md4-tests: Moved from ../.
29233         * modules/crypto/md5: Moved from ../.
29234         * modules/crypto/md5-tests: Moved from ../.
29235         * modules/crypto/memxor: Moved from ../.
29236         * modules/crypto/rijndael: Moved from ../.
29237         * modules/crypto/rijndael-tests: Moved from ../.
29238         * modules/crypto/sha1: Moved from ../.
29239
29240 2007-03-30  James Youngman  <jay@gnu.org>
29241
29242         * tests/test-stat-time.c (prepare_test): use chmod() rather than
29243         rename() to change the ctime of a file (because ctime is unaffected
29244         by rename on jfs2 on AIX 5.1).
29245         (main): Start by doing cleanup, in case a previous run failed leaving
29246         test files behind.
29247
29248 2007-03-31  Bruno Haible  <bruno@clisp.org>
29249
29250         Support old proprietary implementations of iconv.
29251         * modules/iconv_open: New file.
29252         * lib/iconv_.h: New file.
29253         * m4/iconv_h.m4: New file.
29254         * lib/iconv_open.c: New file.
29255         * lib/iconv_open-aix.gperf: New file.
29256         * lib/iconv_open-hpux.gperf: New file.
29257         * lib/iconv_open-irix.gperf: New file.
29258         * lib/iconv_open-osf.gperf: New file.
29259         * m4/iconv_open.m4: New file.
29260         * modules/linebreak (Depends-on): Add iconv_open.
29261         * modules/striconv (Depends-on): Likewise.
29262         * modules/striconveh (Depends-on): Likewise.
29263         * modules/unicodeio (Depends-on): Likewise.
29264         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
29265         (iconv_t)(-1).
29266         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
29267         conversion if cd is (iconv_t)(-1).
29268         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
29269         is not possible.
29270
29271 2007-03-31  Bruno Haible  <bruno@clisp.org>
29272
29273         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29274         work on Solaris either. Protect also second use of "autodetect_jp".
29275
29276 2007-03-31  Bruno Haible  <bruno@clisp.org>
29277
29278         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
29279         the function is not present.
29280
29281 2007-03-31  Bruno Haible  <bruno@clisp.org>
29282
29283         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
29284         the function is not present.
29285
29286 2007-03-31  Bruno Haible  <bruno@clisp.org>
29287
29288         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
29289         a bug in HP-UX iconv_open().
29290
29291 2007-03-31  Bruno Haible  <bruno@clisp.org>
29292
29293         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
29294         (Mathematics <math.h>): New section, add fpieee.
29295         (Input/output <stdio.h>): Add fseterr.
29296         (Mathematics <math.h>): New section, add printf-frexp.
29297         (Container data structures): Add sublist.
29298         (Core language properties): Add fpucw, inline.
29299         (Functions for greatest-width integer types <inttypes.h>): Add
29300         imaxabs, imaxdiv, inttypes.
29301         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
29302         isnanl-nolibm, ldexp.
29303         (Mathematics <math.h>): New section, add printf-frexpl.
29304         (Support for systems lacking POSIX:2001): Add fprintf-posix,
29305         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
29306         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
29307         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
29308         (Unicode string functions): Add unistr/u*-mbtoucr.
29309         (Java): Add javacomp-script, javaexec-script.
29310         (C#): Add csharpcomp-script, csharpexec-script.
29311         (Support for building libraries and executables): Add havelib,
29312         relocatable-*.
29313         (Support for maintaining and releasing projects): Renamed from
29314         'Support for maintaining and release projects'. Add announce-gen.
29315
29316 2007-03-31  Bruno Haible  <bruno@clisp.org>
29317
29318         * README: Talk primarily about git.
29319         (git and CVS): Renamed from CVS.
29320         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
29321         gnulib is available through git.
29322         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
29323
29324 2007-03-30  Bruno Haible  <bruno@clisp.org>
29325
29326         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
29327         * lib/poll_.h: Likewise.
29328         * lib/stat_.h: Likewise.
29329         * lib/sys_time_.h: Likewise.
29330         * lib/sysexit_.h: Likewise.
29331         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
29332         * lib/stdbool_.h: Likewise.
29333         * lib/byteswap_.h: Add double-inclusion guard.
29334
29335 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
29336
29337         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
29338
29339 2007-03-30  Karl Berry  <karl@gnu.org>
29340
29341         * config/srclist-update: double space after USA in the license
29342         substitution, since that's how it's usually (?) written.
29343
29344 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
29345
29346         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
29347         reported by Bruno Haible.
29348
29349 2007-03-29  Bruno Haible  <bruno@clisp.org>
29350
29351         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
29352         a bug in AIX iconv().
29353
29354 2007-03-29  Bruno Haible  <bruno@clisp.org>
29355
29356         * modules/ldexpl-tests: New file.
29357         * tests/test-ldexpl.c: New file.
29358
29359 2007-03-29  Bruno Haible  <bruno@clisp.org>
29360
29361         * lib/ldexpl.c: Include fpucw.h.
29362         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
29363         multiplication.
29364         * modules/ldexpl (Depends-on): Add fpucw.
29365
29366 2007-03-29  Bruno Haible  <bruno@clisp.org>
29367
29368         * modules/ldexpl: New file.
29369         * m4/ldexpl.m4: New file.
29370         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
29371         set.
29372         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
29373         REPLACE_LDEXPL.
29374         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
29375         REPLACE_LDEXPL.
29376         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
29377         gl_FUNC_LDEXPL_WORKS.
29378         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
29379         * modules/mathl (Files): Remove lib/ldexpl.c.
29380         (Depends-on): Add ldexpl.
29381
29382 2007-03-29  Bruno Haible  <bruno@clisp.org>
29383
29384         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
29385
29386 2007-03-29  Bruno Haible  <bruno@clisp.org>
29387
29388         * tests/test-striconveh.c (main): Don't assume that a direct conversion
29389         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
29390         and possibly also HP-UX.
29391         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29392         work on AIX, IRIX, HP-UX, OSF/1.
29393         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
29394         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
29395         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
29396         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
29397         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
29398         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
29399
29400 2007-03-29  Bruno Haible  <bruno@clisp.org>
29401
29402         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
29403
29404 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29405
29406         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
29407         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
29408
29409 2007-03-29  Eric Blake  <ebb9@byu.net>
29410
29411         * lib/acl-internal.h: Remove redundant include.
29412         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
29413         Cygwin when a file is locked.
29414
29415 2007-03-29  Bruno Haible  <bruno@clisp.org>
29416
29417         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
29418         file.
29419         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
29420
29421 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29422
29423         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
29424         try to remove a parent directory if the child couldn't be removed
29425         (except for the first rmdir, which could fail because the child
29426         doesn't exist).  Problem reported by Jeff Blaine in
29427         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
29428
29429 2007-03-28  Bruno Haible  <bruno@clisp.org>
29430
29431         * lib/striconveh.c (utf8conv_carefully): New function.
29432         (mem_cd_iconveh_internal): Invoke it.
29433
29434 2007-03-28  Bruno Haible  <bruno@clisp.org>
29435
29436         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
29437         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
29438         input.
29439         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
29440         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
29441         unistr/u8-uctomb.
29442
29443 2007-03-28  Bruno Haible  <bruno@clisp.org>
29444
29445         * modules/unistr/u8-mbtoucr: New file.
29446         * lib/unistr/u8-mbtoucr.c: New file.
29447         * modules/unistr/u16-mbtoucr: New file.
29448         * lib/unistr/u16-mbtoucr.c: New file.
29449         * modules/unistr/u16-mbtoucr: New file.
29450         * lib/unistr/u16-mbtoucr.c: New file.
29451         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
29452
29453 2007-03-27  Simon Josefsson  <simon@josefsson.org>
29454             Bruno Haible  <bruno@clisp.org>
29455
29456         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
29457         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
29458         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
29459
29460         * m4/stdio_h.m4: Add stubs for vasprintf too.
29461
29462         * modules/stdio: Support vasprintf in sed command.
29463
29464         * modules/vasprintf: Depend on stdio for prototypes.  Remove
29465         vasprintf.h.  Add stdio module indicator.
29466
29467         * lib/stdio_.h: Declare asprintf and vasprintf, based on
29468         vasprintf.h.
29469
29470         * lib/vasprintf.h: File removed.
29471
29472         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
29473         * lib/vasprintf.c: Ditto.
29474         * lib/xvasprintf.c: Ditto.
29475         * tests/test-vasprintf-posix.c: Ditto.
29476         * tests/test-vasprintf.c: Ditto.
29477
29478 2007-03-27  Bruno Haible  <bruno@clisp.org>
29479
29480         Make vasnprintf multithread-safe.
29481         * lib/vasnprintf.c (decimal_point_char): New function.
29482         (VASNPRINTF): Use it.
29483         Suggested by Simon Josefsson.
29484
29485 2007-03-27  Eric Blake  <ebb9@byu.net>
29486
29487         Support sub-second birthtime on cygwin.
29488         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
29489         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
29490         (get_stat_birthtime): Also work with st_birthtim.
29491
29492 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
29493
29494         * lib/stat-time.h (USE_BIRTHTIME): Remove.
29495         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
29496         (get_stat_birthtime_ns): Do not try to use "spare" fields.
29497         (get_stat_birthtime_ns): Simplify compile-time tests.
29498         (get_stat_birthtime): Change the API to look like
29499         get_stat_mtime etc., except return a negative tv_nsec on error.
29500         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
29501         Don't check for "spare" fields.
29502         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
29503         or for struct stat.st_birthtime, as these tests aren't used.
29504         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
29505
29506 2007-03-27  Bruno Haible  <bruno@clisp.org>
29507
29508         * lib/stat-time.h: Include <sys/stat.h>.
29509
29510 2007-03-27  James Youngman  <jay@gnu.org>
29511
29512         * lib/stat-time.h (get_stat_birthtime): New function for
29513           retrieving st_birthtime as provided by UFS2 (hence *BSD).
29514         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
29515           and its variants.
29516         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
29517         * modules/stat-time-test: New file.
29518         * tests/test-stat-time.c: New test, devised by Bruno Haible.
29519
29520 2007-03-26  Bruno Haible  <bruno@clisp.org>
29521
29522         Better support of signalling NaNs.
29523         * lib/atanl.c: Include isnanl.h.
29524         (atanl): Perform test for NaN at the beginning of the function and
29525         through a call to isnanl.
29526         * lib/cosl.c: Include isnanl.h.
29527         (cosl): Perform test for NaN at the beginning of the function and
29528         through a call to isnanl.
29529         * lib/ldexpl.c: Include isnanl.h.
29530         (ldexpl): Perform test for NaN through a call to isnanl.
29531         * lib/logl.c: Include isnanl.h.
29532         (logl): Perform test for NaN at the beginning of the function and
29533         through a call to isnanl.
29534         * lib/sinl.c: Include isnanl.h.
29535         (sinl): Perform test for NaN at the beginning of the function and
29536         through a call to isnanl.
29537         * lib/sqrtl.c: Include isnanl.h.
29538         (sqrtl): Perform test for NaN at the beginning of the function and
29539         through a call to isnanl.
29540         * lib/tanl.c: Include isnanl.h.
29541         (tanl): Perform test for NaN at the beginning of the function and
29542         through a call to isnanl.
29543         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
29544         * modules/mathl (Depends-on): Add isnanl.
29545
29546 2007-03-26  Eric Blake  <ebb9@byu.net>
29547
29548         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
29549         regression in logic sense of previous patch.
29550
29551 2007-03-26  Bruno Haible  <bruno@clisp.org>
29552
29553         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
29554         unportable shell command "if ! ...".
29555         Reported by Ralf Wildenhues.
29556
29557 2007-03-25  Bruno Haible  <bruno@clisp.org>
29558
29559         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
29560         <sysexits.h> file, and only add EX_CONFIG.
29561         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
29562         absolute file name and whether it is sufficient. Substitute also
29563         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
29564         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
29565         ABSOLUTE_SYSEXITS_H into sysexits.h.
29566
29567 2007-03-25  Bruno Haible  <bruno@clisp.org>
29568
29569         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
29570         hints is NULL.
29571
29572 2007-03-25  Bruno Haible  <bruno@clisp.org>
29573
29574         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
29575         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
29576
29577 2007-03-25  Bruno Haible  <bruno@clisp.org>
29578
29579         * lib/vasnprintf.c: Include langinfo.h.
29580         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
29581         multithread-safe.
29582         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
29583         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
29584         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29585         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29586         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29587         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29588         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29589         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
29590         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29591         Reported by Simon Josefsson.
29592
29593 2007-03-25  Bruno Haible  <bruno@clisp.org>
29594
29595         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
29596         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
29597         * modules/vasnprintf (Depends-on): Add stdint.
29598
29599 2007-03-25  Bruno Haible  <bruno@clisp.org>
29600
29601         * modules/fpieee: New file.
29602         * m4/fpieee.m4: New file.
29603         * modules/isnan-nolibm (Depends-on): Add fpieee.
29604         * modules/isnanl-nolibm (Depends-on): Add fpieee.
29605         * modules/isnanl (Depends-on): Add fpieee.
29606
29607 2007-03-25  Bruno Haible  <bruno@clisp.org>
29608
29609         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
29610
29611 2007-03-25  Bruno Haible  <bruno@clisp.org>
29612
29613         Avoid test failures on IRIX 6.5.
29614         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
29615         (main): Use it.
29616         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
29617         macros.
29618         (main): Use them.
29619
29620 2007-03-25  Bruno Haible  <bruno@clisp.org>
29621
29622         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
29623         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
29624         exists but doesn't work.
29625         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
29626         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
29627         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
29628         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
29629
29630 2007-03-25  Bruno Haible  <bruno@clisp.org>
29631
29632         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
29633         returns inf. Needed on IRIX 6.5.
29634
29635 2007-03-25  Bruno Haible  <bruno@clisp.org>
29636
29637         * tests/test-frexpl.c: Include isnanl-nolibm.h.
29638         (main): Use isnanl instead of x != x idiom.
29639         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
29640
29641         * tests/test-frexp.c: Include isnan.h.
29642         (main): Use isnan instead of x != x idiom.
29643         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
29644
29645 2007-03-25  Bruno Haible  <bruno@clisp.org>
29646
29647         * tests/test-frexp.c (NaN): New function/macro.
29648         (main): Use it instead of 0.0 / 0.0.
29649         * tests/test-isnan.c (NaN): New function/macro.
29650         (main): Use it instead of 0.0 / 0.0.
29651         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
29652         (test_function): Use it instead of 0.0 / 0.0.
29653         * tests/test-vasprintf-posix.c (NaN): New function/macro.
29654         (test_function): Use it instead of 0.0 / 0.0.
29655         * tests/test-snprintf-posix.h (NaN): New function/macro.
29656         (test_function): Use it instead of 0.0 / 0.0.
29657         * tests/test-sprintf-posix.h (NaN): New function/macro.
29658         (test_function): Use it instead of 0.0 / 0.0.
29659         * tests/test-fprintf-posix.h (NaN): New function/macro.
29660         (test_function): Use it instead of 0.0 / 0.0.
29661         * tests/test-printf-posix.h (NaN): New function/macro.
29662         (test_function): Use it instead of 0.0 / 0.0.
29663
29664         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
29665
29666 2007-03-25  Bruno Haible  <bruno@clisp.org>
29667
29668         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
29669
29670 2007-03-25  Bruno Haible  <bruno@clisp.org>
29671
29672         * lib/regexec.c (merge_state_with_log): Make static.
29673
29674 2007-03-25  Bruno Haible  <bruno@clisp.org>
29675
29676         * lib/trigl.c (kernel_rem_pio2): Make static.
29677
29678 2007-03-25  Bruno Haible  <bruno@clisp.org>
29679
29680         * lib/sincosl.c (sincosl_table): Make static.
29681
29682 2007-03-25  Bruno Haible  <bruno@clisp.org>
29683
29684         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
29685         if the compiler does not support C99.
29686
29687 2007-03-25  Bruno Haible  <bruno@clisp.org>
29688
29689         * modules/time (Makefile.am): Ensure all rule action lines start with a
29690         tab.
29691
29692 2007-03-24  Bruno Haible  <bruno@clisp.org>
29693
29694         * modules/tsearch-tests: New file.
29695         * tests/test-tsearch.sh: New file.
29696         * tests/test-tsearch.c: New file, mostly copied from glibc.
29697
29698         * modules/search-tests: New file.
29699         * tests/test-search.c: New file.
29700
29701         * modules/search: New file.
29702         * lib/search_.h: New file, incorporating lib/tsearch.h.
29703         * m4/search_h.m4: New file.
29704         * lib/tsearch.h: Remove file.
29705         * lib/tsearch.c: Include search.h instead of tsearch.h.
29706         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
29707         HAVE_TSEARCH.
29708         * modules/tsearch (Files): Remove lib/tsearch.h.
29709         (Depends-on): Add search.
29710         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
29711         (Include): Change tsearch.h into search.h.
29712
29713 2007-03-24  Bruno Haible  <bruno@clisp.org>
29714
29715         * modules/fpucw: New file.
29716         * lib/fpucw.h: New file.
29717         * lib/frexp.c: Include fpucw.h.
29718         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29719         (FUNC): Use them.
29720         * lib/printf-frexp.c: Include fpucw.h.
29721         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29722         (FUNC): Use them.
29723         * lib/vasnprintf.c: Include fpucw.h.
29724         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
29725         'long double' calculations.
29726         * tests/test-frexpl.c: Include fpucw.h.
29727         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29728         * tests/test-printf-frexpl.c: Include fpucw.h.
29729         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29730         * modules/frexpl (Depends-on): Add fpucw.
29731         * modules/printf-frexpl (Depends-on): Likewise.
29732         * modules/fprintf-posix (Depends-on): Likewise.
29733         * modules/snprintf-posix (Depends-on): Likewise.
29734         * modules/sprintf-posix (Depends-on): Likewise.
29735         * modules/vasnprintf-posix (Depends-on): Likewise.
29736         * modules/vasprintf-posix (Depends-on): Likewise.
29737         * modules/vfprintf-posix (Depends-on): Likewise.
29738         * modules/vsnprintf-posix (Depends-on): Likewise.
29739         * modules/vsprintf-posix (Depends-on): Likewise.
29740         * modules/frexpl-tests (Depends-on): Likewise.
29741         * modules/printf-frexpl-tests (Depends-on): Likewise.
29742
29743 2007-03-24  Bruno Haible  <bruno@clisp.org>
29744
29745         * lib/float+.h: New file.
29746         * lib/isnan.c: Include float+.h.
29747         (SIZE): New macro.
29748         (FUNC): Compare only SIZE bytes of the value.
29749         * lib/vasnprintf.c: Include float+.h.
29750         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
29751         SIZEOF_LDBL or SIZEOF_DBL bytes.
29752         * modules/isnan-nolibm (Files): Add lib/float+.h.
29753         * modules/isnanl-nolibm (Files): Add lib/float+.h.
29754         * modules/isnanl (Files): Add lib/float+.h.
29755         * modules/vasnprintf (Files): Add lib/float+.h.
29756
29757 2007-03-24  Bruno Haible  <bruno@clisp.org>
29758
29759         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
29760         include isnanl-nolibm.h.
29761
29762 2007-03-24  Bruno Haible  <bruno@clisp.org>
29763
29764         * tests/test-read-file.c (main): Don't produce spurious output for
29765         expected situations. Make the test fail if it encountered unexpected
29766         results.
29767
29768 2007-03-24  Bruno Haible  <bruno@clisp.org>
29769
29770         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
29771         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
29772
29773 2007-03-24  Bruno Haible  <bruno@clisp.org>
29774
29775         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
29776
29777 2007-03-24  Bruno Haible  <bruno@clisp.org>
29778
29779         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
29780         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
29781
29782         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
29783         * modules/utf8-ucs4: Turn into a symbolic link to module
29784         unistr/u8-mbtouc.
29785
29786         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
29787         utf8-ucs4-unsafe.
29788         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
29789         unistr/u8-mbtouc-unsafe.
29790
29791         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
29792         * modules/utf16-ucs4: Turn into a symbolic link to module
29793         unistr/u16-mbtouc.
29794
29795         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
29796         utf16-ucs4-unsafe.
29797         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
29798         unistr/u16-mbtouc-unsafe.
29799
29800         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
29801         * modules/ucs4-utf8: Turn into a symbolic link to module
29802         unistr/u8-ubtomb.
29803
29804         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
29805         * modules/ucs4-utf16: Turn into a symbolic link to module
29806         unistr/u16-ubtomb.
29807
29808 2007-03-24  Bruno Haible  <bruno@clisp.org>
29809
29810         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
29811         Enable the function only if HAVE_INLINE.
29812         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
29813         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29814         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
29815         Enable the function only if HAVE_INLINE.
29816         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
29817         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29818         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
29819         Enable the function only if HAVE_INLINE.
29820         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
29821         Enable the function only if HAVE_INLINE.
29822         * modules/utf8-ucs4: Update.
29823         * modules/utf8-ucs4-unsafe: Update.
29824         * modules/utf16-ucs4: Update.
29825         * modules/utf16-ucs4-unsafe: Update.
29826         * modules/ucs4-utf8: Update.
29827         * modules/ucs4-utf16: Update.
29828
29829 2007-03-24  Bruno Haible  <bruno@clisp.org>
29830
29831         * lib/utf8-ucs4.h: Remove file.
29832         * lib/utf8-ucs4-unsafe.h: Remove file.
29833         * lib/utf16-ucs4.h: Remove file.
29834         * lib/utf16-ucs4-unsafe.h: Remove file.
29835         * lib/ucs4-utf8.h: Remove file.
29836         * lib/ucs4-utf16.h: Remove file.
29837         * lib/unistr.h: Include their previous contents.
29838         * m4/utf-ucs4.m4: Remove file.
29839         * m4/ucs4-utf.m4: Remove file.
29840         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
29841         (Depends-on): Add unistr/base.
29842         (configure.ac): Remove gl_UTF_UCS4.
29843         (Makefile.am): Update.
29844         (Include): Change to unistr.h.
29845         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
29846         (Depends-on): Add unistr/base.
29847         (configure.ac): Remove gl_UTF_UCS4.
29848         (Makefile.am): Update.
29849         (Include): Change to unistr.h.
29850         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
29851         (Depends-on): Add unistr/base.
29852         (configure.ac): Remove gl_UTF_UCS4.
29853         (Makefile.am): Update.
29854         (Include): Change to unistr.h.
29855         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
29856         (Depends-on): Add unistr/base.
29857         (configure.ac): Remove gl_UTF_UCS4.
29858         (Makefile.am): Update.
29859         (Include): Change to unistr.h.
29860         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
29861         (Depends-on): Add unistr/base.
29862         (configure.ac): Remove gl_UCS4_UTF.
29863         (Makefile.am): Update.
29864         (Include): Change to unistr.h.
29865         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
29866         (Depends-on): Add unistr/base.
29867         (configure.ac): Remove gl_UCS4_UTF.
29868         (Makefile.am): Update.
29869         (Include): Change to unistr.h.
29870         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
29871         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
29872         utf8-ucs4-unsafe.h.
29873         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
29874         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
29875         utf16-ucs4-unsafe.h.
29876         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
29877         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
29878         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
29879         * lib/unistr/u8-strchr.c: Likewise.
29880         * lib/unistr/u8-strrchr.c: Likewise.
29881         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
29882         * lib/unistr/u16-strchr.c: Likewise.
29883         * lib/unistr/u16-strrchr.c: Likewise.
29884         * lib/striconveh.c: Update.
29885         * lib/linebreak.c: Update.
29886
29887 2007-03-24  Bruno Haible  <bruno@clisp.org>
29888
29889         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
29890         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
29891
29892 2007-03-22  Bruno Haible  <bruno@clisp.org>
29893
29894         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
29895
29896 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
29897
29898         * MODULES.html.sh (File system functions): New module write-any-file.
29899         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
29900         * m4/write-any-file.m4: New files.
29901
29902 2007-03-23  Eric Blake  <ebb9@byu.net>
29903
29904         * gnulib-tool: Rearrange space-tab sequences, since some editors
29905         like to eat them.
29906
29907 2007-03-23  Eric Blake  <ebb9@byu.net>
29908
29909         * lib/version-etc.c (version_etc_va): Update license wording to
29910         be more concise.  Recommended by Richard Stallman.
29911
29912 2007-03-22  Bruno Haible  <bruno@clisp.org>
29913
29914         * lib/poll.c (MSG_PEEK): New fallback definition.
29915
29916 2007-03-22  Bruno Haible  <bruno@clisp.org>
29917
29918         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
29919         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
29920         (main): Update.
29921         Fixes a compilation error on BeOS.
29922
29923 2007-03-22  Bruno Haible  <bruno@clisp.org>
29924
29925         * modules/frexpl-tests: New file.
29926         * tests/test-frexpl.c: New file.
29927
29928         * modules/frexpl: New file.
29929         * m4/frexpl.m4: New file.
29930         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
29931         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
29932         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
29933         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
29934         (Depends-on): Add frexpl. Remove isnanl-nolibm.
29935         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
29936
29937 2007-03-22  Bruno Haible  <bruno@clisp.org>
29938
29939         * lib/frexpl.c: Share code with lib/frexp.c.
29940         * modules/mathl (Files): Add lib/frexp.c.
29941         (Depends-on): Add isnanl-nolibm.
29942
29943 2007-03-22  Bruno Haible  <bruno@clisp.org>
29944
29945         * modules/printf-frexp (Files): Add m4/frexp.m4.
29946         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
29947         only if the found frexp function actually works.
29948
29949 2007-03-22  Bruno Haible  <bruno@clisp.org>
29950
29951         * lib/frexp.c: Remove older implementation that uses divisions.
29952
29953 2007-03-21  Bruno Haible  <bruno@clisp.org>
29954
29955         * modules/frexp-tests: New file.
29956         * tests/test-frexp.c: New file.
29957
29958         * modules/frexp: New file.
29959         * lib/frexp.c: New file.
29960         * m4/frexp.m4: New file.
29961         * lib/math_.h (frexp): New declaration.
29962         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
29963         REPLACE_FREXP.
29964         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
29965
29966 2007-03-21  Bruno Haible  <bruno@clisp.org>
29967
29968         * modules/isnanl-tests: New file.
29969         * tests/test-isnanl.c: New file.
29970
29971         * modules/isnanl: New file.
29972         * lib/isnanl.h: New file.
29973         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
29974         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
29975         gl_FUNC_ISNANL_WORKS.
29976         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
29977         New macros.
29978
29979 2007-03-21  Bruno Haible  <bruno@clisp.org>
29980
29981         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
29982         lib/isnanl.h.
29983         (Include): Update.
29984         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
29985         * lib/vasnprintf.c: Update.
29986         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
29987         tests/test-isnanl.h, remove tests/test-isnanl.c.
29988         (Makefile.am): Update.
29989         * tests/test-isnanl-nolibm.c: New file.
29990         * tests/test-isnanl.h: New file.
29991         * tests/test-isnanl.c: Remove file.
29992
29993 2007-03-21  Jim Meyering  <jim@meyering.net>
29994
29995         When trying to open ".", treat ESTALE like EACCES.
29996         * lib/savewd.c (savewd_save): Resort to forking not just upon
29997         failure with EACCES, but also when errno is ESTALE.
29998
29999 2007-03-20  Bruno Haible  <bruno@clisp.org>
30000
30001         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
30002         Needed on AIX 5.1. Reported by Matthew Woehlke.
30003
30004 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30005
30006         Suggestions by Bruno Haible:
30007         * lib/acl-internal.h: Include "gettext.h" rather than rolling
30008         our own.
30009         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
30010         * modules/acl (Depends-on): Add gettext.
30011
30012 2007-03-19  Bruno Haible  <bruno@clisp.org>
30013
30014         * modules/iconvme: Remove file.
30015         * lib/iconvme.h: Remove file.
30016         * lib/iconvme.c: Remove file.
30017         * m4/iconvme.m4: Remove file.
30018
30019 2007-03-19  Bruno Haible  <bruno@clisp.org>
30020
30021         * doc/relocatable-maint.texi: Break long shell script line.
30022         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30023
30024 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30025
30026         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
30027         handle file_has_acl.
30028         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
30029         * lib/acl.c: Move header inclusions and related macro defns into
30030         lib/acl-internal.h.
30031         (S_ISLNK): Remove defn, since that's now done for us.
30032         (file_has_acl): Move to lib/file-has-acl.c.
30033         Call acl_trivial if available.  This is the crucial part of the fix.
30034         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
30035         shared within the library.  Rewrite a bit, partly to make it compatible
30036         with the GNU coding style.
30037         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
30038         Remove unnecessary double-quotes.
30039         Don't test for acl_to_text; the build will catch that.
30040         Replace acl_entries if it doesn't exist and it is needed.
30041         Check for -lsec and acl_trivial (as used on Solaris 10).
30042         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
30043         lib/file-has-acl.c.
30044         (Depends-on): Add sys_stat, for S_ISLNK.
30045
30046 2007-03-19  Ben Pfaff  <blp@gnu.org>
30047
30048         * doc/gnulib.texi: Fix typos.
30049         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30050
30051 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30052
30053         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
30054         If size is zero here, buf must be zero.
30055
30056 2007-03-19  Simon Josefsson  <simon@josefsson.org>
30057
30058         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
30059         <bruno@clisp.org>.
30060
30061 2007-03-18  Bruno Haible  <bruno@clisp.org>
30062
30063         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
30064         Suggested by Eric Blake.
30065
30066 2007-03-18  Ben Pfaff  <blp@gnu.org>
30067
30068         * doc/relocatable.texi: Recommend using as prefix a directory
30069         that does not exist and will never be created.  Based on
30070         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
30071         and others.
30072
30073 2007-03-17  Bruno Haible  <bruno@clisp.org>
30074
30075         * lib/fchownat.c: Include lchown.h.
30076
30077 2007-03-17  Bruno Haible  <bruno@clisp.org>
30078
30079         Fix endless loop when the given allocated size was > INT_MAX.
30080         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
30081         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
30082         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
30083         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
30084         * lib/sprintf.c (sprintf): Likewise.
30085
30086 2007-03-17  Bruno Haible  <bruno@clisp.org>
30087
30088         * tests/test-argp-2.sh (func_compare): Output a context diff.
30089
30090 2007-03-17  Bruno Haible  <bruno@clisp.org>
30091
30092         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
30093         locale's decimal-point character.
30094
30095 2007-03-17  Bruno Haible  <bruno@clisp.org>
30096
30097         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
30098         before comparing it. Needed because on some platforms (e.g. x86) a
30099         'long double' occupies less bytes than sizeof (long double).
30100
30101 2007-03-17  Bruno Haible  <bruno@clisp.org>
30102
30103         * tests/test-crc.c (main): Make printf statements 64-bit clean.
30104         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
30105         * tests/test-getaddrinfo.c (simple): Likewise.
30106         * tests/test-read-file.c (main): Likewise.
30107
30108 2007-03-17  Bruno Haible  <bruno@clisp.org>
30109
30110         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
30111
30112 2007-03-17  Bruno Haible  <bruno@clisp.org>
30113
30114         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
30115         unused variable.
30116
30117 2007-03-17  Bruno Haible  <bruno@clisp.org>
30118
30119         * tests/test-c-strcasecmp.c: Include c-strcase.h.
30120         * tests/test-c-strncasecmp.c: Likewise.
30121
30122 2007-03-17  Bruno Haible  <bruno@clisp.org>
30123
30124         * modules/stdlib (Depends-on): Add unistd.
30125         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
30126         Needed for MacOS X 10.3.
30127
30128 2007-03-17  Bruno Haible  <bruno@clisp.org>
30129
30130         * lib/unistr/u-strdup.h: Include <stdlib.h>.
30131
30132 2007-03-17  Bruno Haible  <bruno@clisp.org>
30133
30134         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
30135
30136 2007-03-17  Bruno Haible  <bruno@clisp.org>
30137
30138         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
30139         to reflect files copied from gnulib (with or without modifications).
30140         Suggested by Jim Meyering.
30141
30142 2007-03-17  Eric Blake  <ebb9@byu.net>
30143
30144         * NEWS: Document stdlib change from 2007-02-18.
30145
30146 2007-03-17  Jim Meyering  <jim@meyering.net>
30147
30148         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
30149         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
30150         someone uses a name containing shell meta-characters.
30151         Reported by Alfred M. Szmidt.
30152
30153         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
30154
30155 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30156
30157         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
30158         and copy gettext configuration files only if configure.ac contains
30159         a use of AM_GNU_GETTEXT_VERSION.
30160
30161 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30162
30163         * build-aux/bootstrap (gnulib_name): New variable.
30164         (gnulib_tool_options): Use it.
30165
30166 2007-03-13  Simon Josefsson  <simon@josefsson.org>
30167
30168         * tests/test-des.c: Use new namespace.
30169
30170 2007-03-15  Bruno Haible  <bruno@clisp.org>
30171
30172         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
30173         Reported by James Youngman <jay@gnu.org>.
30174
30175 2007-03-15  Bruno Haible  <bruno@clisp.org>
30176
30177         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
30178         declared prototype. Needed with cc on OSF/1 5.1.
30179
30180 2007-03-15  Bruno Haible  <bruno@clisp.org>
30181
30182         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
30183         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
30184         (struct gl_list_implementation): Add dispose_fn argument to the
30185         'create_empty', 'create' methods.
30186         (struct gl_list_impl_base): Add field 'dispose_fn'.
30187         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
30188         argument.
30189         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
30190         dispose_fn argument.
30191         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
30192         dispose_fn on the dropped values.
30193         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
30194         dispose_fn argument.
30195         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
30196         dropped values.
30197         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
30198         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30199         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
30200         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30201         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
30202         argument.
30203         (gl_tree_list_free): Call dispose_fn on the dropped values.
30204         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
30205         the dropped values.
30206         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
30207         Add dispose_fn argument.
30208         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
30209         Call dispose_fn on the dropped values.
30210         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
30211         Add dispose_fn argument.
30212         (gl_sublist_create): Initialize the 'dispose_fn' field.
30213         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
30214         * tests/test-array_list.c (main): Update.
30215         * tests/test-carray_list.c (main): Update.
30216         * tests/test-avltree_list.c (main): Update.
30217         * tests/test-rbtree_list.c (main): Update.
30218         * tests/test-avltreehash_list.c (main): Update.
30219         * tests/test-rbtreehash_list.c (main): Update.
30220         * tests/test-linked_list.c (main): Update.
30221         * tests/test-linkedhash_list.c (main): Update.
30222         * tests/test-array_oset.c (main): Update.
30223
30224 2007-03-15  Bruno Haible  <bruno@clisp.org>
30225
30226         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
30227         (gl_oset_create_empty): Add dispose_fn argument.
30228         (struct gl_oset_implementation): Add dispose_fn argument to
30229         'create_empty' method.
30230         (struct gl_oset_impl_base): Add dispose_fn field.
30231         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
30232         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
30233         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
30234         values.
30235         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
30236         (gl_tree_oset_free): Call dispose_fn on the dropped values.
30237         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30238         dropped value.
30239         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30240         dropped value.
30241         * tests/test-array_oset.c (main): Update.
30242         * tests/test-avltree_oset.c (main): Update.
30243         * tests/test-rbtree_oset.c (main): Update.
30244         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
30245
30246 2007-03-13  Bruno Haible  <bruno@clisp.org>
30247
30248         * tests/test-stdbool.c (i): Update after last patch.
30249
30250 2007-03-12  Bruno Haible  <bruno@clisp.org>
30251
30252         * lib/quotearg.c: Include <wctype.h> early, before the definition of
30253         the iswprint macro. Needed on Solaris 2.5.1.
30254
30255 2007-03-12  Bruno Haible  <bruno@clisp.org>
30256
30257         * tests/test-printf-frexp.c (main): Declare x as volatile.
30258
30259 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30260
30261         * doc/gnulib.texi (Build robot for gnulib): New section.
30262
30263 2007-03-12  Jim Meyering  <jim@meyering.net>
30264
30265         * build-aux/bootstrap: New file.
30266         * build-aux/bootstrap.conf: New file, from coreutils.
30267
30268 2007-03-11  Bruno Haible  <bruno@clisp.org>
30269
30270         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
30271
30272 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30273
30274         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
30275         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
30276         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
30277
30278 2007-03-11  Bruno Haible  <bruno@clisp.org>
30279
30280         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
30281         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
30282
30283 2007-03-11  Bruno Haible  <bruno@clisp.org>
30284
30285         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
30286         formula. Needed for SunPRO C 5.0.
30287
30288 2007-03-11  Bruno Haible  <bruno@clisp.org>
30289
30290         * modules/long-options (Depends-on): Add getopt.
30291
30292 2007-03-11  Bruno Haible  <bruno@clisp.org>
30293
30294         * modules/modechange (Depends-on): Add stdbool.
30295
30296 2007-03-11  Bruno Haible  <bruno@clisp.org>
30297
30298         * modules/i-ring (Depends-on): Add stdbool.
30299
30300 2007-03-11  Bruno Haible  <bruno@clisp.org>
30301
30302         * modules/gc-des (Depends-on): Add stdbool.
30303
30304 2007-03-11  Bruno Haible  <bruno@clisp.org>
30305
30306         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
30307
30308 2007-03-11  Bruno Haible  <bruno@clisp.org>
30309
30310         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
30311
30312 2007-03-11  Bruno Haible  <bruno@clisp.org>
30313
30314         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
30315
30316 2007-03-11  Bruno Haible  <bruno@clisp.org>
30317
30318         * lib/vasnprintf.c (sprintf): Undefine.
30319
30320 2007-03-11  Bruno Haible  <bruno@clisp.org>
30321
30322         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
30323         initializers in SunPRO C and Compaq C compilers.
30324
30325 2007-03-11  Bruno Haible  <bruno@clisp.org>
30326
30327         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
30328         decrementing code ANSI C compliant.
30329
30330 2007-03-11  Bruno Haible  <bruno@clisp.org>
30331
30332         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
30333         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
30334
30335 2007-03-11  Bruno Haible  <bruno@clisp.org>
30336
30337         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
30338         <stdbool.h> substitute doesn't pass.
30339
30340 2007-03-11  Bruno Haible  <bruno@clisp.org>
30341
30342         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
30343
30344 2007-03-11  Bruno Haible  <bruno@clisp.org>
30345
30346         * gnulib-tool (func_create_megatestdir): Create also an autobuild
30347         script, for submission to autobuild.josefsson.org.
30348
30349 2007-03-10  Bruno Haible  <bruno@clisp.org>
30350
30351         * modules/canonicalize-lgpl-tests: New file.
30352         * tests/test-canonicalize-lgpl.sh: New file.
30353         * tests/test-canonicalize-lgpl.c: New file.
30354
30355         * modules/c-strcase-tests: New file.
30356         * tests/test-c-strcase.sh: New file.
30357         * tests/test-c-strcasecmp.c: New file.
30358         * tests/test-c-strncasecmp.c: New file.
30359
30360         * modules/atexit-tests: New file.
30361         * tests/test-atexit.sh: New file.
30362         * tests/test-atexit.c: New file.
30363
30364 2007-03-10  Bruno Haible  <bruno@clisp.org>
30365
30366         * tests/test-binary-io.sh: Use temporary filenames that are not so
30367         likely to clash with those of other tests (in a parallel make).
30368         * tests/test-binary-io.c: Likewise.
30369
30370 2007-03-10  Bruno Haible  <bruno@clisp.org>
30371
30372         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
30373         fallback; use #error instead.
30374         Suggested by Simon Josefsson.
30375
30376 2007-03-10  Bruno Haible  <bruno@clisp.org>
30377
30378         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
30379         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
30380         first and the last.
30381
30382 2007-03-10  Bruno Haible  <bruno@clisp.org>
30383
30384         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
30385
30386 2007-03-10  Bruno Haible  <bruno@clisp.org>
30387
30388         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
30389         "make distcheck".
30390         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
30391         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
30392         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
30393
30394 2007-03-10  Bruno Haible  <bruno@clisp.org>
30395
30396         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
30397         variable.
30398         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
30399         variable.
30400
30401 2007-03-09  Eric Blake  <ebb9@byu.net>
30402         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
30403
30404         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
30405         types are not being provided by gnulib.
30406         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
30407         types are supported.
30408
30409 2007-03-10  Bruno Haible  <bruno@clisp.org>
30410
30411         * lib/stdio_.h (__attribute__): New macro.
30412         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
30413         vsprintf): Specify __attribute__ __format__ for GCC.
30414         Suggested by Eric Blake.
30415
30416 2007-03-09  Bruno Haible  <bruno@clisp.org>
30417
30418         * modules/printf-posix-tests: New file.
30419         * tests/test-printf-posix.sh: New file.
30420         * tests/test-printf-posix.c: New file.
30421
30422         * modules/printf-posix: New file.
30423         * lib/printf.c: New file.
30424         * m4/printf-posix-rpl.m4: New file.
30425         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
30426         REPLACE_PRINTF.
30427         * lib/stdio_.h (printf): New declaration.
30428         (format, __format__, ____printf____, ____scanf____, ____strftime____,
30429         ____strfmon____): New macros.
30430         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
30431         REPLACE_PRINTF.
30432
30433 2007-03-09  Bruno Haible  <bruno@clisp.org>
30434
30435         * tests/test-vasnprintf-posix2.sh: New file.
30436         * tests/test-vasnprintf-posix2.c: New file.
30437         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
30438         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
30439         (Makefile.am): Activate test-vasnprintf-posix2.sh.
30440
30441         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
30442         a locale dependent decimal point, rather than always '.'.
30443
30444 2007-03-09  Eric Blake  <ebb9@byu.net>
30445
30446         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
30447         spite of platforms like Tandem/NSK that define it to -1.
30448
30449 2007-03-08  Bruno Haible  <bruno@clisp.org>
30450
30451         * modules/vprintf-posix-tests: New file.
30452         * tests/test-vprintf-posix.sh: New file.
30453         * tests/test-vprintf-posix.c: New file.
30454         * tests/test-printf-posix.h: New file.
30455
30456         * modules/vprintf-posix: New file.
30457         * lib/vprintf.c: New file.
30458         * m4/vprintf-posix.m4: New file.
30459         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
30460         REPLACE_VPRINTF.
30461         * lib/stdio_.h (vprintf): New declaration.
30462         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
30463         REPLACE_VPRINTF.
30464
30465 2007-03-08  Bruno Haible  <bruno@clisp.org>
30466
30467         * modules/fprintf-posix-tests: New file.
30468         * tests/test-fprintf-posix.sh: New file.
30469         * tests/test-fprintf-posix.c: New file.
30470
30471         * modules/fprintf-posix: New file.
30472         * lib/fprintf.c: New file.
30473         * m4/fprintf-posix.m4: New file.
30474         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
30475         REPLACE_FPRINTF.
30476         * lib/stdio_.h (fprintf): New declaration.
30477         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
30478         REPLACE_FPRINTF.
30479
30480 2007-03-08  Bruno Haible  <bruno@clisp.org>
30481
30482         * modules/vfprintf-posix-tests: New file.
30483         * tests/test-vfprintf-posix.sh: New file.
30484         * tests/test-vfprintf-posix.c: New file.
30485         * tests/test-fprintf-posix.h: New file.
30486         * tests/test-fprintf-posix.out: New file.
30487
30488         * modules/vfprintf-posix: New file.
30489         * lib/vfprintf.c: New file.
30490         * m4/vfprintf-posix.m4: New file.
30491         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
30492         REPLACE_VFPRINTF.
30493         * lib/stdio_.h (vfprintf): New declaration.
30494         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
30495         REPLACE_VFPRINTF.
30496
30497 2007-03-08  Bruno Haible  <bruno@clisp.org>
30498
30499         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
30500
30501 2007-03-08  Bruno Haible  <bruno@clisp.org>
30502
30503         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
30504         instead of 'expr' invocations.
30505         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30506         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30507         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30508         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30509         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30510         Suggested by Paul Eggert.
30511
30512 2007-03-08  Bruno Haible  <bruno@clisp.org>
30513
30514         * modules/fseterr-tests: New file.
30515         * tests/test-fseterr.c: New file.
30516
30517         * modules/fseterr: New file.
30518         * lib/fseterr.h: New file.
30519         * lib/fseterr.c: New file.
30520
30521 2007-03-08  Bruno Haible  <bruno@clisp.org>
30522
30523         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
30524         * lib/getopt_.h: Likewise.
30525         * lib/mbswidth.h: Likewise.
30526         * lib/setenv.h: Likewise.
30527         * lib/vasnprintf.h: Likewise.
30528         * lib/vasprintf.h: Likewise.
30529         * lib/verror.h: Likewise.
30530         * lib/xsetenv.h: Likewise.
30531         * lib/xvasprintf.h: Likewise.
30532
30533 2007-03-08  Jim Meyering  <jim@meyering.net>
30534
30535         * users.txt: Add parted.
30536
30537         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
30538
30539 2007-03-07  Bruno Haible  <bruno@clisp.org>
30540
30541         * m4/printf.m4: Make the shell script snippets copy&pastable.
30542
30543 2007-03-02  Bruno Haible  <bruno@clisp.org>
30544
30545         * lib/netinet_in_.h: New file.
30546         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
30547         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
30548         * modules/netinet_in (Files): Add lib/netinet_in_.h.
30549         (Depends-on): Add absolute-header.
30550         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
30551         into netinet/in.h.
30552
30553 2007-03-03  Bruno Haible  <bruno@clisp.org>
30554
30555         * lib/sys_select_.h: New file.
30556         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
30557         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
30558         * modules/sys_select (Files): Add lib/sys_select_.h.
30559         (Depends-on): Add absolute-header.
30560         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
30561         into sys/select.h.
30562
30563 2007-03-02  Bruno Haible  <bruno@clisp.org>
30564
30565         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
30566         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
30567         values.
30568         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
30569         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
30570         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
30571         * modules/sys_socket (Depends-on): Add absolute-header.
30572         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
30573         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
30574         (Include): Remove requirement of inclusion of <sys/types.h>.
30575
30576 2007-03-02  Bruno Haible  <bruno@clisp.org>
30577
30578         * lib/byteswap_.h (bswap_32): Fix formula.
30579
30580 2007-03-06  Bruno Haible  <bruno@clisp.org>
30581
30582         * modules/sprintf-posix-tests: New file.
30583         * tests/test-sprintf-posix.c: New file.
30584
30585         * modules/sprintf-posix: New file.
30586         * lib/sprintf.c: New file.
30587         * m4/sprintf-posix.m4: New file.
30588         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
30589         REPLACE_SPRINTF.
30590         * lib/stdio_.h (sprintf): New declaration.
30591         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
30592         REPLACE_SPRINTF.
30593
30594 2007-03-06  Bruno Haible  <bruno@clisp.org>
30595
30596         * modules/vsprintf-posix-tests: New file.
30597         * tests/test-vsprintf-posix.c: New file.
30598         * tests/test-sprintf-posix.h: New file.
30599
30600         * modules/vsprintf-posix: New file.
30601         * lib/vsprintf.c: New file.
30602         * m4/vsprintf-posix.m4: New file.
30603         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
30604         REPLACE_VSPRINTF.
30605         * lib/stdio_.h (vsprintf): New declaration.
30606         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
30607         REPLACE_VSPRINTF.
30608
30609 2007-03-06  Bruno Haible  <bruno@clisp.org>
30610
30611         * modules/vsnprintf (Depend-on): Remove minmax.
30612
30613 2007-03-06  Bruno Haible  <bruno@clisp.org>
30614
30615         * modules/snprintf-posix-tests: New file.
30616         * tests/test-snprintf-posix.c: New file.
30617
30618         * modules/snprintf-posix: New file.
30619         * m4/snprintf-posix.m4: New file.
30620         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
30621         gl_FUNC_SNPRINTF.
30622         (gl_FUNC_SNPRINTF): Invoke it.
30623         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
30624         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
30625         is set.
30626         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
30627
30628 2007-03-06  Bruno Haible  <bruno@clisp.org>
30629
30630         * modules/vsnprintf-posix-tests: New file.
30631         * tests/test-vsnprintf-posix.c: New file.
30632         * tests/test-snprintf-posix.h: New file.
30633
30634         * modules/vsnprintf-posix: New file.
30635         * m4/vsnprintf-posix.m4: New file.
30636         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
30637         gl_FUNC_VSNPRINTF.
30638         (gl_FUNC_VSNPRINTF): Invoke it.
30639         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
30640         * lib/stdio_.h (vsnprintf): Define as a replacement if
30641         REPLACE_VSNPRINTF is set.
30642         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
30643
30644 2007-03-06  Bruno Haible  <bruno@clisp.org>
30645
30646         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
30647         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
30648
30649 2007-03-06  Bruno Haible  <bruno@clisp.org>
30650
30651         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
30652         (asinl): Declare also if HAVE_DECL_ASINL is set.
30653         (atanl): Declare also if HAVE_DECL_ATANL is set.
30654         (ceill): Declare also if HAVE_DECL_CEILL is set.
30655         (cosl): Declare also if HAVE_DECL_COSL is set.
30656         (expl): Declare also if HAVE_DECL_EXPL is set.
30657         (floorl): Declare also if HAVE_DECL_FLOORL is set.
30658         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
30659         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
30660         (logl): Declare also if HAVE_DECL_LOGL is set.
30661         (sinl): Declare also if HAVE_DECL_SINL is set.
30662         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
30663         (tanl): Declare also if HAVE_DECL_TANL is set.
30664         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
30665         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
30666         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
30667         declaration of frexpl, ldexpl.
30668         * modules/printf-frexpl (Depends-on): Add math.
30669         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
30670
30671 2007-03-05  Bruno Haible  <bruno@clisp.org>
30672
30673         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
30674         frexpl and ldexpl are declared.
30675         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
30676
30677 2007-03-05  Bruno Haible  <bruno@clisp.org>
30678
30679         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
30680         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
30681
30682 2007-03-05  Bruno Haible  <bruno@clisp.org>
30683
30684         * lib/stdio_.h: Include <stddef.h>.
30685
30686 2007-03-05  Bruno Haible  <bruno@clisp.org>
30687
30688         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
30689
30690 2007-03-05  Bruno Haible  <bruno@clisp.org>
30691
30692         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
30693         NetBSD 4, from Ralf Wildenhues.
30694
30695 2007-03-04  Bruno Haible  <bruno@clisp.org>
30696
30697         * lib/vasprintf.h: Update #if logic for the case when the functions
30698         exist but are overridden.
30699
30700 2007-03-04  Bruno Haible  <bruno@clisp.org>
30701
30702         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
30703         implementations: glibc-2.4 and MacOS X 10.3.
30704         * tests/test-vasnprintf-posix.c (test_function): Test also the case
30705         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
30706         * tests/test-vasprintf-posix.c (test_function): Likewise.
30707
30708 2007-03-04  Bruno Haible  <bruno@clisp.org>
30709
30710         * modules/vasprintf-posix-tests: New file.
30711         * tests/test-vasprintf-posix.c: New file.
30712
30713         * modules/vasprintf-posix: New file.
30714         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
30715         defined.
30716         * m4/vasprintf-posix.m4: New file.
30717         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
30718         gl_FUNC_VASPRINTF.
30719         (gl_FUNC_VASPRINTF): Invoke it.
30720         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
30721         here.
30722         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
30723
30724 2007-03-04  Bruno Haible  <bruno@clisp.org>
30725
30726         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
30727         REPLACE_GETTIMEOFDAY.
30728         * modules/sys_time (Makefile.am): Likewise.
30729         * m4/sys_time_h.m4: Likewise.
30730         * m4/gettimeofday.m4: Likewise.
30731
30732 2007-03-04  Bruno Haible  <bruno@clisp.org>
30733
30734         * modules/vasnprintf-posix-tests: New file.
30735         * tests/test-vasnprintf-posix.c: New file.
30736
30737         * modules/vasnprintf-posix: New file.
30738         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
30739         printf-frexpl.h.
30740         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
30741         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
30742         REPLACE_VASNPRINTF is defined.
30743         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
30744         gl_FUNC_VASNPRINTF.
30745         (gl_FUNC_VASNPRINTF): Invoke it.
30746         * m4/vasnprintf-posix.m4: New file.
30747         * m4/printf.m4: New file.
30748
30749 2007-03-04  Bruno Haible  <bruno@clisp.org>
30750
30751         Compile progreloc.c only if --enable-relocatable is specified.
30752         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
30753         if --enable-relocatable was specified.
30754         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
30755         lib_SOURCES.
30756
30757 2007-03-04  Jim Meyering  <jim@meyering.net>
30758
30759         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
30760         Use it consistently, rather than enumerating errno constants.
30761
30762 2007-03-04  Bruno Haible  <bruno@clisp.org>
30763
30764         * modules/xvasprintf-tests: New file.
30765         * tests/test-xvasprintf.c: New file.
30766
30767         * modules/vasprintf-tests: New file.
30768         * tests/test-vasprintf.c: New file.
30769
30770         * modules/vasnprintf-tests: New file.
30771         * tests/test-vasnprintf.c: New file.
30772
30773         * modules/vsnprintf-tests: New file.
30774         * tests/test-vsnprintf.c: New file.
30775
30776         * modules/snprintf-tests: New file.
30777         * tests/test-snprintf.c: New file.
30778
30779 2007-03-04  Bruno Haible  <bruno@clisp.org>
30780
30781         Compile relocatable.c only if --enable-relocatable is specified.
30782         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
30783         gl_RELOCATABLE_LIBRARY.
30784         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
30785         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
30786         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
30787         gl_RELOCATABLE_LIBRARY.
30788         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
30789         (Makefile.am): Remove lib_SOURCES.
30790         * modules/relocatable-lib-lgpl (configure.ac): Invoke
30791         gl_RELOCATABLE_LIBRARY.
30792         (Makefile.am): Remove lib_SOURCES.
30793         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
30794         always.
30795         * modules/relocatable-prog-wrapper (configure.ac): Invoke
30796         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
30797
30798 2007-03-04  Bruno Haible  <bruno@clisp.org>
30799
30800         * modules/argmatch-tests: New file.
30801         * tests/test-argmatch.c: New file.
30802
30803         * tests/test-allocsa.c (main): Halve the number of loop runs.
30804
30805         * modules/alloca-opt-tests: New file.
30806         * tests/test-alloca-opt.c: New file.
30807
30808 2007-03-04  Jim Meyering  <jim@meyering.net>
30809
30810         Work around difference between Linux ACLs and Solaris 10 ZFS.
30811         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
30812         for EINVAL.
30813
30814 2007-03-03  Bruno Haible  <bruno@clisp.org>
30815
30816         * modules/relocatable-prog (Depends-on): Add back progreloc's
30817         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
30818
30819 2007-03-03  Bruno Haible  <bruno@clisp.org>
30820
30821         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
30822         * modules/relocatable-lib: New file.
30823
30824 2007-03-03  Bruno Haible  <bruno@clisp.org>
30825
30826         * modules/relocatable-prog: Renamed from modules/relocatable.
30827         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
30828
30829 2007-03-03  Bruno Haible  <bruno@clisp.org>
30830
30831         * modules/relocatable-script (Files): Add doc/relocatable.texi,
30832         m4/relocatable-lib.m4.
30833         (Depends-on): Remove 'relocatable'.
30834         (configure.ac): Add gl_RELOCATABLE_NOP.
30835
30836 2007-03-03  Bruno Haible  <bruno@clisp.org>
30837
30838         * modules/relocatable-prog-wrapper: New file.
30839         * modules/relocatable (Depends-on): Add it. Remove all other
30840         dependencies except progname.
30841         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
30842
30843         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
30844         (gl_FUNC_STRERROR): Nop.
30845         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
30846
30847         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
30848         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
30849
30850         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
30851         (gl_FUNC_READLINK): Update.
30852
30853         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
30854
30855 2007-03-03  Bruno Haible  <bruno@clisp.org>
30856
30857         * lib/xreadlink.c: Include <unistd.h> unconditionally.
30858         * modules/xreadlink (Depends-on): Add unistd.
30859         * modules/xreadlink-with-size (Depends-on): Likewise.
30860
30861 2007-03-03  Bruno Haible  <bruno@clisp.org>
30862
30863         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
30864         extracted from gt_FUNC_SETENV.
30865         (gt_FUNC_SETENV): Remove macro.
30866         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
30867         remove gt_FUNC_SETENV.
30868
30869 2007-03-03  Bruno Haible  <bruno@clisp.org>
30870
30871         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
30872         ENABLE_RELOCATABLE here.
30873         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
30874
30875 2007-03-03  Bruno Haible  <bruno@clisp.org>
30876
30877         * modules/rbtreehash-list-tests (Depends-on): Add progname.
30878         * tests/test-rbtreehash_list.c: Include progname.h.
30879         (main): Call set_program_name.
30880
30881         * modules/rbtree-oset-tests (Depends-on): Add progname.
30882         * tests/test-rbtree_oset.c: Include progname.h.
30883         (main): Call set_program_name.
30884
30885         * modules/rbtree-list-tests (Depends-on): Add progname.
30886         * tests/test-rbtree_list.c: Include progname.h.
30887         (main): Call set_program_name.
30888
30889         * modules/linked-list-tests (Depends-on): Add progname.
30890         * tests/test-linked_list.c: Include progname.h.
30891         (main): Call set_program_name.
30892
30893 2007-03-03  Bruno Haible  <bruno@clisp.org>
30894
30895         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
30896         All uses of __restrict changed to _Restrict_.
30897         * lib/glob_.h (__restrict): Remove macro.
30898
30899 2007-03-02  Bruno Haible  <bruno@clisp.org>
30900
30901         * modules/gettext (configure.ac): Require gettext infrastructure
30902         from version 0.16.1.
30903
30904 2007-03-02  Bruno Haible  <bruno@clisp.org>
30905
30906         * modules/linkedhash-list-tests (Depends-on): Add progname.
30907         * tests/test-linkedhash_list.c: Include progname.h.
30908         (main): Call set_program_name.
30909
30910         * modules/carray-list-tests (Depends-on): Add progname.
30911         * tests/test-carray_list.c: Include progname.h.
30912         (main): Call set_program_name.
30913
30914         * modules/avltreehash-list-tests (Depends-on): Add progname.
30915         * tests/test-avltreehash_list.c: Include progname.h.
30916         (main): Call set_program_name.
30917
30918         * modules/avltree-oset-tests (Depends-on): Add progname.
30919         * tests/test-avltree_oset.c: Include progname.h.
30920         (main): Call set_program_name.
30921
30922         * modules/avltree-list-tests (Depends-on): Add progname.
30923         * tests/test-avltree_list.c: Include progname.h.
30924         (main): Call set_program_name.
30925
30926         * modules/array-oset-tests (Depends-on): Add progname.
30927         * tests/test-array_oset.c: Include progname.h.
30928         (main): Call set_program_name.
30929
30930         * modules/array-list-tests (Depends-on): Add progname.
30931         * tests/test-array_list.c: Include progname.h.
30932         (main): Call set_program_name.
30933
30934         * modules/argp-tests (Depends-on): Add progname.
30935         * tests/test-argp.c: Include argp.h first. Include progname.h.
30936         (main): Call set_program_name.
30937
30938 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
30939
30940         * doc/gnulib-tool.texi (Initial import): Reword description of
30941         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
30942         limited effect even if defined after the first system include.
30943
30944 2007-03-01  Bruno Haible  <bruno@clisp.org>
30945
30946         * build-aux/config.libpath: Update to libtool-1.5.22.
30947         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
30948
30949 2007-03-01  Bruno Haible  <bruno@clisp.org>
30950
30951         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
30952         foo_CFLAGS.
30953         Reported by Ralf Wildenhues.
30954
30955 2007-03-01  Bruno Haible  <bruno@clisp.org>
30956
30957         * build-aux/install-reloc: Remove object files left over by some
30958         compilers.
30959         Reported by Ralf Wildenhues.
30960
30961 2007-03-01  Bruno Haible  <bruno@clisp.org>
30962
30963         * build-aux/install-reloc: Break long lines.
30964
30965 2007-03-01  Bruno Haible  <bruno@clisp.org>
30966
30967         * doc/relocatable.texi: Document that it may not work on OpenBSD.
30968         Reported by Ralf Wildenhues.
30969
30970 2007-03-01  Bruno Haible  <bruno@clisp.org>
30971
30972         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
30973         include ordering constraints.
30974
30975 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
30976
30977         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
30978         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
30979         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
30980         as another example.
30981         * lib/time_.h: Fix misspelling.
30982         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
30983         Require gl_HEADER_TIME_H_DEFAULTS.
30984         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
30985         * m4/time_r.m4 (gl_TIME_R): Likewise.
30986         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
30987
30988 2007-03-01  Bruno Haible  <bruno@clisp.org>
30989
30990         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
30991         * m4/utimens.m4 (gl_UTIMENS): Likewise.
30992
30993 2007-03-01  Jim Meyering  <jim@meyering.net>
30994
30995         * modules/xreadlink (Maintainer): Add my name.
30996         * modules/xreadlink-with-size (Depends-on): Alphabetize.
30997
30998 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
30999             Bruno Haible  <bruno@clisp.org>
31000
31001         * build-aux/install-reloc: Compile also c-ctype.c.
31002         * build-aux/relocatable.sh.in: New file.
31003         * doc/relocatable.texi: New file.
31004         * doc/relocatable-maint.texi: New file.
31005         * doc/gnulib.texi: Include relocatable-maint.texi.
31006         * lib/progreloc.c: Include unistd.h unconditionally.
31007         * lib/relocwrapper.c: Include unistd.h unconditionally.
31008         Include c-ctype.h.
31009         (add_dotbin): Use c_tolower.
31010         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
31011         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
31012         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
31013         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
31014         to m4/relocatable-lib.m4.
31015         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
31016         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
31017         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
31018         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
31019         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
31020         * modules/relocatable: New file.
31021         * modules/relocatable-lib: New file.
31022         * modules/relocatable-script: New file.
31023
31024 2007-02-28  Bruno Haible  <bruno@clisp.org>
31025
31026         Import --enable-relocatable infrastructure.
31027         * build-aux/config.libpath: New file, from GNU gettext.
31028         * build-aux/install-reloc: New file, from GNU gettext.
31029         * build-aux/reloc-ldflags: New file, from GNU gettext.
31030         * lib/relocatable.h: New file, from GNU gettext.
31031         * lib/relocatable.c: New file, from GNU gettext.
31032         * lib/relocwrapper.c: New file, from GNU gettext.
31033         * m4/relocatable.m4: New file, from GNU gettext.
31034
31035 2007-02-28  Bruno Haible  <bruno@clisp.org>
31036
31037         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
31038
31039         * modules/xreadlink: New file, from GNU gettext with modifications.
31040         * lib/xreadlink.c: New file, from GNU gettext.
31041         * lib/xreadlink.h: Add comments.
31042         (xreadlink): New declaration.
31043
31044         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
31045         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
31046         lib/xreadlink-with-size.c.
31047         (configure.ac): Remove gl_XREADLINK invocation.
31048         (Makefile.am): Augment lib_SOURCES.
31049         * m4/xreadlink.m4: Remove file.
31050         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
31051         (xreadlink_with_size): Renamed from xreadink.
31052         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
31053         * modules/canonicalize (Depends-on): Replace xreadlink with
31054         xreadlink-with-size.
31055         * lib/canonicalize.c (canonicalize_filename_mode): Update.
31056
31057 2007-02-25  Jim Meyering  <jim@meyering.net>
31058
31059         * build-aux/announce-gen: When complaining about excess arguments,
31060         list them.
31061
31062 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31063
31064         * README: Document signed integer overflow situation more
31065         accurately.
31066
31067 2007-02-25  Bruno Haible  <bruno@clisp.org>
31068
31069         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
31070         'a' or 'A' conversion.
31071
31072 2007-02-25  Bruno Haible  <bruno@clisp.org>
31073
31074         * modules/filename: Renamed from modules/pathname.
31075         (Files): Replace lib/pathname.h with lib/filename.h. Replace
31076         lib/concatpath.c with lib/concat-filename.c.
31077         (Makefile.am): Update.
31078         (Include): Replace pathname.h with filename.h.
31079         * lib/filename.h: Renamed from lib/pathname.h.
31080         (concatenated_filename): Renamed from concatenated_pathname.
31081         * lib/concat-filename.c: Renamed from lib/concatpath.c.
31082         (concatenated_filename): Renamed from concatenated_pathname.
31083         * lib/findprog.c: Include filename.h instead of pathname.h.
31084         (find_in_path): Update.
31085         * lib/javacomp.c: Include filename.h instead of pathname.h.
31086         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
31087         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
31088         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
31089         is_oldgcj_14_13_usable, is_javac_usable): Update.
31090         * lib/javaexec.c: Include filename.h instead of pathname.h.
31091         (execute_java_class): Update.
31092         * modules/findprog: Update.
31093         * modules/javacomp: Update.
31094         * modules/javaexec: Update.
31095         * MODULES.html.sh (File system functions): Add 'filename', remove
31096         'pathname'.
31097
31098 2007-02-25  Bruno Haible  <bruno@clisp.org>
31099
31100         * modules/printf-frexpl-tests: New file.
31101         * tests/test-printf-frexpl.c: New file.
31102
31103         * modules/printf-frexpl: New file.
31104         * lib/printf-frexpl.h: New file.
31105         * lib/printf-frexpl.c: New file.
31106         * m4/printf-frexpl.m4: New file.
31107
31108 2007-02-25  Bruno Haible  <bruno@clisp.org>
31109
31110         * modules/printf-frexp-tests: New file.
31111         * tests/test-printf-frexp.c: New file.
31112
31113         * modules/printf-frexp: New file.
31114         * lib/printf-frexp.h: New file.
31115         * lib/printf-frexp.c: New file.
31116         * m4/printf-frexp.m4: New file.
31117
31118 2007-02-25  Bruno Haible  <bruno@clisp.org>
31119
31120         Assume automake >= 1.10 for the tests.
31121         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
31122         * modules/arctwo-tests: Likewise.
31123         * modules/argp-tests: Likewise.
31124         * modules/avltree-list-tests: Likewise.
31125         * modules/avltree-oset-tests: Likewise.
31126         * modules/avltreehash-list-tests: Likewise.
31127         * modules/carray-list-tests: Likewise.
31128         * modules/crc-tests: Likewise.
31129         * modules/des-tests: Likewise.
31130         * modules/gc-arcfour-tests: Likewise.
31131         * modules/gc-arctwo-tests: Likewise.
31132         * modules/gc-des-tests: Likewise.
31133         * modules/gc-hmac-md5-tests: Likewise.
31134         * modules/gc-hmac-sha1-tests: Likewise.
31135         * modules/gc-md2-tests: Likewise.
31136         * modules/gc-md4-tests: Likewise.
31137         * modules/gc-md5-tests: Likewise.
31138         * modules/gc-pbkdf2-sha1-tests: Likewise.
31139         * modules/gc-rijndael-tests: Likewise.
31140         * modules/gc-sha1-tests: Likewise.
31141         * modules/gc-tests: Likewise.
31142         * modules/getaddrinfo-tests: Likewise.
31143         * modules/hmac-md5-tests: Likewise.
31144         * modules/hmac-sha1-tests: Likewise.
31145         * modules/linked-list-tests: Likewise.
31146         * modules/linkedhash-list-tests: Likewise.
31147         * modules/lock-tests: Likewise.
31148         * modules/md2-tests: Likewise.
31149         * modules/md4-tests: Likewise.
31150         * modules/md5-tests: Likewise.
31151         * modules/rbtree-list-tests: Likewise.
31152         * modules/rbtree-oset-tests: Likewise.
31153         * modules/rbtreehash-list-tests: Likewise.
31154         * modules/read-file-tests: Likewise.
31155         * modules/rijndael-tests: Likewise.
31156         * modules/stdint-tests: Likewise.
31157         * modules/tls-tests: Likewise.
31158
31159 2007-02-24  Bruno Haible  <bruno@clisp.org>
31160
31161         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
31162         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
31163         function; instead check whether isnan with a double argument links.
31164         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
31165         function; instead check whether isnan with a 'long double' argument
31166         links.
31167         Reported by Eric Blake <ebb9@byu.net>.
31168
31169 2007-02-24  Bruno Haible  <bruno@clisp.org>
31170
31171         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
31172         defined.
31173         * lib/isnanl.c: Remove all code. Just include isnan.c.
31174         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
31175
31176 2007-02-25  Jim Meyering  <jim@meyering.net>
31177
31178         Avoid conflicting types for 'unsetenv' on FreeBSD.
31179         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
31180         conflicting with FreeBSD's (5.0 and 6.1) function declaration
31181         in stdlib.h.
31182
31183 2007-02-24  Bruno Haible  <bruno@clisp.org>
31184
31185         * modules/isnanl-nolibm-tests: New file.
31186         * tests/test-isnanl.c: New file.
31187
31188         * modules/isnanl-nolibm: New file.
31189         * lib/isnanl.h: New file.
31190         * lib/isnanl.c: New file.
31191         * m4/isnanl.m4: New file.
31192
31193 2007-02-24  Bruno Haible  <bruno@clisp.org>
31194
31195         * modules/isnan-nolibm-tests: New file.
31196         * tests/test-isnan.c: New file.
31197
31198         * modules/isnan-nolibm: New file.
31199         * lib/isnan.h: New file.
31200         * lib/isnan.c: New file.
31201         * m4/isnan.m4: New file.
31202
31203 2007-02-24  Bruno Haible  <bruno@clisp.org>
31204
31205         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
31206         assume that an exponent fits in 20 bits.
31207
31208 2007-02-24  Jim Meyering  <jim@meyering.net>
31209
31210         * m4/regex.m4: Update the description of the configure-time option,
31211         --without-included-regex, to state accurately what the defaults are,
31212         and perhaps to give people an idea why using this option is risky.
31213
31214 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
31215
31216         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
31217         loops on small arguments.  This attempts to avoid the problem
31218         Bruno Haible reported for AIX 4.3.2 in
31219         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
31220
31221 2007-02-23  Bruno Haible  <bruno@clisp.org>
31222
31223         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
31224         Needed for help2man.
31225
31226 2007-02-23  Karl Berry  <karl@gnu.org>
31227
31228         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
31229         exists, foo.h should be cvs-ignored, not committed.
31230
31231 2007-02-23  Eric Blake  <ebb9@byu.net>
31232
31233         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
31234         * lib/stat-time.h (includes): Likewise.
31235         * lib/utimecmp.c (includes): Likewise.
31236         * lib/utimens.h (includes): Likewise.
31237         * lib/getdate.y (includes): Also include "timespec.h" for use
31238         internal to the module.
31239         * modules/utimens (Depends-on): Revert yesterday's patch.
31240         * modules/nanosleep (Depends-on): Add missing dependency.
31241
31242 2007-02-22  Bruno Haible  <bruno@clisp.org>
31243
31244         * lib/glob.c: Don't include getlogin_r.h.
31245
31246 2007-02-22  Jim Meyering  <jim@meyering.net>
31247
31248         * modules/utimens (Depends-on): Add timespec, required for
31249         utimens.h's inclusion of timespec.h.
31250
31251 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
31252
31253         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
31254         long unreadable paths in GNU/Linux.  Problem reported by Andreas
31255         Schwab in
31256         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
31257         I'll try to think of a better way to fix the Solaris problem.
31258
31259         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
31260         like glibc; on Solaris 10, it fails with errno == EINVAL.
31261         POSIX says the behavior is unspecified if the first argument is NULL,
31262         so play it safe and never pass NULL to the system getcwd.
31263
31264 2007-02-21  Jim Meyering  <jim@meyering.net>
31265
31266         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
31267         of gettimeofday.  It would conflict with the one now always
31268         provided via sys_time_.h.  Reported by Matthew Woehlke, as
31269         an IRIX 6.5 build failure.
31270
31271 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
31272
31273         Minor fixups to port to Solaris 10 with Sun C 5.8.
31274         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
31275         * modules/getcwd (Depends-on): Add dirfd.
31276         * lib/putenv.c (putenv): #undef it.
31277         (rpl_putenv): New decl.
31278         (malloc, free): Include <stdlib.h> rather than prototyping separately.
31279
31280 2007-02-20  Bruno Haible  <bruno@clisp.org>
31281
31282         * modules/stdio-tests: New file.
31283         * tests/test-stdio.c: New file.
31284
31285         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
31286         (Depends-on): Add stdio.
31287         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31288         (Include): Use <stdio.h> instead of vsnprintf.h.
31289         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31290         HAVE_DECL_VSNPRINTF.
31291         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
31292
31293         * modules/snprintf (Files): Remove lib/snprintf.h.
31294         (Depends-on): Add stdio.
31295         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31296         (Include): Use <stdio.h> instead of snprintf.h.
31297         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31298         HAVE_DECL_SNPRINTF.
31299         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
31300         * lib/getaddrinfo.c: Likewise.
31301
31302         * modules/stdio: New file.
31303         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
31304         * lib/snprintf.h: Remove file.
31305         * lib/vsnprintf.h: Remove file.
31306         * lib/.cppi-disable: Remove snprintf.h.
31307         * m4/stdio_h.m4: New file.
31308         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
31309
31310 2007-02-20  Jim Meyering  <jim@meyering.net>
31311
31312         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
31313         used by e.g., mingw.  From Bruno Haible.
31314
31315 2007-02-19  Bruno Haible  <bruno@clisp.org>
31316
31317         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
31318         warnings.
31319         Reported by Ben Pfaff <blp@cs.stanford.edu>.
31320
31321 2007-02-19  Bruno Haible  <bruno@clisp.org>
31322
31323         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
31324         from mingw users.
31325
31326 2007-02-19  Bruno Haible  <bruno@clisp.org>
31327
31328         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
31329         warnings.
31330         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
31331
31332 2007-02-19  Jim Meyering  <jim@meyering.net>
31333
31334         Don't use FD after a successful "fdopendir (fd)".
31335         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
31336         Reset it by calling dirfd on the just-obtained DIR*.
31337
31338         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
31339         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
31340
31341 2007-02-18  Bruno Haible  <bruno@clisp.org>
31342
31343         * lib/readlink.c: Include <unistd.h>.
31344         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
31345         HAVE_READLINK.
31346         * modules/readlink (Depends-on): Add unistd.
31347         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31348         (Include): Add <unistd.h>.
31349
31350         * lib/getlogin_r.h: Remove file.
31351         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
31352         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
31353         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
31354         HAVE_DECL_GETLOGIN_R.
31355         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
31356         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31357         (Include): Use <unistd.h> instead of getlogin_r.h.
31358
31359         * lib/getcwd.h: Remove file.
31360         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
31361         * lib/xgetcwd.c: Likewise.
31362         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
31363         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
31364         * modules/getcwd (Files): Remove lib/getcwd.h.
31365         (Depends-on): Add unistd.
31366         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31367         (Include): Use <unistd.h> instad of getcwd.h.
31368
31369         * lib/ftruncate.c: Include <unistd.h> first.
31370         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
31371         Set HAVE_FTRUNCATE.
31372         * modules/ftruncate (Depends-on): Add unistd.
31373         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31374
31375         * lib/fchdir.c: Include <unistd.h> first.
31376         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
31377         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
31378         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
31379         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31380         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
31381
31382         * lib/dup2.c: Include <unistd.h> first.
31383         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
31384         HAVE_DUP2.
31385         * modules/dup2 (Depends-on): Add unistd.
31386         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31387
31388         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
31389         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
31390         REPLACE_CHOWN. Don't define chown as a macro here.
31391         * modules/chown (Depends-on): Add unistd.
31392         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31393
31394         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
31395         Add definition for GL_LINK_WARNING.
31396         (chown, dup2): New declarations.
31397         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
31398         link warning.
31399         (ftruncate): New declaration.
31400         (getcwd): New declaration, taken from old getcwd.h.
31401         (getlogin_r): New declaration, taken from old getlogin_r.h.
31402         (readlink): New declaration.
31403         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
31404         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
31405         (gl_PREREQ_UNISTD): Remove macro.
31406         (gl_UNISTD_MODULE_INDICATOR): New macro.
31407         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
31408         many new variables. Don't set UNISTD_H.
31409         * modules/unistd (Description): Change.
31410         (Depends-on): Add link-warning.
31411         (configure.ac): Update.
31412         (Makefile.am): Create unistd.h always. Substitute many new variables
31413         into it.
31414
31415 2007-02-18  Bruno Haible  <bruno@clisp.org>
31416
31417         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
31418         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
31419         HAVE_GETSUBOPT.
31420         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
31421         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
31422         * lib/getsubopt.h: Remove file.
31423         * modules/getsubopt (Files): Remove lib/getsubopt.h.
31424         (Depends-on): Add stdlib.
31425         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31426         (Includes): Use <stdlib.h> instead of getsubopt.h.
31427         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
31428         Set HAVE_GETSUBOPT.
31429         * lib/getsubopt.c: Don't include getsubopt.h.
31430
31431 2007-02-18  Bruno Haible  <bruno@clisp.org>
31432
31433         * modules/fchdir (Depends-on): Add dup2.
31434
31435 2007-02-18  Bruno Haible  <bruno@clisp.org>
31436
31437         * lib/stdlib_.h: Handle glibc's special invocation convention
31438         specially.
31439
31440 2007-02-18  Bruno Haible  <bruno@clisp.org>
31441
31442         * modules/stdlib-tests: New file.
31443         * tests/test-stdlib.c: New file.
31444
31445         * modules/mkstemp (Files): Remove lib/mkstemp.h.
31446         (Depends-on): Add stdlib.
31447         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31448         (Includes): Use <stdlib.h> instead of mkstemp.h.
31449         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31450         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
31451         * lib/mkstemp.c: Don't include mkstemp.h.
31452         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
31453         * lib/stdlib--.h: Don't include mkstemp.h.
31454
31455         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
31456         (Depends-on): Add stdlib.
31457         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31458         (Includes): Use <stdlib.h> instead of mkdtemp.h.
31459         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31460         HAVE_MKDTEMP.
31461         * lib/mkdtemp.c: Don't include mkdtemp.h.
31462         * lib/clean-temp.c: Don't include mkdtemp.h.
31463
31464         * modules/exit (Files): Remove lib/exit.h.
31465         (Depends-on): Add stdlib.
31466         (Makefile.am): Remove lib_SOURCES.
31467         (Include): Use <stdlib.h> instead of exit.h.
31468         * lib/argmatch.c: Don't include exit.h.
31469         * lib/execute.c: Likewise.
31470         * lib/pagealign_alloc.c: Likewise.
31471         * lib/pipe.c: Likewise.
31472         * lib/wait-process.c: Likewise.
31473         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
31474         * lib/exitfail.c: Likewise.
31475         * lib/savewd.c: Likewise.
31476         * lib/xsetenv.c: Likewise.
31477
31478         * modules/stdlib: New file.
31479         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
31480         and extra comments about mkstemp().
31481         * lib/exit.h: Remove file.
31482         * lib/mkdtemp.h: Remove file.
31483         * lib/mkstemp.h: Remove file.
31484         * m4/stdlib_h.m4: New file.
31485         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
31486
31487 2007-02-18  Bruno Haible  <bruno@clisp.org>
31488
31489         * modules/math-tests: New file.
31490         * tests/test-math.c: New file.
31491
31492         * modules/math: New file.
31493         * modules/mathl (Files): Remove lib/mathl.h.
31494         (Depends-on): Add math.
31495         (Makefile.am): Don't mention mathl.h.
31496         (Include): Use <math.h> instead of mathl.h.
31497         * lib/math_.h: New file.
31498         * lib/mathl.h: Remove file.
31499         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
31500         mathl.h.
31501         * lib/asinl.c: Likewise.
31502         * lib/atanl.c: Likewise.
31503         * lib/ceill.c: Likewise.
31504         * lib/cosl.c: Likewise.
31505         * lib/expl.c: Likewise.
31506         * lib/floorl.c: Likewise.
31507         * lib/frexpl.c: Likewise.
31508         * lib/ldexpl.c: Likewise.
31509         * lib/logl.c: Likewise.
31510         * lib/sincosl.c: Likewise.
31511         * lib/sinl.c: Likewise.
31512         * lib/sqrtl.c: Likewise.
31513         * lib/tanl.c: Likewise.
31514         * lib/trigl.c: Likewise.
31515         * m4/math_h.m4: New file.
31516         * MODULES.html.sh (Mathematics): Add math.
31517
31518 2007-02-17  Bruno Haible  <bruno@clisp.org>
31519
31520         * modules/wctype-tests: New file.
31521         * tests/test-wctype.c: New file.
31522
31523         * modules/wchar-tests: New file.
31524         * tests/test-wchar.c: New file.
31525
31526         * modules/unistd-tests: New file.
31527         * tests/test-unistd.c: New file.
31528
31529         * modules/time-tests: New file.
31530         * tests/test-time.c: New file.
31531
31532         * modules/sysexits-tests: New file.
31533         * tests/test-sysexits.c: New file.
31534
31535         * modules/sys_time-tests: New file.
31536         * tests/test-sys_time.c: New file.
31537
31538         * modules/sys_stat-tests: New file.
31539         * tests/test-sys_stat.c: New file.
31540
31541         * modules/sys_socket-tests: New file.
31542         * tests/test-sys_socket.c: New file.
31543
31544         * modules/sys_select-tests: New file.
31545         * tests/test-sys_select.c: New file.
31546
31547         * modules/string-tests: New file.
31548         * tests/test-string.c: New file.
31549
31550         * modules/stdbool-tests: New file.
31551         * tests/test-stdbool.c: New file.
31552
31553         * modules/netinet_in-tests: New file.
31554         * tests/test-netinet_in.c: New file.
31555
31556         * modules/inttypes-tests: New file.
31557         * tests/test-inttypes.c: New file.
31558
31559         * modules/fcntl-tests: New file.
31560         * tests/test-fcntl.c: New file.
31561
31562         * modules/byteswap-tests: New file.
31563         * tests/test-byteswap.c: New file.
31564
31565         * modules/arpa_inet-tests: New file.
31566         * tests/test-arpa_inet.c: New file.
31567
31568 2007-02-17  Bruno Haible  <bruno@clisp.org>
31569
31570         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
31571         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
31572         if the corresponding module is not enabled. Emit link warnings if
31573         the function is used nevertheless.
31574         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
31575         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
31576         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
31577         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
31578         * modules/inttypes (Depends-on): Add link-warning.
31579         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31580         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
31581         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
31582         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
31583         * modules/imaxdiv (configure.ac): Likewise.
31584         * modules/strtoimax (configure.ac): Likewise.
31585         * modules/strtoumax (configure.ac): Likewise.
31586
31587 2007-02-17  Bruno Haible  <bruno@clisp.org>
31588
31589         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
31590         gl_STRING_MODULE_INDICATOR_DEFAULTS.
31591         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
31592         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
31593
31594 2007-02-17  Bruno Haible  <bruno@clisp.org>
31595
31596         * modules/link-warning: New file.
31597         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
31598         * lib/string_.h (GL_LINK_WARNING): Remove definition.
31599         * modules/string (Depends-on): Add link-warning.
31600         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31601         string.h.
31602         * MODULES.html.sh (Support for building libraries and executables): Add
31603         link-warning.
31604
31605 2007-02-17  Bruno Haible  <bruno@clisp.org>
31606
31607         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
31608         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
31609         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
31610         long lines.
31611
31612 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
31613             Bruno Haible  <bruno@clisp.org>
31614
31615         * modules/tmpfile: New file.
31616         * lib/tmpfile.c: New file.
31617         * m4/tmpfile.m4: New file.
31618         * MODULES.html.sh (func_all_modules): New section "Input/output".
31619
31620 2007-02-15  Bruno Haible  <bruno@clisp.org>
31621
31622         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
31623         (supports_delete_on_close): New function.
31624         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
31625
31626 2007-02-14  Bruno Haible  <bruno@clisp.org>
31627
31628         * modules/mbspcasecmp-tests: New file.
31629         * tests/test-mbspcasecmp.sh: New file.
31630         * tests/test-mbspcasecmp.c: New file.
31631
31632         New module mbspcasecmp.
31633         * modules/mbspcasecmp: New file.
31634         * lib/mbspcasecmp.c: New file.
31635         * lib/string_.h (strncasecmp): Change warning message.
31636         (mbspcasecmp): New declaration.
31637         * m4/mbspcasecmp.m4: New file.
31638         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31639         GNULIB_MBSPCASECMP.
31640         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
31641         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
31642
31643 2007-02-14  Bruno Haible  <bruno@clisp.org>
31644
31645         * modules/mbsncasecmp-tests: New file.
31646         * tests/test-mbsncasecmp.sh: New file.
31647         * tests/test-mbsncasecmp.c: New file.
31648
31649         New module mbsncasecmp.
31650         * modules/mbsncasecmp: New file.
31651         * lib/mbsncasecmp.c: New file.
31652         * lib/string_.h (mbsncasecmp): New declaration.
31653         * m4/mbsncasecmp.m4: New file.
31654         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31655         GNULIB_MBSNCASECMP.
31656         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
31657         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
31658
31659 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
31660
31661         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
31662         Verify that it doesn't overlap with our flags.
31663         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
31664         do not have the desired effect in multibyte locales; instead, use
31665         mbscasecmp.
31666         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
31667         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
31668         we don't require GNU fnmatch ourselves (if our users require it, they
31669         should do so explicitly).
31670
31671         Fix regex code so it doesn't rely on strcasecmp.
31672         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
31673         Otherwise, include gnulib's langinfo.h.
31674         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
31675         undesirable behavior in non-C locales.  Instead, rely on localecharset.
31676         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
31677         * modules/regex (FILES): Remove m4/codeset.m4.
31678         (Depends-on): Add localcharset.  Remove strcase.
31679
31680 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31681
31682         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
31683         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
31684
31685 2007-02-13  Bruno Haible  <bruno@clisp.org>
31686
31687         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
31688         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31689
31690 2007-02-12  Bruno Haible  <bruno@clisp.org>
31691
31692         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
31693         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
31694         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
31695         time warning rather than a link error.
31696
31697 2007-02-12  Bruno Haible  <bruno@clisp.org>
31698
31699         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
31700         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
31701         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31702
31703 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31704
31705         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
31706         args, not 2.
31707
31708 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31709
31710         New module 'time', so that apps can include <time.h> as per
31711         POSIX and GNU instead of separate include files like time_r.h
31712         and timegm.h.  This implementation tries out a simpler approach
31713         for replacing decls in standard include files (as compared to
31714         the string module), somewhat as an experiment.
31715
31716         * config/srclist.txt: Comment out mktime.c for now.
31717         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
31718         since it doesn't apply any more.  Use generic wording instead.
31719         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
31720         'time'.
31721         * lib/time_.h, m4/time_h.m4, modules/time: New files.
31722         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
31723         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
31724         Don't include <sys/types.h>; no longer needed since we assume C89.
31725         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
31726         * lib/strftime.c: Likewise.
31727         * lib/time_r.c: Likewise.
31728         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
31729         * lib/nanosleep.c: Include <time.h> first, to check interface.
31730         * lib/strptime.c: Likewise.
31731         * lib/time_r.c: Likewise.
31732         * lib/timegm.c: Likewise.
31733         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
31734         needed.
31735         * lib/timegm.c: Don't include timegm.h; no longer needed.
31736         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
31737         time.h now handles any problems in that area.
31738         (struct timespec, nanosleep): Remove; time.h now arranges for these.
31739         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
31740         that time.h defines struct timespec.
31741         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
31742         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
31743         handles that.
31744         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
31745         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
31746         needed.  Set REPLACE_LOCALTIME.
31747         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
31748         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
31749         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
31750         nanosleep; time_h.m4 now does that.  Don't require
31751         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
31752         module handles this now.
31753         * modules/getdate (Depends-on): Remove timespec.  Add time.
31754         * modules/nanosleep (Depends-on): Likewise.
31755         * modules/stat-time (Depends-on): Likewise.
31756         * modules/nanosleep (Include): Include time.h, not timespec.h.
31757         * modules/strptime (Files): Remove lib/strptime.h.
31758         (Depends-on): Add extensions, time.
31759         (Include): Include time.h, not strptime.h.
31760         * modules/time_r (Files): Remove lib/time_r.h.
31761         (Depends-on): Add time.
31762         (Include): Include time.h, not time_r.h.
31763         * modules/timegm: Likewise.
31764         * modules/timespec (Description): Now does timespec-related decls
31765         of our own, instead of struct timespec itself.
31766         (Depends-on): Add time; remove extensions.
31767         (Maintainer): Add self.
31768         * modules/utimecmp (Depends-on): Add time; remove timespec.
31769         * modules/utimens (Depends-on): Likewise.
31770         * modules/xnanosleep (Depends-on): Likewise.
31771
31772 2007-02-11  Bruno Haible  <bruno@clisp.org>
31773
31774         * lib/c-strstr.c: Include allocsa.h.
31775         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31776         * lib/c-strcasestr.c: Include allocsa.h.
31777         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31778         * lib/strcasestr.c: Include allocsa.h.
31779         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31780         * lib/mbsstr.c: Include allocsa.h.
31781         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31782         allocsa/freesa instead of malloc/free.
31783         * lib/mbscasestr.c: Include allocsa.h.
31784         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31785         allocsa/freesa instead of malloc/free.
31786         * modules/c-strstr (Depends-on): Add allocsa.
31787         * modules/c-strcasestr (Depends-on): Likewise.
31788         * modules/strcasestr (Depends-on): Likewise.
31789         * modules/mbsstr (Depends-on): Likewise.
31790         * modules/mbscasestr (Depends-on): Likewise.
31791
31792 2007-02-11  Bruno Haible  <bruno@clisp.org>
31793
31794         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
31795
31796         * modules/mbsspn-tests: New file.
31797         * tests/test-mbsspn.sh: New file.
31798         * tests/test-mbsspn.c: New file.
31799
31800 2007-02-11  Bruno Haible  <bruno@clisp.org>
31801
31802         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
31803
31804         * modules/mbspbrk-tests: New file.
31805         * tests/test-mbspbrk.sh: New file.
31806         * tests/test-mbspbrk.c: New file.
31807
31808 2007-02-11  Bruno Haible  <bruno@clisp.org>
31809
31810         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
31811         unneeded cast.
31812
31813         * modules/mbscspn-tests: New file.
31814         * tests/test-mbscspn.sh: New file.
31815         * tests/test-mbscspn.c: New file.
31816
31817 2007-02-11  Bruno Haible  <bruno@clisp.org>
31818
31819         * modules/mbscasecmp-tests: New file.
31820         * tests/test-mbscasecmp.sh: New file.
31821         * tests/test-mbscasecmp.c: New file.
31822
31823 2007-02-11  Bruno Haible  <bruno@clisp.org>
31824
31825         Ensure O(n) worst-case complexity of mbscasestr.
31826         * lib/mbscasestr.c: Include stdbool.h.
31827         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31828         functions.
31829         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
31830         the bookkeeping indicates that it's worth it.
31831         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
31832
31833         * modules/mbscasestr-tests: New file.
31834         * tests/test-mbscasestr1.c: New file.
31835         * tests/test-mbscasestr2.sh: New file.
31836         * tests/test-mbscasestr2.c: New file.
31837         * tests/test-mbscasestr3.sh: New file.
31838         * tests/test-mbscasestr3.c: New file.
31839         * tests/test-mbscasestr4.sh: New file.
31840         * tests/test-mbscasestr4.c: New file.
31841         * m4/locale-tr.m4: New file.
31842
31843 2007-02-11  Bruno Haible  <bruno@clisp.org>
31844
31845         Ensure O(n) worst-case complexity of mbsstr.
31846         * lib/mbsstr.c: Include stdbool.h.
31847         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31848         functions.
31849         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
31850         bookkeeping indicates that it's worth it.
31851         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
31852
31853         * modules/mbsstr-tests: New file.
31854         * tests/test-mbsstr1.c: New file.
31855         * tests/test-mbsstr2.sh: New file.
31856         * tests/test-mbsstr2.c: New file.
31857         * tests/test-mbsstr3.sh: New file.
31858         * tests/test-mbsstr3.c: New file.
31859         * m4/locale-fr.m4: New file.
31860
31861 2007-02-11  Bruno Haible  <bruno@clisp.org>
31862
31863         * lib/mbsrchr.c (mbsrchr): Fix bug.
31864
31865         * modules/mbsrchr-tests: New file.
31866         * tests/test-mbsrchr.sh: New file.
31867         * tests/test-mbsrchr.c: New file.
31868
31869 2007-02-11  Bruno Haible  <bruno@clisp.org>
31870
31871         * lib/mbschr.c (mbschr): Fix bug.
31872
31873         * modules/mbschr-tests: New file.
31874         * tests/test-mbschr.sh: New file.
31875         * tests/test-mbschr.c: New file.
31876         * m4/locale-zh.m4: New file.
31877
31878 2007-02-11  Bruno Haible  <bruno@clisp.org>
31879
31880         Support for copying multibyte string iterators.
31881         * lib/mbiter.h: Include <string.h>.
31882         (mbiter_multi_copy): New function.
31883         (mbi_copy): New macro.
31884         * lib/mbuiter.h: Include <string.h>.
31885         (mbuiter_multi_copy): New function.
31886         (mbui_copy): New macro.
31887
31888 2007-02-11  Bruno Haible  <bruno@clisp.org>
31889
31890         New module mbslen.
31891         * modules/mbslen: New file.
31892         * lib/mbslen.c: New file.
31893         * lib/string_.h (mbslen): New declaration.
31894         * m4/mbslen.m4: New file.
31895         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31896         GNULIB_MBSLEN.
31897         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
31898         * MODULES.html.sh (Internationalization functions): Add mbslen.
31899
31900 2007-02-11  Bruno Haible  <bruno@clisp.org>
31901
31902         Ensure O(n) worst-case complexity of strcasestr substitute.
31903         * lib/strcasestr.c: Include stdbool.h.
31904         (knuth_morris_pratt): New function.
31905         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
31906         bookkeeping indicates that it's worth it.
31907         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
31908
31909         * modules/strcasestr-tests: New file.
31910         * tests/test-strcasestr.c: New file.
31911
31912 2007-02-11  Bruno Haible  <bruno@clisp.org>
31913
31914         Ensure O(n) worst-case complexity of c_strcasestr.
31915         * lib/c-strcasestr.c: Include stdbool.h, string.h.
31916         (knuth_morris_pratt): New function.
31917         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
31918         the bookkeeping indicates that it's worth it.
31919         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
31920
31921         * modules/c-strcasestr-tests: New file.
31922         * tests/test-c-strcasestr.c: New file.
31923
31924 2007-02-11  Bruno Haible  <bruno@clisp.org>
31925
31926         Ensure O(n) worst-case complexity of c_strstr.
31927         * lib/c-strstr.c: Include stdbool.h, string.h.
31928         (knuth_morris_pratt): New function.
31929         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
31930         bookkeeping indicates that it's worth it.
31931         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
31932
31933         * lib/c-strstr.c: Complete rewrite for maintainability.
31934
31935         * modules/c-strstr-tests: New file.
31936         * tests/test-c-strstr.c: New file.
31937
31938 2007-02-11  Bruno Haible  <bruno@clisp.org>
31939
31940         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
31941         5.2.1 and earlier, whereby \055 was treated just like the range
31942         delimiter '-'.
31943         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
31944
31945 2007-02-08  Bruno Haible  <bruno@clisp.org>
31946
31947         * modules/regex (Depends-on): Add stdbool.
31948         Reported by Dalibor Topic <robilad@kaffe.org>.
31949
31950 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
31951
31952         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
31953         Prefer returning from main to exiting from it.
31954         Remove unnecessary parens after sizeof.
31955
31956 2007-02-05  Bruno Haible  <bruno@clisp.org>
31957
31958         New module mbssep.
31959         * modules/mbssep: New file.
31960         * lib/mbssep.c: New file.
31961         * lib/string_.h (strsep): Add a conditional link warning.
31962         (mbssep): New declaration.
31963         * m4/mbssep.m4: New file.
31964         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31965         GNULIB_MBSSEP.
31966         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
31967         * MODULES.html.sh (Internationalization functions): Add mbssep.
31968
31969 2007-02-05  Bruno Haible  <bruno@clisp.org>
31970
31971         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
31972         Optimize search in case of 1 delimiter.
31973
31974 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
31975
31976         * lib/acl.h: Include sys/types.h before sys/acl.h.
31977
31978 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
31979
31980         Merge upstream fix for glibc bugzilla #3957:
31981
31982         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
31983
31984         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
31985         bit for RE_HAT_LISTS_NOT_NEWLINE.
31986         (build_charclass_op): Remove bogus comment.
31987
31988 2007-02-05  Simon Josefsson  <simon@josefsson.org>
31989
31990         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
31991
31992 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
31993
31994         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
31995         * lib/memmem.c [!defined _LIBC]: Include config.h.
31996
31997 2007-02-04  Bruno Haible  <bruno@clisp.org>
31998
31999         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
32000         warning message.
32001
32002 2007-02-04  Bruno Haible  <bruno@clisp.org>
32003
32004         New module mbstok_r.
32005         * modules/mbstok_r: New file.
32006         * lib/mbstok_r.c: New file.
32007         * lib/string_.h (strtok_r): Change argument names to match the
32008         comments. Add a conditional link warning.
32009         (mbstok_r): New declaration.
32010         * m4/mbstok_r.m4: New file.
32011         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32012         GNULIB_MBSTOK_R.
32013         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
32014         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
32015
32016 2007-02-04  Bruno Haible  <bruno@clisp.org>
32017
32018         New module mbsspn.
32019         * modules/mbsspn: New file.
32020         * lib/mbsspn.c: New file.
32021         * lib/string_.h (strspn): Add a conditional link warning.
32022         (mbsspn): New declaration.
32023         * m4/mbsspn.m4: New file.
32024         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32025         GNULIB_MBSSPN.
32026         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
32027         * MODULES.html.sh (Internationalization functions): Add mbsspn.
32028
32029 2007-02-04  Bruno Haible  <bruno@clisp.org>
32030
32031         New module mbspbrk.
32032         * modules/mbspbrk: New file.
32033         * lib/mbspbrk.c: New file.
32034         * lib/string_.h (strpbrk): Add a conditional link warning.
32035         (mbspbrk): New declaration.
32036         * m4/mbspbrk.m4: New file.
32037         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32038         GNULIB_MBSPBRK.
32039         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
32040         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
32041
32042 2007-02-04  Bruno Haible  <bruno@clisp.org>
32043
32044         New module mbscspn.
32045         * modules/mbscspn: New file.
32046         * lib/mbscspn.c: New file.
32047         * lib/string_.h (strcspn): Add a conditional link warning.
32048         (mbscspn): New declaration.
32049         * m4/mbscspn.m4: New file.
32050         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32051         GNULIB_MBSCSPN.
32052         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
32053         * MODULES.html.sh (Internationalization functions): Add mbscspn.
32054
32055 2007-02-04  Bruno Haible  <bruno@clisp.org>
32056
32057         New module mbscasestr, reduced goal of strcasestr.
32058         * modules/mbscasestr: New file.
32059         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
32060         (mbscasestr): Renamed from strcasestr.
32061         * lib/strcasestr.c: Don't include mbuiter.h.
32062         (strcasestr): Remove support for multibyte locales.
32063         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
32064         Change the conditional link warning.
32065         (mbscasestr): New declaration.
32066         * m4/mbscasestr.m4: New file.
32067         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
32068         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
32069         REPLACE_STRCASESTR.
32070         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
32071         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32072         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32073         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
32074         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
32075         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32076         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
32077         (Depends-on): Remove mbuiter.
32078         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
32079
32080 2007-02-04  Bruno Haible  <bruno@clisp.org>
32081
32082         Simplify handling of strncasecmp.
32083         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
32084         the conditional link warning.
32085         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32086         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
32087         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
32088         * modules/strcase (configure.ac): Don't invoke
32089         gl_STRING_MODULE_INDICATOR.
32090         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
32091
32092 2007-02-04  Bruno Haible  <bruno@clisp.org>
32093
32094         New module mbscasecmp, reduced goal of strcasecmp.
32095         * modules/mbscasecmp: New file.
32096         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
32097         (mbscasecmp): Renamed from strcasecmp.
32098         * lib/strcasecmp.c: Don't include mbuiter.h.
32099         (strcasecmp): Remove support for multibyte locales.
32100         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
32101         Change the conditional link warning.
32102         (mbscasecmp): New declaration.
32103         * m4/mbscasecmp.m4: New file.
32104         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
32105         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
32106         REPLACE_STRCASECMP.
32107         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
32108         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32109         GNULIB_MBSCASECMP.
32110         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
32111         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
32112         * modules/strcase (Files): Remove m4/mbrtowc.m4.
32113         (Depends-on): Remove mbuiter.
32114         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
32115
32116 2007-02-04  Bruno Haible  <bruno@clisp.org>
32117
32118         New module mbsstr. Remove module strstr.
32119         * modules/mbsstr: New file.
32120         * modules/strstr: Remove file.
32121         * lib/mbsstr.c: Renamed from lib/strstr.c.
32122         (mbsstr): Renamed from strstr.
32123         * lib/string_.h (strstr): Remove declaration. Change the conditional
32124         link warning.
32125         (mbsstr): New declaration.
32126         * m4/mbsstr.m4: New file.
32127         * m4/strstr.m4: Remove file.
32128         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
32129         REPLACE_STRSTR.
32130         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
32131         Don't initialize GNULIB_STRSTR.
32132         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
32133         substitute GNULIB_STRSTR and REPLACE_STRSTR.
32134         * MODULES.html.sh (Internationalization functions): Add mbsstr.
32135         (Support for systems lacking ANSI C 89): Remove strstr.
32136
32137 2007-02-04  Bruno Haible  <bruno@clisp.org>
32138
32139         New module mbsrchr.
32140         * modules/mbsrchr: New file.
32141         * lib/mbsrchr.c: New file.
32142         * lib/string_.h (strrchr): Add a conditional link warning.
32143         (mbsrchr): New declaration.
32144         * m4/mbsrchr.m4: New file.
32145         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32146         GNULIB_MBSRCHR.
32147         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
32148         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
32149
32150 2007-02-04  Bruno Haible  <bruno@clisp.org>
32151
32152         New module mbschr.
32153         * modules/mbschr: New file.
32154         * lib/mbschr.c: New file.
32155         * lib/string_.h (strchr): Add a conditional link warning.
32156         (mbschr): New declaration.
32157         * m4/mbschr.m4: New file.
32158         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32159         GNULIB_MBSCHR.
32160         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
32161         * MODULES.html.sh (Internationalization functions): Add mbschr.
32162
32163 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32164
32165         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
32166
32167         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
32168
32169 2007-02-04  Bruno Haible  <bruno@clisp.org>
32170
32171         New module description section 'configure.ac-early'.
32172         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
32173         (func_get_autoconf_early_snippet): New function.
32174         (func_import, func_create_testdir): Use it. Remove special cases for
32175         modules 'extensions' and 'lock'.
32176         * modules/extensions (configure.ac-early): Require
32177         gl_USE_SYSTEM_EXTENSIONS.
32178         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
32179
32180 2007-02-04  Bruno Haible  <bruno@clisp.org>
32181
32182         Make use of gcj-4.3's -fsource and -ftarget option.
32183         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
32184         and if so try the options -fsource and -ftarget.
32185         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
32186         source_version, ftarget_option, target_version arguments.
32187         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
32188         (is_envjavac_oldgcj_14_14_usable): Renamed from
32189         is_envjavac_gcj_14_14_usable.
32190         (is_envjavac_oldgcj_14_13_usable): Renamed from
32191         is_envjavac_gcj_14_13_usable.
32192         (is_gcj_present): Update.
32193         (is_gcj_43, is_gcj43_usable): New functions.
32194         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
32195         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
32196         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
32197         try the options -fsource and -ftarget.
32198
32199 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
32200
32201         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
32202         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
32203         larger value.
32204
32205 2007-02-03  Jim Meyering  <jim@meyering.net>
32206
32207         Give tools a better chance to allocate space for very large buffers.
32208         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
32209
32210         Make pwd and readlink work also when run with an unreadable parent dir
32211         on systems with openat support.
32212         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
32213         provided getcwd function, even when we have openat support.
32214         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
32215
32216 2007-02-02  Bruno Haible  <bruno@clisp.org>
32217
32218         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
32219         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
32220         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
32221         portability problems if one of these functions is only used on specific
32222         platforms.
32223         Reported by Paul Eggert.
32224
32225 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
32226
32227         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
32228         is causing more trouble than it's curing.
32229         * lib/regex_internal.h (__mempcpy): Remove.
32230         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
32231         (and make the code a tad smaller to boot).
32232         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
32233
32234 2007-02-02  Jim Meyering  <jim@meyering.net>
32235
32236         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
32237         section, not in the Makefile.am: one.
32238
32239 2007-02-02  Eric Blake  <ebb9@byu.net>
32240
32241         * lib/strchrnul.c: Always include config.h first.
32242
32243         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
32244         gnulib strstr is not necessary here.
32245
32246 2007-02-02  Simon Josefsson  <simon@josefsson.org>
32247
32248         * m4/socklen.m4: Fix typo.
32249
32250 2007-02-02  Eric Blake  <ebb9@byu.net>
32251
32252         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
32253         * modules/netinet_in (Makefile.am): Likewise.
32254
32255 2007-02-01  Bruno Haible  <bruno@clisp.org>
32256
32257         * lib/string_.h (GL_LINK_WARNING): New macro.
32258         (strcasecmp, strstr, strcasestr): If provided by the system,
32259         conditionally define as a macro that leads to a warning instead of to
32260         an error.
32261         (strncasecmp): Conditionally define as a macro that leads to a warning.
32262
32263 2007-02-01  Karl Berry  <karl@gnu.org>
32264
32265         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
32266
32267 2007-02-01  Bruno Haible  <bruno@clisp.org>
32268
32269         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
32270         renamings.
32271
32272 2007-02-01  Eric Blake  <ebb9@byu.net>
32273
32274         * modules/regex (Depends-on): Revert dependence on mempcpy.
32275         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
32276         module's definition of mempcpy.
32277         Reported by Paul Eggert.
32278
32279 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
32280
32281         * lib/string_.h: If the gnulib module XYZ is not present, undefine
32282         the symbol XYZ before redefining it.  This fixes a problem with
32283         programs that don't use XYZ, when compiled on systems that define
32284         XYZ to something else.
32285
32286 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
32287
32288         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
32289         occurs when "mkdir -m foo" creates a setgid directory that is (1)
32290         writeable to group or other and (2) is intended to have a special
32291         mode bit that is set or cleared.  In such a case, the directory
32292         should be neither group- nor other-writeable until the special
32293         mode bits are right.
32294
32295 2007-01-31  Eric Blake  <ebb9@byu.net>
32296
32297         * modules/mountlist (Depends-on): Add strstr.
32298
32299         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
32300         bug.
32301         * modules/string (Makefile.am): Remove redundant replacement.
32302         * modules/regex (Depends-on): Add mempcpy.
32303
32304 2007-01-31  Bruno Haible  <bruno@clisp.org>
32305
32306         New module description field 'Link'.
32307         * gnulib-tool (func_usage): Document --extract-link-directive.
32308         (sed_extract_prog): Recognize 'Link' directive.
32309         (func_get_link_directive): New function.
32310         (func_import): Show summary of link directives.
32311         Handle --extract-link-directive option.
32312         * modules/acl (Link): New section.
32313         * modules/clock-time (Link): New section.
32314         * modules/euidaccess (Link): New section.
32315         * modules/gettext (Link): New section.
32316         * modules/iconv (Link): New section.
32317         * modules/lock (Link): New section.
32318         * modules/nanosleep (Link): New section.
32319         * modules/readline (Link): New section.
32320
32321 2007-01-27  Bruno Haible  <bruno@clisp.org>
32322
32323         Enforce the use of gnulib modules for unportable <string.h> functions.
32324         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
32325         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
32326         (gl_HEADER_STRING_H_BODY): Require it.
32327         * lib/string_.h: If the gnulib module XYZ is not present, redefine
32328         the symbol XYZ to one that gives a link error.
32329         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
32330         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
32331         * modules/mempcpy (configure.ac): Likewise.
32332         * modules/memrchr (configure.ac): Likewise.
32333         * modules/stpcpy (configure.ac): Likewise.
32334         * modules/stpncpy (configure.ac): Likewise.
32335         * modules/strcase (configure.ac): Likewise.
32336         * modules/strcasestr (configure.ac): Likewise.
32337         * modules/strchrnul (configure.ac): Likewise.
32338         * modules/strdup (configure.ac): Likewise.
32339         * modules/strndup (configure.ac): Likewise.
32340         * modules/strnlen (configure.ac): Likewise.
32341         * modules/strpbrk (configure.ac): Likewise.
32342         * modules/strsep (configure.ac): Likewise.
32343         * modules/strstr (configure.ac): Likewise.
32344         * modules/strtok_r (configure.ac): Likewise.
32345
32346 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
32347
32348         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
32349
32350 2007-01-30  Jim Meyering  <jim@meyering.net>
32351
32352         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
32353
32354 2007-01-29  Bruno Haible  <bruno@clisp.org>
32355
32356         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
32357         * lib/execute.c: Likewise.
32358         * lib/pipe.c: Likewise.
32359         * lib/printf-args.h: Likewise.
32360         * lib/printf-args.c: Likewise.
32361         * lib/printf-parse.c: Likewise.
32362         * lib/vasnprintf.c: Likewise.
32363
32364 2007-01-29  Eric Blake  <ebb9@byu.net>
32365
32366         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
32367         declaration.
32368
32369 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
32370
32371         * lib/strptime.h (strptime): Use 'restrict' for args where
32372         POSIX requires this.
32373         * lib/strptime.c (strptime): Likewise.
32374         Change license notice from LGPL to GPL, since gnulib-tool will
32375         change this as needed.
32376         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
32377         defined.
32378         Include "strptime.h" first, to check interface.
32379         Do not #undef _LIBC and _NL_CURRENT.
32380         Do not include <stdlib.h>; no longer needed.
32381         Include "time_r.h" and declare ptime_locale_status
32382         only if _LIBC is not defined.
32383         (__P): Remove unused macro.
32384         (match_string): Bring back glibc version, but use it only if _LIBC
32385         is defined.
32386         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
32387         Remove unnecessary assertion and abort() call.
32388         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
32389         * m4/strptime.m4: Fix serial number comment.
32390         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
32391         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
32392         (Depends-on): Add time_r.
32393
32394 2007-01-29  Bruno Haible  <bruno@clisp.org>
32395
32396         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32397         strptime.
32398         * modules/strptime (Depends-on): Add stdbool.
32399         * lib/strptime.h: Include <time.h> always. Add comments.
32400
32401 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32402
32403         * modules/strptime: New file.
32404         * lib/strptime.h: New file.
32405         * lib/strptime.c: New file.
32406         * m4/strptime.m4: New file.
32407
32408 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
32409
32410         * MODULES.html.sh: New module mpsort.
32411         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
32412
32413         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
32414         a circularity problem with HP-UX ia64 reported by Bob Proulx in
32415         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
32416         All uses changed.
32417         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
32418         All uses changed.
32419         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
32420         to _Restrict_.
32421         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
32422         the parameter matches the prototype.
32423
32424 2007-01-28  Jim Meyering  <jim@meyering.net>
32425
32426         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
32427         sys/time.h here, reverting that part of the previous patch:
32428         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
32429
32430 2007-01-28  Bruno Haible  <bruno@clisp.org>
32431
32432         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
32433         value of $(SYS_TIME_H).
32434         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
32435         remove it conditionally, too. [added by Jim Meyering]
32436         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
32437         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
32438         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
32439         GETTIMEOFDAY_REPLACEMENT to 1.
32440
32441 2007-01-28  Bruno Haible  <bruno@clisp.org>
32442
32443         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
32444         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
32445         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
32446         Set UNISTD_H instead of UNISTD_H2.
32447         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
32448
32449 2007-01-28  Bruno Haible  <bruno@clisp.org>
32450
32451         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
32452         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
32453
32454 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32455
32456         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
32457         (func_create_testdir): Ensure C locale for `grep' and `tr'
32458         character ranges.
32459         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
32460         ACLOCAL_AMFLAGS parsing state machine.
32461
32462 2007-01-27  Bruno Haible  <bruno@clisp.org>
32463
32464         * modules/unistr/base: Update.
32465
32466 2007-01-27  Bruno Haible  <bruno@clisp.org>
32467
32468         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
32469         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
32470         * modules/unistr/u32-mbtouc-unsafe: Renamed from
32471         modules/unistr/u32-mbtouc.
32472         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
32473         * lib/unistr.h: Update.
32474         * lib/linebreak.c: Update.
32475         * modules/unistr/u32-mbtouc: Renamed from
32476         modules/unistr/u32-mbtouc-safe.
32477         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
32478         * lib/unistr.h: Update.
32479         * lib/unistr/u32-to-u8.c: Update.
32480         * lib/unistr/u32-to-u16.c: Update.
32481
32482 2007-01-27  Bruno Haible  <bruno@clisp.org>
32483
32484         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
32485         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
32486         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
32487         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
32488         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
32489         * modules/unistr/u16-mbtouc-unsafe: Renamed from
32490         modules/unistr/u16-mbtouc.
32491         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
32492         * lib/unistr.h: Update.
32493         * lib/linebreak.c: Update.
32494         * modules/linebreak: Update.
32495         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
32496         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
32497         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
32498         * modules/unistr/u16-mbtouc: Renamed from
32499         modules/unistr/u16-mbtouc-safe.
32500         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
32501         * lib/unistr.h: Update.
32502         * lib/unistr/u16-to-u8.c: Update.
32503         * modules/unistr/u16-to-u8: Update.
32504         * lib/unistr/u16-to-u32.c: Update.
32505         * modules/unistr/u16-to-u32: Update.
32506
32507 2007-01-27  Bruno Haible  <bruno@clisp.org>
32508
32509         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
32510         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
32511         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
32512         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
32513         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
32514         * modules/unistr/u8-mbtouc-unsafe: Renamed from
32515         modules/unistr/u8-mbtouc.
32516         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
32517         * lib/unistr.h: Update.
32518         * lib/striconveh.c: Update.
32519         * modules/striconveh: Update.
32520         * lib/linebreak.c: Update.
32521         * modules/linebreak: Update.
32522         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
32523         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
32524         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
32525         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
32526         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
32527         * lib/unistr.h: Update.
32528         * lib/striconveh.c: Update.
32529         * modules/striconveh: Update.
32530         * lib/unistr/u8-to-u16.c: Update.
32531         * modules/unistr/u8-to-u16: Update.
32532         * lib/unistr/u8-to-u32.c: Update.
32533         * modules/unistr/u8-to-u32: Update.
32534
32535 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32536
32537         Sync from Libtool.
32538         * lib/argz.c: Do not include strings.h nor memory.h, include
32539         string.h unconditionally.  Patch by Simon Josefsson.
32540
32541 2007-01-27  Bruno Haible  <bruno@clisp.org>
32542
32543         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
32544         from gl_HEADER_STRING_H_BODY.
32545         (gl_HEADER_STRING_H_BODY): Require it.
32546         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
32547         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
32548         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
32549         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
32550         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
32551         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
32552         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
32553         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
32554         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
32555         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
32556         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
32557         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
32558         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
32559         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
32560         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
32561
32562 2007-01-27  Bruno Haible  <bruno@clisp.org>
32563
32564         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
32565         check_PROGRAMS into noinst_PROGRAMS.
32566         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
32567         check_PROGRAMS in this case.
32568         (func_import): Set for_test to false.
32569         (func_create_testdir): Set for_test to true.
32570
32571 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
32572             Bruno Haible  <bruno@clisp.org>
32573
32574         * modules/strcasestr (Files): Remove lib/strcasestr.h.
32575         (Depends-on): Add string.
32576         (Includes): Use <string.h> instead of strcasestr.h.
32577         * modules/string (Makefile.am): Also substitute the value of
32578         REPLACE_STRCASESTR.
32579         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
32580         assume strcasestr is declared in <string.h> not <strings.h>. Also
32581         set REPLACE_STRCASESTR.
32582         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
32583         REPLACE_STRCASESTR.
32584         * lib/strcasestr.h: Remove file.
32585         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
32586         * lib/string_.h (strcasestr): New declaration.
32587
32588 2007-01-27  Bruno Haible  <bruno@clisp.org>
32589
32590         * lib/string_.h: Use 'extern'.
32591
32592 2007-01-27  Jim Meyering  <jim@meyering.net>
32593
32594         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
32595         of set-but-not-used local, "q".
32596
32597         * lib/mempcpy.c: Include <config.h> before <string.h>.
32598         This fixes a compilation error on HP-UX, due to the system's
32599         "restrict"-using mempcpy prototype.
32600
32601 2007-01-26  Bruno Haible  <bruno@clisp.org>
32602
32603         Small optimization.
32604         * lib/javacomp.c: Include c-strstr.h.
32605          (is_envjavac_gcj): Use c_strstr instead of strstr.
32606         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
32607
32608 2007-01-26  Bruno Haible  <bruno@clisp.org>
32609
32610         * MODULES.html.sh (Unicode string functions): Add the new modules.
32611
32612         * modules/uniconv/u32-strconv-to-locale: New file.
32613         * lib/uniconv/u32-strconv-to-locale.c: New file.
32614
32615         * modules/uniconv/u16-strconv-to-locale: New file.
32616         * lib/uniconv/u16-strconv-to-locale.c: New file.
32617
32618         * modules/uniconv/u8-strconv-to-locale: New file.
32619         * lib/uniconv/u8-strconv-to-locale.c: New file.
32620
32621         * modules/uniconv/u32-strconv-from-locale: New file.
32622         * lib/uniconv/u32-strconv-from-locale.c: New file.
32623
32624         * modules/uniconv/u16-strconv-from-locale: New file.
32625         * lib/uniconv/u16-strconv-from-locale.c: New file.
32626
32627         * modules/uniconv/u8-strconv-from-locale: New file.
32628         * lib/uniconv/u8-strconv-from-locale.c: New file.
32629
32630         * modules/uniconv/u32-strconv-to-enc: New file.
32631         * lib/uniconv/u32-strconv-to-enc.c: New file.
32632         * modules/uniconv/u32-strconv-to-enc-tests: New file.
32633         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
32634
32635         * modules/uniconv/u16-strconv-to-enc: New file.
32636         * lib/uniconv/u16-strconv-to-enc.c: New file.
32637         * lib/uniconv/u-strconv-to-enc.h: New file.
32638         * modules/uniconv/u16-strconv-to-enc-tests: New file.
32639         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
32640
32641         * modules/uniconv/u8-strconv-to-enc: New file.
32642         * lib/uniconv/u8-strconv-to-enc.c: New file.
32643         * modules/uniconv/u8-strconv-to-enc-tests: New file.
32644         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
32645
32646         * modules/uniconv/u32-strconv-from-enc: New file.
32647         * lib/uniconv/u32-strconv-from-enc.c: New file.
32648         * modules/uniconv/u32-strconv-from-enc-tests: New file.
32649         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
32650
32651         * modules/uniconv/u16-strconv-from-enc: New file.
32652         * lib/uniconv/u16-strconv-from-enc.c: New file.
32653         * modules/uniconv/u16-strconv-from-enc-tests: New file.
32654         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
32655
32656         * modules/uniconv/u8-strconv-from-enc: New file.
32657         * lib/uniconv/u8-strconv-from-enc.c: New file.
32658         * lib/uniconv/u-strconv-from-enc.h: New file.
32659         * modules/uniconv/u8-strconv-from-enc-tests: New file.
32660         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
32661
32662         * modules/uniconv/u32-conv-from-enc: New file.
32663         * lib/uniconv/u32-conv-from-enc.c: New file.
32664         * modules/uniconv/u32-conv-from-enc-tests: New file.
32665         * tests/uniconv/test-u32-conv-from-enc.c: New file.
32666
32667         * modules/uniconv/u16-conv-from-enc: New file.
32668         * lib/uniconv/u16-conv-from-enc.c: New file.
32669         * lib/uniconv/u-conv-from-enc.h: New file.
32670         * modules/uniconv/u16-conv-from-enc-tests: New file.
32671         * tests/uniconv/test-u16-conv-from-enc.c: New file.
32672
32673         * modules/uniconv/u8-conv-from-enc: New file.
32674         * lib/uniconv/u8-conv-from-enc.c: New file.
32675         * modules/uniconv/u8-conv-from-enc-tests: New file.
32676         * tests/uniconv/test-u8-conv-from-enc.c: New file.
32677
32678         * modules/uniconv/base: New file.
32679         * lib/uniconv.h: New file.
32680
32681 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
32682
32683         * doc/gnulib-tool.texi (Initial import): Update to match current
32684         behavior with strdup module.
32685         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
32686         * lib/memmem.h: Remove; all uses removed.  This is now done
32687         by <string.h>.
32688         * lib/mempcpy.h: Likewise.
32689         * lib/memrchr.h: Likewise.
32690         * lib/stpcpy.h: Likewise.
32691         * lib/stpncpy.h: Likewise.
32692         * lib/strcase.h: Likewise.
32693         * lib/strchrnul.h: Likewise.
32694         * lib/strdup.h: Likewise.
32695         * lib/strndup.h: Likewise.
32696         * lib/strnlen.h: Likewise.
32697         * lib/strpbrk.h: Likewise.
32698         * lib/strsep.h: Likewise.
32699         * lib/strstr.h: Likewise.
32700         * lib/strtok_r.h: Likewise.
32701         * lib/string_.h: New file.
32702         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
32703         Rely on <string.h> instead.
32704         * lib/canon-host.c: Likewise.
32705         * lib/chdir-long.c: Likewise.
32706         * lib/concatpath.c: Likewise.
32707         * lib/exclude.c: Likewise.
32708         * lib/fchdir.c: Likewise.
32709         * lib/getaddrinfo.c: Likewise.
32710         * lib/getcwd.c: Likewise.
32711         * lib/getsubopt.c: Likewise.
32712         * lib/glob.c: Likewise.
32713         * lib/hard-locale.c: Likewise.
32714         * lib/iconvme.c: Likewise.
32715         * lib/javacomp.c: Likewise.
32716         * lib/mempcpy.c: Likewise.
32717         * lib/memrchr.c: Likewise.
32718         * lib/regex_internal.h: Likewise.
32719         * lib/stpncpy.c: Likewise.
32720         * lib/strcasecmp.c: Likewise.
32721         * lib/strchrnul.c: Likewise.
32722         * lib/strdup.c: Likewise.
32723         * lib/striconv.c: Likewise.
32724         * lib/striconveh.c: Likewise.
32725         * lib/striconveha.c: Likewise.
32726         * lib/strncasecmp.c: Likewise.
32727         * lib/strndup.c: Likewise.
32728         * lib/strnlen.c: Likewise.
32729         * lib/strsep.c: Likewise.
32730         * lib/strstr.c: Likewise.
32731         * lib/strtok_r.c: Likewise.
32732         * lib/userspec.c: Likewise.
32733         * lib/w32spawn.h: Likewise.
32734         * lib/xstrndup.c: Likewise.
32735         * lib/mountlist.c (strstr): Remove decl.
32736         * m4/string_h.m4: New file.
32737         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
32738         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
32739         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
32740         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
32741         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
32742         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
32743         Set REPLACE_STRCASECMP if necessary.
32744         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
32745         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
32746         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
32747         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
32748         HAVE_DECL_STRDUP if necessary.
32749         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
32750         since gl_FUNC_STRNDUP does that now.
32751         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
32752         Check for decl here...
32753         (gl_PREREQ_STRNLEN): ... not here.
32754         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
32755         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
32756         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
32757         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
32758         necessary.
32759         * modules/string: New file.
32760         * modules/memmem (Files): Remove special-purpose include file.
32761         (Depends-on): Add string.
32762         (Include): Include <string.h>, not the removed file.
32763         * modules/mempcpy: Likewise.
32764         * modules/memrchr: Likewise.
32765         * modules/stpcpy: Likewise.
32766         * modules/stpncpy: Likewise.
32767         * modules/strcase: Likewise.
32768         * modules/strchrnul: Likewise.
32769         * modules/strdup: Likewise.
32770         * modules/strndup: Likewise.
32771         * modules/strnlen: Likewise.
32772         * modules/strpbrk: Likewise.
32773         * modules/strsep: Likewise.
32774         * modules/strstr: Likewise.
32775         * modules/strtok_r: Likewise.
32776         * tests/test-dirname.c: Don't include "strdup.h", since
32777         <string.h> now suffices.
32778         * tests/test-memmem.c: Don't include "memmem.h", since
32779         <string.h> now suffices.
32780
32781 2007-01-25  Bruno Haible  <bruno@clisp.org>
32782
32783         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
32784         *resultp is 0.
32785
32786         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
32787         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
32788         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
32789         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
32790
32791         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
32792         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
32793         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
32794         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
32795         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
32796         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
32797
32798 2007-01-24  Bruno Haible  <bruno@clisp.org>
32799
32800         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
32801         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
32802         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
32803         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
32804         gl_FUNC_FTS_CORE.
32805         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
32806         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
32807         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
32808         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
32809         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
32810         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
32811         gl_FUNC_FCHOWNAT.
32812         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
32813         gl_FUNC_STRFTIME.
32814         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
32815         Reported by Ralf Wildenhues.
32816
32817 2007-01-24  Bruno Haible  <bruno@clisp.org>
32818
32819         Drop AC_REQUIRE calls that are redundant with the module dependencies.
32820         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
32821         gl_GETADDRINFO.
32822         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
32823         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
32824         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
32825
32826 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
32827
32828         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
32829         Don't use 'exit'; just return from 'main'.
32830         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
32831
32832         * lib/fnmatch_.h: Readjust white space and comments to match
32833         glibc, to avoid spurious diffs.
32834
32835 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32836
32837         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
32838         2004-12-01 change by Jakub Jelinek, since this code won't compile
32839         if !LIBC.  Problem reported by Bob Proulx.
32840
32841 2007-01-23  Bruno Haible  <bruno@clisp.org>
32842
32843         * lib/striconveh.c: Include c-strcaseeq.h.
32844         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
32845         * modules/striconveh (Depends-on): Add c-strcaseeq.
32846
32847 2007-01-23  Bruno Haible  <bruno@clisp.org>
32848
32849         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
32850
32851         * modules/c-strcaseeq: New file.
32852         * lib/c-strcaseeq.h: New file.
32853
32854         * modules/streq: New file.
32855         * lib/streq.h: New file.
32856
32857 2007-01-23  Bruno Haible  <bruno@clisp.org>
32858
32859         * modules/striconveha-tests: New file.
32860         * tests/test-striconveha.c: New file.
32861
32862         * lib/striconveha.h: Include <stdbool.h>.
32863         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
32864         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
32865         (mem_iconveha_notranslit): Renamed from mem_iconveha.
32866         (mem_iconveha): New function.
32867         (str_iconveha_notranslit): Renamed from str_iconveha.
32868         (str_iconveha): New function.
32869         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
32870         c-strcase.
32871
32872 2007-01-23  Bruno Haible  <bruno@clisp.org>
32873
32874         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
32875         encodings without forgiving before trying any encoding with handler.
32876         (str_iconveha): Try all encodings without forgiving before trying any
32877         encoding with handler.
32878
32879 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32880
32881         Import the following changes from libc.
32882
32883         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
32884
32885         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
32886
32887         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
32888
32889         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
32890         normal_bracket label.
32891
32892         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
32893
32894         [BZ #361]
32895         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
32896         to normal_bracket after fetching the next character.
32897
32898 2007-01-22  Bruno Haible  <bruno@clisp.org>
32899
32900         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
32901         argument.
32902         * lib/striconveh.c (iconv_carefully_1): New function.
32903         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
32904         argument.
32905         (str_cd_iconveh): Update.
32906         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
32907         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
32908         * tests/test-striconveh.c (MAGIC): New macro.
32909         (new_offsets): New function.
32910         (main): Test call with and without offsets.
32911
32912 2007-01-22  Bruno Haible  <bruno@clisp.org>
32913
32914         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
32915         * modules/sys_select (Makefile.am): Likewise.
32916         * modules/sys_socket (Makefile.am): Likewise.
32917         * modules/sys_time (Makefile.am): Likewise.
32918
32919 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
32920
32921         * modules/gettimeofday (License): Change from GPL to LGPL, since
32922         gettimeofday is a library function.
32923
32924 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32925
32926         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
32927
32928 2007-01-21  Bruno Haible  <bruno@clisp.org>
32929
32930         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
32931
32932 2007-01-21  Bruno Haible  <bruno@clisp.org>
32933
32934         * modules/striconveha: New file.
32935         * lib/striconveha.h: New file.
32936         * lib/striconveha.c: New file.
32937         * MODULES.html.sh (Internationalization functions): Add striconveha.
32938         * lib/striconv.c (str_iconv): Optimize the case of an empty input
32939         string.
32940         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
32941
32942 2007-01-21  Bruno Haible  <bruno@clisp.org>
32943
32944         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
32945         * lib/striconveh.c (str_iconveh): Likewise.
32946
32947 2007-01-21  Bruno Haible  <bruno@clisp.org>
32948
32949         * lib/striconveh.h (mem_iconveh): New declaration.
32950         * lib/striconveh.c (mem_iconveh): New function.
32951         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
32952
32953 2007-01-21  Bruno Haible  <bruno@clisp.org>
32954
32955         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
32956
32957         * lib/striconveh.h (mem_cd_iconveh): Change specification.
32958         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
32959         original result buffer.
32960         (str_cd_iconveh): Update.
32961         * tests/test-striconveh.c (main): Update.
32962
32963         * lib/striconv.h (mem_cd_iconv): Change specification.
32964         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
32965         result buffer.
32966         (str_cd_iconv): Update.
32967         * tests/test-striconv.c (main): Update.
32968
32969 2007-01-21  Bruno Haible  <bruno@clisp.org>
32970
32971         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
32972
32973 2007-01-20  Jim Meyering  <jim@meyering.net>
32974
32975         * lib/userspec.c (parse_with_separator): If a user or group string
32976         starts with "+", skip the corresponding name-to-ID look-up, since
32977         such a look-up must fail: user and group names may not include "+".
32978
32979 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
32980
32981         * lib/poll.c: Include sys/time.h and time.h unconditionally,
32982         since we now assume the sys_time module.
32983         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
32984         check for sys/time.h; no longer needed.
32985         * modules/poll (Depends-on): Depend on sys_time.
32986
32987 2007-01-18  Bruno Haible  <bruno@clisp.org>
32988
32989         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
32990         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
32991
32992         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
32993         gettimeofday.
32994
32995         * tests/test-gettimeofday.c: Include <time.h>.
32996         (dummy): Remove variable.
32997
32998         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
32999         gl_HEADER_SYS_TIME_H.
33000         (gl_HEADER_SYS_TIME_H): New macro.
33001
33002         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
33003         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33004         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
33005         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
33006         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33007         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
33008         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
33009         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33010         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
33011         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
33012         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33013
33014         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
33015         last change; it caused a compilation error when cross-compiling to
33016         Cygwin.
33017
33018 2007-01-18  Jim Meyering  <jim@meyering.net>
33019
33020         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
33021         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
33022         than the race-prone "test -d sys || mkdir sys".
33023         (configure.ac): Use AC_PROG_MKDIR_P.
33024         * modules/sys_select: Likewise.
33025         * modules/sys_socket: Likewise.
33026         * modules/sys_time: Likewise.
33027
33028 2007-01-18  Eric Blake  <ebb9@byu.net>
33029
33030         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
33031         replace gettimeofday.
33032         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
33033         name, to avoid infinite recursion.
33034
33035 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
33036
33037         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
33038         module sys_time.
33039         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
33040         assume timespec.h defines struct timeval.
33041         * lib/settime.c: Likewise.
33042         * lib/utimens.c: Likewise.
33043         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
33044         since we now assume the gettimeofday module.
33045         * lib/tempname.c (__gen_tempname): Likewise.
33046         * lib/gettimeofday.h: Remove.
33047         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
33048         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
33049         Include <time.h>, for 'time()'.
33050         (localtime_buffer_addr): Also use this workaround if
33051         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
33052         to simplify the uses.  All uses changed.
33053         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
33054         that #undef is inside {}, and 'const' follows type name consistently.
33055         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
33056         (gettimeofday): Do not use the maximum possible value for
33057         tv->tv_usec, since that might break usages other than ls.c.
33058         Instead, we'll leave ls.c alone.  This undoes today's patch
33059         by Bruno.  Add a compile-time warning for 1s-clock resolution;
33060         we've never observed the problem but might as well keep the
33061         canary.
33062         * lib/nanosleep.c: Include timespec.h first, for interface check.
33063         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
33064         now assume the sys_time module.
33065         * lib/tempname.c: Likewise.
33066         * lib/timespec.h: Likewise.
33067         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
33068         needed.
33069         * lib/strftime.c: Likewise.
33070         * lib/timespec.h: Likewise.
33071         * lib/posixtm.c: Include posixtm.h first, for interface check.
33072         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
33073         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
33074         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
33075         * lib/sys_time_.h: New file.
33076         * lib/timespec.h (struct timespec): Use long int, not long.
33077         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
33078         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
33079         Remove obsolescent call to AC_HEADER_TIME.
33080         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
33081         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
33082         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33083         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
33084         Likewise.
33085         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
33086         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
33087         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
33088         into the sys_time module.  Check for gettimeofday just once.
33089         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
33090         for gettimeofday signature to just check the signature.  Merely
33091         compile it, since linking doesn't test signature.  Improve test for
33092         whether gettimeofday.o is actually needed.
33093         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
33094         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
33095         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
33096         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33097         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
33098         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
33099         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
33100         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
33101         than worrying about sys/time.h.
33102         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
33103         Don't bother worrying about TIME_WITH_SYS_TIME.
33104         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
33105         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
33106         * m4/sys_time_h.m4: New file.
33107         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
33108         Don't include sys/time.h.  Return from main rather than exiting.
33109         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
33110         all uses changed.
33111         * modules/gethrxtime (Depends-on): Add sys_time.
33112         * modules/gettime (Depends-on): Likewise.
33113         * modules/gettimeofday (Depends-on): Likewise.
33114         * modules/nanosleep (Depends-on): Likewise.
33115         * modules/settime (Depends-on): Likewise.
33116         * modules/tempname (Depends-on): Likewise.
33117         * modules/utimens (Depends-on): Likewise.
33118         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
33119         (Include:) Change back to <sys/time.h>.
33120         (Maintainer:) Add self.
33121         * modules/sys_time: New file.
33122         * modules/tempname (Depends-on): Add gettimeofday.
33123         * tests/test-gettimeofday.c: Include <sys/time.h>
33124         rather than gettimeofday.h.
33125
33126 2007-01-17  Bruno Haible  <bruno@clisp.org>
33127
33128         * gnulib-tool (func_get_license): Revert last patch. Instead, let
33129         the license default to GPL.
33130         (func_create_testdir): Don't complain if a module is LGPL and its
33131         tests module depends on GPLed modules.
33132
33133 2007-01-17  Bruno Haible  <bruno@clisp.org>
33134
33135         * lib/gettimeofday.c (gettimeofday): Add code for the case
33136         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
33137         maximum possible value for tv->tv_usec, rather than the minimum one.
33138
33139 2005-10-08  Martin Lambers  <marlam@marlam.de>
33140 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
33141 2007-01-16  Bruno Haible  <bruno@clisp.org>
33142
33143         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
33144         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
33145         gl_FUNC_GETTIMEOFDAY.
33146         (Include): Add gettimeofday.h.
33147         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
33148         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
33149         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
33150         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
33151         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
33152         * lib/gettimeofday.h: New file.
33153         * lib/gettimeofday.c: Include <sys/timeb.h>.
33154         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
33155         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33156         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
33157         fall back on time().
33158
33159         * tests/test-gettimeofday.c: New file.
33160         * modules/gettimeofday-tests: New file.
33161
33162 2007-01-16  Eric Blake  <ebb9@byu.net>
33163
33164         * modules/fnmatch (Depends-on): Depend on wchar.
33165         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
33166         * m4/fnmatch.m4: Likewise.
33167         * modules/mbchar (Makefile.am): Assume <wchar.h>.
33168         * m4/mbchar.m4: Likewise.
33169         * modules/mbswidth (Depends-on): Depend on wchar.
33170         * lib/mbswidth.c: Assume <wchar.h>.
33171         * m4/mbswidth.m4: Likewise.
33172         * modules/quotearg (Depends-on): Depend on wchar.
33173         * lib/quotearg.c: Assume <wchar.h>.
33174         * m4/quotearg.m4: Likewise.
33175         * modules/regex (Depends-on): Depend on wchar.
33176         * lib/regex_internal.h: Assume <wchar.h>.
33177         * m4/regex.m4: Likewise.
33178         * modules/stdint (Depends-on): Depend on wchar.
33179         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
33180         * m4/stdint.m4: Likewise.
33181         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
33182         * modules/strftime (Depends-on): Depend on wchar.
33183         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
33184         * modules/strtol (Depends-on): Depend on wchar.
33185         * lib/strtol.c: Assume <wchar.h>.
33186         * modules/wcwidth (Depends-on): Depend on wchar.
33187         * lib/wcwidth.h: Assume <wchar.h>.
33188         * m4/wcwidth.m4: Likewise.
33189
33190 2007-01-16  Bruno Haible  <bruno@clisp.org>
33191
33192         * modules/csharpexec-script: New, created from...
33193         * modules/csharpexec: ... this.
33194
33195 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
33196
33197         * modules/javaexec-script: New, created from...
33198         * modules/javaexec: ... this.
33199
33200 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33201
33202         * modules/poll (Dependencies): Add sys_select.
33203
33204 2007-01-15  Jim Meyering  <jim@meyering.net>
33205
33206         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
33207         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
33208         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
33209         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
33210
33211 2007-01-15  Bruno Haible  <bruno@clisp.org>
33212
33213         * modules/striconveh: New file.
33214         * lib/striconveh.h: New file.
33215         * lib/striconveh.c: New file.
33216         * MODULES.html.sh (Internationalization functions): Add striconveh.
33217
33218         * modules/striconveh-tests: New file.
33219         * tests/test-striconveh.c: New file.
33220
33221 2007-01-15  Bruno Haible  <bruno@clisp.org>
33222
33223         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
33224         not from GNU libiconv or GNU libc.
33225
33226 2007-01-15  Bruno Haible  <bruno@clisp.org>
33227
33228         * doc/gnulib-intro.texi (Copyright): Explain the different license
33229         terms for module descriptions, autoconf macros, tests, documentation.
33230
33231 2007-01-14  Bruno Haible  <bruno@clisp.org>
33232
33233         * modules/striconv-tests: New file.
33234         * tests/test-striconv.c: New file.
33235
33236 2007-01-14  Bruno Haible  <bruno@clisp.org>
33237
33238         * modules/iconv-tests: New file.
33239         * tests/test-iconv.c: New file.
33240
33241 2007-01-14  Bruno Haible  <bruno@clisp.org>
33242
33243         * gnulib-tool (func_get_license): For test modules, use the license of
33244         the main module.
33245
33246 2007-01-14  Bruno Haible  <bruno@clisp.org>
33247
33248         * modules/iconv (Include): Clarify that <iconv.h> can only be included
33249         if iconv is found to exist.
33250
33251 2007-01-14  Bruno Haible  <bruno@clisp.org>
33252
33253         * modules/c-ctype-tests: New file.
33254         * tests/test-c-ctype.c: New file.
33255
33256 2007-01-14  Bruno Haible  <bruno@clisp.org>
33257
33258         * modules/binary-io-tests: New file.
33259         * tests/test-binary-io.sh: New file.
33260         * tests/test-binary-io.c: New file.
33261
33262 2007-01-14  Bruno Haible  <bruno@clisp.org>
33263
33264         * modules/array-oset-tests: New file.
33265         * tests/test-array_oset.c: New file.
33266
33267 2007-01-14  Bruno Haible  <bruno@clisp.org>
33268
33269         * modules/array-list-tests: New file.
33270         * tests/test-array_list.c: New file.
33271
33272 2007-01-14  Bruno Haible  <bruno@clisp.org>
33273
33274         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
33275         and make.
33276         Reported by Simon Josefsson in
33277         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
33278
33279 2007-01-14  Bruno Haible  <bruno@clisp.org>
33280
33281         * modules/allocsa-tests: New file.
33282         * tests/test-allocsa.c: New file.
33283
33284 2007-01-14  Bruno Haible  <bruno@clisp.org>
33285
33286         * modules/fchdir (Depends-on): Add absolute-header.
33287         * modules/unistd (Depends-on): Likewise.
33288
33289 2006-12-30  Bruno Haible  <bruno@clisp.org>
33290
33291         * modules/fchdir: New file.
33292         * modules/unistd (Files): Add lib/unistd_.h.
33293         (Makefile.am): Generate unistd.h from unistd_.h.
33294         * lib/fchdir.c: New file.
33295         * lib/dirent_.h: New file.
33296         * lib/unistd_.h: New file.
33297         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
33298         * m4/fchdir.m4: New file.
33299         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
33300         (gl_HEADER_UNISTD): Invoke it.
33301         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
33302         function.
33303         * lib/backupfile.c (opendir, closedir): Undefine.
33304         * lib/chown.c (open, close): Undefine.
33305         * lib/clean-temp.c (open, close): Undefine.
33306         * lib/copy-file.c (open, close): Undefine.
33307         * lib/execute.c (open, close): Undefine.
33308         * lib/fsusage.c (open, close): Undefine.
33309         * lib/gc-gnulib.c (open, close): Undefine.
33310         * lib/getcwd.c (opendir, closedir): Undefine.
33311         * lib/glob.c (opendir, closedir): Undefine.
33312         * lib/javacomp.c (open, close): Undefine.
33313         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
33314         * lib/openat-proc.c (open, close): Undefine.
33315         * lib/pagealign_alloc.c (open, close): Undefine.
33316         * lib/pipe.c (open, close): Undefine.
33317         * lib/progreloc.c (open, close): Undefine.
33318         * lib/savedir.c (opendir, closedir): Undefine.
33319         * lib/utime.c (open, close): Undefine.
33320         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
33321
33322 2007-01-10  Bruno Haible  <bruno@clisp.org>
33323
33324         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
33325
33326 2007-01-12  Eric Blake  <ebb9@byu.net>
33327
33328         Provide a robust <wchar.h>.  Further simplifications are now
33329         possible in other modules, but not included here.
33330         * modules/wchar: New module.
33331         * m4/wchar.m4: New file.
33332         * lib/wchar_.h: Likewise.
33333         * modules/mbchar (Depends-on): Depend on wchar, as the first use
33334         of the new module.
33335         * MODULES.html.sh (Extended multibyte and wide character utilities):
33336         New section.
33337
33338 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
33339
33340         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
33341         to a reasonable default for memory allocation.
33342         (xreadlink): Don't allocate a huge buffer, to work around a buggy
33343         file system that reports garbage st_size values for symlinks.
33344         Problem reported by Liyang Hu.
33345
33346 2007-01-11  Simon Josefsson  <simon@josefsson.org>
33347
33348         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
33349         Emacs .#* auto-save files).
33350
33351 2007-01-11  Bruno Haible  <bruno@clisp.org>
33352
33353         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
33354         directory.
33355
33356 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
33357
33358         Use @...@ consistently in lib/wctype_.h.
33359         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
33360         on it being set to 1 or 0.
33361         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
33362         go back to AC_SUBSTing it.
33363         * modules/wctype (Makefile.am): Undo previous change.
33364
33365 2007-01-10  Eric Blake  <ebb9@byu.net>
33366
33367         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
33368         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
33369         * modules/wctype (Makefile.am): Likewise.
33370         Reported by Chris McGuire.
33371
33372 2007-01-10  Jim Meyering  <jim@meyering.net>
33373
33374         fts.c: a small readability/maintainability improvement
33375         * lib/fts.c (fts_read): Make this code slightly more readable and
33376         maintainable by hoisting the "sp->fts_cur = p" assignments to
33377         immediately follow the statements that set P.  Derived from
33378         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
33379
33380 2007-01-10  Eric Blake  <ebb9@byu.net>
33381
33382         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
33383         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
33384         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33385         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
33386         Reported by Chris McGuire.
33387
33388 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33389
33390         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
33391         in sed script.
33392
33393 2007-01-09  Bruno Haible  <bruno@clisp.org>
33394
33395         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
33396         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
33397         variables.
33398         (func_module): Use them.
33399
33400 2007-01-09  Bruno Haible  <bruno@clisp.org>
33401
33402         * modules/unistr/base: New file.
33403         * lib/unistr.h: New file.
33404
33405         * modules/unistr/u8-to-u16: New file.
33406         * lib/unistr/u8-to-u16.c: New file.
33407
33408         * modules/unistr/u8-to-u32: New file.
33409         * lib/unistr/u8-to-u32.c: New file.
33410
33411         * modules/unistr/u16-to-u8: New file.
33412         * lib/unistr/u16-to-u8.c: New file.
33413
33414         * modules/unistr/u16-to-u32: New file.
33415         * lib/unistr/u16-to-u32.c: New file.
33416
33417         * modules/unistr/u32-to-u8: New file.
33418         * lib/unistr/u32-to-u8.c: New file.
33419
33420         * modules/unistr/u32-to-u16: New file.
33421         * lib/unistr/u32-to-u16.c: New file.
33422
33423         * modules/unistr/u8-check: New file.
33424         * modules/unistr/u16-check: New file.
33425         * modules/unistr/u32-check: New file.
33426         * lib/unistr/u8-check.c: New file.
33427         * lib/unistr/u16-check.c: New file.
33428         * lib/unistr/u32-check.c: New file.
33429
33430         * modules/unistr/u8-chr: New file.
33431         * modules/unistr/u16-chr: New file.
33432         * modules/unistr/u32-chr: New file.
33433         * lib/unistr/u8-chr.c: New file.
33434         * lib/unistr/u16-chr.c: New file.
33435         * lib/unistr/u32-chr.c: New file.
33436
33437         * modules/unistr/u8-cmp: New file.
33438         * modules/unistr/u16-cmp: New file.
33439         * modules/unistr/u32-cmp: New file.
33440         * lib/unistr/u8-cmp.c: New file.
33441         * lib/unistr/u16-cmp.c: New file.
33442         * lib/unistr/u32-cmp.c: New file.
33443
33444         * modules/unistr/u8-cpy: New file.
33445         * modules/unistr/u16-cpy: New file.
33446         * modules/unistr/u32-cpy: New file.
33447         * lib/unistr/u8-cpy.c: New file.
33448         * lib/unistr/u16-cpy.c: New file.
33449         * lib/unistr/u32-cpy.c: New file.
33450         * lib/unistr/u-cpy.h: New file.
33451
33452         * modules/unistr/u8-cpy-alloc: New file.
33453         * modules/unistr/u16-cpy-alloc: New file.
33454         * modules/unistr/u32-cpy-alloc: New file.
33455         * lib/unistr/u8-cpy-alloc.c: New file.
33456         * lib/unistr/u16-cpy-alloc.c: New file.
33457         * lib/unistr/u32-cpy-alloc.c: New file.
33458         * lib/unistr/u-cpy-alloc.h: New file.
33459
33460         * modules/unistr/u8-endswith: New file.
33461         * modules/unistr/u16-endswith: New file.
33462         * modules/unistr/u32-endswith: New file.
33463         * lib/unistr/u8-endswith.c: New file.
33464         * lib/unistr/u16-endswith.c: New file.
33465         * lib/unistr/u32-endswith.c: New file.
33466         * lib/unistr/u-endswith.h: New file.
33467
33468         * modules/unistr/u8-mblen: New file.
33469         * modules/unistr/u16-mblen: New file.
33470         * modules/unistr/u32-mblen: New file.
33471         * lib/unistr/u8-mblen.c: New file.
33472         * lib/unistr/u16-mblen.c: New file.
33473         * lib/unistr/u32-mblen.c: New file.
33474
33475         * modules/unistr/u8-mbtouc: New file.
33476         * modules/unistr/u16-mbtouc: New file.
33477         * modules/unistr/u32-mbtouc: New file.
33478         * lib/unistr/u8-mbtouc.c: New file.
33479         * lib/unistr/u16-mbtouc.c: New file.
33480         * lib/unistr/u32-mbtouc.c: New file.
33481
33482         * modules/unistr/u8-mbtouc-safe: New file.
33483         * modules/unistr/u16-mbtouc-safe: New file.
33484         * modules/unistr/u32-mbtouc-safe: New file.
33485         * lib/unistr/u8-mbtouc-safe.c: New file.
33486         * lib/unistr/u16-mbtouc-safe.c: New file.
33487         * lib/unistr/u32-mbtouc-safe.c: New file.
33488
33489         * modules/unistr/u8-move: New file.
33490         * modules/unistr/u16-move: New file.
33491         * modules/unistr/u32-move: New file.
33492         * lib/unistr/u8-move.c: New file.
33493         * lib/unistr/u16-move.c: New file.
33494         * lib/unistr/u32-move.c: New file.
33495         * lib/unistr/u-move.h: New file.
33496
33497         * modules/unistr/u8-next: New file.
33498         * modules/unistr/u16-next: New file.
33499         * modules/unistr/u32-next: New file.
33500         * lib/unistr/u8-next.c: New file.
33501         * lib/unistr/u16-next.c: New file.
33502         * lib/unistr/u32-next.c: New file.
33503
33504         * modules/unistr/u8-prev: New file.
33505         * modules/unistr/u16-prev: New file.
33506         * modules/unistr/u32-prev: New file.
33507         * lib/unistr/u8-prev.c: New file.
33508         * lib/unistr/u16-prev.c: New file.
33509         * lib/unistr/u32-prev.c: New file.
33510
33511         * modules/unistr/u8-set: New file.
33512         * modules/unistr/u16-set: New file.
33513         * modules/unistr/u32-set: New file.
33514         * lib/unistr/u8-set.c: New file.
33515         * lib/unistr/u16-set.c: New file.
33516         * lib/unistr/u32-set.c: New file.
33517         * lib/unistr/u-set.h: New file.
33518
33519         * modules/unistr/u8-startswith: New file.
33520         * modules/unistr/u16-startswith: New file.
33521         * modules/unistr/u32-startswith: New file.
33522         * lib/unistr/u8-startswith.c: New file.
33523         * lib/unistr/u16-startswith.c: New file.
33524         * lib/unistr/u32-startswith.c: New file.
33525         * lib/unistr/u-startswith.h: New file.
33526
33527         * modules/unistr/u8-stpcpy: New file.
33528         * modules/unistr/u16-stpcpy: New file.
33529         * modules/unistr/u32-stpcpy: New file.
33530         * lib/unistr/u8-stpcpy.c: New file.
33531         * lib/unistr/u16-stpcpy.c: New file.
33532         * lib/unistr/u32-stpcpy.c: New file.
33533         * lib/unistr/u-stpcpy.h: New file.
33534
33535         * modules/unistr/u8-stpncpy: New file.
33536         * modules/unistr/u16-stpncpy: New file.
33537         * modules/unistr/u32-stpncpy: New file.
33538         * lib/unistr/u8-stpncpy.c: New file.
33539         * lib/unistr/u16-stpncpy.c: New file.
33540         * lib/unistr/u32-stpncpy.c: New file.
33541         * lib/unistr/u-stpncpy.h: New file.
33542
33543         * modules/unistr/u8-strcat: New file.
33544         * modules/unistr/u16-strcat: New file.
33545         * modules/unistr/u32-strcat: New file.
33546         * lib/unistr/u8-strcat.c: New file.
33547         * lib/unistr/u16-strcat.c: New file.
33548         * lib/unistr/u32-strcat.c: New file.
33549         * lib/unistr/u-strcat.h: New file.
33550
33551         * modules/unistr/u8-strchr: New file.
33552         * modules/unistr/u16-strchr: New file.
33553         * modules/unistr/u32-strchr: New file.
33554         * lib/unistr/u8-strchr.c: New file.
33555         * lib/unistr/u16-strchr.c: New file.
33556         * lib/unistr/u32-strchr.c: New file.
33557
33558         * modules/unistr/u8-strcmp: New file.
33559         * modules/unistr/u16-strcmp: New file.
33560         * modules/unistr/u32-strcmp: New file.
33561         * lib/unistr/u8-strcmp.c: New file.
33562         * lib/unistr/u16-strcmp.c: New file.
33563         * lib/unistr/u32-strcmp.c: New file.
33564
33565         * modules/unistr/u8-strcpy: New file.
33566         * modules/unistr/u16-strcpy: New file.
33567         * modules/unistr/u32-strcpy: New file.
33568         * lib/unistr/u8-strcpy.c: New file.
33569         * lib/unistr/u16-strcpy.c: New file.
33570         * lib/unistr/u32-strcpy.c: New file.
33571         * lib/unistr/u-strcpy.h: New file.
33572
33573         * modules/unistr/u8-strcspn: New file.
33574         * modules/unistr/u16-strcspn: New file.
33575         * modules/unistr/u32-strcspn: New file.
33576         * lib/unistr/u8-strcspn.c: New file.
33577         * lib/unistr/u16-strcspn.c: New file.
33578         * lib/unistr/u32-strcspn.c: New file.
33579         * lib/unistr/u-strcspn.h: New file.
33580
33581         * modules/unistr/u8-strdup: New file.
33582         * modules/unistr/u16-strdup: New file.
33583         * modules/unistr/u32-strdup: New file.
33584         * lib/unistr/u8-strdup.c: New file.
33585         * lib/unistr/u16-strdup.c: New file.
33586         * lib/unistr/u32-strdup.c: New file.
33587         * lib/unistr/u-strdup.h: New file.
33588
33589         * modules/unistr/u8-strlen: New file.
33590         * modules/unistr/u16-strlen: New file.
33591         * modules/unistr/u32-strlen: New file.
33592         * lib/unistr/u8-strlen.c: New file.
33593         * lib/unistr/u16-strlen.c: New file.
33594         * lib/unistr/u32-strlen.c: New file.
33595         * lib/unistr/u-strlen.h: New file.
33596
33597         * modules/unistr/u8-strmblen: New file.
33598         * modules/unistr/u16-strmblen: New file.
33599         * modules/unistr/u32-strmblen: New file.
33600         * lib/unistr/u8-strmblen.c: New file.
33601         * lib/unistr/u16-strmblen.c: New file.
33602         * lib/unistr/u32-strmblen.c: New file.
33603
33604         * modules/unistr/u8-strmbtouc: New file.
33605         * modules/unistr/u16-strmbtouc: New file.
33606         * modules/unistr/u32-strmbtouc: New file.
33607         * lib/unistr/u8-strmbtouc.c: New file.
33608         * lib/unistr/u16-strmbtouc.c: New file.
33609         * lib/unistr/u32-strmbtouc.c: New file.
33610
33611         * modules/unistr/u8-strncat: New file.
33612         * modules/unistr/u16-strncat: New file.
33613         * modules/unistr/u32-strncat: New file.
33614         * lib/unistr/u8-strncat.c: New file.
33615         * lib/unistr/u16-strncat.c: New file.
33616         * lib/unistr/u32-strncat.c: New file.
33617         * lib/unistr/u-strncat.h: New file.
33618
33619         * modules/unistr/u8-strncmp: New file.
33620         * modules/unistr/u16-strncmp: New file.
33621         * modules/unistr/u32-strncmp: New file.
33622         * lib/unistr/u8-strncmp.c: New file.
33623         * lib/unistr/u16-strncmp.c: New file.
33624         * lib/unistr/u32-strncmp.c: New file.
33625
33626         * modules/unistr/u8-strncpy: New file.
33627         * modules/unistr/u16-strncpy: New file.
33628         * modules/unistr/u32-strncpy: New file.
33629         * lib/unistr/u8-strncpy.c: New file.
33630         * lib/unistr/u16-strncpy.c: New file.
33631         * lib/unistr/u32-strncpy.c: New file.
33632         * lib/unistr/u-strncpy.h: New file.
33633
33634         * modules/unistr/u8-strnlen: New file.
33635         * modules/unistr/u16-strnlen: New file.
33636         * modules/unistr/u32-strnlen: New file.
33637         * lib/unistr/u8-strnlen.c: New file.
33638         * lib/unistr/u16-strnlen.c: New file.
33639         * lib/unistr/u32-strnlen.c: New file.
33640         * lib/unistr/u-strnlen.h: New file.
33641
33642         * modules/unistr/u8-strpbrk: New file.
33643         * modules/unistr/u16-strpbrk: New file.
33644         * modules/unistr/u32-strpbrk: New file.
33645         * lib/unistr/u8-strpbrk.c: New file.
33646         * lib/unistr/u16-strpbrk.c: New file.
33647         * lib/unistr/u32-strpbrk.c: New file.
33648         * lib/unistr/u-strpbrk.h: New file.
33649
33650         * modules/unistr/u8-strrchr: New file.
33651         * modules/unistr/u16-strrchr: New file.
33652         * modules/unistr/u32-strrchr: New file.
33653         * lib/unistr/u8-strrchr.c: New file.
33654         * lib/unistr/u16-strrchr.c: New file.
33655         * lib/unistr/u32-strrchr.c: New file.
33656
33657         * modules/unistr/u8-strspn: New file.
33658         * modules/unistr/u16-strspn: New file.
33659         * modules/unistr/u32-strspn: New file.
33660         * lib/unistr/u8-strspn.c: New file.
33661         * lib/unistr/u16-strspn.c: New file.
33662         * lib/unistr/u32-strspn.c: New file.
33663         * lib/unistr/u-strspn.h: New file.
33664
33665         * modules/unistr/u8-strstr: New file.
33666         * modules/unistr/u16-strstr: New file.
33667         * modules/unistr/u32-strstr: New file.
33668         * lib/unistr/u8-strstr.c: New file.
33669         * lib/unistr/u16-strstr.c: New file.
33670         * lib/unistr/u32-strstr.c: New file.
33671         * lib/unistr/u-strstr.h: New file.
33672
33673         * modules/unistr/u8-strtok: New file.
33674         * modules/unistr/u16-strtok: New file.
33675         * modules/unistr/u32-strtok: New file.
33676         * lib/unistr/u8-strtok.c: New file.
33677         * lib/unistr/u16-strtok.c: New file.
33678         * lib/unistr/u32-strtok.c: New file.
33679         * lib/unistr/u-strtok.h: New file.
33680
33681         * modules/unistr/u8-uctomb: New file.
33682         * modules/unistr/u16-uctomb: New file.
33683         * modules/unistr/u32-uctomb: New file.
33684         * lib/unistr/u8-uctomb.c: New file.
33685         * lib/unistr/u16-uctomb.c: New file.
33686         * lib/unistr/u32-uctomb.c: New file.
33687
33688         * MODULES.html.sh (Unicode string functions): Add the new modules.
33689
33690 2007-01-08  Bruno Haible  <bruno@clisp.org>
33691
33692         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
33693         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
33694         subdirectories.
33695
33696 2007-01-08  Karl Berry  <karl@gnu.org>
33697
33698         * doc/error.texi: mention that main() fns must set program_name
33699         when progname is used.
33700
33701 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
33702
33703         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
33704         WCTYPE_H is empty, for the benefit of builds from non-distclean
33705         directories.  Problem reported by Eric Blake in
33706         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
33707
33708 2007-01-08  Bruno Haible  <bruno@clisp.org>
33709
33710         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
33711         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
33712         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
33713         PROVIDE_CANONICALIZE_FILENAME_MODE.
33714         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
33715
33716 2007-01-08  Bruno Haible  <bruno@clisp.org>
33717
33718         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
33719         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
33720         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
33721         * lib/fts.c: Likewise.
33722         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
33723
33724 2006-12-25  Bruno Haible  <bruno@clisp.org>
33725
33726         * modules/utf8-ucs4-safe: New file.
33727         * lib/utf8-ucs4-safe.h: New file.
33728         * lib/unistr/utf8-ucs4-safe.c: New file.
33729
33730         * modules/utf16-ucs4-safe: New file.
33731         * lib/utf16-ucs4-safe.h: New file.
33732         * lib/unistr/utf16-ucs4-safe.c: New file.
33733
33734         * MODULES.html.sh (Unicode string functions): Add the new modules.
33735
33736 2007-01-08  Bruno Haible  <bruno@clisp.org>
33737
33738         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
33739         (Depends-on): Add unitypes.
33740         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33741         (u8_mbtouc_aux): Move out to separate file.
33742         (u8_mbtouc): Use ucs4_t, uint8_t types.
33743         * lib/unistr/utf8-ucs4.c: New file.
33744
33745         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
33746         (Depends-on): Add unitypes.
33747         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33748         (u16_mbtouc_aux): Move out to separate file.
33749         (u16_mbtouc): Use ucs4_t, uint16_t types.
33750         * lib/unistr/utf16-ucs4.c: New file.
33751
33752         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
33753         (Depends-on): Add unitypes.
33754         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
33755         (u8_uctomb_aux): Move out to separate file.
33756         (u8_uctomb): Use ucs4_t, uint8_t types.
33757         * lib/unistr/ucs4-utf8.c: New file.
33758
33759         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
33760         (Depends-on): Add unitypes.
33761         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
33762         (u16_uctomb_aux): Move out to separate file.
33763         (u16_uctomb): Use ucs4_t, uint16_t types.
33764         * lib/unistr/ucs4-utf16.c: New file.
33765
33766 2006-12-25  Bruno Haible  <bruno@clisp.org>
33767
33768         * modules/unitypes: New file.
33769         * lib/unitypes.h: New file.
33770         * MODULES.html.sh (func_all_modules): New section "Unicode string
33771         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
33772         this section. Add unitypes.
33773
33774 2007-01-08  Bruno Haible  <bruno@clisp.org>
33775
33776         Avoid variable names that conflict with those from libtool.
33777         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
33778         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
33779         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
33780         library_names_spec to acl_library_names_spec, hardcode_* to
33781         acl_hardcode_*.
33782         Reported by Ralf Wildenhues.
33783
33784 2007-01-08  Bruno Haible  <bruno@clisp.org>
33785
33786         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
33787         definition.
33788         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
33789         definition.
33790         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
33791         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
33792         definition.
33793         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
33794         definition.
33795         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
33796         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
33797         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
33798         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
33799         definition.
33800         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
33801         definition.
33802         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
33803         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
33804         GC_USE_<algorithm>.
33805         * lib/gc-libgcrypt.c: Likewise.
33806         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
33807         * modules/gc-arctwo (configure.ac): Likewise.
33808         * modules/gc-des (configure.ac): Likewise.
33809         * modules/gc-hmac-md5 (configure.ac): Likewise.
33810         * modules/gc-hmac-sha1 (configure.ac): Likewise.
33811         * modules/gc-md2 (configure.ac): Likewise.
33812         * modules/gc-md4 (configure.ac): Likewise.
33813         * modules/gc-md5 (configure.ac): Likewise.
33814         * modules/gc-random (configure.ac): Likewise.
33815         * modules/gc-rijndael (configure.ac): Likewise.
33816         * modules/gc-sha1 (configure.ac): Likewise.
33817
33818 2007-01-08  Bruno Haible  <bruno@clisp.org>
33819
33820         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
33821         macro definition.
33822         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
33823         definition.
33824         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
33825         definition.
33826         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
33827         * modules/fcntl-safer (configure.ac): Likewise.
33828         * modules/fopen-safer (configure.ac): Likewise.
33829         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
33830         GNULIB_FWRITEERROR macro definition.
33831
33832 2007-01-08  Bruno Haible  <bruno@clisp.org>
33833
33834         * m4/gnulib-common.m4: New file.
33835         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
33836         (func_get_filelist): Add m4/gnulib-common.m4.
33837
33838 2007-01-08  Bruno Haible  <bruno@clisp.org>
33839
33840         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
33841         command.
33842
33843 2007-01-08  Jim Meyering  <jim@meyering.net>
33844
33845         Use a more robust test for a "can't happen" condition.
33846         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
33847         narrowed the st_size value.  Presuming the "can't happen" condition
33848         is true, that narrowing could conceivably convert an invalid st_size
33849         value into a valid one.  Instead, use a change based on Matthew
33850         Woehlke's original patch.
33851
33852         Slight readability improvement: use an assert-like macro
33853         in place of literal "abort ()" uses.
33854         * lib/fts.c (fts_assert): Define.
33855         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
33856         Use this macro instead of a bare 'abort'.
33857
33858 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
33859
33860         Don't worry about using IRIX 5.3's wctype.h broken definitions;
33861         simply work around them.
33862         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
33863         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
33864         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
33865         declaring.
33866         Don't bother to define as macros, since the standard doesn't require it.
33867         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
33868         longer worry about IRIX 5.3.
33869         (HAVE_WCTYPE_CTMP_BUG): Remove.
33870
33871 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
33872
33873         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
33874         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
33875         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33876         Problems reported by Georg Schwarz for IRIX 5.3.
33877
33878         * gnulib-tool (autoconf_minversion): Take the maximum version number
33879         found, not the minimum.  Problem reported by James Youngman.
33880
33881 2007-01-03  Karl Berry  <karl@gnu.org>
33882
33883         * doc/error.texi: new file, explaining interaction with progname.
33884         * doc/gnulib.texi: include it.  Update copyright.
33885
33886 2007-01-03  Simon Josefsson  <simon@josefsson.org>
33887
33888         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
33889         AC_CANONICAL_HOST, to improve autobuild outputs.
33890
33891 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
33892             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
33893
33894         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
33895         sockets, server sockets, and other file descriptors.  Count errors
33896         to compute the return value.  Reorder the code a bit to be easier
33897         to follow.  Don't set event bits that were not requested (except
33898         POLLERR and POLLHUP).
33899
33900 2007-01-01  Bruno Haible  <bruno@clisp.org>
33901
33902         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
33903
33904 2007-01-03  Jim Meyering  <jim@meyering.net>
33905
33906         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
33907
33908 2007-01-02  Bruno Haible  <bruno@clisp.org>
33909
33910         * modules/settime (Include): Require timespec.h.
33911         * modules/nanosleep (Include): Likewise.
33912
33913 2007-01-01  Bruno Haible  <bruno@clisp.org>
33914
33915         * gnulib-tool (func_emit_copyright_notice): Bump year.
33916         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
33917
33918 2007-01-01  Bruno Haible  <bruno@clisp.org>
33919
33920         Improve support for OpenBSD.
33921         * build-aux/config.rpath (libname_spec): Export.
33922         (library_names_spec): New variable. Export.
33923         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
33924         library_names_spec from the config.rpath output. Locate shared library
33925         through the name pattern in library_names_spec.
33926
33927 2007-01-01  Eric Blake  <ebb9@byu.net>
33928
33929         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
33930
33931 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
33932
33933         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
33934         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
33935         assume the C locale, and avoid an "eval" that could cause trouble.
33936         Problem with SORT reported by Bob Proulx.
33937
33938         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
33939         Define.  Trivial patch from Henning Nielsen Lund, originally
33940         sent to bug-grep@gnu.org today.
33941
33942 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
33943
33944         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
33945         struct stat.  Problem reported by Henning Nielsen Lund.
33946         * lib/acl.c: Include acl.h first, to check interface.  Don't
33947         bother to include sys/types.h and sys/stat.h again.
33948
33949 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
33950
33951         Import the following change from libc; problem reported by
33952         Sven Verdoolaege.
33953
33954         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
33955
33956         [BZ #1373]
33957         * lib/argp.h: Remove __NTH for __argp_usage inline function.
33958
33959 2006-12-28  Jim Meyering  <jim@meyering.net>
33960
33961         * build-aux/announce-gen: Do not assume that the package
33962         builds any of tar.gz, tar.bz2, and .xdelta files.
33963         Suggestion from Simon Josefsson.
33964
33965 2006-12-28  Simon Josefsson  <simon@josefsson.org>
33966
33967         * modules/announce-gen: New file.
33968
33969 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
33970
33971         * lib/mbchar.h: Just include <wctype.h>; the wctype module
33972         handles its gotchas now.
33973         * lib/mbswidth.c: Likewise.
33974         * lib/wcwidth.h: Likewise.
33975         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
33976         and iswcntrl; the wctype module does this stuff now.
33977         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
33978         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33979         * modules/mbchar (Depends-on): Add wctype.
33980         * modules/mbswidth (Depends-on): Likewise.
33981         * modules/wcwidth (Depends-on): Likewise.
33982
33983 2006-12-27  Eric Blake  <ebb9@byu.net>
33984
33985         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
33986         module uses more than what <wctype.h> is required to provide.
33987
33988 2006-12-26  Eric Blake  <ebb9@byu.net>
33989
33990         * gnulib-tool (sed_extract_prog): Avoid space-tab.
33991
33992 2006-12-26  Eric Blake  <ebb9@byu.net>
33993
33994         * modules/absolute-header: New module.
33995         * modules/fcntl (Depends-on): Depend on it.
33996         * modules/inttypes (Depends-on): Likewise.
33997         * modules/stdint (Depends-on): Likewise.
33998         * modules/sys_stat (Depends-on): Likewise.
33999         * modules/wctype (Depends-on): Likewise.
34000         * MODULES.html.sh (Support for building libraries and
34001         executables): Document it.
34002
34003 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
34004
34005         * gnulib-tool (SED): Remove, undoing previous change.
34006         The problem was that it broke coreutils on Solaris, because
34007         "sed --posix" leaked into a makefile.
34008         (sed): New alias, if 'alias' and GNU sed.
34009
34010 2006-12-24  Jim Meyering  <jim@meyering.net>
34011
34012         Work around an fchownat bug in glibc-2.4:
34013         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
34014         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
34015         in spite of the -P option.
34016         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
34017         New macros.
34018         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
34019         * modules/openat (Files): Add lib/fchownat.c.
34020         * lib/openat.c (fchownat): Don't define here.  Move to...
34021         * lib/fchownat.c: ...this new file.
34022
34023 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
34024
34025         Fix bug reported by Bruno Haible in
34026         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
34027         where quotearg.c didn't compile on Mac OS X 10.2 because it
34028         lacks <wchar.h> and wint_t.
34029         * lib/wctype_.h (__wctype_wint_t): New type.
34030         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
34031         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
34032         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
34033         Arg is now of type __wctype_wint_t, not wint_t.
34034         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
34035         substitute HAVE_WINT_T.
34036         * modules/wctype (Files): Add m4/wint_t.m4.
34037         (wctype.h): Substitute HAVE_WINT_T.
34038
34039 2006-12-23  Bruno Haible  <bruno@clisp.org>
34040
34041         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
34042
34043 2006-12-23  Bruno Haible  <bruno@clisp.org>
34044
34045         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
34046         S_ISLNK.
34047         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
34048         mingw.
34049
34050 2006-12-22  Bruno Haible  <bruno@clisp.org>
34051
34052         * lib/copy-file.c: Include acl.h.
34053         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
34054         Close the file descriptors only after being done with copy_acl.
34055         * modules/copy-file (Depends-on): Add acl.
34056
34057 2006-12-22  Bruno Haible  <bruno@clisp.org>
34058
34059         * gnulib-tool (SED): New variable.
34060         Use $SED instead of sed everywhere.
34061
34062 2006-12-22  Bruno Haible  <bruno@clisp.org>
34063
34064         * modules/no-c++: New file.
34065         * m4/no-c++.m4: New file.
34066         * MODULES.html.sh (Support for building libraries and executables):
34067         Add no-c++.
34068
34069 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
34070
34071         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
34072         Include <limits.h>, and use its INT_MAX to rewrite the
34073         j loop so that it does not overflow 'int'.  Problem reported by
34074         Ralf Wildenhues in
34075         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
34076         Play it safe by shifting left by 1 rather than multiplying by 2,
34077         as GCC is less likely to optimize this away when the value
34078         is signed (when it assumes overflow leads to undefined behavior).
34079         Also, don't assume time_t uses two's complement.
34080
34081 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
34082
34083         * MODULES.html.sh: New module wctype.
34084         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
34085         * lib/fnmatch.c: Don't bother to include <wchar.h> before
34086         <wctype.h>, since the new wctype module should fix this.
34087         * lib/quotearg.c: Include <wctype.h> unconditionally, since
34088         the wctype module should arrange for it.
34089         * lib/regex_internal.h: Likewise.
34090         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
34091         since the wctype module should handle this now.
34092         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
34093         * modules/fnmatch (Depends-on): Add wctype.
34094         * modules/quotearg (Depends-on): Likewise.
34095         * modules/regex (Depends-on): Likewise.
34096
34097 2006-12-19  Bruno Haible  <bruno@clisp.org>
34098
34099         * lib/strdup.h [C++]: Wrap definitions in extern "C".
34100         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
34101
34102 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34103
34104         * modules/savewd (Depends-on): Fix dependency on fcntl.
34105
34106 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34107
34108         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
34109         conforms to C99, rather than relying on the user's environment
34110         setting of STDINT_H.
34111
34112 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34113         and Eric Blake  <ebb9@byu.net>
34114
34115         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
34116         This is more consistent with the other defines here.
34117         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
34118         Port to z/OS.  Problem reported by Paul Gilmartin.
34119         Change local vars to use gl_ prefix rather than ac_.
34120         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
34121         with other defines.
34122         * modules/double-slash-root: New module.
34123         * modules/dirname (Files): Remove m4/double-slash-root.m4.
34124         (Depends-on): Add double-slash-root.
34125         * MODULES.html.sh (File system functions): Mention new module.
34126
34127 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
34128
34129         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
34130         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
34131         This is for the benefit of gzip, which doesn't do i18n.
34132
34133 2006-12-12  Jim Meyering  <jim@meyering.net>
34134
34135         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
34136         Reported by Andreas Schwab <schwab@suse.de>.
34137
34138 2006-12-12  Bruno Haible  <bruno@clisp.org>
34139
34140         Merge these changes.
34141         2006-09-05  Bruno Haible  <bruno@clisp.org>
34142         * lib/iconvme.c (iconv_string): No need to save and restore errno when
34143         iconv_alloc succeeded.
34144         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
34145         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
34146         test for " && dest " at the end - dest is always != NULL there. Call
34147         iconv with 4xNULL arguments initially, to reset the state. Call iconv
34148         with 2xNULL arguments, also to flush the state storage. Handle the
34149         IRIX iconv behaviour. Realloc the final result, to throw away unused
34150         memory.
34151
34152 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
34153
34154         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
34155         and fchmodat unconditionally, since glibc 2.4 has them.
34156         Problem reported by Arkadiusz Miskiewicz.
34157
34158 2006-12-10  Bruno Haible  <bruno@clisp.org>
34159
34160         * gnulib-tool (func_import): Show the include files only for those
34161         modules that are copied and specified.
34162         Reported by Karl Berry.
34163
34164 2006-12-08  Jim Meyering  <jim@meyering.net>
34165
34166         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
34167         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
34168
34169         * build-aux/announce-gen: Add two new options, both optional:
34170         --bootstrap-tools=TOOL_LIST
34171               a comma-separated list of tools, e.g.,
34172               autoconf,automake,bison,gnulib
34173         --gnulib-snapshot-date=DATE
34174               if gnulib is in the bootstrap tool list,
34175               then report this as the snapshot date.
34176               If not specified, use the current date/time.
34177               If you specify a date here, be sure it's UTC.
34178
34179 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34180
34181         * tests/test-argp-2.sh: Fix test to match actual output.
34182         (func_compare): Fix sed script to be portable.
34183
34184 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
34185
34186         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
34187         workaround for this case.  It is not autoconfigured now; offhand
34188         it's hard to see how to autoconfigure it.
34189
34190 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
34191
34192         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
34193         a directory that is about to be chowned.  Such a directory's
34194         initial file permissions should permit the owner only and this
34195         should not be changed until after the chown, since the group and
34196         other bits would be incorrect if they granted permission before
34197         the chown.
34198
34199         Fix porting problem for iswctype reported by Georg Schwarz in:
34200         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
34201         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
34202         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
34203         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
34204         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
34205
34206 2006-12-03  Jim Meyering  <jim@meyering.net>
34207
34208         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
34209         p->fts_statp may not yet be defined.
34210         (fts_read): Instead, set it in the caller, once p->fts_statp is
34211         sure to be defined, and corresponds to a top-level directory.
34212         This bug made du -x fail.  Here's the coreutils test case:
34213         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
34214         Reported by Mike Frysinger.
34215
34216 2006-12-01  Jim Meyering  <jim@meyering.net>
34217
34218         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
34219         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
34220         Reported by Simon Josefsson.
34221
34222 2006-11-30  Jim Meyering  <jim@meyering.net>
34223
34224         * m4/warning.m4: Use the all-permissive copyright notice
34225         recommended by RMS (rather than LGPL).
34226         * m4/vararrays.m4: Likewise.
34227         * m4/flexmember.m4: Likewise.
34228
34229 2006-11-29  Bruno Haible  <bruno@clisp.org>
34230
34231         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34232         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
34233         using +=.
34234         Reported by Simon Josefsson <simon@josefsson.org>.
34235
34236 2006-11-28  James Youngman <jay@gnu.org>
34237
34238         * README: Advise users that they might find the bug-gnulib@gnu.org
34239         and autotools-announce@gnu.org mailing lists useful.
34240
34241 2006-11-28  Bruno Haible  <bruno@clisp.org>
34242
34243         * m4/ptrdiff_max.m4: Remove file.
34244
34245 2006-11-21  Bruno Haible  <bruno@clisp.org>
34246
34247         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
34248         _AC_COMPUTE_INT.
34249         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34250         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
34251         _AC_COMPUTE_INT.
34252         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34253         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
34254         _AC_COMPUTE_INT.
34255         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34256
34257 2006-11-28  Jim Meyering  <jim@meyering.net>
34258
34259         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
34260         warning from "gcc -Wshadow" about shadowing the builtin.
34261
34262 2006-11-27  Bruno Haible  <bruno@clisp.org>
34263
34264         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
34265         _AC_COMPUTE_INT.
34266         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34267
34268 2006-11-27  Bruno Haible  <bruno@clisp.org>
34269             Paul Eggert  <eggert@cs.ucla.edu>
34270
34271         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
34272
34273 2006-11-26  Bruno Haible  <bruno@clisp.org>
34274
34275         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34276         noinst_LTLIBRARIES.
34277
34278 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
34279             Bruno Haible  <bruno@clisp.org>
34280
34281         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
34282         if compiling with "gcc -ansi".
34283
34284 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
34285
34286         Fix some incompatibilities with gcc -ansi -pedantic.
34287         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
34288         if compiling pedantically with GCC, unless it's C99 or later.
34289         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
34290         it mishandles gcc -ansi -pedantic as well.
34291         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
34292         if gcc -pedantic.
34293         * lib/regexec.c (check_node_accept_bytes): Don't use auto
34294         initializers for struct if -pedantic, unless it's C99 or later.
34295
34296 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
34297
34298         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
34299         Don't close an fd more than once. Identical atimes indicate
34300         success, not failure.
34301
34302 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
34303
34304         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
34305
34306 2006-11-23  Jim Meyering  <jim@meyering.net>
34307
34308         * build-aux/announce-gen: New file.  From coreutils.
34309
34310 2006-11-22  Jim Meyering  <jim@meyering.net>
34311
34312         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
34313         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
34314         (fts_read): Use a temporary to narrow the overused st_size member
34315         before using it in a switch statement.  Reported by Matthew Woehlke.
34316
34317         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
34318         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
34319
34320 2006-11-20  Bruno Haible  <bruno@clisp.org>
34321
34322         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
34323         changequote instead of pairs of brackets.
34324         Reported by Andreas Schwab <schwab@suse.de>.
34325
34326 2006-11-21  Jim Meyering  <jim@meyering.net>
34327
34328         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
34329         so as to remain compatible with older compilers.
34330         Patch from Michael Deutschmann.
34331
34332 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34333
34334         * MODULES.html.sh (File system functions): Add openat.
34335
34336         * lib/openat.h (rpl_fstatat): New macro, if
34337         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
34338         (fstatat): Define to rpl_fstatat under the same conditions,
34339         unless COMPILING_FSTATAT.
34340         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
34341         seems to have the bug.
34342         * lib/fstatat.c: New file.
34343         * modules/openat (Files): Add it.
34344
34345 2006-11-20  Bruno Haible  <bruno@clisp.org>
34346
34347         * Makefile: New file.
34348
34349 2006-11-20  Jim Meyering  <jim@meyering.net>
34350
34351         The beginnings of syntax-related checks for gnulib.
34352         * lib/Makefile: New file.
34353         * lib/t-idcache: New script.  Ensure that the two halves of
34354         idcache.c stay in sync.
34355
34356         * lib/idcache.c: Adjust comments in user- and group- portions to
34357         be more accurate, and to be consistent with one another.
34358
34359 2006-11-20  Jim Meyering  <jim@meyering.net>
34360
34361         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
34362         continue using the flexible array member (thus, this module performs
34363         half as many malloc calls), with the addition that...
34364         (getgroup, getuser): Consistently record a non-match via an empty
34365         "name" string, and map an empty string match to a NULL return value.
34366         * modules/idcache (Depends-on): Re-add flexmember.
34367
34368         * lib/idcache.c (getuser): Remove all uses of the register keyword.
34369         (getuidbyname, getgroup, getgidbyname): Likewise.
34370
34371         Use cleaner syntax: NULL rather than 0.
34372         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
34373
34374 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34375
34376         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
34377         It mishandled the case where the group was missing.
34378         Problem reported by Greg Schafer.
34379         * modules/idcache: Likewise.
34380
34381 2006-11-18  Jim Meyering  <jim@meyering.net>
34382
34383         * check-module (%exempt_header): Add exception for some
34384         conditionally-included headers.
34385
34386         * modules/i-ring (Depends-on): Add verify.
34387         (License): Change to LGPL.
34388
34389 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
34390
34391         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
34392         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
34393         and inttostr.h.  Use snprintf rather than uinttostr, so that
34394         LGPLed code doesn't depend on GPLed.
34395
34396 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
34397
34398         * modules/inline (License): Change from GPL to LGPL.
34399
34400 2006-11-17  Jim Meyering  <jim@meyering.net>
34401
34402         * modules/d-type (License): Switch to LGPL.
34403
34404 2006-11-15  Bruno Haible  <bruno@clisp.org>
34405
34406         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
34407
34408 2006-11-15  Eric Blake  <ebb9@byu.net>
34409
34410         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
34411         the module dependency.
34412
34413 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34414             Bruno Haible  <bruno@clisp.org>
34415
34416         * gnulib-tool (func_create_testdir): Add license consistency check.
34417
34418 2006-11-15  Eric Blake  <ebb9@byu.net>
34419
34420         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
34421         random "(cached)" in configure output.
34422
34423 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34424
34425         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
34426         test for conforming inttypes.h is both announced and cached.
34427
34428         * MODULES.html.sh (seen_modules, seen_files): New variables.
34429         (func_module): Rewrite to use a few less gnulib-tool and sed
34430         invocations.  Avoid a couple of quadratic algorithms for ...
34431         (missed_modules, missed_files): ... these, with ...
34432         (func_append, func_tmpdir): ... these new functions, from
34433         gnulib-tool.  Analogously, install traps for cleanup.
34434
34435         * tests/test-gc.c (main): Remove unused variables.
34436         * tests/test-read-file.c: Include stdlib.h, for 'free'.
34437
34438 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
34439
34440         * modules/inttostr (License): Change to LGPL.
34441
34442 2006-11-14  Eric Blake  <ebb9@byu.net>
34443
34444         * modules/tempname (License): Change to LGPL.
34445
34446 2006-11-14  Eric Blake  <ebb9@byu.net>
34447
34448         * doc/functions.texi (Function Portability): *printf functions on
34449         Cygwin now understand all POSIX size specifiers.
34450
34451 2006-11-14  Bruno Haible  <bruno@clisp.org>
34452
34453         * modules/c-ctype (License): Change to LGPL.
34454
34455 2006-11-12  Bruno Haible  <bruno@clisp.org>
34456
34457         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
34458         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
34459         for GNOME libraries, for which the include files are installed in
34460         subdirectories of $prefix/include.
34461
34462 2006-11-12  Bruno Haible  <bruno@clisp.org>
34463
34464         * m4/lib-link.m4: Require at least autoconf-2.54.
34465         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
34466         name to underscores for the --with option.
34467
34468 2006-11-13  Bruno Haible  <bruno@clisp.org>
34469
34470         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
34471         the tests directory.
34472         Reported by Ralf Wildenhues.
34473
34474 2006-11-13  Bruno Haible  <bruno@clisp.org>
34475
34476         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
34477         (func_emit_initmacro_end): Undo the override here.
34478         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
34479         Works around the famous automake error in coreutils.
34480
34481 2006-11-13  Eric Blake  <ebb9@byu.net>
34482
34483         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
34484         element, not its node.
34485
34486 2006-11-12  Bruno Haible  <bruno@clisp.org>
34487
34488         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
34489         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
34490
34491 2006-11-12  Bruno Haible  <bruno@clisp.org>
34492
34493         * gnulib-tool: New option --local-symlink.
34494         (func_usage): Document it.
34495         (lsymbolic): New variable.
34496         (func_import, func_create_testdir): If --symlink was not specified,
34497         test whether --local-symlink was specified and the file comes from
34498         the local_gnulib_dir.
34499
34500 2006-11-12  Bruno Haible  <bruno@clisp.org>
34501
34502         * gnulib-tool (func_ln): New function.
34503         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
34504
34505 2006-11-12  Bruno Haible  <bruno@clisp.org>
34506
34507         Finish support for source files in subdirectories.
34508         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
34509         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
34510         AUTOMAKE_OPTIONS.
34511         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
34512
34513 2006-11-12  Bruno Haible  <bruno@clisp.org>
34514
34515         * gnulib-tool (func_get_automake_snippet): Synthesize also an
34516         EXTRA_lib_SOURCES augmentation.
34517         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
34518
34519 2006-11-12  Jim Meyering  <jim@meyering.net>
34520
34521         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
34522         file descriptors.  This also averts a failure on systems with
34523         native openat support when a traversed directory lacks "x" access.
34524         * lib/fts_.h: Include "i-ring.h"
34525         (struct FTS) [fts_fd_ring]: New member.
34526         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
34527         (FCHDIR): Add parentheses.
34528         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
34529         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
34530         When descending, rather than simply closing the previous
34531         fts_cwd_fd value, push that file descriptor onto the ring.
34532         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
34533         (fts_open): Initialize the new fd_ring member.
34534         (fts_close): Clear the ring.
34535         (fts_safe_changedir): When possible, use our new fd_ring to skip
34536         the diropen and fstat and dev/ino comparison that would normally
34537         accompany a virtual `chdir ("..")'.
34538
34539         * modules/fts (Depends-on): Add i-ring.
34540         * modules/i-ring: New module.
34541         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
34542         * m4/i-ring.m4: New file.
34543
34544 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34545
34546         * gnulib-tool (func_create_testdir): Fix replacement of
34547         `build-aux' in configure.ac.  Run autotools in gltests
34548         subdirectory.
34549         (func_create_testdir, func_create_megatestdir, test): There is
34550         no need for '--force' in most autotool invocations in a new
34551         tree.  Actually fail the whole test if any of the tools, or the
34552         configure or make stages fail.
34553
34554         Sync from Automake.
34555         * build-aux/gnupload: Revert last change.  Add pointer to upload
34556         instructions of the GNU Maintenance Instructions.
34557         Suggestion by Karl Berry.
34558
34559 2006-11-10  Jim Meyering  <jim@meyering.net>
34560
34561         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
34562
34563 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34564
34565         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
34566         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
34567         (bind_textdomain_codeset) [! ENABLE_NLS]:
34568         Evaluate all the arguments.  That way, callers get compatible behavior
34569         if the arguments have side effects.  Also, it avoids some GCC
34570         diagnostics in some cases; Joel E. Denny reported problems when Bison
34571         was configured with --enable-gcc-warnigs.
34572
34573 2006-11-10  Jim Meyering  <jim@meyering.net>
34574
34575         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
34576         relevant options in CFLAGS (like -O, -fno-inline) are taken into
34577         account.
34578
34579 2006-11-10  Jim Meyering  <jim@meyering.net>
34580
34581         * modules/inline: New file/module.
34582         * modules/xalloc (Files): Remove m4/inline.m4.
34583         (Depends-on): Add inline, instead.
34584         * modules/oset: Likewise.
34585         * modules/list: Likewise.
34586
34587 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34588
34589         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
34590         Problem reported by Matthew Woehlke.
34591
34592 2006-11-09  Bruno Haible  <bruno@clisp.org>
34593
34594         * lib/tempname.c (gen_tempname): Remove variant that invokes
34595         __gen_tempname.
34596         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
34597         __gen_tempname.
34598
34599 2006-11-08  Bruno Haible  <bruno@clisp.org>
34600
34601         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
34602         to 'yes' instead of 'cross-compiling'.
34603
34604 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
34605
34606         * lib/quotearg.h (quotearg_free): New decl.
34607         * lib/quotearg.c (quotearg_free): New function.
34608         (slot0, nslots, slotvec0, slotvec):
34609         Now file-scope so that quotearg_free can get at them.
34610
34611 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34612
34613         Sync from Automake.
34614         * build-aux/gnupload: Add missing 'gnu' to example URL.
34615         Report by Karl Berry.
34616
34617 2006-11-08  Bruno Haible  <bruno@clisp.org>
34618
34619         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
34620         Suggested by Paul Eggert.
34621
34622 2006-11-08  Jim Meyering  <jim@meyering.net>
34623
34624         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
34625         It's already included if !_LIBC.
34626         (fts_safe_changedir): Add a comment.
34627
34628 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34629
34630         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
34631         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
34632         Matthew Woehlke.
34633
34634         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
34635         definitions up, to avoid colliding with change below.
34636         (static_inline) [HAVE_INLINE]: New macro.
34637         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
34638         Provide extern decls when !HAVE_INLINE.  Do not define unless
34639         static_inline is defined, either by us or by xmalloc.c.  Use
34640         static_inline rather than static inline.
34641         (XCALLOC): Optimize sizeof(T) = 1 case.
34642         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
34643
34644 2006-11-07  Bruno Haible  <bruno@clisp.org>
34645
34646         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
34647         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
34648         AC_C_INLINE.
34649         * modules/xalloc (Files): Add m4/inline.m4.
34650
34651 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34652
34653         * README: Fix typo.
34654         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
34655         (Miscellanous Notes): ...from this.
34656
34657 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34658
34659         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
34660         Mention that offsetof should be used instead of sizeof.
34661         From Bruno Haible.
34662
34663 2006-11-07  Bruno Haible  <bruno@clisp.org>
34664
34665         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
34666
34667 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
34668
34669         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34670         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
34671         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
34672         (gl_tree_add_before, gl_tree_add_after):
34673         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
34674         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
34675         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
34676         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
34677         (gl_linked_add_after, gl_linked_add_at): Likewise.
34678         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
34679         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
34680         (gl_tree_add_before, gl_tree_add_after): Likewise.
34681         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
34682         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
34683         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
34684
34685 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34686
34687         * lib/gl_oset.h: Use C comment style, not C++ comment style.
34688
34689 2006-11-06  Bruno Haible  <bruno@clisp.org>
34690
34691         * m4/inline.m4: New file.
34692         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
34693         * modules/list (Files): Add m4/inline.m4.
34694         * modules/oset (Files): Likewise.
34695
34696 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
34697
34698         * lib/idcache.c: Include <stddef.h>, for offsetof.
34699         (struct userid.name): Change from char * to a flexible array member.
34700         All uses changed.
34701         * modules/idcache (Depends-on): Add flexmember.
34702
34703         * MODULES.html.sh (Core language properties): New module flexmember.
34704         * modules/flexmember, m4/flexmember.m4: New files.
34705
34706         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
34707         inline functions that are identical with the old xnmalloc_inline,
34708         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
34709         that we can avoid some unnecessary integer multiplications and
34710         divisions in the common case where the element size is known at
34711         compile time.
34712         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
34713         needed.
34714         (xnboundedmalloc): Remove.
34715         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
34716         arguments, for consistency with rest of this header.
34717         (xcharalloc): Rewrite using XNMALLOC.
34718         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
34719         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
34720         versions have been moved to lib/xalloc.h and renamed to be the
34721         non-*_inline versions.
34722         (xmalloc, xrealloc): Implement without reference to the xnmalloc
34723         and xnrealloc functions, since those functions are now inline and
34724         now call us.
34725         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
34726         renaming described above.
34727         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
34728         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
34729         captures the dependency in AC_C_INLINE.
34730
34731         New module canonicalize-lgpl, proposed by Charles Wilson in
34732         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
34733         with a few small changes afterwards.
34734         * MODULES.html.sh (File system functions): New module
34735         canonicalize-lgpl.
34736         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
34737         and canonicalize_file_name.
34738         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
34739         * modules/canonicalize-lgpl: New files.
34740
34741 2006-11-05  Bruno Haible  <bruno@clisp.org>
34742
34743         * gnulib-tool (func_import, func_create_testdir): Create directories
34744         also for files in subdirectories of lib/.
34745
34746 2006-11-05  Bruno Haible  <bruno@clisp.org>
34747
34748         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
34749         ANSI C compliant.
34750
34751 2006-11-03  Bruno Haible  <bruno@clisp.org>
34752
34753         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34754         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
34755         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
34756         (xnboundedmalloc): New inline function.
34757         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
34758         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
34759         xmalloc.
34760         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
34761         xmalloc.
34762         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
34763         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
34764         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
34765         xmalloc.
34766         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34767         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
34768         xmalloc.
34769         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
34770         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34771         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
34772         xmalloc.
34773         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34774         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
34775         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34776         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
34777         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
34778         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
34779         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
34780
34781 2006-11-03  Bruno Haible  <bruno@clisp.org>
34782
34783         * lib/c-ctype.h [C++]: Define functions without name mangling.
34784         * lib/fwriteerror.h [C++]: Likewise.
34785         * lib/gcd.h [C++]: Likewise.
34786         * lib/linebreak.h [C++]: Likewise.
34787
34788 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
34789
34790         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
34791         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
34792         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
34793         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
34794         Check for functions and headers just once.
34795         Check for declaration of canonicalize_file_name.
34796         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
34797
34798 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
34799
34800         * gnulib-tool (func_import): Fix typo in actioncmd.
34801
34802 2006-11-02  Bruno Haible  <bruno@clisp.org>
34803
34804         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
34805         newline sequence in the Makefile.am snippet as a space, like "make"
34806         does.
34807         Reported by Roger Persson <perrog@gmail.com>.
34808
34809 2006-11-01  Bruno Haible  <bruno@clisp.org>
34810
34811         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
34812         already declared in <string.h>.
34813         * lib/strcase.h (strncasecmp): Don't declare it if yes.
34814
34815 2006-11-01  Bruno Haible  <bruno@clisp.org>
34816
34817         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
34818         * lib/strcase.h: Include <string.h>.
34819         (strcasecmp): Define to rpl_strcasecmp here.
34820
34821 2006-11-01  Bruno Haible  <bruno@clisp.org>
34822
34823         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
34824
34825 2006-11-01  Eric Blake  <ebb9@byu.net>
34826
34827         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
34828
34829         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
34830
34831 2006-10-29  Bruno Haible  <bruno@clisp.org>
34832
34833         Make it compile in C++ mode.
34834         * lib/full-write.c (full_rw): Add a cast.
34835
34836 2006-11-01  Bruno Haible  <bruno@clisp.org>
34837
34838         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
34839         be POSIX compliant.
34840         Reported by Roger Persson <perrog@gmail.com>.
34841
34842 2006-11-01  Eric Blake  <ebb9@byu.net>
34843
34844         * lib/getopt_.h: Fix comments.
34845
34846 2006-10-31  Eric Blake  <ebb9@byu.net>
34847
34848         * modules/tmpdir (Depends-on): Add sys_stat.
34849         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
34850         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
34851         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
34852         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
34853         tempname.
34854
34855 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
34856
34857         Avoid some C++ diagnostics reported by Bruno Haible.
34858         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
34859         xmalloc.
34860         (quotearg_alloc): Use xcharalloc rather than xmalloc.
34861         (struct slotvec): Move to top level.
34862         (quotearg_n_options): Rewrite to avoid xmalloc.
34863         * lib/xalloc.h (xcharalloc): New function.
34864         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
34865         [defined __cplusplus]: Add function template that provides result
34866         type propagation.  This part of the change is from Bruno Haible.
34867
34868 2006-10-29  Bruno Haible  <bruno@clisp.org>
34869
34870         Make it compile in C++ mode.
34871         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
34872         * lib/strnlen1.c (strnlen1): Cast memchr result.
34873         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
34874         * lib/clean-temp.c (string_equals, string_hash): Add casts.
34875         (create_temp_dir): Rename local variable 'template'.
34876         (compile_csharp_using_sscli): Add cast.
34877         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
34878         * lib/findprog.c (find_in_path): Likewise.
34879         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
34880         * lib/wait-process.c (register_slave_subprocess): Likewise.
34881
34882 2006-10-22  Bruno Haible  <bruno@clisp.org>
34883
34884         * modules/tsearch: New file.
34885         * lib/tsearch.h: New file.
34886         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
34887         * m4/tsearch.m4: New file.
34888         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
34889
34890 2006-10-29  Eric Blake  <ebb9@byu.net>
34891
34892         * lib/arcfour.c: Assume config.h.
34893         * lib/arctwo.c: Likewise.
34894         * lib/base64.c: Likewise.
34895         * lib/check-version.c: Likewise.
34896         * lib/crc.c: Likewise.
34897         * lib/des.c: Likewise.
34898         * lib/gc-gnulib.c: Likewise.
34899         * lib/gc-libgcrypt.c: Likewise.
34900         * lib/gc-pbkdf2-sha1.c: Likewise.
34901         * lib/getaddrinfo.c: Likewise.
34902         * lib/getdelim.c: Likewise.
34903         * lib/getline.c: Likewise.
34904         * lib/hmac-md5.c: Likewise.
34905         * lib/hmac-sha1.c: Likewise.
34906         * lib/iconvme.c: Likewise.
34907         * lib/md2.c: Likewise.
34908         * lib/md4.c: Likewise.
34909         * lib/memxor.c: Likewise.
34910         * lib/read-file.c: Likewise.
34911         * lib/readline.c: Likewise.
34912         * lib/rijndael-alg-fst.c: Likewise.
34913         * lib/rijndael-api-fst.c: Likewise.
34914         * lib/xgetdomainname.c: Likewise.
34915
34916 2006-10-28  Eric Blake  <ebb9@byu.net>
34917
34918         * lib/xstrndup.c: Assume config.h.
34919
34920 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
34921
34922         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
34923         stat-macros.h is now for our own macros, whereas stat_h is for
34924         macros in the <sys/stat.h> name space.
34925         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
34926         (STAT_MACROS_H): Remove.
34927         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
34928         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
34929         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
34930         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
34931         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
34932         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
34933         Move these macros to ...
34934         * lib/stat_.h: here.  Don't include stat-macros.h.
34935         * lib/canonicalize.c: Don't include stat-macros.h.
34936         * lib/chown.c: Likewise.
34937         * lib/euidaccess.c: Likewise.
34938         * lib/file-type.c: Likewise.
34939         * lib/filemode.c: Likewise.
34940         * lib/glob.c: Likewise.
34941         * lib/isapipe.c: Likewise.
34942         * lib/lchown.c: Likewise.
34943         * lib/lstat.c: Likewise.
34944         * lib/mkdir-p.c: Likewise.
34945         * lib/rmdir.c: Likewise.
34946         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
34947         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
34948         unless mkdir isn't declared, to speed up 'configure'.
34949         Always create sys/stat.h, since it's unlikely any real sys/stat.h
34950         would define all the S_* symbols.
34951         * modules/canonicalize (Depends-on):
34952         Depend on sys_stat, not stat-macros.
34953         * modules/chown: Likewise.
34954         * modules/euidaccess: Likewise.
34955         * modules/filemode: Likewise.
34956         * modules/file-type: Likewise.
34957         * modules/glob: Likewise.
34958         * modules/isapipe: Likewise.
34959         * modules/lchown: Likewise.
34960         * modules/lstat: Likewise.
34961         * modules/mkancesdirs: Likewise.
34962         * modules/rmdir: Likewise.
34963         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
34964         * modules/modechange: Likewise.
34965         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
34966         (configure.ac): Remove gl_STAT_MACROS.
34967         * modules/sys_stat (Depends-on): Remove stat-macros.
34968
34969 2006-10-27  Bruno Haible  <bruno@clisp.org>
34970
34971         * m4/signed.m4: Remove file.
34972         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
34973         invocation.
34974         * modules/vasnprintf (Files): Remove m4/signed.m4.
34975
34976 2006-10-27  Bruno Haible  <bruno@clisp.org>
34977
34978         Update to GNU gettext 0.16.
34979         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
34980         m4/inttypes-h.m4, m4/signed.m4.
34981         * m4/gettext.m4: Update to GNU gettext 0.16.
34982         * m4/intl.m4: New file, from GNU gettext.
34983         * m4/intldir.m4: New file, from GNU gettext.
34984         * config/srclist.txt: Update
34985
34986 2006-10-27  Eric Blake  <ebb9@byu.net>
34987
34988         * MODULES.html.sh: Document tempname.
34989         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
34990         dependencies.
34991         (Files): Move lib/tempname.c...
34992         * modules/tempname: ...to this new module.
34993         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
34994         (gl_PREREQ_TEMPNAME): Move...
34995         * m4/tempname.m4: ...to this new file.
34996         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
34997         * modules/sys_stat (Depends-on): Add stat-macros.
34998         * lib/stat_.h (includes): Pick up stat macros.
34999         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
35000         if stat macros are broken.
35001         * lib/tempname.c (includes): No need to include "stat-macros.h".
35002         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
35003         (direxists, __path_search) [!_LIBC]: Don't compile these in
35004         gnulib; the tmpdir module covers that.
35005         * lib/tempname.h: New file.
35006
35007 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
35008
35009         * COPYING: Explain how gnulib-tool converts licence headers.
35010         Almost all wording by Eric Blake.
35011
35012 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
35013
35014         * lib/mbchar.h (is_basic_table): Make read-only.
35015         * lib/mbchar.c (is_basic_table): Likewise.
35016         Reported by John Darrington.
35017
35018 2006-10-25  Bruno Haible  <bruno@clisp.org>
35019
35020         * lib/progname.h (set_program_name): Undefine before defining.
35021
35022 2006-10-25  Bruno Haible  <bruno@clisp.org>
35023
35024         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
35025         false for non-gcc C++ compilers.
35026         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
35027
35028 2006-10-24  Bruno Haible  <bruno@clisp.org>
35029
35030         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
35031         iconv implementations like Irix iconv.
35032
35033 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35034
35035         * modules/vararrays: New file.
35036         * m4/vararrays.m4: New file, taken from diffutils.
35037         * MODULES.html.sh: New module vararrays.
35038
35039 2006-10-24  Karl Berry  <karl@gnu.org>
35040
35041         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
35042         Don't call GNU Unix.
35043
35044 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35045
35046         * users.txt: Add Libtool.
35047
35048         Sync from Libtool:
35049
35050         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35051
35052         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
35053         to gnulib's policy of including config.h unconditionally.
35054
35055 2006-10-24  Bruno Haible  <bruno@clisp.org>
35056
35057         * modules/wcwidth (Files): Add m4/wint_t.m4.
35058         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
35059         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
35060
35061 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35062
35063         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
35064         to pacify GCC with some -W flags enabled.  Problem reported by
35065         Bruno Haible.
35066
35067 2006-10-24  Jim Meyering  <jim@meyering.net>
35068
35069         * MODULES.html.sh: Remove uinttostr.  It's not a module.
35070         Reported by Karl Berry.
35071
35072 2006-10-23  Bruno Haible  <bruno@clisp.org>
35073
35074         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
35075
35076 2006-10-24  Bruno Haible  <bruno@clisp.org>
35077
35078         * lib/gl_list.h: Use C comment style, not C++ comment style.
35079
35080 2006-10-23  Eric Blake  <ebb9@byu.net>
35081
35082         * lib/getaddrinfo.c (includes): Add missing include.
35083
35084 2006-10-23  Bruno Haible  <bruno@clisp.org>
35085             Paul Eggert  <eggert@cs.ucla.edu>
35086
35087         Ability to rename obstack_free.
35088         * lib/obstack.h (__obstack_free): New macro. Declare instead of
35089         obstack_free.
35090         (obstack_free): Invoke the __obstack_free macro.
35091         * lib/obstack.c (obstack_free): Use __obstack_free macro.
35092
35093 2006-10-23  Bruno Haible  <bruno@clisp.org>
35094             Paul Eggert  <eggert@cs.ucla.edu>
35095
35096         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
35097         __argc, __argv from the declaration. (They are defined as macros on
35098         mingw.)
35099
35100 2006-10-22  Bruno Haible  <bruno@clisp.org>
35101
35102         * doc/gnulib-intro.texi: New file.
35103         * doc/gnulib.texi: Include it.
35104
35105 2006-10-21  Bruno Haible  <bruno@clisp.org>
35106
35107         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
35108         "Introduction", "Miscellanous Notes", "Particular Modules".
35109
35110 2006-10-21  Bruno Haible  <bruno@clisp.org>
35111
35112         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35113         Change mostlyclean-local rule to avoid sh syntax error from bash
35114         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
35115
35116 2006-10-23  Jim Meyering  <jim@meyering.net>
35117
35118         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
35119         in place of snprintf.
35120
35121         * modules/inttostr (Files): Add lib/uinttostr.c.
35122         * lib/uinttostr.c (inttostr): New file/function.
35123         * lib/inttostr.h (uinttostr): Declare.
35124         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
35125         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
35126         Add uinttostr.
35127         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
35128
35129 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35130
35131         * lib/canonicalize.c (ELOOP): Define if not already defined.
35132         Problem reported by Bruno Haible in
35133         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
35134
35135 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35136
35137         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
35138         Problem reported by Perry Smith and Ville Laurikari.
35139
35140         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
35141         uses.
35142
35143 2006-10-19  Bruno Haible  <bruno@clisp.org>
35144
35145         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
35146         for mingw.
35147
35148 2006-10-19  Bruno Haible  <bruno@clisp.org>
35149
35150         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
35151         Needed for mingw.
35152
35153 2006-10-19  Bruno Haible  <bruno@clisp.org>
35154
35155         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
35156
35157 2006-10-19  Bruno Haible  <bruno@clisp.org>
35158
35159         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
35160         it.
35161
35162 2006-10-19  Bruno Haible  <bruno@clisp.org>
35163
35164         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
35165         invocation.
35166
35167 2006-10-19  Bruno Haible  <bruno@clisp.org>
35168
35169         * gnulib-tool (func_create_testdir): Don't include ftruncate and
35170         mountlist by default.
35171
35172 2006-10-16  Bruno Haible  <bruno@clisp.org>
35173
35174         * lib/c-strstr.c: Include c-strstr.h.
35175
35176 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
35177
35178         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
35179         in a slash.
35180
35181 2006-10-18  Bruno Haible  <bruno@clisp.org>
35182
35183         * lib/lock.h [C++]: Wrap definitions in extern "C".
35184
35185 2006-10-18  Bruno Haible  <bruno@clisp.org>
35186
35187         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
35188         gl_LIBOBJS list.
35189
35190 2006-10-18  Bruno Haible  <bruno@clisp.org>
35191
35192         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
35193
35194 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
35195
35196         * lib/xstrtol.h: Include gettext.h.
35197         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
35198         Problem reported by Eric Blake.
35199         * modules/xstrtol (Depends-on): Add gettext-h.
35200
35201 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
35202
35203         * lib/strftime.c (advance): New macro.
35204         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
35205         incomplete type, so you can't add 0 to it.  Problem and patch
35206         reported by Eelco Dolstra for dietlibc.
35207
35208 2006-10-18  Jim Meyering  <jim@meyering.net>
35209
35210         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
35211         type for a local, and rename it: s/up/user_proc/.
35212
35213 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
35214
35215         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
35216         READ_UTMP_USER_PROCESS.
35217         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
35218
35219 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
35220
35221         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
35222         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
35223
35224 2006-10-17  Eric Blake  <ebb9@byu.net>
35225
35226         * lib/sigprocmask.c (sigprocmask): Fix typo.
35227
35228         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
35229
35230         * modules/clean-temp (Makefile.am): Don't add to make output...
35231         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
35232         config.h.
35233
35234 2006-10-17  Bruno Haible  <bruno@clisp.org>
35235
35236         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
35237         differently if DEFAULT_TEXT_DOMAIN is set.
35238
35239 2006-10-16  Bruno Haible  <bruno@clisp.org>
35240
35241         * lib/clean-temp.c: Include fwriteerror.h.
35242
35243 2006-10-16  Bruno Haible  <bruno@clisp.org>
35244
35245         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
35246
35247 2006-10-16  Bruno Haible  <bruno@clisp.org>
35248
35249         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
35250         * lib/sigprocmask.h: Include <sys/types.h>.
35251         (sigset_t): Use the system's definition if present.
35252
35253 2006-10-17  Eric Blake  <ebb9@byu.net>
35254
35255         * lib/xvasprintf.c (includes): Assume config.h.
35256         * lib/xasprintf.c (includes): Likewise.
35257
35258 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
35259
35260         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
35261         at least as wide as intmax_t.
35262
35263 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
35264
35265         (Imported from Automake.)
35266         * build-aux/gnupload: Update to version 1.1 of directive file.
35267
35268 2006-10-16  Eric Blake  <ebb9@byu.net>
35269
35270         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
35271         match Automake 1.10a.
35272
35273 2006-10-14  Bruno Haible  <bruno@clisp.org>
35274
35275         * modules/sigprocmask: New file.
35276         * lib/sigprocmask.h: New file.
35277         * lib/sigprocmask.c: New file.
35278         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
35279         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
35280         request sigprocmask.o.
35281         (gl_PREREQ_SIGPROCMASK): New macro.
35282         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
35283         (Depends-on): Add sigprocmask.
35284         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
35285         gt_SIGNALBLOCKING. Test for 'raise' only once.
35286         * lib/fatal-signal.c: Include sigprocmask.h.
35287         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
35288         unblock_fatal_signals): Define always.
35289         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
35290         sigprocmask.
35291
35292 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
35293
35294         Sync from Automake.
35295         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
35296         which incorrectly sets the mode of an existing destination
35297         directory.  In some cases the unpatched install-sh could do the
35298         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
35299         system.  We hope this is rare in practice, but it's clearly worth
35300         fixing.  Problem reported by Alex Unleashed in
35301         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
35302         Also, don't bother to check for -m bugs unless we're using -m;
35303         suggested by Stepan Kasal.
35304
35305 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35306
35307         Sync from Automake.
35308         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
35309         `-c' flag, so they appear at the same position as in %FASTDEP%
35310         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
35311         which ignores unknown options only after the first non-option.
35312         Bug report against M4 by Nelson H. F. Beebe.
35313
35314 2006-10-13  Jim Meyering  <jim@meyering.net>
35315
35316         Fix a bug in yesterday's change.
35317         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
35318         p->fts_statp->st_dev would be used uninitialized.
35319         Ensures that we always call fts_stat on the very first entry.
35320         Miklos Szeredi reported that find -xdev stopped working.
35321
35322 2006-10-12  Bruno Haible  <bruno@clisp.org>
35323
35324         * gnulib-tool (func_get_automake_snippet): Append an automatically
35325         computed EXTRA_DIST augmentation.
35326         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
35327         * modules/alloca-opt (Makefile.am): Likewise.
35328         * modules/allocsa (Makefile.am): Likewise.
35329         * modules/arcfour (Makefile.am): Likewise.
35330         * modules/arctwo (Makefile.am): Likewise.
35331         * modules/argmatch (Makefile.am): Likewise.
35332         * modules/argz (Makefile.am): Likewise.
35333         * modules/atexit (Makefile.am): Likewise.
35334         * modules/backupfile (Makefile.am): Likewise.
35335         * modules/byteswap (Makefile.am): Likewise.
35336         * modules/c-strtod (Makefile.am): Likewise.
35337         * modules/c-strtold (Makefile.am): Likewise.
35338         * modules/calloc (Makefile.am): Likewise.
35339         * modules/canon-host (Makefile.am): Likewise.
35340         * modules/canonicalize (Makefile.am): Likewise.
35341         * modules/chdir-long (Makefile.am): Likewise.
35342         * modules/chdir-safer (Makefile.am): Likewise.
35343         * modules/check-version (Makefile.am): Likewise.
35344         * modules/chown (Makefile.am): Likewise.
35345         * modules/cloexec (Makefile.am): Likewise.
35346         * modules/close-stream (Makefile.am): Likewise.
35347         * modules/closeout (Makefile.am): Likewise.
35348         * modules/crc (Makefile.am): Likewise.
35349         * modules/csharpexec (Makefile.am): Likewise.
35350         * modules/cycle-check (Makefile.am): Likewise.
35351         * modules/des (Makefile.am): Likewise.
35352         * modules/dev-ino (Makefile.am): Likewise.
35353         * modules/dirfd (Makefile.am): Likewise.
35354         * modules/dirname (Makefile.am): Likewise.
35355         * modules/dup2 (Makefile.am): Likewise.
35356         * modules/eealloc (Makefile.am): Likewise.
35357         * modules/error (Makefile.am): Likewise.
35358         * modules/euidaccess (Makefile.am): Likewise.
35359         * modules/exclude (Makefile.am): Likewise.
35360         * modules/exitfail (Makefile.am): Likewise.
35361         * modules/fcntl-safer (Makefile.am): Likewise.
35362         * modules/fcntl (Makefile.am): Likewise.
35363         * modules/file-type (Makefile.am): Likewise.
35364         * modules/fileblocks (Makefile.am): Likewise.
35365         * modules/filemode (Makefile.am): Likewise.
35366         * modules/filenamecat (Makefile.am): Likewise.
35367         * modules/fnmatch (Makefile.am): Likewise.
35368         * modules/fopen-safer (Makefile.am): Likewise.
35369         * modules/fpending (Makefile.am): Likewise.
35370         * modules/fprintftime (Makefile.am): Likewise.
35371         * modules/free (Makefile.am): Likewise.
35372         * modules/fsusage (Makefile.am): Likewise.
35373         * modules/ftruncate (Makefile.am): Likewise.
35374         * modules/fts (Makefile.am): Likewise.
35375         * modules/gc-arcfour (Makefile.am): Likewise.
35376         * modules/gc-des (Makefile.am): Likewise.
35377         * modules/gc-hmac-md5 (Makefile.am): Likewise.
35378         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
35379         * modules/gc-md4 (Makefile.am): Likewise.
35380         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35381         * modules/gc-sha1 (Makefile.am): Likewise.
35382         * modules/gc (Makefile.am): Likewise.
35383         * modules/getaddrinfo (Makefile.am): Likewise.
35384         * modules/getcwd (Makefile.am): Likewise.
35385         * modules/getdelim (Makefile.am): Likewise.
35386         * modules/getdomainname (Makefile.am): Likewise.
35387         * modules/getgroups (Makefile.am): Likewise.
35388         * modules/gethostname (Makefile.am): Likewise.
35389         * modules/gethrxtime (Makefile.am): Likewise.
35390         * modules/getline (Makefile.am): Likewise.
35391         * modules/getloadavg (Makefile.am): Likewise.
35392         * modules/getlogin_r (Makefile.am): Likewise.
35393         * modules/getndelim2 (Makefile.am): Likewise.
35394         * modules/getopt (Makefile.am): Likewise.
35395         * modules/getpagesize (Makefile.am): Likewise.
35396         * modules/getpass-gnu (Makefile.am): Likewise.
35397         * modules/getpass (Makefile.am): Likewise.
35398         * modules/getsubopt (Makefile.am): Likewise.
35399         * modules/gettime (Makefile.am): Likewise.
35400         * modules/gettimeofday (Makefile.am): Likewise.
35401         * modules/getugroups (Makefile.am): Likewise.
35402         * modules/getusershell (Makefile.am): Likewise.
35403         * modules/glob (Makefile.am): Likewise.
35404         * modules/group-member (Makefile.am): Likewise.
35405         * modules/hard-locale (Makefile.am): Likewise.
35406         * modules/hash (Makefile.am): Likewise.
35407         * modules/hmac-md5 (Makefile.am): Likewise.
35408         * modules/hmac-sha1 (Makefile.am): Likewise.
35409         * modules/human (Makefile.am): Likewise.
35410         * modules/idcache (Makefile.am): Likewise.
35411         * modules/imaxabs (Makefile.am): Likewise.
35412         * modules/imaxdiv (Makefile.am): Likewise.
35413         * modules/inet_ntop (Makefile.am): Likewise.
35414         * modules/inet_pton (Makefile.am): Likewise.
35415         * modules/intprops (Makefile.am): Likewise.
35416         * modules/inttostr (Makefile.am): Likewise.
35417         * modules/inttypes (Makefile.am): Likewise.
35418         * modules/isapipe (Makefile.am): Likewise.
35419         * modules/javaversion (Makefile.am): Likewise.
35420         * modules/lchmod (Makefile.am): Likewise.
35421         * modules/lchown (Makefile.am): Likewise.
35422         * modules/localcharset (Makefile.am): Likewise.
35423         * modules/long-options (Makefile.am): Likewise.
35424         * modules/lstat (Makefile.am): Likewise.
35425         * modules/malloc (Makefile.am): Likewise.
35426         * modules/mathl (Makefile.am): Likewise.
35427         * modules/mbchar (Makefile.am): Likewise.
35428         * modules/md2 (Makefile.am): Likewise.
35429         * modules/md4 (Makefile.am): Likewise.
35430         * modules/md5 (Makefile.am): Likewise.
35431         * modules/memcasecmp (Makefile.am): Likewise.
35432         * modules/memchr (Makefile.am): Likewise.
35433         * modules/memcmp (Makefile.am): Likewise.
35434         * modules/memcoll (Makefile.am): Likewise.
35435         * modules/memcpy (Makefile.am): Likewise.
35436         * modules/memmem (Makefile.am): Likewise.
35437         * modules/memmove (Makefile.am): Likewise.
35438         * modules/mempcpy (Makefile.am): Likewise.
35439         * modules/memrchr (Makefile.am): Likewise.
35440         * modules/memset (Makefile.am): Likewise.
35441         * modules/memxor (Makefile.am): Likewise.
35442         * modules/mkancesdirs (Makefile.am): Likewise.
35443         * modules/mkdir-p (Makefile.am): Likewise.
35444         * modules/mkdir (Makefile.am): Likewise.
35445         * modules/mkdtemp (Makefile.am): Likewise.
35446         * modules/mkstemp (Makefile.am): Likewise.
35447         * modules/mktime (Makefile.am): Likewise.
35448         * modules/modechange (Makefile.am): Likewise.
35449         * modules/mountlist (Makefile.am): Likewise.
35450         * modules/nanosleep (Makefile.am): Likewise.
35451         * modules/obstack (Makefile.am): Likewise.
35452         * modules/openat (Makefile.am): Likewise.
35453         * modules/pagealign_alloc (Makefile.am): Likewise.
35454         * modules/pathmax (Makefile.am): Likewise.
35455         * modules/physmem (Makefile.am): Likewise.
35456         * modules/poll (Makefile.am): Likewise.
35457         * modules/posixtm (Makefile.am): Likewise.
35458         * modules/posixver (Makefile.am): Likewise.
35459         * modules/putenv (Makefile.am): Likewise.
35460         * modules/quote (Makefile.am): Likewise.
35461         * modules/quotearg (Makefile.am): Likewise.
35462         * modules/raise (Makefile.am): Likewise.
35463         * modules/read-file (Makefile.am): Likewise.
35464         * modules/readline (Makefile.am): Likewise.
35465         * modules/readlink (Makefile.am): Likewise.
35466         * modules/readtokens (Makefile.am): Likewise.
35467         * modules/readutmp (Makefile.am): Likewise.
35468         * modules/realloc (Makefile.am): Likewise.
35469         * modules/regex (Makefile.am): Likewise.
35470         * modules/rename-dest-slash (Makefile.am): Likewise.
35471         * modules/rename (Makefile.am): Likewise.
35472         * modules/rijndael (Makefile.am): Likewise.
35473         * modules/rmdir (Makefile.am): Likewise.
35474         * modules/rpmatch (Makefile.am): Likewise.
35475         * modules/safe-read (Makefile.am): Likewise.
35476         * modules/safe-write (Makefile.am): Likewise.
35477         * modules/same-inode (Makefile.am): Likewise.
35478         * modules/same (Makefile.am): Likewise.
35479         * modules/save-cwd (Makefile.am): Likewise.
35480         * modules/savedir (Makefile.am): Likewise.
35481         * modules/setenv (Makefile.am): Likewise.
35482         * modules/settime (Makefile.am): Likewise.
35483         * modules/sha1 (Makefile.am): Likewise.
35484         * modules/sig2str (Makefile.am): Likewise.
35485         * modules/snprintf (Makefile.am): Likewise.
35486         * modules/stat-macros (Makefile.am): Likewise.
35487         * modules/stat-time (Makefile.am): Likewise.
35488         * modules/stdbool (Makefile.am): Likewise.
35489         * modules/stdint (Makefile.am): Likewise.
35490         * modules/stdlib-safer (Makefile.am): Likewise.
35491         * modules/stpcpy (Makefile.am): Likewise.
35492         * modules/stpncpy (Makefile.am): Likewise.
35493         * modules/strcase (Makefile.am): Likewise.
35494         * modules/strcasestr (Makefile.am): Likewise.
35495         * modules/strchrnul (Makefile.am): Likewise.
35496         * modules/strcspn (Makefile.am): Likewise.
35497         * modules/strdup (Makefile.am): Likewise.
35498         * modules/strerror (Makefile.am): Likewise.
35499         * modules/strftime (Makefile.am): Likewise.
35500         * modules/strndup (Makefile.am): Likewise.
35501         * modules/strnlen (Makefile.am): Likewise.
35502         * modules/strpbrk (Makefile.am): Likewise.
35503         * modules/strsep (Makefile.am): Likewise.
35504         * modules/strstr (Makefile.am): Likewise.
35505         * modules/strtod (Makefile.am): Likewise.
35506         * modules/strtoimax (Makefile.am): Likewise.
35507         * modules/strtok_r (Makefile.am): Likewise.
35508         * modules/strtol (Makefile.am): Likewise.
35509         * modules/strtoll (Makefile.am): Likewise.
35510         * modules/strtoul (Makefile.am): Likewise.
35511         * modules/strtoull (Makefile.am): Likewise.
35512         * modules/strtoumax (Makefile.am): Likewise.
35513         * modules/strverscmp (Makefile.am): Likewise.
35514         * modules/sys_socket (Makefile.am): Likewise.
35515         * modules/sys_stat (Makefile.am): Likewise.
35516         * modules/sysexits (Makefile.am): Likewise.
35517         * modules/time_r (Makefile.am): Likewise.
35518         * modules/timegm (Makefile.am): Likewise.
35519         * modules/timespec (Makefile.am): Likewise.
35520         * modules/tmpfile-safer (Makefile.am): Likewise.
35521         * modules/trim (Makefile.am): Likewise.
35522         * modules/unistd-safer (Makefile.am): Likewise.
35523         * modules/unlinkdir (Makefile.am): Likewise.
35524         * modules/unlocked-io (Makefile.am): Likewise.
35525         * modules/userspec (Makefile.am): Likewise.
35526         * modules/utime (Makefile.am): Likewise.
35527         * modules/utimecmp (Makefile.am): Likewise.
35528         * modules/utimens (Makefile.am): Likewise.
35529         * modules/vasnprintf (Makefile.am): Likewise.
35530         * modules/vasprintf (Makefile.am): Likewise.
35531         * modules/vsnprintf (Makefile.am): Likewise.
35532         * modules/xalloc (Makefile.am): Likewise.
35533         * modules/xgetcwd (Makefile.am): Likewise.
35534         * modules/xnanosleep (Makefile.am): Likewise.
35535         * modules/xreadlink (Makefile.am): Likewise.
35536         * modules/xstrtod (Makefile.am): Likewise.
35537         * modules/xstrtol (Makefile.am): Likewise.
35538         * modules/xstrtold (Makefile.am): Likewise.
35539         * modules/yesno (Makefile.am): Likewise.
35540         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
35541
35542 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35543
35544         * modules/error (Makefile.am): Distribute files through
35545         EXTRA_DIST, not lib_SOURCES.
35546
35547 2006-10-12  Eric Blake  <ebb9@byu.net>
35548
35549         * modules/error (Makefile.am): Distribute files in /lib.
35550         * modules/obstack (Makefile.am): Likewise.
35551
35552 2006-10-12  Bruno Haible  <bruno@clisp.org>
35553
35554         * modules/acl (Makefile.am): Distribute all files in lib/ through
35555         EXTRA_DIST.
35556         * modules/arcfour (Makefile.am): Likewise.
35557         * modules/arctwo (Makefile.am): Likewise.
35558         * modules/argmatch (Makefile.am): Likewise.
35559         * modules/argz (Makefile.am): Likewise.
35560         * modules/atexit (Makefile.am): Likewise.
35561         * modules/backupfile (Makefile.am): Likewise.
35562         * modules/c-strtod (Makefile.am): Likewise.
35563         * modules/c-strtold (Makefile.am): Likewise.
35564         * modules/calloc (Makefile.am): Likewise.
35565         * modules/canon-host (Makefile.am): Likewise.
35566         * modules/canonicalize (Makefile.am): Likewise.
35567         * modules/chdir-long (Makefile.am): Likewise.
35568         * modules/chdir-safer (Makefile.am): Likewise.
35569         * modules/check-version (Makefile.am): Likewise.
35570         * modules/chown (Makefile.am): Likewise.
35571         * modules/cloexec (Makefile.am): Likewise.
35572         * modules/close-stream (Makefile.am): Likewise.
35573         * modules/closeout (Makefile.am): Likewise.
35574         * modules/crc (Makefile.am): Likewise.
35575         * modules/cycle-check (Makefile.am): Likewise.
35576         * modules/des (Makefile.am): Likewise.
35577         * modules/dirfd (Makefile.am): Likewise.
35578         * modules/dirname (Makefile.am): Likewise.
35579         * modules/dup2 (Makefile.am): Likewise.
35580         * modules/euidaccess (Makefile.am): Likewise.
35581         * modules/exclude (Makefile.am): Likewise.
35582         * modules/exitfail (Makefile.am): Likewise.
35583         * modules/fcntl-safer (Makefile.am): Likewise.
35584         * modules/file-type (Makefile.am): Likewise.
35585         * modules/fileblocks (Makefile.am): Likewise.
35586         * modules/filemode (Makefile.am): Likewise.
35587         * modules/filenamecat (Makefile.am): Likewise.
35588         * modules/fnmatch (Makefile.am): Likewise.
35589         * modules/fopen-safer (Makefile.am): Likewise.
35590         * modules/fpending (Makefile.am): Likewise.
35591         * modules/fprintftime (Makefile.am): Likewise.
35592         * modules/free (Makefile.am): Likewise.
35593         * modules/fsusage (Makefile.am): Likewise.
35594         * modules/ftruncate (Makefile.am): Likewise.
35595         * modules/fts (Makefile.am): Likewise.
35596         * modules/gc (Makefile.am): Likewise.
35597         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35598         * modules/getaddrinfo (Makefile.am): Likewise.
35599         * modules/getcwd (Makefile.am): Likewise.
35600         * modules/getdelim (Makefile.am): Likewise.
35601         * modules/getdomainname (Makefile.am): Likewise.
35602         * modules/getgroups (Makefile.am): Likewise.
35603         * modules/gethostname (Makefile.am): Likewise.
35604         * modules/gethrxtime (Makefile.am): Likewise.
35605         * modules/getline (Makefile.am): Likewise.
35606         * modules/getloadavg (Makefile.am): Likewise.
35607         * modules/getlogin_r (Makefile.am): Likewise.
35608         * modules/getopt (Makefile.am): Likewise.
35609         * modules/getpass (Makefile.am): Likewise.
35610         * modules/getpass-gnu (Makefile.am): Likewise.
35611         * modules/getsubopt (Makefile.am): Likewise.
35612         * modules/gettime (Makefile.am): Likewise.
35613         * modules/gettimeofday (Makefile.am): Likewise.
35614         * modules/getugroups (Makefile.am): Likewise.
35615         * modules/getusershell (Makefile.am): Likewise.
35616         * modules/glob (Makefile.am): Likewise.
35617         * modules/group-member (Makefile.am): Likewise.
35618         * modules/hard-locale (Makefile.am): Likewise.
35619         * modules/hash (Makefile.am): Likewise.
35620         * modules/hmac-md5 (Makefile.am): Likewise.
35621         * modules/hmac-sha1 (Makefile.am): Likewise.
35622         * modules/human (Makefile.am): Likewise.
35623         * modules/idcache (Makefile.am): Likewise.
35624         * modules/imaxabs (Makefile.am): Likewise.
35625         * modules/imaxdiv (Makefile.am): Likewise.
35626         * modules/inet_ntop (Makefile.am): Likewise.
35627         * modules/inet_pton (Makefile.am): Likewise.
35628         * modules/inttostr (Makefile.am): Likewise.
35629         * modules/isapipe (Makefile.am): Likewise.
35630         * modules/lchown (Makefile.am): Likewise.
35631         * modules/long-options (Makefile.am): Likewise.
35632         * modules/lstat (Makefile.am): Likewise.
35633         * modules/malloc (Makefile.am): Likewise.
35634         * modules/mathl (Makefile.am): Likewise.
35635         * modules/mbchar (Makefile.am): Likewise.
35636         * modules/md2 (Makefile.am): Likewise.
35637         * modules/md4 (Makefile.am): Likewise.
35638         * modules/md5 (Makefile.am): Likewise.
35639         * modules/memcasecmp (Makefile.am): Likewise.
35640         * modules/memchr (Makefile.am): Likewise.
35641         * modules/memcmp (Makefile.am): Likewise.
35642         * modules/memcoll (Makefile.am): Likewise.
35643         * modules/memcpy (Makefile.am): Likewise.
35644         * modules/memmem (Makefile.am): Likewise.
35645         * modules/memmove (Makefile.am): Likewise.
35646         * modules/mempcpy (Makefile.am): Likewise.
35647         * modules/memrchr (Makefile.am): Likewise.
35648         * modules/memset (Makefile.am): Likewise.
35649         * modules/memxor (Makefile.am): Likewise.
35650         * modules/mkancesdirs (Makefile.am): Likewise.
35651         * modules/mkdir (Makefile.am): Likewise.
35652         * modules/mkdir-p (Makefile.am): Likewise.
35653         * modules/mkdtemp (Makefile.am): Likewise.
35654         * modules/mkstemp (Makefile.am): Likewise.
35655         * modules/mktime (Makefile.am): Likewise.
35656         * modules/modechange (Makefile.am): Likewise.
35657         * modules/mountlist (Makefile.am): Likewise.
35658         * modules/nanosleep (Makefile.am): Likewise.
35659         * modules/openat (Makefile.am): Likewise.
35660         * modules/pagealign_alloc (Makefile.am): Likewise.
35661         * modules/physmem (Makefile.am): Likewise.
35662         * modules/poll (Makefile.am): Likewise.
35663         * modules/posixtm (Makefile.am): Likewise.
35664         * modules/posixver (Makefile.am): Likewise.
35665         * modules/putenv (Makefile.am): Likewise.
35666         * modules/quote (Makefile.am): Likewise.
35667         * modules/quotearg (Makefile.am): Likewise.
35668         * modules/raise (Makefile.am): Likewise.
35669         * modules/read-file (Makefile.am): Likewise.
35670         * modules/readline (Makefile.am): Likewise.
35671         * modules/readlink (Makefile.am): Likewise.
35672         * modules/readtokens (Makefile.am): Likewise.
35673         * modules/readutmp (Makefile.am): Likewise.
35674         * modules/realloc (Makefile.am): Likewise.
35675         * modules/regex (Makefile.am): Likewise.
35676         * modules/rename (Makefile.am): Likewise.
35677         * modules/rename-dest-slash (Makefile.am): Likewise.
35678         * modules/rijndael (Makefile.am): Likewise.
35679         * modules/rmdir (Makefile.am): Likewise.
35680         * modules/rpmatch (Makefile.am): Likewise.
35681         * modules/safe-read (Makefile.am): Likewise.
35682         * modules/safe-write (Makefile.am): Likewise.
35683         * modules/same (Makefile.am): Likewise.
35684         * modules/save-cwd (Makefile.am): Likewise.
35685         * modules/savedir (Makefile.am): Likewise.
35686         * modules/setenv (Makefile.am): Likewise.
35687         * modules/settime (Makefile.am): Likewise.
35688         * modules/sha1 (Makefile.am): Likewise.
35689         * modules/sig2str (Makefile.am): Likewise.
35690         * modules/snprintf (Makefile.am): Likewise.
35691         * modules/stdlib-safer (Makefile.am): Likewise.
35692         * modules/stpcpy (Makefile.am): Likewise.
35693         * modules/stpncpy (Makefile.am): Likewise.
35694         * modules/strcase (Makefile.am): Likewise.
35695         * modules/strcasestr (Makefile.am): Likewise.
35696         * modules/strchrnul (Makefile.am): Likewise.
35697         * modules/strcspn (Makefile.am): Likewise.
35698         * modules/strdup (Makefile.am): Likewise.
35699         * modules/strerror (Makefile.am): Likewise.
35700         * modules/strftime (Makefile.am): Likewise.
35701         * modules/strndup (Makefile.am): Likewise.
35702         * modules/strnlen (Makefile.am): Likewise.
35703         * modules/strpbrk (Makefile.am): Likewise.
35704         * modules/strsep (Makefile.am): Likewise.
35705         * modules/strstr (Makefile.am): Likewise.
35706         * modules/strtod (Makefile.am): Likewise.
35707         * modules/strtoimax (Makefile.am): Likewise.
35708         * modules/strtok_r (Makefile.am): Likewise.
35709         * modules/strtol (Makefile.am): Likewise.
35710         * modules/strtoll (Makefile.am): Likewise.
35711         * modules/strtoul (Makefile.am): Likewise.
35712         * modules/strtoull (Makefile.am): Likewise.
35713         * modules/strtoumax (Makefile.am): Likewise.
35714         * modules/strverscmp (Makefile.am): Likewise.
35715         * modules/time_r (Makefile.am): Likewise.
35716         * modules/timegm (Makefile.am): Likewise.
35717         * modules/tmpfile-safer (Makefile.am): Likewise.
35718         * modules/unistd-safer (Makefile.am): Likewise.
35719         * modules/unlinkdir (Makefile.am): Likewise.
35720         * modules/userspec (Makefile.am): Likewise.
35721         * modules/utime (Makefile.am): Likewise.
35722         * modules/utimecmp (Makefile.am): Likewise.
35723         * modules/utimens (Makefile.am): Likewise.
35724         * modules/vasnprintf (Makefile.am): Likewise.
35725         * modules/vasprintf (Makefile.am): Likewise.
35726         * modules/vsnprintf (Makefile.am): Likewise.
35727         * modules/xalloc (Makefile.am): Likewise.
35728         * modules/xgetcwd (Makefile.am): Likewise.
35729         * modules/xnanosleep (Makefile.am): Likewise.
35730         * modules/xreadlink (Makefile.am): Likewise.
35731         * modules/xstrtod (Makefile.am): Likewise.
35732         * modules/xstrtol (Makefile.am): Likewise.
35733         * modules/xstrtold (Makefile.am): Likewise.
35734         * modules/yesno (Makefile.am): Likewise.
35735
35736 2006-10-12  Jim Meyering  <jim@meyering.net>
35737
35738         * m4/getloadavg.m4: Revert the change below.
35739
35740         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
35741         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
35742         fail with a symlink, which is what coreutils' ./bootstrap now
35743         creates by default.
35744
35745 2006-10-12  Bruno Haible  <bruno@clisp.org>
35746
35747         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
35748         mingw.
35749         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
35750         MSVC and mingw explicitly.
35751
35752 2006-10-11  Simon Josefsson  <jas@extundo.com>
35753             Bruno Haible  <bruno@clisp.org>
35754
35755         Add support for multiple gnulib-tool invocations in the scope of a
35756         single configure.ac file.
35757         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
35758         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
35759         with the same contents as the _LIBADD variable.
35760         (func_emit_initmacro_start, func_emit_initmacro_end,
35761         func_emit_initmacro_done): New functions.
35762         (func_import, func_create_testdir): Invoke them. Allow the identifiers
35763         gl_LIBOBJS and gl_LTLIBOBJS.
35764
35765 2006-10-11  Bruno Haible  <bruno@clisp.org>
35766
35767         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
35768         (func_create_testdir): Don't create po/Makefile.am, don't invoke
35769         autoreconf. Instead, invoke autopoint explicitly but move back the
35770         *.m4 files from gnulib.
35771
35772 2006-10-11  Bruno Haible  <bruno@clisp.org>
35773
35774         * gnulib-tool (func_usage): Make module names after --create-testdir
35775         optional.
35776         (func_create_testdir): If no module was specified, use nearly all
35777         modules.
35778
35779 2006-10-12  Jim Meyering  <jim@meyering.net>
35780
35781         Big performance improvement for fts-based tools that use FTS_NOSTAT.
35782         Avoid spurious inode-mismatch problems on non-POSIX file systems.
35783         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
35784         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
35785         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
35786         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
35787         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
35788         (fts_set_stat_required): New function.
35789         (fts_open): Defer the calls to fts_stat, if possible or requested.
35790         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
35791         into fts_stat itself.
35792         (fts_read): Perform any required (deferred) fts_stat call.
35793         (fts_build): Likewise, for the directory we're about to open and read.
35794         In the readdir loop, carefully decide whether each entry will require
35795         an eventual call to fts_stat, using dirent.d_type info if available.
35796         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
35797         a command line argument into this function.  Update all callers.
35798         Map a return value of FTS_DOT to FTS_D for a command line argument.
35799         * modules/fts (Depends-on): Add d-type.  Alphabetize.
35800         Thanks to Miklos Szeredi for his tenacity and for the initial
35801         bug report about "find" failing on a FUSE-based file system.
35802
35803         * lib/fts.c (fts_open): Use consistent indentation.
35804
35805 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35806
35807         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
35808         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
35809         reported by Jim Meyering.  All uses of cache variables renamed
35810         to match Autoconf's.
35811         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
35812         the other one.
35813
35814         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
35815         Fix misspelling in diagnostic.
35816
35817 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35818
35819         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
35820         defined.  Problem reported by Matthew Woehlke.
35821
35822         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
35823         Add support for Tandem NonStop R series.
35824         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
35825         Use new macro.
35826
35827         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
35828         (has_trailing_slash): Omit size arg; all callers changed.
35829         Omit 'inline', since it doesn't help performance and we'd
35830         need to configure it.
35831         Don't count //, ///, etc. as having a trailing slash.
35832         As a side effect, this removes a C99ism reported by Matthew Woehlke.
35833         (rpl_rename_dest_slash): On failure, use rename's errno rather
35834         than (in some cases) an incorrect or junk errno.
35835         Simplify code by removing need to compute length; this does
35836         cause it to make two passes instead of one over the file name,
35837         but it's worth it.
35838
35839         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
35840         change, since Autoconf's version may no longer be appropriate now
35841         that we are using CVS Autoconf's version.  Add support for Tandem.
35842
35843 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35844             Bruno Haible  <bruno@clisp.org>
35845
35846         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
35847         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
35848         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
35849         gl_AC_TYPE_LONG_LONG.
35850
35851         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
35852         instead of HAVE_LONG_LONG.
35853         * lib/printf-args.c (printf_fetchargs): Likewise.
35854         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
35855         * lib/vasnprintf.c (VASNPRINTF): Likewise.
35856         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
35857         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
35858         gl_AC_TYPE_LONG_LONG.
35859
35860 2006-10-11  Bruno Haible  <bruno@clisp.org>
35861
35862         * m4/longlong.m4: Add comments.
35863         * m4/ulonglong.m4: Likewise.
35864
35865 2006-10-10  Bruno Haible  <bruno@clisp.org>
35866
35867         Make it possible to #define stpcpy, strdup to aliases.
35868         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
35869         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
35870
35871 2006-10-10  Bruno Haible  <bruno@clisp.org>
35872
35873         Make it possible to #define gcd to an alias.
35874         * lib/gcd.c: Include config.h.
35875
35876 2006-10-10  Bruno Haible  <bruno@clisp.org>
35877
35878         Make it possible to #define c_isascii to an alias.
35879         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
35880         defined. Undefine the macros before defining them, to avoid gcc
35881         warnings.
35882         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
35883         define NO_C_CTYPE_MACROS early.
35884
35885 2006-10-10  Bruno Haible  <bruno@clisp.org>
35886
35887         Make it possible to #define set_program_name to an alias.
35888         * lib/progname.c: Don't undefine set_program_name; instead, undefine
35889         ENABLE_RELOCATABLE early.
35890
35891 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
35892
35893         Port to Tandem NSK OSS, which has 64-bit signed int but at most
35894         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
35895         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
35896         More generally, don't assume that 64-bit signed int is available
35897         if unsigned int is, and vice versa.
35898         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
35899         unsigned symbols, not on their signed counterparts.
35900         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
35901         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
35902         (UINT64_C, UINTMAX_C):
35903         Likewise.
35904         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
35905         unsigned counterparts.
35906         (Have_long_long, Unsigned): New macros.
35907         (Int): Renamed from INT.
35908         (strtoimax): Use the new macros.
35909         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
35910         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
35911         * modules/inttypes (inttypes.h): Substitute
35912         HAVE_UNSIGNED_LONG_LONG_INT.
35913         * modules/stdint (stdint.h): Likewise.
35914         (Files): Add m4/ulonglong.m4.
35915
35916 2006-10-10  Bruno Haible  <bruno@clisp.org>
35917
35918         Fix a gcc -Wshadow warning.
35919         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
35920         to 'bucket'.
35921         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
35922         gl_linked_indexof_from_to): Likewise.
35923         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
35924         Likewise.
35925         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
35926         Likewise.
35927         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
35928         Reported by Eric Blake.
35929
35930 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
35931
35932         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
35933         for NetBSD.  Problem reported by Bruno Haible.
35934
35935 2006-10-09  Jim Meyering  <jim@meyering.net>
35936
35937         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
35938         Patch from Bruno Haible.
35939
35940 2006-10-09  Jim Meyering  <jim@meyering.net>
35941
35942         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
35943         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
35944         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
35945
35946 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
35947
35948         Don't include <config.h> twice; this doesn't work in some cases,
35949         e.g., when config.h has "#define intmax_t long long int" and
35950         we include <config.h>, <inttypes.h>, <config.h> in that order.
35951         Problem reported by Matthew Woehlke in:
35952         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
35953         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
35954         * lib/fts-cycle.c: Don't include config.h.
35955         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
35956         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
35957         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
35958         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
35959         inttypes.h.
35960         * lib/xstrtoumax.c: Likewise.
35961         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
35962         __strtol and the like, so that this module is more like its siblings.
35963         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
35964         Remove; no longer needed now that we assume gnulib inttypes.h.
35965
35966 2006-10-08  Bruno Haible  <bruno@clisp.org>
35967
35968         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
35969         option.
35970
35971 2006-10-07  Jim Meyering  <jim@meyering.net>
35972
35973         * modules/inttypes (inttypes.h): Revert what seems to have been
35974         an inadvertent part of today's change: use "|", not "/" in the
35975         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
35976
35977 2006-10-07  Bruno Haible  <bruno@clisp.org>
35978
35979         * modules/sublist: New file.
35980
35981 2006-10-07  Bruno Haible  <bruno@clisp.org>
35982
35983         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
35984         * modules/argz (argz.h): Likewise.
35985         * modules/arpa_inet (arpa/inet.h): Likewise.
35986         * modules/byteswap (byteswap.h): Likewise.
35987         * modules/configmake (configmake.h): Likewise.
35988         * modules/fcntl (fcntl.h): Likewise.
35989         * modules/fnmatch (fnmatch.h): Likewise.
35990         * modules/getopt (getopt.h): Likewise.
35991         * modules/glob (glob.h): Likewise.
35992         * modules/inttypes (inttypes.h): Likewise.
35993         * modules/netinet_in (netinet/in.h): Likewise.
35994         * modules/poll (poll.h): Likewise.
35995         * modules/stdbool (stdbool.h): Likewise.
35996         * modules/stdint (stdint.h): Likewise.
35997         * modules/sys_select (sys/select.h): Likewise.
35998         * modules/sys_socket (sys/socket.h): Likewise.
35999         * modules/sys_stat (sys/stat.h): Likewise.
36000         * modules/sysexits (sysexits.h): Likewise.
36001         * modules/unistd (unistd.h): Likewise.
36002         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
36003         Add a "DO NOT EDIT" comment to the generated file.
36004         (func_import): Likewise for gnulib-comp.m4.
36005
36006 2006-10-07  Bruno Haible  <bruno@clisp.org>
36007
36008         * lib/gl_sublist.h: New file.
36009         * lib/gl_sublist.c: New file.
36010
36011 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
36012
36013         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
36014         name (relative to the original working directory) and the file
36015         name component (relative to the temporary working directory).  All
36016         callers changed.
36017         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
36018         * lib/mkdir-p.c (make_dir_parents): Likewise.
36019         * lib/mkdir-p.h (make_dir_parents): Likewise.
36020
36021 2006-10-06  Eric Blake  <ebb9@byu.net>
36022
36023         Define several macros for use by the clean-temp module.
36024         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
36025         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
36026         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
36027
36028         * lib/clean-temp.h (close_stream_temp): New declaration.
36029         * lib/clean-temp.c (includes): Pull in headers according to what
36030         other modules are in use.
36031         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
36032
36033 2006-10-06  Bruno Haible  <bruno@clisp.org>
36034
36035         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
36036         instead of fopen, fwriteerror.
36037
36038 2006-10-06  Bruno Haible  <bruno@clisp.org>
36039
36040         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
36041         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
36042         int.
36043         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
36044         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
36045         Return an error indicator.
36046         Suggested by Eric Blake.
36047
36048 2006-10-06  Bruno Haible  <bruno@clisp.org>
36049
36050         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
36051         Reported by Eric Blake.
36052
36053 2006-10-06  Bruno Haible  <bruno@clisp.org>
36054
36055         * modules/closeout (Description): Mention stderr too.
36056
36057 2006-10-06  Bruno Haible  <bruno@clisp.org>
36058         and Paul Eggert  <eggert@cs.ucla.edu>
36059
36060         * lib/closeout.c (close_stdout): Also close stderr.
36061         * lib/closeout.h: Update comment.
36062
36063 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
36064
36065         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
36066         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
36067         * lib/dirchownmod.c: Include lchown.h.
36068         * lib/lchown.c: Don't include files that lchown.h now includes.
36069         Don't declare chown, since lchown.h now does that.
36070         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
36071         (lchown): Define to rpl_chown if lchown is declared but
36072         does not exist.  Declare using a prototype if lchown is not
36073         declared.  Add a copyright notice.
36074         * lib/mkstemp.h: Include <unistd.h>.
36075         * lib/openat.c: Include lchown.h.
36076
36077         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
36078         we now test for that separately.
36079         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
36080         rather than O_NOFOLLOW, when testing whether it's possible to
36081         avoid a race condition reliably.
36082         * lib/savewd.c (savewd_chdir): Likewise.
36083
36084         Remove macros that are no longer needed now that stdint.h is
36085         reliable.
36086         * lib/fsusage.c (UINTMAX_MAX): Remove.
36087         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
36088         * lib/utimecmp.c (SIZE_MAX): Remove.
36089
36090         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
36091
36092         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
36093         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
36094         O_NOATIME works.
36095
36096 2006-10-05  Bruno Haible  <bruno@clisp.org>
36097
36098         * lib/gl_list.h (gl_sortedlist_search_from_to,
36099         gl_sortedlist_indexof_from_to): New declarations.
36100         (gl_list_implementation): New fields sortedlist_search_from_to,
36101         sortedlist_indexof_from_to.
36102         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
36103         inline functions.
36104         * lib/gl_list.c (gl_sortedlist_search_from_to,
36105         gl_sortedlist_indexof_from_to): New functions.
36106         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
36107         function.
36108         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
36109         (gl_array_sortedlist_search_from_to): New function.
36110         (gl_array_list_implementation): Update.
36111         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
36112         function.
36113         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
36114         (gl_carray_sortedlist_search_from_to): New function.
36115         (gl_carray_list_implementation): Update.
36116         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
36117         gl_linked_sortedlist_indexof_from_to): New functions.
36118         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36119         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36120         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
36121         gl_tree_sortedlist_indexof_from_to): New functions.
36122         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36123         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36124         Update.
36125         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36126         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
36127         Update.
36128
36129 2006-10-05  Bruno Haible  <bruno@clisp.org>
36130
36131         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
36132         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
36133         (struct gl_list_implementation): Add fields search_from_to,
36134         indexof_from_to. Remove fields search, indexof.
36135         (gl_list_search): Use the search_from_to method.
36136         (gl_list_search_from, gl_list_search_from_to): New functions.
36137         (gl_list_indexof): Use the indexof_from_to method.
36138         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36139         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
36140         (gl_list_search_from, gl_list_search_from_to): New functions.
36141         (gl_list_indexof): Use the indexof_from_to method.
36142         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36143         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
36144         gl_array_indexof. Add start_index, end_index arguments.
36145         (gl_array_search_from_to): Renamed from gl_array_search. Add
36146         start_index, end_index arguments.
36147         (gl_array_remove, gl_array_list_implementation): Update.
36148         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
36149         gl_carray_indexof. Add start_index, end_index arguments.
36150         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
36151         start_index, end_index arguments.
36152         (gl_carray_remove, gl_carray_list_implementation): Update.
36153         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
36154         gl_linked_search. Add start_index, end_index arguments.
36155         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
36156         start_index, end_index arguments.
36157         (gl_linked_remove): Update.
36158         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36159         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36160         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
36161         field to 'size_t'.
36162         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
36163         gl_tree_search. Add start_index, end_index arguments.
36164         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36165         start_index, end_index arguments.
36166         (gl_tree_remove): Update.
36167         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36168         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36169         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
36170         function.
36171         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
36172         gl_tree_search. Add start_index, end_index arguments.
36173         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36174         start_index, end_index arguments.
36175         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36176         Update.
36177         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
36178
36179 2006-10-05  Bruno Haible  <bruno@clisp.org>
36180
36181         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
36182
36183         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
36184         fwriteerror_temp): New declarations.
36185         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
36186         (descriptors): New variable.
36187         (cleanup): First, close the descriptors.
36188         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
36189         fclose_temp, fwriteerror_temp): New functions.
36190
36191 2006-10-04  Jim Meyering  <jim@meyering.net>
36192
36193         * lib/fts.c (fts_open): Tiny comment change.
36194
36195 2006-10-04  Bruno Haible  <bruno@clisp.org>
36196
36197         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
36198         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
36199         gl_LOCK_BODY.
36200         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
36201         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
36202         gl_LOCK_EARLY_BODY.
36203         (gl_LOCK): Require gl_LOCK_BODY.
36204
36205 2006-10-04  Bruno Haible  <bruno@clisp.org>
36206
36207         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
36208         (gl_oset_search_atleast): New declaration.
36209         (struct gl_oset_implementation): Add field 'search_atleast'.
36210         (gl_oset_search_atleast): New inline function.
36211         * lib/gl_oset.c (gl_oset_search_atleast): New function.
36212         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
36213         (gl_array_oset_implementation): Update.
36214         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
36215         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
36216         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
36217
36218 2006-10-04  Bruno Haible  <bruno@clisp.org>
36219
36220         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
36221
36222 2006-10-03  Bruno Haible  <bruno@clisp.org>
36223
36224         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
36225         from gl_avltreehash_list_implementation.
36226
36227 2006-10-03  Bruno Haible  <bruno@clisp.org>
36228
36229         * lib/gl_oset.c (gl_oset_add): Fix return type.
36230
36231 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
36232
36233         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
36234
36235 2006-10-02  Eric Blake  <ebb9@byu.net>
36236
36237         * modules/strnlen (Depends-on): Add extensions.
36238
36239 2006-10-02  Eric Blake  <ebb9@byu.net>
36240
36241         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
36242         definition in 2.60+.
36243
36244 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
36245
36246         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
36247         checks.
36248
36249 2006-10-02  Bruno Haible  <bruno@clisp.org>
36250
36251         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
36252         to the AUTOMAKE_OPTIONS.
36253         Reported by Jim Meyering.
36254
36255 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
36256
36257         Work around bug in Solaris 10 /proc file system:
36258         /proc/self/fd/NNN/.. isn't the parent directory of
36259         the directory whose file descriptor is NNN.  This needs to
36260         be worked around at run time, not compile time, since a
36261         program might be built on Solaris 8, where things work, and
36262         run on Solaris 10.
36263         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
36264         to use the following interface instead:
36265         (OPENAT_BUFFER_SIZE): New macro.
36266         (openat_proc_name): New function.
36267         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
36268         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
36269         Likewise.
36270         * lib/openat-proc.c: New file.
36271         * modules/openat (Files): Add lib/openat-proc.c.
36272         (Depends-on): Add same-inode, stdbool.
36273         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
36274
36275 2006-09-29  Bruno Haible  <bruno@clisp.org>
36276
36277         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
36278         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
36279         argument. Set stdout_closed before testing for ferror, not after.
36280         (fwriteerror, fwriteerror_no_ebadf): New functions.
36281
36282 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36283
36284         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
36285
36286 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
36287
36288         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
36289         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
36290
36291 2006-09-28  Jim Meyering  <jim@meyering.net>
36292
36293         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
36294         Include <unistd.h>.
36295
36296 2006-09-28  Bruno Haible  <bruno@clisp.org>
36297
36298         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
36299         * modules/linkedhash-list (Depends-on): Likewise.
36300         * modules/rbtreehash-list (Depends-on): Likewise.
36301
36302 2006-09-28  Bruno Haible  <bruno@clisp.org>
36303
36304         * lib/strndup.h: Simplify the redefinition of strndup.
36305         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
36306         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
36307
36308 2006-09-28  Bruno Haible  <bruno@clisp.org>
36309
36310         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
36311         * lib/gl_linkedhash_list.c: Likewise.
36312         * lib/gl_rbtreehash_list.c: Likewise.
36313
36314 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
36315
36316         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
36317         getaddrinfo.
36318
36319         * lib/__fpending.h: Don't include <stdio_ext.h> unless
36320         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
36321         it causes <stdio_ext.h> to cause a compile-time error.
36322         Problem reported by Nelson H. F. Beebe.
36323         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
36324         of HAVE_DECL___PENDING.
36325
36326         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
36327         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
36328         declaration.
36329
36330 2006-09-27  Jim Meyering  <jim@meyering.net>
36331
36332         This file could end up with a definition for a function
36333         named __strndup, rather than rpl_strndup on a system with
36334         incomplete weak_alias support.
36335         * lib/strndup.c (strndup): Rename from __strndup.
36336         Remove #defines that used to map __strndup to strndup.
36337         Don't use K&R prototypes.
36338         Remove LIBC-related code, since this file is not sync'd with glibc.
36339         * lib/strndup.h: Revamp, accordingly.
36340         * m4/strndup.m4: Modernize.
36341
36342 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
36343
36344         * modules/savewd (Depends-on): Add 'raise'.
36345         * lib/savewd.c: Include <signal.h>, for 'raise'.
36346
36347 2006-09-26  Jim Meyering  <jim@meyering.net>
36348
36349         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
36350         when we detect Darwin 8.7.0's acl_get_file bug.
36351         Rearrange to perform the new (below) run-test while $LIBS
36352         contains any acl-related library.  Set USE_ACL at the end.
36353         (gl_ACL_GET_FILE): New function.
36354
36355 2006-09-26  Eric Blake  <ebb9@byu.net>
36356
36357         * lib/verror.c: Include <config.h> unconditionally.
36358
36359 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
36360
36361         * modules/clock-time (Maintainer): Add self.
36362         * modules/getlogin_r (Depends-on): Add extensions.
36363
36364 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36365
36366         * modules/clock-time: New module.
36367         * modules/nanosleep (Depends-on): Add clock-time.
36368         * modules/gethrxtime (Depends-on): Likewise.
36369         * modules/gettime (Depends-on): Likewise.
36370         * modules/settime (Depends-on): Likewise.
36371
36372         * modules/fts-lgpl: Depend on openat.
36373         * modules/mkancesdirs: Depend on savewd.
36374         * modules/mkdir-p: Likewise.
36375
36376 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36377
36378         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
36379
36380         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
36381         `gl_have_arbitrary_file_name_length_limit' to
36382         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
36383         actually works between configure runs.
36384
36385 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36386             Bruno Haible  <bruno@clisp.org>
36387
36388         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
36389
36390 2006-09-25  Jim Meyering  <jim@meyering.net>
36391
36392         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
36393         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
36394
36395 2006-09-25  Eric Blake  <ebb9@byu.net>
36396
36397         * gnulib-tool (func_import, func_create_testdir): Fix typos in
36398         exec's in 2006-09-18 patch when shuffling fds.
36399
36400 2006-09-25  Bruno Haible  <bruno@clisp.org>
36401
36402         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
36403         Reported by Jim Meyering.
36404
36405 2006-09-24  Jim Meyering  <jim@meyering.net>
36406
36407         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
36408         compare a pointer against a literal "0".  That caused failures with
36409         at least HP-UX's hpcc.
36410
36411 2006-09-22  Simon Josefsson  <jas@extundo.com>
36412
36413         * modules/gc-sha1:
36414         * modules/gc-md4:
36415         * modules/gc-hmac-sha1:
36416         * modules/gc-hmac-md5:
36417         * modules/gc-des:
36418         * modules/gc-arcfour: Distribute more files.
36419
36420 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36421
36422         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
36423         (gl_linked_iterator_from_to): Initialize struct completely.
36424         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
36425         (gl_tree_iterator_from_to): Likewise
36426         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
36427         * lib/gl_array_list.c [lint] (gl_array_iterator)
36428         (gl_array_iterator_from_to): Likewise.
36429         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
36430         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
36431         (gl_carray_iterator_from_to): Likewise.
36432
36433         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
36434         * lib/md4.c (md4_process_block): Remove unused variable.
36435         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
36436         parentheses for clarity.
36437
36438 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36439
36440         * modules/bison-i18n (Depends-on): Add gettext.
36441
36442 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36443
36444         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
36445         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
36446         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
36447         also add missing comma that caused broken test.
36448         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
36449         stdlib.h, for `abort'.
36450         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
36451         variables.
36452         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
36453         include unistd.h if present, for `rmdir'.
36454         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
36455         variables.
36456         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
36457         in the process include standard headers for prototypes.
36458         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
36459         gets declared on GNU/Linux.
36460         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
36461         unistd.h, for `rmdir'.
36462         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
36463
36464         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
36465         always true.
36466         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
36467
36468         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
36469
36470 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36471
36472         * gnulib-tool (func_version): Create output all at once.  This
36473         may help avoid triggering unnecessary SIGPIPEs, and at any
36474         rate it doesn't hurt.
36475
36476 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36477             Bruno Haible  <bruno@clisp.org>
36478
36479         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
36480         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
36481         * m4/signed.m4 (bh_C_SIGNED): Likewise.
36482
36483         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
36484         (gl_FUNC_VASPRINTF): Invoke it.
36485
36486 2006-09-22  Bruno Haible  <bruno@clisp.org>
36487
36488         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
36489         getloadavg.c as first argument.
36490
36491 2006-09-22  Bruno Haible  <bruno@clisp.org>
36492
36493         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
36494         at the beginning of the gl_INIT macro.
36495         * modules/getloadavg (configure.ac): Pass $gl_source_base to
36496         gl_GETLOADAVG.
36497
36498 2006-09-22  Bruno Haible  <bruno@clisp.org>
36499
36500         * gnulib-tool (func_create_megatestdir): Don't include the config-h
36501         module.
36502         Suggested by Ralf Wildenhues.
36503
36504 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
36505
36506         Import this patch from libc:
36507
36508         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
36509
36510         * lib/regex_internal.c (re_string_reconstruct): Handle
36511         offset < pstr->valid_raw_len && pstr->offsets_needed case.
36512         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
36513         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
36514         re_string_context_at.
36515
36516         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
36517         now requires it.
36518         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
36519         gl_REGEX now does it for us.
36520         (gl_REGEX): Add test taken from
36521         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
36522
36523         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
36524         Check that large offsets work.  Modernize Autoconf usages.
36525         Prefer "yes" to mean a good thing rather than a bad.
36526         Don't put "#define mkstemp" in config.h, as this might interfere
36527         with standard system headers that "#define mkstemp mkstemp64".
36528
36529         * modules/mkstemp (Depends-on): Add extensions, so that
36530         mkstemp is visible on some platforms.
36531         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
36532         (Include): Change to "mkstemp.h" from <stdlib.h>.
36533         (Files): Add mkstemp.h.
36534
36535         * lib/mkstemp.h: New file, since some standard headers
36536         #define mkstemp.
36537         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
36538         Include "mkstemp.h".
36539         Make the _LIBC code resemble glibc original more,
36540         e.g., use K&R style.
36541         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
36542         (mkstemp): Remove, since mkstemp.h does this for us.
36543         * lib/stdlib--.h: Include mkstemp.h.
36544
36545         Import this patch from libc:
36546
36547         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36548
36549         * lib/tempname.c (__gen_tempname): Change attempts_min
36550         into a macro.  Use preprocessor to decide how to initialize
36551         attempts [Coverity CID 67].
36552
36553 2006-09-20  Bruno Haible  <bruno@clisp.org>
36554
36555         * lib/mkdtemp.c: Import from libc.
36556         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36557                 * sysdeps/posix/tempname.c (__gen_tempname): Change
36558                 attempts_min into a macro.  Use preprocessor to decide how to
36559                 initialize attempts [Coverity CID 67].
36560         2001-11-27  Paul Eggert  <eggert@twinsun.com>
36561                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
36562                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
36563
36564 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36565
36566         * gnulib-tool (func_exit): New function, to allow to pass the
36567         exit status portably through the trap.  Use everywhere.
36568         (--help, --version): Signal a write error.
36569         (trap): catch SIGPIPE, for write errors.
36570         Exit at the end of the trap, with the correct exit status.
36571
36572 2006-09-19  Karl Berry  <karl@gnu.org>
36573
36574         * doc/gnulib.texi: note about the license texinfo files.
36575
36576 2006-09-19  Eric Blake  <ebb9@byu.net>
36577
36578         * gnulib-tool: Avoid space-tab.
36579
36580 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36581
36582         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
36583         that prevented coreutils 6.1 from building.  Problem reported
36584         by Petter Reinholdtsen.
36585
36586 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36587
36588         * gnulib-tool (avoidlist): Fix typo that broke options like
36589         --avoid=lock that are used by coreutils bootstrap.
36590
36591 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
36592
36593         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
36594         more systematically.
36595
36596 2006-09-18  Jim Meyering  <jim@meyering.net>
36597
36598         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
36599
36600 2006-09-18  Bruno Haible  <bruno@clisp.org>
36601
36602         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
36603
36604 2006-09-18  Bruno Haible  <bruno@clisp.org>
36605
36606         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
36607         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
36608         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
36609         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
36610         * m4/gettext.m4: Require autoconf >= 2.52.
36611         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
36612         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
36613         of gl_cv_header_inttypes_h.
36614
36615 2006-09-18  Bruno Haible  <bruno@clisp.org>
36616
36617         * lib/javaversion.c: Include configmake.h.
36618
36619 2006-09-18  Bruno Haible  <bruno@clisp.org>
36620
36621         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
36622         avoid that the while loops be executed in a subshell.
36623
36624 2006-09-18  Bruno Haible  <bruno@clisp.org>
36625
36626         * MODULES.html.sh (func_module): Break long lines.
36627         Suggested by Bruce Korb <bkorb@gnu.org>.
36628
36629 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36630
36631         Speed up by a factor of 1.12.
36632         * gnulib-tool (nl): New variable.
36633         (func_import): Rewrite include directive extraction to only read each
36634         directive once.
36635
36636 2006-09-17  Bruno Haible  <bruno@clisp.org>
36637
36638         * modules/javaversion (Makefile.am): Remove DEFS setting.
36639         (Depends-on): Add configmake, for PKGDATADIR definition.
36640
36641 2006-09-17  Bruno Haible  <bruno@clisp.org>
36642
36643         * gnulib-tool (func_create_testdir): Rewrite all files at once.
36644
36645 2006-09-17  Bruno Haible  <bruno@clisp.org>
36646
36647         * gnulib-tool (func_append): New function, stolen from libtool.m4.
36648         (func_modules_transitive_closure, func_modules_add_dummy,
36649         func_modules_to_filelist, func_import, func_create_testdir,
36650         func_create_megatestdir, ...): Use it wherever possible.
36651         Suggested by Ralf Wildenhues.
36652
36653 2006-09-16  Karl Berry  <karl@gnu.org>
36654
36655         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
36656         to avoid sectioning errors.
36657         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
36658         [ifinfo]: blank line after @center-ed titles.
36659         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
36660         Spell FSF address consistently with others.
36661         (These changes approved by rms.)
36662
36663 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36664
36665         Speed up by a factor of 1.61.
36666         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
36667         already checked module names again.
36668
36669 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36670
36671         Speed up by a factor of 1.13.
36672         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
36673         for new_files, and the input to func_add_or_update.
36674
36675 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36676
36677         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
36678         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
36679
36680 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36681
36682         * modules/mkancesdirs (Depends-on): Add fcntl.
36683         * modules/savewd: New file.
36684         * MODULES.html.sh (File system functions): Add savewd.
36685
36686         * modules/configmake (Makefile.am): Add support for the
36687         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
36688
36689 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36690
36691         * m4/savewd.m4: New file.
36692
36693 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36694
36695         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
36696         (dirchownmod): New arg FD.  All callers changed.
36697         Use FD rather than opening the directory ourself, as opening is
36698         now the caller's responsibility.
36699         * lib/dirchownmod.h: Likewise.
36700         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
36701         hosts that require <sys/types.h> before <sys/stat.h>.  Include
36702         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
36703         (test_dir): Remove.
36704         (mkancesdirs): Return length of prefix of FILE that has already
36705         been made, or -2 if there is a child doing the work.  Redo
36706         algorithm so that it is O(N) rather than O(N**2).  Optimize away
36707         ".", and treat ".." specially since it might stray back into
36708         already-created areas.  Use a subprocess if necessary.  New arg
36709         WD; all users changed.  MAKE_DIR function should now return 1
36710         if it creates a directory that is not readable.  Return -2 if
36711         a child process is spun off.
36712         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
36713         Adjust signature to match code.
36714         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
36715         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
36716         all users changed.
36717         * lib/savewd.c, lib/savewd.h: New files.
36718
36719 2006-09-15  Jim Meyering  <jim@meyering.net>
36720
36721         * modules/rename-dest-slash: New module.
36722         * MODULES.html.sh (posix_compat): Add it here.
36723
36724         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
36725
36726 2006-09-15  Jim Meyering  <jim@meyering.net>
36727
36728         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
36729         file.
36730
36731         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
36732
36733 2006-09-15  Jim Meyering  <jim@meyering.net>
36734
36735         * lib/rename-dest-slash.c (has_trailing_slash): Use
36736         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
36737         (rpl_rename_dest_slash): Perform the cheaper trailing slash
36738         test before testing whether SRC is a directory.
36739         Suggestions from Bruno Haible.
36740
36741         Avoid a warning about an unused variable.
36742         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
36743         into the #ifdef block where it's used.
36744
36745         * lib/rename-dest-slash.c: New file.
36746
36747 2006-09-14  Bruno Haible  <bruno@clisp.org>
36748
36749         * lib/allocsa.c: Include <config.h> unconditionally.
36750         * lib/asnprintf.c: Likewise.
36751         * lib/asprintf.c: Likewise.
36752         * lib/c-strcasecmp.c: Likewise.
36753         * lib/c-strcasestr.c: Likewise.
36754         * lib/c-strncasecmp.c: Likewise.
36755         * lib/c-strstr.c: Likewise.
36756         * lib/classpath.c: Likewise.
36757         * lib/clean-temp.c: Likewise.
36758         * lib/concatpath.c: Likewise.
36759         * lib/copy-file.c: Likewise.
36760         * lib/csharpcomp.c: Likewise.
36761         * lib/csharpexec.c: Likewise.
36762         * lib/execute.c: Likewise.
36763         * lib/fatal-signal.c: Likewise.
36764         * lib/findprog.c: Likewise.
36765         * lib/fwriteerror.c: Likewise.
36766         * lib/gl_array_list.c: Likewise.
36767         * lib/gl_array_oset.c: Likewise.
36768         * lib/gl_avltree_list.c: Likewise.
36769         * lib/gl_avltree_oset.c: Likewise.
36770         * lib/gl_avltreehash_list.c: Likewise.
36771         * lib/gl_carray_list.c: Likewise.
36772         * lib/gl_linked_list.c: Likewise.
36773         * lib/gl_linkedhash_list.c: Likewise.
36774         * lib/gl_list.c: Likewise.
36775         * lib/gl_oset.c: Likewise.
36776         * lib/gl_rbtree_list.c: Likewise.
36777         * lib/gl_rbtree_oset.c: Likewise.
36778         * lib/gl_rbtreehash_list.c: Likewise.
36779         * lib/imaxabs.c: Likewise.
36780         * lib/imaxdiv.c: Likewise.
36781         * lib/javacomp.c: Likewise.
36782         * lib/javaexec.c: Likewise.
36783         * lib/javaversion.c: Likewise.
36784         * lib/linebreak.c: Likewise.
36785         * lib/localcharset.c: Likewise.
36786         * lib/lock.c: Likewise.
36787         * lib/mbchar.c: Likewise.
36788         * lib/mbswidth.c: Likewise.
36789         * lib/mkdtemp.c: Likewise.
36790         * lib/pipe.c: Likewise.
36791         * lib/printf-args.c: Likewise.
36792         * lib/printf-parse.c: Likewise.
36793         * lib/progname.c: Likewise.
36794         * lib/progreloc.c: Likewise.
36795         * lib/readlink.c: Likewise.
36796         * lib/sh-quote.c: Likewise.
36797         * lib/stpcpy.c: Likewise.
36798         * lib/stpncpy.c: Likewise.
36799         * lib/strcasecmp.c: Likewise.
36800         * lib/strcasestr.c: Likewise.
36801         * lib/strcspn.c: Likewise.
36802         * lib/striconv.c: Likewise.
36803         * lib/strncasecmp.c: Likewise.
36804         * lib/strnlen1.c: Likewise.
36805         * lib/strstr.c: Likewise.
36806         * lib/strtok_r.c: Likewise.
36807         * lib/tls.c: Likewise.
36808         * lib/tmpdir.c: Likewise.
36809         * lib/unicodeio.c: Likewise.
36810         * lib/unsetenv.c: Likewise.
36811         * lib/vasnprintf.c: Likewise.
36812         * lib/vasprintf.c: Likewise.
36813         * lib/wait-process.c: Likewise.
36814         * lib/xallocsa.c: Likewise.
36815         * lib/xsetenv.c: Likewise.
36816         * lib/xstriconv.c: Likewise.
36817
36818 2006-09-13  Simon Josefsson  <jas@extundo.com>
36819
36820         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
36821         that internally, suggested by Ralf Wildenhues
36822         <Ralf.Wildenhues@gmx.de>.
36823
36824 2006-09-13  Simon Josefsson  <jas@extundo.com>
36825
36826         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
36827         @LIBOBJS@.
36828         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36829
36830 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
36831
36832         * lib/_fpending.c: Include <config.h> unconditionally, since we no
36833         longer worry about uses that don't define HAVE_CONFIG_H.
36834         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
36835         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
36836         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
36837         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
36838         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
36839         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
36840         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
36841         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
36842         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
36843         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
36844         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
36845         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
36846         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
36847         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
36848         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
36849         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
36850         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
36851         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
36852         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
36853         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
36854         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
36855         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
36856         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
36857         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
36858         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
36859         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
36860         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
36861         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
36862         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
36863         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
36864         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
36865         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
36866         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
36867         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
36868         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
36869         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
36870         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
36871         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
36872         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
36873         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
36874         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
36875         Likewise.
36876
36877 2006-09-13  Eric Blake  <ebb9@byu.net>
36878
36879         * lib/getopt.c: Fix typo in last commit.
36880
36881 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
36882
36883         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
36884         dgettext.
36885
36886 2006-09-12  Jim Meyering  <jim@meyering.net>
36887
36888         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
36889         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
36890         Reported by Nelson H. F. Beebe.
36891
36892 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
36893
36894         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
36895         program_invocation_name and program_invocation_short_name are
36896         initialized.
36897         * lib/argp-namefrob.h: Move declarations of program_invocation_name
36898         and program_invocation_short_name to argp.h, so they are visible
36899         to user programs.
36900         * lib/argp.h: Likewise
36901
36902 2006-09-10  Bruno Haible  <bruno@clisp.org>
36903
36904         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
36905         m4/inttypes_h.m4, m4/uintmax_t.m4.
36906
36907 2006-09-10  Bruno Haible  <bruno@clisp.org>
36908
36909         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
36910         gl_AC_TYPE_UINTMAX_T.
36911
36912 2006-09-10  Bruno Haible  <bruno@clisp.org>
36913
36914         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
36915
36916 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
36917
36918         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
36919         convention.  Text proposed by Bruno Haible.
36920         (struct argp_option): Document the use of N_() wrappers.
36921
36922         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
36923         '\v', and translate the two parts separately, instead of feeding
36924         the whole string to gettext.  This allows to exclude
36925         '\v' from the strings visible to the translator by writing doc
36926         strings as N_("..") "\v" N_("..").
36927
36928 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
36929
36930         * config/srclist.txt: Undo latest change; the bug was fixed.
36931
36932 2006-09-09  Bruno Haible  <bruno@clisp.org>
36933
36934         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
36935         assignments if building a library without libtool.
36936         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
36937         in func_emit_lib_Makefile_am.
36938         (func_import): When building a static library libfoo.a, arrange to
36939         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
36940         (func_create_testdir): Likewise.
36941         * modules/gc (configure.ac, Makefile.am): If building statically,
36942         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
36943         * modules/iconvme (configure.ac, Makefile.am): Likewise.
36944         * modules/striconv (configure.ac, Makefile.am): Likewise.
36945         Based on a suggestion by Ralf Wildenhues.
36946
36947 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36948
36949         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
36950         Check for unistd.h too, since Autoconf doesn't assume POSIX.
36951         Also:
36952
36953         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36954         Add year_2050_test to catch glibc bug 2821
36955         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
36956
36957         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
36958         Prefer #ifdef to #if.
36959
36960         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
36961         Return from 'main' instead of calling 'exit'.
36962
36963 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36964
36965         * lib/mktime.c (guess_time_tm): Fix bug where mktime
36966         returned the maximum time_t value rather than (time_t) -1.
36967         Problem originally reported by William Bardwell
36968         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
36969
36970         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
36971         Moved to here ...
36972         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
36973         ... from here.
36974
36975 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36976
36977         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
36978         2821 is fixed.
36979
36980 2006-09-08  Jim Meyering  <jim@meyering.net>
36981
36982         Don't make generated files read-only.  That would bother too many
36983         people.  However, do retain the ability to work when targets are
36984         read-only: remove the destination and temporary files before writing
36985         them (when generated via sed or echo), or by using the -f option for
36986         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
36987         * modules/alloca-opt, modules/argz, modules/arpa_inet:
36988         * modules/byteswap, modules/configmake, modules/fcntl:
36989         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
36990         * modules/localcharset, modules/netinet_in, modules/poll:
36991         * modules/stdbool, modules/stdint, modules/sys_select:
36992         * modules/sys_socket, modules/sys_stat, modules/sysexits:
36993
36994 2006-09-08  Jim Meyering  <jim@meyering.net>
36995
36996         Avoid new build failure on FreeBSD 6.0.
36997         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
36998         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
36999         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
37000
37001 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37002
37003         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
37004
37005 2006-09-07  Jim Meyering  <jim@meyering.net>
37006
37007         Fix global typo in last change: use chmod u-w, not chmod u-x.
37008         Spotted by Paul Eggert and Bruce Korb.
37009         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37010         * modules/byteswap, modules/configmake, modules/fcntl:
37011         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37012         * modules/localcharset, modules/netinet_in, modules/poll:
37013         * modules/stdbool, modules/stdint, modules/sys_select:
37014         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37015
37016 2006-09-06  Jim Meyering  <jim@meyering.net>
37017
37018         Make generated files be read-only.
37019         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
37020         Ensure that each generated file is now read-only.
37021         * modules/argz: Likewise.
37022         * modules/arpa_inet: Likewise.
37023         * modules/byteswap: Likewise.
37024         * modules/configmake: Likewise.
37025         * modules/fcntl: Likewise.
37026         * modules/fnmatch: Likewise.
37027         * modules/getopt: Likewise.
37028         * modules/glob: Likewise.
37029         * modules/inttypes: Likewise.
37030         * modules/netinet_in: Likewise.
37031         * modules/poll: Likewise.
37032         * modules/stdbool: Likewise.
37033         * modules/stdint: Likewise.
37034         * modules/sys_select: Likewise.
37035         * modules/sys_socket: Likewise.
37036         * modules/sys_stat: Likewise.
37037         * modules/sysexits: Likewise.
37038         * modules/localcharset: Same as above, but continue using temporary
37039         file named "t-$@" (why different?) rather than the "$@-t" used
37040         everywhere else.
37041
37042         * modules/sysexits (Makefile.am): Replace literal occurrences
37043         of "sysexit.h" more readable, and more consistent, "$@".
37044
37045 2006-09-06  Bruno Haible  <bruno@clisp.org>
37046
37047         * modules/striconv: New file.
37048         * modules/xstriconv: New file.
37049         * MODULES.html.sh (Internationalization functions): Add striconv,
37050         xstriconv.
37051
37052 2006-09-06  Bruno Haible  <bruno@clisp.org>
37053
37054         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
37055         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
37056         not using libtool correctly.
37057
37058 2006-09-06  Bruno Haible  <bruno@clisp.org>
37059
37060         * lib/striconv.h: New file.
37061         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
37062         iconvstring.c.
37063         * lib/xstriconv.h: New file.
37064         * lib/xstriconv.c: New file.
37065
37066 2006-09-06  Bruno Haible  <bruno@clisp.org>
37067
37068         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
37069         lib_..._LDFLAGS.
37070
37071 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37072
37073         * lib/argz_.h: Sync from Libtool.
37074
37075         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
37076                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
37077
37078         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
37079
37080 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37081
37082         * modules/trim: New file.
37083
37084 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37085
37086         * lib/trim.h: New file.
37087         * lib/trim.c: New file.
37088
37089 2006-09-05  Bruno Haible  <bruno@clisp.org>
37090
37091         * MODULES.html.sh (String handling): Add trim.
37092
37093 2006-09-04  Karl Berry  <karl@gnu.org>
37094
37095         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
37096         until next release.
37097
37098 2006-09-03  Bruno Haible  <bruno@clisp.org>
37099
37100         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
37101         correctly.
37102
37103 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37104
37105         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
37106         not gl_GETLOADAVG.  Omit unneeded semicolons.
37107         Problems reported by Ralf Wildenhues in
37108         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37109         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
37110         at the end, which is the usual gnulib style.
37111
37112         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
37113         of doing all the work ourselves.
37114         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
37115         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
37116
37117 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37118
37119         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
37120         Problem reported by Ralf Wildenhues in
37121         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37122
37123         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
37124         HAVE_STRUCT_STATFS_F_FSTYPENAME.
37125
37126 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37127
37128         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
37129         yesterday's patch by changing test -n to test -z.
37130
37131 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37132
37133         * modules/getloadavg (Files): Add m4/getloadavg.m4.
37134         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
37135         the former is now obsolescent.
37136
37137         * modules/chdir-long (Depends-on): Add fcntl.
37138
37139 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37140
37141         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
37142         obsolescent, and programs should use gnulib instead.
37143         * m4/getloadavg.m4: New file, with contents taken from Autoconf
37144         but with prefixes changed.
37145
37146 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37147
37148         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
37149         or stdbool.h, because they might not exist while configuring.
37150
37151         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
37152         Don't include unistd.h or limits.h; not needed, since chdir-long.h
37153         does that for us.
37154         (O_DIRECTORY): Remove.
37155
37156 2006-08-31  Eric Blake  <ebb9@byu.net>
37157
37158         * gnulib-tool: Don't let emacs change spaces to TAB.
37159
37160 2006-08-31  Bruno Haible  <bruno@clisp.org>
37161
37162         * gnulib-tool: When calling func_import more than once, do it in a
37163         subshell.
37164         Reported by Eric Blake <ebb9@byu.net>.
37165
37166 2006-08-31  Bruno Haible  <bruno@clisp.org>
37167
37168         * gnulib-tool (nl): Remove variable.
37169         (sed_transform_lib_file): Use more robust test for config-h module.
37170         (func_import): Fix typo in 2006-08-25 patch.
37171
37172 2006-08-31  Bruno Haible  <bruno@clisp.org>
37173
37174         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
37175         specified, augment Makefile.am variables instead of assigning them.
37176
37177 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37178
37179         Work around a bug in both the Linux and SunOS 64-bit kernels:
37180         nanosleep mishandles sleeps for longer than 2**31 seconds.
37181         Problem reported by Frank v Waveren in
37182         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37183         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
37184         Check for nanosleep bug.
37185         (LIB_NANOSLEEP): Append clock_gettime library if needed.
37186
37187 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37188
37189         Work around a bug in both the Linux and SunOS 64-bit kernels:
37190         nanosleep mishandles sleeps for longer than 2**31 seconds.
37191         Problem reported by Frank v Waveren in
37192         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37193         * lib/nanosleep.c (BILLION): New constant.
37194         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
37195         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
37196         implementation.
37197
37198 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37199
37200         * modules/nanosleep (Depends-on): Add gettime.
37201
37202 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37203         and Simon Josefsson  <jas@extundo.com>
37204         and Oskar Liljeblad  <oskar@osk.mine.nu>
37205
37206         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
37207         * gnulib-tool (func_import): New license type 'unmodifiable license
37208         text'.
37209         * modules/fdl: Use it.  Longer description.
37210         * module/gpl, module/lgpl: New files.
37211
37212 2006-08-30  Jim Meyering  <jim@meyering.net>
37213
37214         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
37215         shadowing the parameter.
37216
37217 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37218
37219         Sync from Libtool:
37220
37221         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37222
37223         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
37224         sharing with gnulib.  Report by Eric Blake.
37225
37226 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37227
37228         * modules/isapipe: New file.
37229         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
37230
37231 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37232
37233         * modules/configmake (Makefile.am): Add a comment, and omit
37234         the CONFIGMAKE_ prefix from generated macro names.  Suggested
37235         by Bruno Haible.
37236
37237 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37238
37239         * m4/isapipe.m4: New file.
37240
37241 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37242
37243         * lib/isapipe.c, lib/isapipe.h: New files.
37244
37245 2006-08-29  Jim Meyering  <jim@meyering.net>
37246
37247         * modules/configmake (Makefile.am): Make configmake.h depend on
37248         Makefile.  Otherwise, a stale configmake.h could hang around.
37249
37250 2006-08-29  Eric Blake  <ebb9@byu.net>
37251
37252         * lib/error.c (error_at_line, print_errno_message): Match libc, after
37253         resolution of upstream bug 3044.
37254
37255 2006-08-29  Bruno Haible  <bruno@clisp.org>
37256
37257         * modules/localcharset (Depends-on): Add configmake.
37258         (Makefile.am): Remove setting of LIBDIR through DEFS.
37259
37260 2006-08-29  Bruno Haible  <bruno@clisp.org>
37261
37262         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
37263         defined.
37264
37265 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37266
37267         * modules/fcntl: New file.
37268         * modules/chdir-safer (Depends-on): Add fcntl.
37269         * modules/fts: Likewise.
37270         * modules/mkdir-p: Likewise.
37271
37272         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
37273         This undoes the most recent change, since we're now addressing the
37274         problem in a different way.
37275
37276         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
37277         into output, since the output might be called Makefile.am even
37278         if $makefile_name is something different.
37279         (func_import): Use $makefile_am rather than
37280         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
37281         empty.
37282
37283         * modules/inttypes (Files): Add m4/inttypes-h.m4.
37284
37285 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37286
37287         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
37288         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
37289         recent change to stdint.m4, since we're now addressing the problem in a
37290         different way.
37291
37292 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37293
37294         * m4/fcntl_h.m4: New file.
37295
37296 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37297
37298         * lib/fcntl_.h: New file.
37299         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
37300         the fcntl module.
37301         * lib/dirchownmod.c: Likewise.
37302         * lib/fts.c: Likewise.
37303
37304         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
37305         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
37306         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
37307         just before including <inttypes.h>, to avoid circular inclusion.
37308
37309 2006-08-28  Jim Meyering  <jim@meyering.net>
37310
37311         * doc/visibility.texi: Actually read and correct the grammar of the
37312         sentence affected by yesterday's change.
37313
37314 2006-08-28  Eric Blake  <ebb9@byu.net>
37315
37316         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
37317         needs wrapper.
37318
37319 2006-08-28  Eric Blake  <ebb9@byu.net>
37320
37321         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
37322
37323 2006-08-28  Eric Blake  <ebb9@byu.net>
37324
37325         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
37326
37327 2006-08-28  Bruno Haible  <bruno@clisp.org>
37328
37329         * modules/c-strstr: New file, from GNU gettext.
37330         * MODULES.html.sh (String handling): Add c-strstr.
37331
37332 2006-08-28  Bruno Haible  <bruno@clisp.org>
37333
37334         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
37335         macros.
37336         Reported by Eric Blake.
37337
37338 2006-08-28  Bruno Haible  <bruno@clisp.org>
37339
37340         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
37341         (VASNPRINTF): Return a string of length > INT_MAX without failing.
37342         * lib/vasprintf.c: Include errno.h, limits.h.
37343         (EOVERFLOW): New fallback definition.
37344         (vasprintf): Test here whether the string length is > INT_MAX.
37345         * lib/vsnprintf.c: Include errno.h, limits.h.
37346         (EOVERFLOW): New fallback definition.
37347         (vsnprintf): Fix bug when generated string was too long for the buffer.
37348         Test here whether the string length is > INT_MAX.
37349
37350 2006-08-28  Bruno Haible  <bruno@clisp.org>
37351
37352         * lib/inttypes_.h (SCNX*): Remove definitions.
37353         Reported by Eric Blake.
37354
37355 2006-08-28  Bruno Haible  <bruno@clisp.org>
37356
37357         * lib/c-strstr.h: New file, from GNU gettext.
37358         * lib/c-strstr.c: New file, from GNU gettext.
37359
37360 2006-08-28  Bruno Haible  <bruno@clisp.org>
37361
37362         * gnulib-tool: Reorder some statements.
37363
37364 2006-08-28  Bruno Haible  <bruno@clisp.org>
37365
37366         * gnulib-tool: New option --makefile-name.
37367         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
37368         $makefile_name.
37369         (func_import): Write $makefile_name to the cache file, and read it from
37370         there unless explicitly specified. Use $makefile_name as file name
37371         instead of Makefile.am. Adjust the recommendations accordingly.
37372
37373 2006-08-28  Bruno Haible  <bruno@clisp.org>
37374
37375         * gnulib-tool (func_verify_module): Check against misapplying patch.
37376
37377 2006-08-28  Bruno Haible  <bruno@clisp.org>
37378
37379         * gnulib-tool (func_relativize, func_relconcat): New functions.
37380         Give an error if --local-dir is given with --update.
37381         Remove trailing slashes from $local_gnulib_dir.
37382         (func_import): Store the relativized $local_gnulib_dir in
37383         gnulib-cache.m4, and read it from there if not specified explicitly.
37384
37385 2006-08-28  Bruno Haible  <bruno@clisp.org>
37386
37387         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
37388         is the current directory. Respect also $local_gnulib_dir.
37389
37390 2006-08-28  Bruno Haible  <bruno@clisp.org>
37391             Simon Josefsson  <jas@extundo.com>
37392
37393         BeOS portability.
37394         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
37395
37396 2006-08-27  Jim Meyering  <jim@meyering.net>
37397
37398         * doc/visibility.texi: Remove duplicate word: "pointer".
37399
37400 2006-08-26  Bruno Haible  <bruno@clisp.org>
37401
37402         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
37403         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
37404         (Makefile.am): Create inttypes.h from inttypes_.h.
37405         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
37406
37407         * modules/imaxabs: New file.
37408
37409         * modules/imaxdiv: New file.
37410
37411 2006-08-26  Bruno Haible  <bruno@clisp.org>
37412
37413         * m4/inttypes.m4: New file.
37414         * m4/_inttypes_h.m4: Remove file.
37415         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
37416         PRI_MACROS_BROKEN.
37417         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
37418
37419         * m4/imaxabs.m4: New file.
37420
37421         * m4/imaxdiv.m4: New file.
37422
37423 2006-08-26  Bruno Haible  <bruno@clisp.org>
37424
37425         * lib/inttypes_.h: New file.
37426         * lib/inttypes.h: Remove file.
37427         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
37428
37429         * lib/imaxabs.c: New file.
37430
37431         * lib/imaxdiv.c: New file.
37432
37433 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37434
37435         New config-h module, so that "make" output needn't be cluttered
37436         by -DHAVE_CONFIG_H.
37437         * MODULES.html.sh (Support for building libraries and executables):
37438         Add config-h.
37439         * modules/config-h: New file.
37440         * gnulib-tool (nl, sed_transform_lib_file): New vars.
37441         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
37442         the config-h module is used.
37443
37444         New configmake module, so that "make" output needn't be cluttered
37445         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
37446         * MODULES.html.sh (Support for building libraries and executables):
37447         Add configmake.
37448         * modules/configmake: New file.
37449
37450 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37451
37452         * m4/config-h.m4: New file.
37453
37454 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37455
37456         * config/srclist.txt: Add elisp-comp.
37457
37458 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37459
37460         * MODULES.html.sh (Support for building libraries and executables):
37461         Add elisp-comp.
37462         * build-aux/elisp-comp: New file.
37463         * modules/elisp-comp: New file.
37464
37465 2006-08-24  Bruno Haible  <bruno@clisp.org>
37466
37467         * gnulib-tool (func_create_testdir): Use non-default values of
37468         sourcebase and m4base.
37469
37470 2006-08-24  Bruno Haible  <bruno@clisp.org>
37471
37472         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
37473         HTML structure.
37474
37475 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
37476
37477         * modules/openat (Depends-on): Add lchown.
37478
37479 2006-08-23  Bruno Haible  <bruno@clisp.org>
37480
37481         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
37482         of gl_LOCK_EARLY instead of gl_LOCK.
37483
37484 2006-08-23  Bruno Haible  <bruno@clisp.org>
37485
37486         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
37487         on OSF/1 to no.
37488         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
37489
37490 2006-08-23  Bruno Haible  <bruno@clisp.org>
37491
37492         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
37493         as unusable.
37494
37495         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
37496         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
37497         (gl_LOCK): New macro.
37498
37499 2006-08-22  Simon Josefsson  <jas@extundo.com>
37500
37501         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
37502         to md5 module.
37503
37504 2006-08-22  Simon Josefsson  <jas@extundo.com>
37505
37506         * MODULES.html.sh: Add "Support for maintaining and release
37507         projects".
37508
37509         * build-aux/gnupload: New file, from coreutils.
37510
37511 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37512
37513         Avoid the need for AC_LIBSOURCES in m4 macros.
37514         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
37515         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
37516         * modules/check-version (EXTRA_DIST): Add check-version.h.
37517         * modules/crc (EXTRA_DIST): Add crc.h.
37518         * modules/des (EXTRA_DIST): Add des.h.
37519         * modules/gc (EXTRA_DIST): Add gc.h.
37520         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
37521         * modules/getline (EXTRA_DIST): Add getline.h.
37522         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
37523         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
37524         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
37525         * modules/md2 (EXTRA_DIST): Add md2.h.
37526         * modules/md4 (EXTRA_DIST): Add md4.h.
37527         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
37528         * modules/read-file (EXTRA_DIST): Add read-file.h.
37529         * modules/readline (EXTRA_DIST): Add readline.h.
37530         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
37531         rijndael-api-fst.h.
37532
37533 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37534
37535         * m4/rijndael.m4 (gl_ARCFOUR):
37536         * m4/arctwo.m4 (gl_ARCTWO):
37537         * m4/check-version.m4 (gl_CHECK_VERSION):
37538         * m4/crc.m4 (gl_CRC):
37539         * m4/des.m4 (gl_DES):
37540         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
37541         * m4/gc.m4 (gl_GC):
37542         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
37543         * m4/getline.m4 (gl_FUNC_GETLINE):
37544         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
37545         * m4/hmac-md5.m4 (gl_HMAC_MD5):
37546         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
37547         * m4/md2.m4 (gl_MD2):
37548         * m4/md4.m4 (gl_MD4):
37549         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
37550         * m4/read-file.m4 (gl_FUNC_READ_FILE):
37551         * m4/readline.m4 (gl_FUNC_READLINE):
37552         * m4/rijndael.m4 (gl_RIJNDAEL):
37553         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37554         to get the necessary .h files and whatnot.
37555
37556 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37557
37558         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
37559         gnulib rather than the other way around.
37560         * config/srclistvars.sh (COREUTILS): Remove.
37561
37562 2006-08-22  Jim Meyering  <jim@meyering.net>
37563
37564         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
37565
37566         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
37567
37568 2006-08-22  Eric Blake  <ebb9@byu.net>
37569
37570         * modules/regexprops-generic: New file.
37571         * MODULES.html.sh (Support for building documentation): List it.
37572
37573 2006-08-22  Eric Blake  <ebb9@byu.net>
37574
37575         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
37576         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
37577         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
37578         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
37579
37580 2006-08-22  Bruno Haible  <bruno@clisp.org>
37581
37582         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
37583         and lib_LTLIBRARIES like the other lib_* variables.
37584
37585 2006-08-22  Bruno Haible  <bruno@clisp.org>
37586
37587         * build-aux/x-to-1.in: New file, from GNU gettext.
37588
37589 2006-08-22  Bruno Haible  <bruno@clisp.org>
37590
37591         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
37592         <utmpx.h> exists.
37593
37594 2006-08-22  Bruno Haible  <bruno@clisp.org>
37595
37596         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
37597         <utmpx.h> exists.
37598
37599 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37600
37601         BeOS portability.
37602         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
37603         exist.
37604         Problem reported by Bruno Haible.
37605
37606 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37607
37608         Avoid the need for AC_LIBSOURCES in m4 macros.
37609         * modules/acl (EXTRA_DIST): Add acl.h.
37610         * modules/argmatch (Files): Add m4/argmatch.m4.
37611         (configure.ac): Add gl_ARGMATCH.
37612         (EXTRA_DIST): Renamed from lib_SOURCES, for
37613         consistency with the other modules.  Remove argmatch.c.
37614         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
37615         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
37616         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
37617         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
37618         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
37619         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
37620         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
37621         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
37622         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
37623         * modules/closeout (EXTRA_DIST): Add closeout.h.
37624         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
37625         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
37626         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
37627         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
37628         dirname.h; remove basename.c and stripslash.c.
37629         * modules/exclude (EXTRA_DIST): Add exclude.h.
37630         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
37631         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
37632         * modules/file-type (EXTRA_DIST): Add file-type.h.
37633         * modules/filemode (EXTRA_DIST): Add filemode.h.
37634         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
37635         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37636         * modules/fpending (EXTRA_DIST): Add __fpending.h.
37637         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
37638         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
37639         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
37640         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
37641         * modules/getdate (EXTRA_DIST): Add getdate.c.
37642         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
37643         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
37644         * modules/getpass (EXTRA_DIST): Add getpass.h.
37645         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
37646         * modules/group-member (EXTRA_DIST): Add group-member.h.
37647         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
37648         * modules/hash (EXTRA_DIST): Add hash.h.
37649         * modules/human (EXTRA_DIST): Add human.h.
37650         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
37651         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
37652         * modules/lchown (EXTRA_DIST): Add lchown.h.
37653         * modules/long-options (EXTRA_DIST): Add long-options.h.
37654         * modules/lstat (EXTRA_DIST): Add lstat.h.
37655         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
37656         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
37657         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
37658         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
37659         * modules/memxor (EXTRA_DIST): Add memxor.h.
37660         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
37661         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
37662         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
37663         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
37664         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
37665         * modules/physmem (EXTRA_DIST): Add physmem.h.
37666         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
37667         * modules/posixver (EXTRA_DIST): Add posixver.h.
37668         * modules/quote (EXTRA_DIST): Add quote.h.
37669         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
37670         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
37671         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
37672         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
37673         regex_internal.h regexec.c.
37674         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
37675         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
37676         * modules/same (EXTRA_DIST): Add same.h.
37677         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
37678         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
37679         * modules/savedir (EXTRA_DIST): Add savedir.h.
37680         * modules/sha1 (EXTRA_DIST): Add sha1.h.
37681         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
37682         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
37683         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
37684         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
37685         * modules/strdup (EXTRA_DIST): Add strdup.h.
37686         * modules/strftime (EXTRA_DIST): Add strftime.h.
37687         * modules/strndup (EXTRA_DIST): Add strndup.h.
37688         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
37689         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
37690         * modules/time_r (EXTRA_DIST): Add time_r.h.
37691         * modules/timespec (EXTRA_DIST): Add timespec.h.
37692         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37693         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
37694         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
37695         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
37696         * modules/userspec (EXTRA_DIST): Add userspec.h.
37697         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
37698         * modules/utimens (EXTRA_DIST): Add utimens.h.
37699         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
37700         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
37701         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
37702         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
37703         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
37704         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
37705         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
37706         * modules/yesno (EXTRA_DIST): Add yesno.h.
37707
37708 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37709
37710         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
37711
37712         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
37713         * m4/dev-ino.m4, same-inode.m4: Remove.
37714
37715         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
37716         * m4/acl.m4 (AC_FUNC_ACL):
37717         * m4/backupfile.m4 (gl_BACKUPFILE):
37718         * m4/c-strtod.m4 (gl_C99_STRTOLD):
37719         * m4/canon-host.m4 (gl_CANON_HOST):
37720         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
37721         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
37722         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
37723         * m4/cloexec.m4 (gl_CLOEXEC):
37724         * m4/close-stream.m4 (gl_CLOSE_STREAM):
37725         * m4/closeout.m4 (gl_CLOSEOUT):
37726         * m4/dirfd.m4 (gl_FUNC_DIRFD):
37727         * m4/dirname.m4 (gl_DIRNAME):
37728         * m4/exclude.m4 (gl_EXCLUDE):
37729         * m4/exitfail.m4 (gl_EXITFAIL):
37730         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
37731         * m4/file-type.m4 (gl_FILE_TYPE):
37732         * m4/filemode.m4 (gl_FILEMODE):
37733         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
37734         * m4/fpending.m4 (gl_FUNC_FPENDING):
37735         * m4/fprintftime.m4 (gl_FPRINTFTIME):
37736         * m4/fts.m4 (gl_FUNC_FTS):
37737         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
37738         * m4/getdate.m4 (gl_GETDATE):
37739         * m4/gethrxtime.m4 (gl_GETHRXTIME):
37740         * m4/getpagesize.m4 (gl_GETPAGESIZE):
37741         * m4/getpass.m4 (gl_FUNC_GETPASS):
37742         * m4/gettime.m4 (gl_GETTIME):
37743         * m4/getugroups.m4 (gl_GETUGROUPS):
37744         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
37745         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
37746         * m4/hard-locale.m4 (gl_HARD_LOCALE):
37747         * m4/hash.m4 (gl_HASH):
37748         * m4/idcache.m4 (gl_IDCACHE):
37749         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
37750         * m4/lchown.m4 (gl_FUNC_LCHOWN):
37751         * m4/long-options.m4 (gl_LONG_OPTIONS):
37752         * m4/lstat.m4 (gl_FUNC_LSTAT):
37753         * m4/md5.m4 (gl_MD5):
37754         * m4/memcasecmp.m4 (gl_MEMCASECMP):
37755         * m4/memcoll.m4 (gl_MEMCOLL):
37756         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
37757         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
37758         * m4/memxor.m4 (gl_MEMXOR):
37759         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
37760         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
37761         * m4/modechange.m4 (gl_MODECHANGE):
37762         * m4/mountlist.m4 (gl_MOUNTLIST):
37763         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37764         * m4/openat.m4 (gl_FUNC_OPENAT):
37765         * m4/pathmax.m4 (gl_PATHMAX):
37766         * m4/physmem.m4 (gl_PHYSMEM):
37767         * m4/posixtm.m4 (gl_POSIXTM):
37768         * m4/posixver.m4 (gl_POSIXVER):
37769         * m4/quote.m4 (gl_QUOTE):
37770         * m4/quotearg.m4 (gl_QUOTEARG):
37771         * m4/readtokens.m4 (gl_READTOKENS):
37772         * m4/readutmp.m4 (gl_READUTMP):
37773         * m4/regex.m4 (gl_REGEX):
37774         * m4/safe-read.m4 (gl_SAFE_READ):
37775         * m4/safe-write.m4 (gl_SAFE_WRITE):
37776         * m4/same.m4 (gl_SAME):
37777         * m4/save-cwd.m4 (gl_SAVE_CWD):
37778         * m4/savedir.m4 (gl_SAVEDIR):
37779         * m4/settime.m4 (gl_SETTIME):
37780         * m4/sha1.m4 (gl_SHA1):
37781         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
37782         * m4/stat-macros.m4 (gl_STAT_MACROS):
37783         * m4/stat-time.m4 (gl_STAT_TIME):
37784         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
37785         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
37786         * m4/strdup.m4 (gl_FUNC_STRDUP):
37787         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
37788         * m4/strndup.m4 (gl_FUNC_STRNDUP):
37789         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
37790         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
37791         * m4/time_r.m4 (gl_TIME_R):
37792         * m4/timespec.m4 (gl_TIMESPEC):
37793         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
37794         * m4/unlinkdir.m4 (gl_UNLINKDIR):
37795         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
37796         * m4/userspec.m4 (gl_USERSPEC):
37797         * m4/utimecmp.m4 (gl_UTIMECMP):
37798         * m4/utimens.m4 (gl_UTIMENS):
37799         * m4/xalloc.m4 (gl_XALLOC):
37800         * m4/xgetcwd.m4 (gl_XGETCWD):
37801         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
37802         * m4/xreadlink.m4 (gl_XREADLINK):
37803         * m4/xstrtod.m4 (gl_XSTRTOD):
37804         * m4/yesno.m4 (gl_YESNO):
37805         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37806         to get the necessary .h files and whatnot.
37807
37808 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
37809             Bruno Haible  <bruno@clisp.org>
37810
37811         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
37812         /bin/sh understanding of '!' conditional negation.
37813
37814 2006-08-21  Jim Meyering  <jim@meyering.net>
37815
37816         * modules/openat (Depends-on): Really alphabetize.
37817
37818         * modules/acl (Depends-on): Add error and quote.
37819
37820         * check-module (find_included_lib_files): Add at-func.c to the
37821         ok-to-include-more-than-once white list.
37822
37823         * modules/openat (Depends-on): Add lstat.  Alphabetize.
37824
37825 2006-08-21  Bruno Haible  <bruno@clisp.org>
37826
37827         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37828         Emit a pkgdata_DATA variable only if some snippets add contents to it.
37829         Reported by Martin Lambers <marlam@marlam.de>.
37830
37831 2006-08-21  Bruno Haible  <bruno@clisp.org>
37832
37833         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
37834         specify an installation location, don't emit a noinst_LIBRARIES or
37835         noinst_LTLIBRARIES assignment.
37836
37837 2006-08-21  Bruno Haible  <bruno@clisp.org>
37838
37839         BeOS portability.
37840         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
37841         BeOS has mbrtowc() but no <wctype.h>.
37842
37843 2006-08-21  Bruno Haible  <bruno@clisp.org>
37844
37845         BeOS portability.
37846         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
37847         exist.
37848
37849 2006-08-21  Bruno Haible  <bruno@clisp.org>
37850
37851         BeOS portability.
37852         * lib/mbchar.h: Include <wctype.h> only if it exists.
37853
37854 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37855
37856         Remove files that are no longer needed by their respective modules.
37857         * m4/obstack.m4: Remove.
37858         * m4/strerror_r.m4: Remove.
37859         * m4/uint32_t.m4: Remove.
37860         * m4/uintptr_t.m4: Remove.
37861         * m4/ullong_max.m4: Remove.
37862         * m4/xstrtoimax.m4: Remove.
37863         * m4/xstrtoumax.m4: Remove.
37864
37865         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
37866         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
37867         dependencies now capture this.
37868
37869         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
37870         Do not use AC_LIBSOURCES, since gnulib modules now do this.
37871         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
37872         * m4/human.m4 (gl_HUMAN): Likewise.
37873         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
37874         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
37875
37876         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
37877
37878         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
37879         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
37880         stdint.
37881         * m4/human.m4 (gl_HUMAN): Likewise.
37882         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
37883         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
37884         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37885         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37886         * m4/xstrtol (gl_XSTRTOL): Likewise.
37887
37888         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
37889         AC_TYPE_LONG_LONG_INT.
37890         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37891         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
37892         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
37893         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37894
37895         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
37896         on stdbool.
37897
37898         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
37899         (gl_PREREQ_XSTRTOUL): Remove.
37900
37901         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
37902
37903         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
37904         mode.
37905
37906 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37907
37908         Add and change modules to make it easier for coreutils to use
37909         gnulib-tool.
37910         * modules/backupfile (Files): Remove m4/d-ino.m4.
37911         (Depends-on): Add d-ino.
37912         * modules/cycle-check (Depends-on): Add stdint.
37913         (lib_SOURCES): Add cycle-check.h.
37914         * modules/d-ino: New module.
37915         * modules/d-type: New module.
37916         * modules/error (Files): Remove m4/strerror_r.m4.
37917         * modules/filemode (Files): Add m4/st_dm_mode.m4.
37918         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
37919         m4/inttypes_h.m4, m4/uintmax_t.m4.
37920         (Depends-on): Add stdint.
37921         (lib_SOURCES): Add fsusage.h.
37922         * modules/getcwd (Files): Remove d-ino.m4.
37923         (Depends-on): Add d-ino.
37924         * modules/getndelim2 (Depends-on): Add stdint.
37925         * modules/glob (Files): Remove m4/d-type.m4.
37926         (Depends-on): Add d-type.
37927         * modules/host-os: New module.
37928         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
37929         m4/inttypes_h.m4, m4/uintmax_t.m4.
37930         * Depends-on: Add stdint.
37931         (lib_SOURCES): Add human.h.
37932         * modules/inttostr (Files): Remove m4/intmax_t.m4,
37933         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
37934         m4/uintmax_t.m4, m4/ulonglong.m4.
37935         (Depends-on): Add stdint.
37936         (EXTRA_DIST): Add inttostr.h.
37937         * modules/lchmod: New module.
37938         * modules/link-follow: New module.
37939         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
37940         (Depends-on): Add lchmod.
37941         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
37942         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
37943         (Depends-on): Add stdint.
37944         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
37945         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
37946         (Depends-on): Add stdint.
37947         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
37948         * modules/perl: New module.
37949         * modules/regex (Depends-on): Add stdint.
37950         * modules/rmdir-errno: New module.
37951         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
37952         m4/intmax_t.m4.
37953         (Depends-on): Add stdint.
37954         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
37955         m4/uintmax_t.m4.
37956         (Depends-on): Add stdint.
37957         * modules/unlink-busy: New module.
37958         * modules/utimecmp (Depends-on): Add stdint.
37959         * modules/uptime: New module.
37960         * modules/winsz-ioctl: New module.
37961         * modules/winsz-termios: New module.
37962         * modules/xnanosleep (Depends-on): Add nanosleep.
37963         * modules/ullong_max: Remove.
37964         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
37965         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
37966         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
37967         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
37968         (Depends-on): Add inttypes.
37969         (lib_SOURCES): Add xstrtol.h.
37970         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
37971         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
37972         * MODULES.html.sh: Move 'assert' into the assert section.
37973         Move 'dummy' into the linking section.
37974         Remove ullong_max.
37975         Add section for compatibility checks for POSIX:2001 functions,
37976         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
37977         winsz-ioctl, and winsz-termios into it.
37978         Add lchmod.
37979         Add top-level Misc section and put host-os, perl, and uptime
37980         into it.
37981
37982 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37983
37984         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
37985         now assume the stdint module.  Do not include inttypes.h.
37986         * lib/fsusage.h: Likewise.
37987         * lib/getndelim2.c: Likewise.
37988         * lib/human.h: Likewise.
37989         * lib/inttostr.h: Likewise.
37990         * lib/obstack.c: Likewise.
37991         * lib/regex_internal.h: Likewise.
37992         * lib/tempname.c: Likewise.
37993         * lib/utimecmp.c: Likewise.
37994         * lib/xstrtol.h: Likewise.
37995
37996         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
37997
37998         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
37999         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
38000         * lib/xtime.h: Likewise.
38001
38002 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38003
38004         * modules/openat (Files): Add lib/fchmodat.c.
38005         Fixes problem reported by Jay Youngman.
38006
38007 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38008
38009         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
38010         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
38011
38012 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
38013             Bruno Haible  <bruno@clisp.org>
38014
38015         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
38016         and is a script that invokes bison. Tighten the code. Add comments.
38017
38018 2006-08-18  Jim Meyering  <jim@meyering.net>
38019
38020         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
38021         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
38022         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
38023         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
38024
38025 2006-08-18  Bruno Haible  <bruno@clisp.org>
38026
38027         * modules/bison-i18n: New file.
38028         * MODULES.html.sh (Internationalization functions): Add it.
38029
38030 2006-08-18  Bruno Haible  <bruno@clisp.org>
38031
38032         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
38033         sys/statvfs.h. When getmntinfo was found, check its declaration and
38034         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
38035
38036 2006-08-18  Bruno Haible  <bruno@clisp.org>
38037
38038         * m4/bison-i18n.m4: New file, from bison.
38039
38040 2006-08-18  Bruno Haible  <bruno@clisp.org>
38041
38042         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
38043         (ME_DUMMY): Treat "kernfs" as a dummy.
38044         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
38045
38046 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38047
38048         Update from coreutils.
38049
38050         2006-08-15  Jim Meyering  <jim@meyering.net>
38051
38052         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
38053
38054         2006-01-17  Jim Meyering  <jim@meyering.net>
38055
38056         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
38057
38058         2006-01-11  Jim Meyering  <jim@meyering.net>
38059
38060         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
38061         Check for the lchmod function.
38062
38063 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38064
38065         Update from coreutils.
38066
38067         * lib/__fpending.h: Add copyright notice.
38068         * lib/fprintftime.h: Likewise.
38069         * lib/savedir.c: Use (C) in copyright notice.
38070         * lib/savedir.h: Likewise.
38071
38072         2006-08-15  Jim Meyering  <jim@meyering.net>
38073
38074         * lib/at-func.c: New file, with the logic of all emulated at-functions.
38075         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
38076         in support of the EXPECTED_ERRNO macro.
38077         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
38078         definitions.  Instead, define the appropriate symbols and include
38079         "at-func.c".
38080         * lib/mkdirat.c (mkdirat): Likewise.
38081         * lib/fchmodat.c (fchmodat): Likewise.
38082         (ENOSYS): Remove definition.
38083         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
38084         it.  Don't include "unistd--.h" -- it wasn't ever used.
38085
38086         2006-01-17  Jim Meyering  <jim@meyering.net>
38087
38088         Rewrite fts.c not to change the current working directory,
38089         by using openat, fstatat, fdopendir, etc..
38090
38091         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
38092         (HAVE_OPENAT_SUPPORT): Define.
38093         [_LIBC] (fchdir): Don't undef or define; no longer used.
38094         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
38095         Now, this `function' always succeeds, and consumes its file descriptor
38096         parameter -- so callers must not close such FDs.  Update callers.
38097         (diropen_fd, opendirat, cwd_advance_fd): New functions.
38098         (diropen): Add parameter, SP.  Adjust all callers.
38099         Implement using diropen_fd, rather than open.
38100         (fts_open): Initialize new member, fts_cwd_fd.
38101         Remove fts_rft-setting code.
38102         (fts_close): Close fts_cwd_fd, if necessary.
38103         (__opendir2): Define in terms of opendir or opendirat,
38104         depending on whether the FST_NOCHDIR flag is set.
38105         (fts_build): Since fts_safe_changedir consumes its FD, and since
38106         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
38107         and close the dup'd file descriptor upon failure.
38108         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
38109         (fts_safe_changedir): Tweak semantics to reflect that this function
38110         now calls cwd_advance_fd and hence consumes its FD argument.
38111         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
38112         [struct FTS] (fts_rft): Remove now-unused member.
38113         [struct FTS] (fts_cycle.state): Improve comment.
38114
38115         * lib/openat.c (openat_needs_fchdir): New function.
38116         * lib/openat.h (openat_needs_fchdir): Declare it.
38117
38118 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
38119
38120         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
38121         Problem and fix reported by Pádraig Brady in
38122         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
38123
38124 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38125
38126         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
38127
38128 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38129
38130         * lib/memcoll.c (memcoll): Optimize for the common case where the
38131         arguments are bytewise equal.
38132
38133 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38134
38135         * doc/regexprops-generic.texi: Add a copyright notice.
38136
38137 2006-08-15  Bruno Haible  <bruno@clisp.org>
38138
38139         * modules/tmpdir (License): Change to LGPL.
38140
38141 2006-08-15  Bruno Haible  <bruno@clisp.org>
38142
38143         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
38144         module.
38145
38146 2006-08-14  Simon Josefsson  <jas@extundo.com>
38147
38148         * config/srclist.txt: Add gnupload.
38149
38150 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38151
38152         Change copyright notice from LGPL 2 to GPL 2, since that's the
38153         standard form used in the gnulib repository.
38154         * tests/test-lock.c: Likewise.
38155         * tests/test-stdint.c: Likewise.
38156         * tests/test-tls.c: Likewise.
38157
38158         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
38159         prelude-manager.  User shorter URLs for GNU projects, without '?'.
38160         Add copyright notice.
38161
38162         * check-module: Add copyright notice.  Output a copyright
38163         notice if "--version" is specified.
38164         * modules/COPYING: New file.
38165         * tests/test-getaddrinfo.c: Add copyright notice.
38166         * tests/test-verify.c: Likewise.
38167
38168 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38169
38170         Change copyright notice from LGPL 2 to GPL 2, since that's the
38171         standard form used in the gnulib repository.
38172         * lib/lock.c: LGPL -> GPL.
38173         * lib/lock.h: Likewise.
38174         * lib/strnlen1.c: Likewise.
38175         * lib/strnlen1.h: Likewise.
38176         * lib/tls.c: Likewise.
38177         * lib/tls.h: Likewise.
38178         * lib/tmpdir.c: Likewise.
38179
38180         * lib/TODO: Remove; this belongs only in coreutils.
38181
38182 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38183
38184         Add copyright notices to long-enough files that lack them, since
38185         otherwise the files aren't clearly free.  Use the same notice that
38186         getdate.texi already uses.
38187         * doc/alloca-opt.texi: Add copyright notice.
38188         * doc/alloca.texi: Likewise.
38189         * doc/ctime.texi: Likewise.
38190         * doc/functions.texi: Likewise.
38191         * doc/gcd.texi: Likewise.
38192         * doc/gnulib-tool.texi: Likewise.
38193         * doc/inet_ntoa.texi: Likewise.
38194         * doc/visibility.texi: Likewise.
38195
38196         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
38197         * doc/quote.texi: Add copyright notice.
38198
38199         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
38200         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
38201         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
38202         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
38203         is now obsolete, and give a pointer to the Sun list.
38204         Add copyright notice.
38205
38206 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38207
38208         * config/srclistvars.sh: Add copyright notice.
38209
38210 2006-08-14  Eric Blake  <ebb9@byu.net>
38211
38212         Import the following change from libc:
38213
38214         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
38215
38216         Upstream bug 2997.
38217         * lib/misc/error.c: Add space between program name and message if file
38218         name is missing.
38219
38220 2006-08-12  Karl Berry  <karl@gnu.org>
38221
38222         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
38223         remove, these originate in gnulib now.
38224
38225 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38226
38227         * doc/Makefile (standards.info standards.html standards.dvi):
38228         Also depend on make-stds.texi.
38229
38230 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
38231
38232         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
38233         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
38234
38235         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
38236         in wchar_t.  Problem reported by Eric Blake.
38237
38238         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
38239         LEN is smaller than SIZE.  Suggested by Bruno Haible.
38240         Also, help the compiler to keep LEN in a register.
38241
38242 2006-08-11  Eric Blake  <ebb9@byu.net>
38243
38244         * users.txt: Sort.  Add tar.
38245
38246 2006-08-11  Bruno Haible  <bruno@clisp.org>
38247
38248         * users.txt: New file.
38249
38250 2006-08-11  Bruno Haible  <bruno@clisp.org>
38251
38252         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
38253         before <wchar.h>. Needed for OSF/1 and BSD/OS.
38254
38255 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38256
38257         * modules/snprintf (Depends-on): Remove minmax.
38258         (Maintainer): Add self and Bruno.
38259
38260 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38261
38262         * lib/.cppi-disable: Add snprintf.h, socket_.h.
38263         * lib/snprintf.c: Include <errno.h> and <limits.h>.
38264         (EOVERFLOW): Define if the system does not.
38265         Do not include "minmax.h"; it wasn't used.
38266         (snprintf): Don't assume size_t promotes to an unsigned type.
38267         Fix bug when generated string was too long for the buffer: the
38268         buffer's contents are supposed to be the initial prefix of the
38269         output.  Don't assume vasnprintf returns EOVERFLOW if the size
38270         exceeds INT_MAX; do the check ourselves.
38271
38272         Import the following changes from libc:
38273
38274         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
38275
38276         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
38277         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
38278         set wc to the byte which couldn't be converted.
38279         (re_string_reconstruct): Don't clear valid_raw_len before calling
38280         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
38281         tip_context using re_string_context_at.
38282
38283         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
38284
38285         * lib/posix/regex.h: g++ still cannot handled [restrict].
38286
38287         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
38288
38289         * lib/posix/regex.h: Remove special handling for VMS.
38290
38291 2006-08-10  Jim Meyering  <jim@meyering.net>
38292
38293         * modules/same-inode: New module.
38294         * modules/dev-ino: New module.
38295         * modules/cycle-check: Depend on these modules, rather than simply
38296         including their .h files.
38297         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
38298         required via m4/cycle-check.m4.
38299         * modules/same: Depend on new same-inode module, rather than
38300         including same-inode.h.
38301         * modules/chdir-safer: New file.
38302
38303         * modules/chown (Depends-on): Add stat-macros.
38304
38305 2006-08-10  Jim Meyering  <jim@meyering.net>
38306
38307         * m4/cycle-check.m4: New file.
38308         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
38309         * m4/dev-ino.m4, m4/same-inode.m4: New files.
38310
38311 2006-08-10  Eric Blake  <ebb9@byu.net>
38312
38313         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
38314         in from original proposal.
38315
38316 2006-08-10  Eric Blake  <ebb9@byu.net>
38317         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
38318
38319         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
38320         namespace.
38321
38322 2006-08-10  Bruno Haible  <bruno@clisp.org>
38323
38324         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
38325         as well.
38326
38327 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38328
38329         Sync from coreutils.
38330
38331         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
38332
38333         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
38334         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
38335
38336 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38337
38338         * modules/restrict: Remove; no longer needed now that we assume
38339         Autoconf 2.59 or later.
38340         * MODULES.html.sh: Remove 'restrict'.
38341         * modules/argp (Depends-on): Remove 'restrict'.
38342         * modules/base64 (Depends-on): Likewise.
38343         * modules/gc (Depends-on): Likewise.
38344         * modules/getaddrinfo (Depends-on): Likewise.
38345         * modules/glob (Depends-on): Likewise.
38346         * modules/inet_ntop (Depends-on): Likewise.
38347         * modules/inet_pton (Depends-on): Likewise.
38348         * modules/memxor (Depends-on): Likewise.
38349         * modules/regex (Depends-on): Likewise.
38350         * modules/strtok_r (Depends-on): Likewise.
38351         * modules/time_r (Depends-on): Likewise.
38352
38353 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38354
38355         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
38356         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
38357         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
38358         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
38359         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
38360         * m4/memxor.m4 (gl_MEMXOR): Likewise.
38361         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
38362         gl_C_RESTRICT replaced by AC_C_RESTRICT.
38363
38364         Merge from coreutils.
38365         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
38366         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
38367         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38368         * m4/time_r.m4 (gl_TIME_R): Likewise.
38369
38370 2006-08-09  Karl Berry  <karl@gnu.org>
38371
38372         * config/srclist.txt: no more gettext-tools, per Bruno.
38373
38374 2006-08-08  Eric Blake  <ebb9@byu.net>
38375
38376         * modules/verror: New module.
38377         * MODULES.html.sh: Document it.
38378
38379 2006-08-08  Eric Blake  <ebb9@byu.net>
38380
38381         * lib/verror.h, lib/verror.c: New files.
38382
38383 2006-08-08  Eric Blake  <ebb9@byu.net>
38384
38385         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
38386         verror_at_line output complies with GNU Coding Standards even when
38387         file is NULL.
38388
38389 2006-08-07  Bruno Haible  <bruno@clisp.org>
38390
38391         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
38392         versions of AIX.
38393         Reported by Ralf Wildenhues.
38394
38395 2006-08-07  Bruno Haible  <bruno@clisp.org>
38396
38397         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
38398         in an AC_DEFUN. Needed so that the autoconf snippets can use
38399         AC_REQUIRE.
38400
38401 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38402
38403         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38404         Initialize pkgdata_DATA.
38405         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
38406         overriding it.
38407
38408 2006-08-06  Eric Blake  <ebb9@byu.net>
38409
38410         * lib/error.h: Fold in some upstream changes from glibc.
38411         * lib/error.c: Likewise.
38412
38413 2006-08-04  Bruno Haible  <bruno@clisp.org>
38414
38415         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38416         Make the mostlyclean-local rule depend on mostlyclean-generic.
38417         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
38418
38419 2006-07-31  Bruno Haible  <bruno@clisp.org>
38420
38421         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
38422         <stdlib.h>, <string.h>.
38423
38424 2006-07-30  Bruno Haible  <bruno@clisp.org>
38425
38426         * modules/readlink (License): Change to LGPL.
38427
38428 2006-07-30  Bruno Haible  <bruno@clisp.org>
38429
38430         * modules/javaversion (Makefile.am): Distribute javaversion.java and
38431         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
38432         set PKGDATADIR to point to it.
38433
38434 2006-07-30  Bruno Haible  <bruno@clisp.org>
38435
38436         * modules/csharpexec (configure.ac): Comment out macro invocation.
38437         * modules/javaexec (configure.ac): Likewise.
38438         * modules/javacomp-script (configure.ac): Likewise.
38439
38440         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
38441
38442 2006-07-30  Bruno Haible  <bruno@clisp.org>
38443
38444         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
38445         linked-list.
38446
38447 2006-07-30  Bruno Haible  <bruno@clisp.org>
38448
38449         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
38450
38451 2006-07-30  Bruno Haible  <bruno@clisp.org>
38452
38453         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38454         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
38455         get removed.
38456
38457 2006-07-29  Bruno Haible  <bruno@clisp.org>
38458
38459         Make it possible for gnulib-tool to work with locally modified or
38460         augmented gnulib repositories.
38461         * gnulib-tool (func_usage): Document --local-dir option.
38462         (local_gnulib_dir): New variable.
38463         Handle --local-dir option.
38464         (func_lookup_file): New function.
38465         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
38466         (func_get_description, func_get_filelist, func_get_description,
38467         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
38468         func_get_automake_snippet, func_get_include_directive,
38469         func_get_license, func_get_maintainer): Use func_lookup_file.
38470         (func_import, func_create_testdir): Use func_lookup_file.
38471
38472 2006-07-29  Bruno Haible  <bruno@clisp.org>
38473
38474         * modules/setenv (Depends-on): Add unistd.
38475
38476 2006-07-29  Bruno Haible  <bruno@clisp.org>
38477
38478         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
38479
38480 2006-07-29  Bruno Haible  <bruno@clisp.org>
38481
38482         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
38483
38484 2006-07-29  Bruno Haible  <bruno@clisp.org>
38485
38486         * gnulib-tool (import, update): If there is no Makefile.am, look at
38487         aclocal.m4, instead of bailing out.
38488
38489 2006-07-29  Bruno Haible  <bruno@clisp.org>
38490
38491         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
38492         Categorize the options by when they are useful.
38493
38494 2006-07-29  Bruno Haible  <bruno@clisp.org>
38495
38496         * gnulib-tool (func_usage): Document option --no-libtool.
38497         Handle option --no-libtool.
38498         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
38499         for changed semantics of $libtool variable.
38500         (func_import): Likewise. If libtool is not used, show this through
38501         an option --no-libtool.
38502         (func_create_testdir): Update.
38503
38504 2006-07-29  Bruno Haible  <bruno@clisp.org>
38505
38506         * gnulib-tool (func_import): Extend error message about missing
38507         --doc-base.
38508
38509 2006-07-29  Bruno Haible  <bruno@clisp.org>
38510
38511         * gnulib-tool (func_import): Don't create the $docbase directory if
38512         there is no file to store there.
38513
38514 2006-07-29  Bruno Haible  <bruno@clisp.org>
38515
38516         * gnulib-tool (autoconf_minversion): If a --dir option is given and
38517         relevant, look for configure.ac there, not in the current directory.
38518         Also use a simple search for AC_PREREQ, not "autoconf --trace".
38519
38520 2006-07-29  Bruno Haible  <bruno@clisp.org>
38521
38522         * gnulib-tool (SORT): New variable.
38523         (func_usage): Undocument --assume-autoconf option.
38524         Remove --assume-autoconf option handling.
38525         (autoconf_minversion): Determine from the contents of configure.ac.
38526         (func_import): Remove autoconf_minversion handling.
38527         Suggested by Eric Blake.
38528
38529 2006-07-29  Bruno Haible  <bruno@clisp.org>
38530
38531         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
38532
38533 2006-07-29  Bruno Haible  <bruno@clisp.org>
38534
38535         * config/srclist.txt (*setenv.[ch]): Remove rules.
38536
38537 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38538
38539         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
38540
38541 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38542
38543         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
38544         arpa/inet.h.
38545
38546 2006-07-28  Simon Josefsson  <jas@extundo.com>
38547
38548         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
38549         * modules/inet_pton (Depends-on): Likewise.
38550
38551 2006-07-28  Simon Josefsson  <jas@extundo.com>
38552
38553         * m4/netinet_in_h.m4: New file.
38554
38555 2006-07-28  Simon Josefsson  <jas@extundo.com>
38556
38557         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
38558         #include's.
38559
38560 2006-07-28  Simon Josefsson  <jas@extundo.com>
38561
38562         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
38563         #include's.
38564
38565 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
38566
38567         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
38568         setgid on directories only if they set these bits.
38569         * lib/modechange.h: Remove obsolete comment about masks.
38570
38571 2006-07-28  Eric Blake  <ebb9@byu.net>
38572
38573         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
38574         macro expansion.
38575
38576 2006-07-28  Bruno Haible  <bruno@clisp.org>
38577
38578         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
38579
38580 2006-07-28  Bruno Haible  <bruno@clisp.org>
38581
38582         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
38583
38584 2006-07-28  Bruno Haible  <bruno@clisp.org>
38585
38586         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
38587         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
38588         Define fallbacks.
38589         Avoids link error on FreeBSD 4.x.
38590         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
38591
38592         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
38593         encoding.
38594         * lib/mbswidth.c (iswcntrl): Likewise.
38595
38596 2006-07-27  Bruno Haible  <bruno@clisp.org>
38597
38598         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
38599         test.
38600
38601 2006-07-27  Bruno Haible  <bruno@clisp.org>
38602
38603         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
38604         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
38605         defined.
38606
38607 2006-07-26  Eric Blake  <ebb9@byu.net>
38608
38609         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
38610
38611 2006-07-26  Eric Blake  <ebb9@byu.net>
38612
38613         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
38614         like mingw that lack mkstemp.
38615         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
38616         avoid compilation warning on mingw.
38617
38618 2006-07-26  Bruno Haible  <bruno@clisp.org>
38619
38620         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
38621         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
38622         INT_FAST*_MIN, INTPTR_MIN.
38623
38624 2006-07-25  Bruno Haible  <bruno@clisp.org>
38625
38626         * modules/version-etc (Depends-on): Add stdarg.
38627
38628 2006-07-25  Bruno Haible  <bruno@clisp.org>
38629
38630         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
38631         complex commands.
38632
38633 2006-07-25  Bruno Haible  <bruno@clisp.org>
38634
38635         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
38636         defined in <stdarg.h> or config.h.
38637
38638 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38639
38640         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
38641         (gl_STDIO_SAFER): Remove.
38642
38643 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38644
38645         * MODULES.html.sh (File stream based Input/Output):
38646         Add fopen-safer, tmpfile-safer; remove stdio-safer.
38647         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
38648         * modules/fopen-safer, modules/tmpfile-safer: New files.
38649         * modules/stdio-safer: Remove.
38650
38651 2006-07-24  Bruno Haible  <bruno@clisp.org>
38652
38653         * modules/tmpdir: New file.
38654         * MODULES.html.sh (File system functions): Add it.
38655
38656 2006-07-24  Bruno Haible  <bruno@clisp.org>
38657
38658         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
38659         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
38660
38661 2006-07-24  Bruno Haible  <bruno@clisp.org>
38662
38663         * modules/clean-temp: New file.
38664
38665 2006-07-24  Bruno Haible  <bruno@clisp.org>
38666
38667         * m4/tmpdir.m4: New file, from GNU gettext.
38668
38669 2006-07-24  Bruno Haible  <bruno@clisp.org>
38670
38671         * lib/tmpdir.h: New file, from GNU gettext.
38672         * lib/tmpdir.c: New file, from GNU gettext.
38673
38674 2006-07-24  Bruno Haible  <bruno@clisp.org>
38675
38676         * lib/clean-temp.h: New file, from GNU gettext.
38677         * lib/clean-temp.c: New file, from GNU gettext.
38678
38679 2006-07-23  Eric Blake  <ebb9@byu.net>
38680
38681         * modules/stdio-safer (Files): Add tmpfile-safer.c.
38682         (Depends-on): Add binary-io.
38683
38684 2006-07-23  Eric Blake  <ebb9@byu.net>
38685
38686         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
38687
38688 2006-07-23  Eric Blake  <ebb9@byu.net>
38689
38690         * lib/tmpfile-safer.c: New file.
38691         * lib/stdio-safer.h (fopen_safer): Add prototype.
38692         * lib/stdio--.h (tmpfile): Make safer.
38693
38694 2006-07-23  Bruno Haible  <bruno@clisp.org>
38695
38696         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
38697         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
38698         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
38699         gl_linked_remove_at): Use it.
38700
38701 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38702         and Simon Josefsson <jas@extundo.com>
38703
38704         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
38705
38706         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
38707
38708 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38709
38710         * modules/close-stream: New file.
38711         * modules/closeout (Description): Make it clear that it exits
38712         with a diagnostic on error.
38713         (Depends-on): Add close-stream.  Remove fpending, stdbool.
38714         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
38715
38716 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38717
38718         * m4/close-stream.m4: New file.
38719
38720 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38721
38722         * lib/close-stream.c, lib/close-stream.h: New files.
38723
38724 2006-07-22  Bruno Haible  <bruno@clisp.org>
38725
38726         Merge from GNU gettext 0.15.
38727
38728         2006-05-01  Bruno Haible  <bruno@clisp.org>
38729
38730                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
38731
38732         2006-07-22  Bruno Haible  <bruno@clisp.org>
38733
38734                 * modules/javaversion: New file.
38735                 * MODULES.html.sh (Java): Add javaversion.
38736
38737         2006-03-12  Bruno Haible  <bruno@clisp.org>
38738
38739                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
38740
38741         2005-12-04  Bruno Haible  <bruno@clisp.org>
38742
38743                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
38744                 (untested).
38745
38746         2006-06-21  Bruno Haible  <bruno@clisp.org>
38747
38748                 Avoid warnings from recent versions of mcs.
38749                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
38750                 -o, -L, -r any more. Use options documented since mcs-1.0
38751                 instead. Similarly for -g.
38752
38753         2005-12-04  Bruno Haible  <bruno@clisp.org>
38754
38755                 * build-aux/csharpcomp.sh.in: Suffix for resources is
38756                 .resources, not .resource.
38757
38758         2005-07-09  Bruno Haible  <bruno@clisp.org>
38759
38760                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
38761                 add a .dll suffix.
38762                 Reported by Mark Junker <mjscod@gmx.de>.
38763
38764         2006-07-22  Bruno Haible  <bruno@clisp.org>
38765
38766                 * modules/gettext: Upgrade to gettext-0.15.
38767                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
38768                 m4/visibility.m4.
38769                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
38770
38771 2006-07-22  Bruno Haible  <bruno@clisp.org>
38772
38773         Merge from GNU gettext 0.15.
38774
38775         2006-03-25  Bruno Haible  <bruno@clisp.org>
38776
38777                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
38778
38779         2006-07-21  Bruno Haible  <bruno@clisp.org>
38780
38781                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
38782                 "1.1".
38783
38784         2006-05-09  Bruno Haible  <bruno@clisp.org>
38785
38786                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
38787                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
38788                 for the conftestver execution.
38789
38790         2006-05-01  Bruno Haible  <bruno@clisp.org>
38791
38792                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
38793                 optional target-version argument. Verify that the compiler
38794                 groks source of the specified source-version, or add -source
38795                 option as necessary. Verify that the compiler produces
38796                 bytecode in the specified target-version, or add -target and
38797                 -source options as necessary. Make the result of the test
38798                 available as variable CONF_JAVAC. Also log error output in
38799                 config.log.
38800
38801         2006-03-11  Bruno Haible  <bruno@clisp.org>
38802
38803                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
38804
38805         2006-05-09  Bruno Haible  <bruno@clisp.org>
38806
38807                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
38808                 CLASSPATH_SEPARATOR to a semicolon.
38809
38810         2006-03-12  Bruno Haible  <bruno@clisp.org>
38811
38812                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
38813                 available as variable CONF_JAVA, for subsequent autoconf
38814                 tests. Also log error output in config.log.
38815
38816         2006-07-19  Bruno Haible  <bruno@clisp.org>
38817
38818                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
38819                 that getline works on glibc2 systems. Needed to avoid trouble
38820                 in relocatable.c.
38821                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
38822
38823         2005-12-04  Bruno Haible  <bruno@clisp.org>
38824
38825                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
38826                 launcher (untested).
38827
38828         2005-12-04  Bruno Haible  <bruno@clisp.org>
38829
38830                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
38831
38832         2006-07-22  Bruno Haible  <bruno@clisp.org>
38833
38834                 * gettext.m4: Update from GNU gettext-0.15.
38835                 * nls.m4: Likewise.
38836                 * po.m4: Likewise.
38837                 * inttypes-pri.m4: Likewise.
38838                 * inttypes-h.m4: Renamed from inttypes.m4.
38839                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
38840
38841 2006-07-22  Bruno Haible  <bruno@clisp.org>
38842
38843         Merge from GNU gettext 0.15.
38844
38845         2005-07-05  Bruno Haible  <bruno@clisp.org>
38846
38847                 * printf-args.c (printf_fetchargs): Work around broken
38848                 definition of wint_t on mingw.
38849
38850         2005-02-12  Bruno Haible  <bruno@clisp.org>
38851
38852                 * xallocsa.h: Add extern "C" for C++.
38853
38854         2006-05-17  Bruno Haible  <bruno@clisp.org>
38855
38856                 Cygwin portability.
38857                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
38858
38859         2006-04-30  Bruno Haible  <bruno@clisp.org>
38860
38861                 * progreloc.c: Include <mach-o/dyld.h> if available.
38862                 (find_executable): Use _NSGetExecutablePath when possible.
38863
38864         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
38865
38866                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
38867                 function.
38868
38869         2005-12-29  Bruno Haible  <bruno@clisp.org>
38870
38871                 * progreloc.c (set_program_name_and_installdir): Fix
38872                 compilation error.
38873
38874         2005-12-04  Bruno Haible  <bruno@clisp.org>
38875
38876                 Cygwin portability.
38877                 * progreloc.c: Include <windows.h> also on Cygwin.
38878                 (find_executable): Add support for Cygwin.
38879                 (set_program_name_and_installdir): Handle also platforms with
38880                 nonempty EXEEXT.
38881
38882         2006-07-11  Bruno Haible  <bruno@clisp.org>
38883
38884                 * javacomp.c: Fix a comment.
38885                 Reported by Jim Meyering.
38886
38887         2006-04-30  Bruno Haible  <bruno@clisp.org>
38888
38889                 * javacomp.h (compile_java_class): Add source_version,
38890                 target_version arguments.
38891                 * javacomp.c: Rewritten to choose only a compiler that
38892                 respects the specified source_version and target_version.
38893
38894         2006-06-27  Bruno Haible  <bruno@clisp.org>
38895
38896                 Assume correct S_ISDIR macro.
38897                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
38898
38899         2006-07-22  Bruno Haible  <bruno@clisp.org>
38900
38901                 * javaversion.h: New file, from GNU gettext.
38902                 * javaversion.c: New file, from GNU gettext.
38903                 * javaversion.java: New file, from GNU gettext.
38904                 * javaversion.class: New file, from GNU gettext.
38905
38906         2006-05-17  Bruno Haible  <bruno@clisp.org>
38907
38908                 Cygwin portability.
38909                 * javaexec.c (execute_java_class): Test for jview program
38910                 also on Cygwin.
38911
38912         2006-04-09  Bruno Haible  <bruno@clisp.org>
38913
38914                 * fatal-signal.c: Don't include string.h.
38915                 (at_fatal_signal): Use a copying loop instead of memcpy.
38916
38917         2005-12-04  Bruno Haible  <bruno@clisp.org>
38918
38919                 * csharpexec.c: Add support for 'clix' launcher (untested).
38920                 (execute_csharp_using_sscli): New function.
38921                 (execute_csharp_program): Call it.
38922
38923         2006-06-21  Bruno Haible  <bruno@clisp.org>
38924
38925                 Avoid warnings from recent versions of mcs.
38926                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
38927                 -o, -L, -r any more. Use options documented since mcs-1.0
38928                 instead. Similarly for -g.
38929
38930         2005-07-09  Bruno Haible  <bruno@clisp.org>
38931
38932                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
38933                 add a .dll suffix.
38934                 Reported by Mark Junker <mjscod@gmx.de>.
38935
38936         2006-06-17  Bruno Haible  <bruno@clisp.org>
38937
38938                 * config.charset: Update for NetBSD 3.0.
38939
38940         2006-05-17  Bruno Haible  <bruno@clisp.org>
38941
38942                 Cygwin portability.
38943                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
38944
38945         2006-05-16  Bruno Haible  <bruno@clisp.org>
38946
38947                 * localcharset.c [CYGWIN]: Include <windows.h>.
38948                 (get_charset_aliases): For Cygwin, return the same CPxxx
38949                 aliases list as under WIN32.
38950                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
38951                 the environment variables. Fall back to GetACP().
38952
38953         2006-04-05  Bruno Haible  <bruno@clisp.org>
38954
38955                 * config.charset: Update Juan Manuel Guerrero's address.
38956
38957         2005-02-12  Bruno Haible  <bruno@clisp.org>
38958
38959                 * allocsa.h: Add extern "C" for C++.
38960
38961         2005-02-10  Bruno Haible  <bruno@clisp.org>
38962
38963                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
38964                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
38965
38966         2006-07-22  Bruno Haible  <bruno@clisp.org>
38967
38968                 * gettext.h: Update to GNU gettext-0.15.
38969
38970 2006-07-22  Bruno Haible  <bruno@clisp.org>
38971
38972         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
38973         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
38974         lib-prefix.m4, longdouble.m4, ssize_t.m4.
38975
38976 2006-07-21  Eric Blake  <ebb9@byu.net>
38977
38978         * modules/stdlib-safer: New file.
38979         * MODULES.html.sh (File stream based Input/Output): Add
38980         stdlib-safer.
38981
38982 2006-07-21  Eric Blake  <ebb9@byu.net>
38983
38984         * lib/stdlib-safer.h: New file from coreutils, required by
38985         stdlib--.h.
38986
38987 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
38988
38989         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
38990
38991 2006-07-20  Bruno Haible  <bruno@clisp.org>
38992
38993         * gnulib-tool: Recognize new option --assume-autoconf.
38994         (autoconf_minversion): New variable.
38995         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
38996
38997 2006-07-20  Bruno Haible  <bruno@clisp.org>
38998
38999         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
39000
39001 2006-07-19  Derek R. Price  <derek@ximbiot.com>
39002
39003         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
39004         Reindent and repaginate.
39005
39006 2006-07-19  Derek Price  <derek@ximbiot.com>
39007
39008         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
39009         Correct grammar.
39010
39011 2006-07-17  Bruno Haible  <bruno@clisp.org>
39012
39013         * modules/list: New file.
39014         * modules/array-list: New file.
39015         * modules/carray-list, modules/carray-list-tests: New files.
39016         * modules/linked-list, modules/linked-list-tests: New files.
39017         * modules/avltree-list, modules/avltree-list-tests: New files.
39018         * modules/rbtree-list, modules/rbtree-list-tests: New files.
39019         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
39020         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
39021         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
39022         * modules/oset: New file.
39023         * modules/array-oset: New file.
39024         * modules/avltree-oset, modules/avltree-oset-tests: New files.
39025         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
39026         * tests/test-carray_list.c: New file.
39027         * tests/test-linked_list.c: New file.
39028         * tests/test-avltree_list.c: New file.
39029         * tests/test-rbtree_list.c: New file.
39030         * tests/test-linkedhash_list.c: New file.
39031         * tests/test-avltreehash_list.c: New file.
39032         * tests/test-rbtreehash_list.c: New file.
39033         * tests/test-avltree_oset.c: New file.
39034         * tests/test-rbtree_oset.c: New file.
39035         * MODULES.html.sh (Container data structures): New section.
39036
39037 2006-07-17  Bruno Haible  <bruno@clisp.org>
39038
39039         * m4/gl_list.m4: New file.
39040
39041 2006-07-17  Bruno Haible  <bruno@clisp.org>
39042
39043         * lib/gl_list.h: New file.
39044         * lib/gl_list.c: New file.
39045         * lib/gl_array_list.h: New file.
39046         * lib/gl_array_list.c: New file.
39047         * lib/gl_carray_list.h: New file.
39048         * lib/gl_carray_list.c: New file.
39049         * lib/gl_linked_list.h: New file.
39050         * lib/gl_linked_list.c: New file.
39051         * lib/gl_anylinked_list1.h: New file.
39052         * lib/gl_anylinked_list2.h: New file.
39053         * lib/gl_avltree_list.h: New file.
39054         * lib/gl_avltree_list.c: New file.
39055         * lib/gl_anyavltree_list1.h: New file.
39056         * lib/gl_anyavltree_list2.h: New file.
39057         * lib/gl_rbtree_list.h: New file.
39058         * lib/gl_rbtree_list.c: New file.
39059         * lib/gl_anyrbtree_list1.h: New file.
39060         * lib/gl_anyrbtree_list2.h: New file.
39061         * lib/gl_anytree_list1.h: New file.
39062         * lib/gl_anytree_list2.h: New file.
39063         * lib/gl_linkedhash_list.h: New file.
39064         * lib/gl_linkedhash_list.c: New file.
39065         * lib/gl_anyhash_list1.h: New file.
39066         * lib/gl_anyhash_list2.h: New file.
39067         * lib/gl_avltreehash_list.h: New file.
39068         * lib/gl_avltreehash_list.c: New file.
39069         * lib/gl_rbtreehash_list.h: New file.
39070         * lib/gl_rbtreehash_list.c: New file.
39071         * lib/gl_anytreehash_list1.h: New file.
39072         * lib/gl_anytreehash_list2.h: New file.
39073
39074         * lib/gl_oset.h: New file.
39075         * lib/gl_oset.c: New file.
39076         * lib/gl_array_oset.h: New file.
39077         * lib/gl_array_oset.c: New file.
39078         * lib/gl_avltree_oset.h: New file.
39079         * lib/gl_avltree_oset.c: New file.
39080         * lib/gl_rbtree_oset.h: New file.
39081         * lib/gl_rbtree_oset.c: New file.
39082         * lib/gl_anytree_oset.h: New file.
39083
39084 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39085
39086         * m4/mkancesdirs.m4: New file.
39087         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
39088         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
39089         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
39090         it.
39091
39092 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39093
39094         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
39095         * lib/mkancesdirs.h: New files.
39096         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
39097         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
39098         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
39099         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
39100         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
39101         callers changed.  Revamp internals significantly, by not
39102         attempting to create directories that are temporarily more
39103         permissive than the final results.  Do not attempt to use
39104         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
39105         This removes some race conditions, fixes some bugs, and simplifies
39106         things.  Use new dirchownmod function to do owner and mode changes.
39107         * lib/mkdir-p.h: Likewise.
39108         * lib/modechange.c (octal_to_mode): New function.
39109         (struct mode_change): New member mentioned.
39110         (make_node_op_equals): New arg mentioned.  All callers changed.
39111         (mode_compile): Keep track of which mode bits the user has explicitly
39112         mentioned.
39113         (mode_adjust): New arg DIR, so that we implement the X op correctly.
39114         New arg PMODE_BITS, to keep track of which mode bits the user
39115         mentioned; it treats S_ISUID and S_ISGID speciall.
39116         All callers changed.
39117         * lib/modechange.h: Likewise.
39118
39119 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39120
39121         * MODULES.html.sh: Add mkancestors.
39122         * modules/mkancesdirs: New module.
39123         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
39124         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
39125         The chdir-safer and afs files are now orphans; I'll remove them
39126         unless someone speaks up.
39127         Add lib/dirchownmod.c, lib/dirchownmod.h.
39128         (Depends-on): Remove alloca, chown, save-cwd, dirname.
39129         Add lchown, mkancesdirs.
39130         (Maintainer): Add self.
39131
39132 2006-07-15  Karl Berry  <karl@gnu.org>
39133
39134         * gnulib-tool: help message wording/arrangement.
39135
39136 2006-07-14  Simon Josefsson  <jas@extundo.com>
39137
39138         * doc/gnulib.texi (Libtool and Windows): New section.
39139
39140 2006-07-12  Simon Josefsson  <jas@extundo.com>
39141
39142         * modules/gendocs (License): Fix license, approved by Karl.
39143
39144 2006-07-12  Eric Blake  <ebb9@byu.net>
39145
39146         * MODULES.html.sh: Add gendocs.
39147
39148 2006-07-11  Eric Blake  <ebb9@byu.net>
39149
39150         * modules/fdl: New module, to install doc/fdl.texi.
39151         * MODULES.html.sh: Add new section for documentation modules.
39152         * gnulib-tool: Avoid space-tab.
39153         (--doc-base): New option, to manage files from doc.
39154
39155 2006-07-11  Eric Blake  <ebb9@byu.net>
39156
39157         * m4/absolute-header.m4: Fix comments to match recent change.
39158
39159 2006-07-11  Eric Blake  <ebb9@byu.net>
39160
39161         * gnulib-tool: List --doc-base before --tests-base.
39162
39163 2006-07-11  Derek R. Price  <derek@ximbiot.com>
39164
39165         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
39166
39167 2006-07-11  Bruno Haible  <bruno@clisp.org>
39168
39169         * README: Mention where to put documentation.
39170
39171 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39172
39173         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
39174
39175 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39176
39177         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
39178         to stdint.m4.
39179
39180 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39181
39182         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
39183         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
39184         "no/such/file/stdint.h" when there is no such file, so that
39185         the resulting C code can be parsed by dodgy compilers.
39186         Problems reported by Bob Proulx.
39187
39188 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39189
39190         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
39191         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39192         macros into the GNU _D_EXACT_NAMLEN.
39193         * lib/savedir.c:  Likewise.
39194         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
39195
39196 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39197         and Paul Eggert  <eggert@cs.ucla.edu>
39198
39199         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
39200         * m4/savedir.m4:
39201         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39202         macros into the GNU _D_EXACT_NAMLEN.
39203
39204 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39205
39206         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
39207         around the absolute name, to work around a problem with the HP-UX
39208         11.23 native C compiler, reported by Bob Proulx.
39209
39210 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39211
39212         * doc/maintain.texi, make-stds.texi: Sync from
39213         <http://savannah.gnu.org/projects/gnustandards>.
39214
39215 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39216
39217         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
39218
39219 2006-07-09  Jim Meyering  <jim@meyering.net>
39220
39221         * m4/glob.m4: Remove a doubled word in a comment.
39222
39223 2006-07-09  Jim Meyering  <jim@meyering.net>
39224
39225         * lib/argp-pv.c: Remove a doubled word in a comment.
39226         * lib/check-version.c (check_version): Likewise.
39227         * lib/javacomp.c (compile_java_class): Likewise.
39228
39229 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
39230
39231         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
39232         for the benefit of people using Autoconf 2.60.  If you want to
39233         support older Autoconf versions you can copy m4/onceonly_2_57.m4
39234         (or m4/onceonly.m4, if pre-2.57) manually.
39235
39236 2006-07-08  Jim Meyering  <jim@meyering.net>
39237
39238         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
39239         comment.
39240         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
39241         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
39242         comment.
39243
39244 2006-07-08  Jim Meyering  <jim@meyering.net>
39245
39246         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
39247
39248 2006-07-07  Simon Josefsson  <jas@extundo.com>
39249
39250         * tests/test-crc.c: Change expected crc value, the test vector
39251         were probably computed using the old broken crc.c?
39252
39253 2006-07-06  Simon Josefsson  <jas@extundo.com>
39254
39255         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
39256         now the canonical place for the M4 file).
39257
39258         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
39259         from the sys_socket dependency now.
39260
39261         * modules/inet_pton (Files): Ditto.
39262
39263         * modules/inet_ntop (Files): Ditto.
39264
39265 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
39266
39267         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
39268         not gl_PREREQ_GETUSERSHELL.
39269
39270 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39271
39272         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
39273         with only one argument, for Autoconf 2.60.
39274         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
39275         expand to nothing, so add a shell command to avoid syntax error.
39276         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
39277
39278 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39279
39280         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
39281
39282 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39283
39284         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
39285         no longer needed.  Check for isblank decl.
39286         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
39287         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
39288         of existence.
39289
39290 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39291
39292         * lib/getloadavg.c: Use __VMS, not VMS.
39293         * lib/getopt.c: Likewise.
39294         * lib/getpagesize.h: Likewise.
39295         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
39296         and probably does not work.
39297
39298 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39299
39300         * lib/.cppi-disable: Add wcwidth.
39301         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
39302         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
39303         (ISGRAPH): Remove.  All uses changed to isgraph.
39304         (FOLD) [!defined _LIBC]: Remove special case.
39305         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
39306         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
39307         HAVE_ISBLANK.
39308         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
39309         case.
39310
39311 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39312
39313         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
39314         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
39315         brackets.  Other minor changes to suppress some compiler
39316         warnings.
39317
39318 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39319         and Paul Eggert  <eggert@cs.ucla.edu>
39320
39321         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
39322         of invoking obsolescent AC_HEADER_DIRENT macro.
39323         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
39324         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
39325         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
39326         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
39327         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
39328         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
39329         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
39330         * m4/readdir.m4: Remove; no longer needed.
39331
39332 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39333         and Paul Eggert  <eggert@cs.ucla.edu>
39334
39335         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
39336         Don't worry about this obsolete case any more.
39337         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
39338         directories.
39339         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
39340         worry about this obsolete case any more.
39341         * lib/fts.c: Likewise.
39342         * lib/getcwd.c: Likewise.
39343         * lib/glob.h: Likewise.
39344         * lib/savedir.c: Likewise.
39345
39346 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39347
39348         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
39349         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
39350         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
39351         needed.
39352         All uses removed.
39353         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39354         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39355         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
39356         needed.
39357         * m4/getdate.m4 (gl_GETDATE): Likewise.
39358         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39359         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39360         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39361         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39362         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39363         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39364         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
39365         needed.
39366
39367 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39368
39369         * lib/memcasecmp.c: Include <limits.h>.
39370         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
39371         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
39372         Don't assume isdigit succeeds only on '0' through '9'.
39373
39374 2006-07-05  Eric Blake  <ebb9@byu.net>
39375
39376         * modules/getaddrinfo (Depends-on): Add snprintf.
39377
39378 2006-07-05  Eric Blake  <ebb9@byu.net>
39379
39380         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
39381         to avoid 'header present but could not be compiled' on cygwin.
39382
39383 2006-07-05  Eric Blake  <ebb9@byu.net>
39384
39385         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
39386         missing from netdb.h.
39387         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
39388
39389 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39390
39391         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
39392         no longer needed.
39393         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
39394         * m4/getdate.m4 (gl_GETDATE): Likewise.
39395         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39396         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39397         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39398         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39399         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39400
39401 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39402
39403         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
39404         All uses of is_space replaced by isspace.
39405         * lib/exit.h: Don't talk about STDC_HEADERS.
39406         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
39407         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
39408         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
39409         replaced by isprint etc.
39410         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
39411         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39412         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
39413         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
39414         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
39415         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39416
39417 2006-07-05  Bruno Haible  <bruno@clisp.org>
39418
39419         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
39420         the function exists, before testing against AIX.
39421         Reported by Martin Lambers <marlam@marlam.de>.
39422
39423 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39424
39425         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
39426         From Mark D. Baushke.
39427
39428 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39429
39430         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
39431         to the absolute name, not just one, to bypass Sun C 5.8's
39432         "warning: #include of /usr/include/... may be non-portable".
39433
39434 2006-07-04  Eric Blake  <ebb9@byu.net>
39435
39436         * modules/dirname-tests: New test module.
39437         * tests/test-dirname.c: New file, replacing dirname.c
39438         TEST_DIRNAME section that was recently deleted.
39439
39440 2006-07-04  Bruno Haible  <bruno@clisp.org>
39441
39442         Assume ANSI C header files and <ctype.h> functions.
39443         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
39444         (mbsnwidth): Use isprint, iscntrl instead.
39445
39446 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39447
39448         Merge from coreutils.
39449         * MODULES.html.sh: Add xstrtold.
39450         * modules/xstrtold: New file.
39451         * modules/cycle-check (Files): Add lib/same-inode.h.
39452         * modules/dirname (Files): Add m4/double-slash-root.m4.
39453         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
39454         * modules/mkdir-p (Files): Add lib/same-inode.h.
39455         * modules/same (Files): Add lib/same-inode.h.
39456
39457 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39458
39459         * m4/absolute-header.m4: Renamed from full-header-path.m4.
39460         This is to keep the terminology clean; POSIX talks about
39461         "absolute pathnames", not "full pathnames", but the GNU
39462         Coding Standards say to use "path" for something else;
39463         so use "absolute" to keep both sides happy.
39464         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
39465         Set gl_absolute_header, not gl_full_header_path.
39466         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
39467         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
39468         All uses changed.
39469
39470         Merge from coreutils.
39471
39472         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39473
39474         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
39475         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
39476         want to require the building of c-strtod.o.
39477         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
39478         needs -lm directly.
39479         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
39480
39481         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
39482
39483         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
39484         --as-needed option if available.  Problem reported by Albert Chin in
39485         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
39486         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
39487         cc merely issues a bunch of annoying warnings for --as-needed
39488         (this problem was reported by Bob Proulx).  Also, try linking with
39489         -lm to detect a bug in binutils 2.16 (this problem was reported
39490         by Ralf Wildenhues).
39491
39492         2006-06-18  Jim Meyering  <jim@meyering.net>
39493
39494         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
39495         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
39496         macro.
39497         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
39498         also check for glibc-2.4's abort-inducing bug.
39499
39500         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
39501         Low-probability clean-up should be to use rmdir to get rid of
39502         the just-created directory, not unlink.
39503
39504         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
39505         configure fail, and request a bug report to inform us about it.
39506         Add a comment that, barring reports to the contrary, in 2007 we'll
39507         assume ftruncate is universally available.
39508
39509         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39510
39511         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
39512
39513         2006-03-12  Jim Meyering  <jim@meyering.net>
39514
39515         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
39516         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
39517         * m4/same.m4 (gl_SAME): Likewise.
39518         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
39519
39520         2006-03-11  Eric Blake  <ebb9@byu.net>
39521
39522         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
39523         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
39524         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
39525         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
39526
39527 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39528
39529         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
39530         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
39531         reported by Mark D. Baushke, one in
39532         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
39533
39534         Merge from coreutils.
39535
39536         * lib/.cppi-disable: Add stdint_.h.
39537         * lib/.cvsignore: Add stdint.h.
39538
39539         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39540
39541         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
39542         both double and long double versions.
39543         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
39544         * lib/xstrtold.c: New file.
39545         * lib/xstrtod.h (xstrtold): New decl.
39546
39547         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39548
39549         * lib/filemode.c (setst): Remove.
39550         (strmode): Rewrite to avoid setst.  This makes the code shorter,
39551         (arguably) clearer, and the generated code is a bit smaller on my
39552         Debian GNU/Linux stable x86 host.
39553
39554         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39555
39556         * lib/filemode.c: Include "filemode.h" first, to test the interface.
39557         Assume that filemode.h includes sys/types.h and sys/stat.h.
39558         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
39559         (ftypelet): Reorder to put common cases first, for efficiency.
39560         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
39561         to do 'M'.
39562         (strmode): Renamed from mode_string, and now stores 12 bytes instead
39563         of 10, for compatibility with FreeBSD.  All callers changed.
39564         (filemodestring): Now stores 12 bytes instead of 10, and sets file
39565         types that can't be deduced solely from st_mode.  First arg is now a
39566         const pointer.
39567         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
39568         (strmode): Renamed from mode_string.
39569         (filemodestring): New decl.
39570         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
39571         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
39572         needed.
39573         (S_ISPORT, S_ISWHT): New macros, if not already defined.
39574
39575         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
39576
39577         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
39578         fsusage.h now does that.  Include fsusage.h first, to test interface.
39579         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
39580         at most one method (the old code could have generated decls that
39581         didn't conform to C89, not that this was ever exercised).
39582         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
39583
39584         2006-03-19  Jim Meyering  <jim@meyering.net>
39585
39586         Work even in a chroot where d_ino values for entries in "/"
39587         don't match the stat.st_ino values for the same names.
39588         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
39589         number, iterate through all entries again, using lstat instead.
39590         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
39591         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
39592
39593         * lib/getcwd.c (__getcwd): Clarify a comment.
39594         Use memcpy in place of a call to strcpy.
39595
39596         2006-03-12  Jim Meyering  <jim@meyering.net>
39597
39598         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
39599         matches that of the current directory (which we're about to chdir ".."
39600         out of), then save the dev-ino of the parent, instead.
39601
39602         * lib/same-inode.h (SAME_INODE): New file/macro.
39603         * lib/chdir-safer.c (SAME_INODE): Remove definition.
39604         Include "same-inode.h", instead.
39605         * lib/same.c: Likewise.
39606         * lib/cycle-check.h: Include "same-inode.h".
39607         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
39608         * lib/cycle-check.c (SAME_INODE): Remove definition.
39609         * lib/root-dev-ino.h: Include "same-inode.h".
39610
39611         2006-03-11  Eric Blake  <ebb9@byu.net>
39612
39613         * lib/same.c (same_name): s/base_name/last_component/
39614         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
39615         * lib/filenamecat.c (file_name_concat): Likewise.
39616
39617         2006-03-11  Eric Blake  <ebb9@byu.net>,
39618                     Paul Eggert  <eggert@cs.ucla.edu>
39619
39620         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
39621         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
39622         drive prefix.
39623         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
39624         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
39625         (last_component): New method.
39626         * lib/dirname.c (dir_len): Determine when drive letters need a
39627         subsequent slash.  Preserve // when it is special.
39628         (dir_name): Don't append dot when drive letter is absolute.
39629         [TEST_DIRNAME]: Move into a full-blown gnulib test.
39630         * lib/basename.c (base_name): New semantics - malloc the result.
39631         Preserve // when it is special.  Preserve relative files that look
39632         like drive letters.
39633         (base_len): Preserve // when it is special.
39634         (last_component): New method, similar to old base_name semantics.
39635         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
39636         base_name.  Strip redundant slashes from ///.
39637
39638 2006-07-03  Jim Meyering  <jim@meyering.net>
39639
39640         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
39641         macro is used before the first cycle_check call.
39642
39643 2006-07-03  Eric Blake  <ebb9@byu.net>
39644
39645         * modules/dirname (Depends-on): Add xstrndup.
39646
39647 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39648
39649         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
39650         test cases, so that config.log is a bit easier to follow.
39651
39652 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39653
39654         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
39655         both are 64 bits, since this seems to be the tradition, and this
39656         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
39657         we ever run into a host that prefers long long to long in this
39658         case, we'll need another configure-time test.  Problem reported by
39659         Jim Meyering.
39660
39661 2006-07-02  Eric Blake  <ebb9@byu.net>
39662
39663         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
39664
39665 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39666
39667         * modules/inttypes (Depends-on): No longer depends on stdint.
39668         * modules/stdint (Description): Say more about assumptions.
39669         Say that the fast types might differ.  Say macros are used.
39670         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
39671         (Makefile.am): Revise list of substituted symbols to match
39672         new stdint.m4.
39673         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
39674         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
39675         * tests/test-stdint.c (verify_same_types)
39676         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
39677         the code conforms to C99/C89.
39678         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
39679         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
39680
39681 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39682
39683         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
39684         but fix a bug, by requiring at least 64 bits.
39685         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
39686         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
39687         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
39688         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
39689
39690         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
39691         changes.  Make 2.59 a prerequisite.  Check and substitute for
39692         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
39693         inttypes.h.  Do not use special include files; just use the
39694         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
39695         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
39696         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
39697         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
39698         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
39699         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
39700         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
39701         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
39702         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
39703         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
39704         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
39705         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
39706         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
39707         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
39708         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
39709         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
39710         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
39711         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
39712         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
39713         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
39714         WINT_MAX.  Check for C99 conformance more strictly, by detecting
39715         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
39716         not check for things that C99 does not require, e.g., int8_t.  If
39717         a test isn't needed unless <stdint.h> isn't working, and is
39718         unlikely to be needed for any other reason, then don't do it
39719         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
39720         size_t, since we assume C89 freestanding at least.  Do not check
39721         for sig_atomic_t, wchar_t, or wint_t, since the code now does
39722         the right thing even if the types are not defined.  Instead use:
39723         (gl_STDINT_TYPE_PROPERTIES): New macro.
39724         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
39725         testing whether <sys/types.h> clashes, as Autoconf does this for
39726         us now.  All uses removed.
39727         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
39728         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
39729         (gl_CHECK_TYPE_SAME):
39730         Remove; no longer needed.
39731         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
39732         exists, since we'll return 0 anyway in that case.
39733         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
39734
39735 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39736
39737         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
39738         possible collision with system files.
39739         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
39740         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
39741         WCHAR_MIN and WCHAR_MAX in this case.
39742         (<stddef.h>): Do not include; no longer needed.
39743         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
39744         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
39745         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
39746         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
39747         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
39748         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
39749         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
39750         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
39751         !defined(__c99))]: Include in this case too, since it's harmless
39752         now.
39753         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
39754         dangerous to do so.
39755         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
39756         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
39757         (_STDINT_MIN, _STDINT_MAX): New macros.
39758         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
39759         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
39760         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
39761         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
39762         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
39763         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
39764         macros, not typedefs; this simplifies things quite a bit.
39765         Use long int for all types narrower than int64_t.
39766         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
39767         Define in terms of long long int or int64_t or long int,
39768         not int64_t or int32_t.  This saves some compile-time testing.
39769         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
39770         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
39771         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
39772         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
39773         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
39774         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
39775         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
39776         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
39777         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
39778         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
39779         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39780         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39781         undef any previous version and define our own version, for
39782         simplicity and consistency with the new macros for types.
39783         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39784         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39785         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
39786         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
39787         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
39788         @WINT_T_SUFFIX@ to keep things simple here.
39789         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
39790         Simplify by assuming typical 8/16/32/64 host, since we're
39791         already doing that elsewhere anyway.
39792         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
39793         and assume long long int is 64 bits if available.  This
39794         speeds up 'configure'.
39795
39796 2006-07-01  Eric Blake  <ebb9@byu.net>
39797
39798         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
39799         Reported by Andreas Buening.
39800
39801 2006-07-01  Eric Blake  <ebb9@byu.net>
39802
39803         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
39804
39805 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39806
39807         * lib/getaddrinfo.c: fixed typo
39808
39809 2006-06-29  Jim Meyering  <jim@meyering.net>
39810
39811         * modules/strftime (Maintainer): Add my name, since with the
39812         FPRINTFTIME changes strftime.c has forked from glibc.
39813
39814 2006-06-29  Eric Blake  <ebb9@byu.net>
39815
39816         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
39817
39818 2006-06-29  Eric Blake  <ebb9@byu.net>
39819
39820         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
39821
39822 2006-06-29  Eric Blake  <ebb9@byu.net>
39823
39824         * lib/stat_.h: New file.
39825
39826 2006-06-29  Eric Blake  <ebb9@byu.net>
39827
39828         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
39829         unused static function.
39830
39831 2006-06-29  Eric Blake  <ebb9@byu.net>
39832
39833         * doc/functions.texi (Function Portability): Document missing lstat
39834         on mingw.
39835
39836 2006-06-29  Eric Blake  <ebb9@byu.net>
39837
39838         * MODULES.html.sh: Add sys_stat.
39839         * modules/sys_stat: New module.
39840         * modules/mkstemp (Depends-on): Add sys_stat.
39841
39842 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39843
39844         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
39845
39846 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39847
39848         * m4/c-bs-a.m4: Removed.
39849
39850 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39851
39852         * lib/strftime.c: Assume strftime() exists.
39853
39854 2006-06-29  Derek Price  <derek@ximbiot.com>
39855
39856         * modules/c-bs-a: Removed - \a is C89.
39857         * MODULES.html.sh: Remove c-bs-a.
39858
39859 2006-06-29  Bruno Haible  <bruno@clisp.org>
39860
39861         * modules/wcwidth (License): Change to LGPL.
39862
39863 2006-06-28  Simon Josefsson  <jas@extundo.com>
39864
39865         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
39866         on _WIN32.
39867
39868         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
39869         getnameinfo.
39870
39871 2006-06-28  Simon Josefsson  <jas@extundo.com>
39872
39873         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
39874
39875 2006-06-28  Simon Josefsson  <jas@extundo.com>
39876
39877         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
39878         functions there.  It will succeed on Windows XP, but on Windows
39879         2000 and (presumably) earlier, it will fail, and use the internal
39880         re-implementation.
39881         (use_win32_p): New function.
39882         (getaddrinfo): Use strtoul on servname, to support numeric ports.
39883         Support AI_NUMERICSERV to disable getservbyname.
39884         (getnameinfo): New function, only supports
39885         NI_NUMERICHOST|NI_NUMERICSERV for now.
39886
39887         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
39888         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
39889         getnameinfo.
39890
39891 2006-06-28  Eric Blake  <ebb9@byu.net>
39892
39893         * modules/wcwidth: New file.
39894         * modules/mbchar (Depends-on): Add wcwidth.
39895         * modules/mbswidth (Depends-on): Add wcwidth.
39896         * MODULES.html.sh: Add wcwidth.
39897
39898 2006-06-28  Eric Blake  <ebb9@byu.net>
39899
39900         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
39901         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
39902
39903 2006-06-28  Eric Blake  <ebb9@byu.net>
39904
39905         * lib/xvasprintf.h: Fix comments.
39906
39907 2006-06-28  Eric Blake  <ebb9@byu.net>
39908
39909         * lib/mbchar.h (wcwidth): Include wcwidth.h.
39910         * lib/mbswidth.c (wcwidth): Move from here...
39911         * lib/wcwidth.h: ...to this new file.
39912
39913 2006-06-28  Derek R. Price  <derek@ximbiot.com>
39914
39915         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
39916
39917         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
39918         it's obsolete.
39919         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
39920
39921 2006-06-28  Derek R. Price  <derek@ximbiot.com>
39922
39923         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
39924         Autoconf 2.60 says this stuff was obsolete.
39925
39926 2006-06-28  Bruno Haible  <bruno@clisp.org>
39927
39928         * modules/wcwidth (Files): Add m4/wchar_t.m4.
39929
39930 2006-06-28  Bruno Haible  <bruno@clisp.org>
39931
39932         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
39933         gt_TYPE_WCHAR_T.
39934
39935 2006-06-28  Bruno Haible  <bruno@clisp.org>
39936
39937         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
39938         declaration for wcwidth.
39939         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
39940
39941 2006-06-28  Bruno Haible  <bruno@clisp.org>
39942
39943         * lib/mkdtemp.c [MINGW]: Include <io.h>.
39944         (mkdir): Define using _mkdir.
39945
39946 2006-06-28  Bruno Haible  <bruno@clisp.org>
39947
39948         * lib/getaddrinfo.h: Fix POSIX URL.
39949         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
39950         _WIN32.
39951         (use_win32_p): Make static.
39952         (getaddrinfo): Reject service name if it is empty or does not consist
39953         solely of decimal digits, or if its value is > 65535.
39954         (getnameinfo): Remove useless casts.
39955
39956 2006-06-27  Simon Josefsson  <jas@extundo.com>
39957
39958         * modules/sys_select: New file, suggested by Bruno Haible, Paul
39959         Eggert and Martin Lambers.
39960
39961 2006-06-27  Simon Josefsson  <jas@extundo.com>
39962
39963         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
39964         Eggert and Martin Lambers.
39965
39966 2006-06-27  Bruno Haible  <bruno@clisp.org>
39967
39968         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
39969         result to 0, not to empty.
39970         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
39971
39972 2006-06-27  Bruno Haible  <bruno@clisp.org>
39973
39974         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
39975
39976 2006-06-26  Simon Josefsson  <jas@extundo.com>
39977
39978         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
39979         present.
39980
39981 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
39982
39983         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
39984         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
39985         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
39986
39987 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
39988
39989         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
39990
39991 2006-06-26  Bruno Haible  <bruno@clisp.org>
39992
39993         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
39994
39995 2006-06-26  Bruno Haible  <bruno@clisp.org>
39996
39997         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
39998
39999 2006-06-26  Bruno Haible  <bruno@clisp.org>
40000
40001         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
40002         SGI C compiler in pre-C99 mode.
40003         Suggested by Mark D. Baushke and Larry Jones.
40004
40005 2006-06-26  Bruno Haible  <bruno@clisp.org>
40006
40007         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
40008         WCHAR_MAX.
40009         Reported by Mark D. Baushke and Larry Jones.
40010
40011 2006-06-26  Bruno Haible  <bruno@clisp.org>
40012
40013         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
40014         in pre-C99 mode.
40015         Suggested by Mark D. Baushke and Larry Jones.
40016
40017 2006-06-23  Simon Josefsson  <jas@extundo.com>
40018             Bruno Haible  <bruno@clisp.org>
40019
40020         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
40021         Emit mostlyclean-local rule.
40022         (func_emit_tests_Makefile_am): Likewise.
40023         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
40024
40025 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
40026
40027         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
40028
40029 2006-06-23  Bruno Haible  <bruno@clisp.org>
40030
40031         * tests/test-stdint.c: Update to match ISO C 99 Technical
40032         Corrigendum 1.
40033
40034 2006-06-23  Bruno Haible  <bruno@clisp.org>
40035
40036         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
40037
40038 2006-06-23  Bruno Haible  <bruno@clisp.org>
40039
40040         * lib/stdint_.h: Treat IRIX like OpenBSD.
40041
40042 2006-06-23  Bruno Haible  <bruno@clisp.org>
40043
40044         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
40045         ISO C 99 Technical Corrigendum 1.
40046
40047 2006-06-22  Simon Josefsson  <jas@extundo.com>
40048
40049         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
40050         MinGW.
40051
40052 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
40053
40054         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
40055         needed.  Some compiler complained about some of them.  Problem reported
40056         by Larry Jones in
40057         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
40058
40059 2006-06-21  Simon Josefsson  <jas@extundo.com>
40060
40061         * tests/test-getaddrinfo.c: New file.
40062
40063         * modules/getaddrinfo-tests: New file.
40064
40065         * MODULES.html.sh: Add inet_pton.
40066
40067         * modules/inet_pton: New file.
40068
40069 2006-06-21  Simon Josefsson  <jas@extundo.com>
40070
40071         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
40072         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
40073         of using the (limited) gnulib implementation on Windows XP.
40074
40075         * m4/inet_pton.m4: New file.
40076
40077 2006-06-21  Simon Josefsson  <jas@extundo.com>
40078
40079         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
40080         variable.
40081
40082         * lib/socket_.h: Don't define WINVER.
40083
40084         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
40085         slightly modified to work in gnulib.
40086
40087 2006-06-21  Simon Josefsson  <jas@extundo.com>
40088
40089         * doc/gnulib.texi (Windows sockets): Add.
40090
40091 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
40092
40093         * lib/read-file.c (fread_file): Start with buffer allocation of
40094         0 bytes rather than 1 byte; this simplifies the code.
40095         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
40096         code to free buffer and save/restore errno.
40097         (internal_read_file): Remove unused local.
40098
40099 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
40100
40101         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
40102         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
40103         Problem reported by Denis Excoffier in
40104         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
40105
40106 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40107
40108         * modules/sys_socket, modules/socklen: Include sys/types since
40109         FreeBSD 4.x's sys/socket.h needs it.
40110
40111 2006-06-19  Simon Josefsson  <jas@extundo.com>
40112
40113         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
40114
40115 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
40116
40117         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
40118
40119 2006-06-19  Bruno Haible  <bruno@clisp.org>
40120
40121         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
40122         and FULL_PATH_INTTYPES_H in angle brackets.
40123         Reported by Mark D. Baushke <mdb@gnu.org>.
40124
40125 2006-06-17  Eric Blake  <ebb9@byu.net>
40126
40127         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
40128         errno.
40129
40130 2006-06-17  Bruno Haible  <bruno@clisp.org>
40131
40132         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
40133         <sys/inttypes.h>.
40134
40135 2006-06-17  Bruno Haible  <bruno@clisp.org>
40136
40137         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
40138         whether errno is declared. Assume <errno.h> declares errno.
40139
40140 2006-06-17  Bruno Haible  <bruno@clisp.org>
40141
40142         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
40143
40144 2006-06-17  Bruno Haible  <bruno@clisp.org>
40145
40146         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
40147         problem on Solaris 2.5.1.
40148
40149 2006-06-16  Eric Blake  <ebb9@byu.net>
40150
40151         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
40152         * lib/unicodeio.c [!defined errno]: Likewise.
40153         * lib/strtol.c [!defined errno]: Likewise.
40154         * lib/strtod.c [!defined errno]: Likewise.
40155
40156 2006-06-15  Eric Blake  <ebb9@byu.net>
40157
40158         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
40159
40160 2006-06-15  Eric Blake  <ebb9@byu.net>
40161
40162         * config/srclist.txt (ssize_t.m4): Lose sync.
40163
40164 2006-06-15  Bruno Haible  <bruno@clisp.org>
40165
40166         * modules/stdint (Files): Include m4/full-header-path.m4,
40167         m4/size_max.m4, m4/wchar_t.m4.
40168         (Makefile.am): Many more substitutions.
40169         * modules/stdint-tests: New file.
40170         * tests/test-stdint.c: New file.
40171
40172 2006-06-15  Bruno Haible  <bruno@clisp.org>
40173
40174         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
40175         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
40176         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
40177         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
40178         gl_CHECK_TYPE_SAME): New macros.
40179
40180 2006-06-15  Bruno Haible  <bruno@clisp.org>
40181
40182         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
40183
40184 2006-06-15  Bruno Haible  <bruno@clisp.org>
40185
40186         * lib/stdint_.h: Rewritten to be fully auto-configured.
40187         Fixes bug on HP-UX/IA64.
40188
40189 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
40190
40191         * lib/getdate.y (__attribute__): Don't define if already defined.
40192         Problem reported by Larry Jones.
40193         * lib/utimens.c (__attribute__): Likewise.
40194
40195 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
40196
40197         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
40198         reported by Andreas Schwab.
40199
40200 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40201             Bruno Haible  <bruno@clisp.org>
40202
40203         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
40204         check for the declaration of strnlen and a run test that exposes the
40205         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
40206         rpl_strndup.
40207
40208 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40209             Bruno Haible  <bruno@clisp.org>
40210
40211         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
40212
40213 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40214
40215         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
40216         compile test, for Tru64 4.0D.
40217
40218 2006-05-28  Karl Berry  <karl@gnu.org>
40219
40220         * config/srclist.txt (printf-args.c): lose sync.
40221
40222 2006-05-26  Martin Lambers  <marlam@marlam.de>
40223
40224         * lib/getpass.c: Updates the test for the native W32 API, and adds
40225         missing includes, thus fixing compilation warnings.
40226
40227 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
40228
40229         * lib/exclude.c (exclude_fnmatch): New function.
40230         (excluded_file_name): Call exclude_fnmatch.
40231         * lib/exclude.h (excluded_file_name): New prototype
40232
40233 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
40234
40235         * lib/tempname.c (small_open, large_open): New macros.
40236         (__open, __open64) [!_LIBC]: Remove.
40237         (__gen_tempname): Use small_open and large_open instead of __open
40238         and __open64.  This fixes a portability bug on HP-UX 11.11i
40239         reported by Simon Wing-Tang in
40240         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
40241
40242 2006-05-24  Bruno Haible  <bruno@clisp.org>
40243
40244         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
40245         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
40246         Reported by Thorsten Maerz <torte@netztorte.de> via
40247         Aaron Stone <aaron@serendipity.cx>.
40248
40249 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40250
40251         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
40252         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
40253         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
40254         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
40255         not really conditional on the cache.
40256         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
40257
40258 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40259
40260         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
40261         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
40262         (my_usleep): Don't mishandle maximum value.
40263
40264 2006-05-19  Jim Meyering  <jim@meyering.net>
40265
40266         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
40267
40268 2006-05-17  Bruno Haible  <bruno@clisp.org>
40269
40270         Cygwin portability.
40271         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
40272
40273 2006-05-17  Bruno Haible  <bruno@clisp.org>
40274
40275         * lib/stdint_.h: Fix recognition of Cygwin.
40276
40277 2006-05-15  Bruno Haible  <bruno@clisp.org>
40278
40279         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
40280         on libtool patch by Ralf Wildenhues.
40281
40282 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
40283
40284         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
40285         test for C99 conformance; (bool) 0.5 is an integer constant
40286         expression, but (bool) -0.5 is not.  Problem reported by Fedor
40287         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
40288
40289 2006-05-11  Simon Josefsson  <jas@extundo.com>
40290
40291         * m4/xvasprintf.m4: Fix obvious typo.
40292
40293 2006-05-11  Jim Meyering  <jim@meyering.net>
40294
40295         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
40296         James Lemley.
40297
40298 2006-05-10  Simon Josefsson  <jas@extundo.com>
40299
40300         * lib/md4.c: Typo fix, update copyright years.
40301         (K1, K2): Don't use L because it turn computations into 64-bit on
40302         64-bit platforms.
40303
40304 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
40305
40306         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
40307         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
40308         unwanted sign propagation, e.g., on hosts with 64-bit int.
40309         There still are some problems with reeelly weird theoretical hosts
40310         (e.g., 33-bit int) but it's not worth worrying about now.
40311         * lib/sha1.c (rol): Likewise.
40312         (K1, K2, K3, K4): Remove unnecessary L suffix.
40313
40314 2006-05-10  Bruno Haible  <bruno@clisp.org>
40315
40316         * lib/des.c: Cast to avoid warnings.
40317
40318 2006-05-09  Bruno Haible  <bruno@clisp.org>
40319
40320         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
40321         (Depends-on): Depend also on xsize, stdarg.
40322         (configure.ac): Add gl_XVASPRINTF.
40323
40324 2006-05-09  Bruno Haible  <bruno@clisp.org>
40325
40326         * m4/xvasprintf.m4: New file.
40327
40328 2006-05-09  Bruno Haible  <bruno@clisp.org>
40329
40330         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
40331         (EOVERFLOW): Define fallback value.
40332         (xstrcat): New function.
40333         (xvasprintf): Recognize the special case of a string concatenation.
40334
40335 2006-05-08  Eric Blake  <ebb9@byu.net>
40336
40337         * gnulib-tool (func_version): Base copyright year on CVS date.
40338         (func_emit_copyright_notice): New function.
40339         (func_emit_lib_Makefile_am): Use it.
40340         (func_emit_tests_Makefile_am): Likewise.
40341         (func_import): Likewise.
40342
40343 2006-05-08  Bruno Haible  <bruno@clisp.org>
40344
40345         * modules/stdarg: New file.
40346         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
40347
40348 2006-05-08  Bruno Haible  <bruno@clisp.org>
40349
40350         * m4/stdarg.m4: New file, from GNU gettext.
40351
40352 2006-05-08  Bruno Haible  <bruno@clisp.org>
40353
40354         * config/srclist.txt (build-aux/config.rpath): different from latest
40355         release.
40356
40357 2006-05-08  Bruno Haible  <bruno@clisp.org>
40358
40359         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
40360
40361 2006-05-05  Jim Meyering  <jim@meyering.net>
40362
40363         * m4/warning.m4: New file, derived from bison's file by the same name.
40364
40365 2006-05-03  Bruno Haible  <bruno@clisp.org>
40366
40367         * lib/stdint_.h: Shorter URL.
40368         * lib/inttypes.h: Likewise.
40369
40370 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40371
40372         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
40373
40374 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40375
40376         * lib/verify.h: Document the internals better.  Most of this change
40377         was written by Bruno Haible.
40378
40379 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40380
40381         * doc/verify.texi: New file, partly based on a proposal by
40382         Bruno Haible.
40383
40384 2006-05-02  Bruno Haible  <bruno@clisp.org>
40385
40386         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
40387         test from here...
40388         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
40389
40390 2006-04-29  Bruno Haible  <bruno@clisp.org>
40391
40392         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
40393         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
40394
40395 2006-04-29  Bruno Haible  <bruno@clisp.org>
40396
40397         * gnulib-tool: Make --update option actually work.
40398
40399 2006-04-29  Bruno Haible  <bruno@clisp.org>
40400
40401         * doc/gcd.texi: New file.
40402         * doc/gnulib.texi: Include it.
40403
40404 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
40405
40406         * lib/getdate.y (get_date): When adding relative date, start with the
40407         initial time, not with the result of the first mktime call.
40408
40409 2006-04-25  Bruno Haible  <bruno@clisp.org>
40410
40411         * gnulib-tool (func_import): Output the include directives in three
40412         blocks, sorted separately.
40413         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40414
40415 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40416
40417         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
40418         to define main with arguments, for C++.  Reported by Eric Blake.
40419         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
40420         Prefer 'int main ()' to 'int main (void)', for C++.
40421         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
40422         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
40423         for 'main', for C99 and C++.
40424
40425 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40426
40427         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
40428         Don't assume that exit status -1 is valid.
40429         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40430         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
40431         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
40432         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
40433         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
40434         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
40435         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
40436         functions can be used without declaring them, or that you can
40437         exit with status -1.
40438         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
40439
40440 2006-04-24  Karl Berry  <karl@gnu.org>
40441
40442         * config/srclist.txt (longdouble.m4): sync lost.
40443
40444 2006-04-24  Eric Blake  <ebb9@byu.net>
40445
40446         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
40447
40448 2006-04-24  Bruno Haible  <bruno@clisp.org>
40449
40450         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
40451         poll() implementation in AIX.
40452         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40453
40454 2006-04-24  Bruno Haible  <bruno@clisp.org>
40455
40456         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
40457         assigned exactly once.
40458
40459 2006-04-23  Claudio Fontana  <claudio@gnu.org>
40460             Bruno Haible  <bruno@clisp.org>
40461
40462         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
40463         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
40464         for AM_CPPFLAGS.
40465
40466 2006-04-23  Bruno Haible  <bruno@clisp.org>
40467
40468         * modules/copy-file: Depend on unistd.
40469         * modules/execute: Likewise.
40470         * modules/fatal-signal: Likewise.
40471         * modules/findprog: Likewise.
40472         * modules/mkdtemp : Likewise.
40473         * modules/pipe: Likewise.
40474         * modules/wait-process: Likewise.
40475
40476 2006-04-23  Bruno Haible  <bruno@clisp.org>
40477
40478         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
40479         condition was already detected.
40480         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40481
40482 2006-04-23  Bruno Haible  <bruno@clisp.org>
40483
40484         * lib/copy-file.c: Include <unistd.h> unconditionally.
40485         * lib/execute.c: Likewise.
40486         * lib/fatal-signal.c: Likewise.
40487         * lib/findprog.c: Likewise.
40488         * lib/mkdtemp.c: Likewise.
40489         * lib/pipe.h: Likewise.
40490         * lib/pipe.c: Likewise.
40491         * lib/wait-process.h: Likewise.
40492
40493 2006-04-23  Bruno Haible  <bruno@clisp.org>
40494
40495         * gnulib-tool (func_usage): Fix --import description. Document
40496         --update.
40497         (func_import): Create temporary file in a temporary directory, if
40498         --dry-run is specified. Silence errors from 'grep' when there are no
40499         m4 files in $m4dir.
40500         (func_create_testdir): Silence errors from 'grep' when there are no
40501         m4 files in $m4dir.
40502         Reported by Karl Berry <karl@freefriends.org>.
40503
40504 2006-04-20  Bruno Haible  <bruno@clisp.org>
40505
40506         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
40507         one argument, so that the code will be portable to Autoconf 2.60.
40508         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
40509         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
40510         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
40511
40512 2006-04-19  Derek Price  <derek@ximbiot.com>
40513             Eric Blake  <ebb9@byu.net>
40514
40515         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
40516         rather than "/full/path.h".  Update comment to match.  Shorten &
40517         generalize m4_translit call via AS_TR_CPP.
40518
40519 2006-04-19  Derek Price  <derek@ximbiot.com>
40520             Eric Blake  <ebb9@byu.net>
40521
40522         * lib/inttypes.h: Correct grammar in comment.
40523
40524 2006-04-18  Derek Price  <derek@ximbiot.com>
40525             Paul Eggert  <eggert@cs.ucla.edu>
40526
40527         * modules/inttypes: New file.
40528         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
40529
40530 2006-04-18  Derek Price  <derek@ximbiot.com>
40531             Paul Eggert  <eggert@cs.ucla.edu>
40532
40533         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
40534         New files.
40535
40536 2006-04-18  Derek Price  <derek@ximbiot.com>
40537             Paul Eggert  <eggert@cs.ucla.edu>
40538
40539         * lib/inttypes.h: New file.
40540         * lib/strtoimax.c: Assume <inttypes.h>.
40541
40542 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
40543
40544         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
40545         isn't mounted.  Problem reported by Kir Kolyshkin.
40546
40547 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
40548
40549         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
40550         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
40551         Derek R. Price.
40552         * lib/regex.h (RE_DUP_MAX): Update comment to match current
40553         implementation.
40554
40555 2006-04-12  Eric Blake  <ebb9@byu.net>
40556
40557         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
40558         is now done automatically by the corresponding Autoconf macro.
40559
40560 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
40561
40562         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
40563         time_r.h.
40564
40565 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40566
40567         Merge regex changes from libc, removing some of our
40568         POSIX-conformance changes that were rejected and redoing them in a
40569         less-intrusive way.
40570
40571         * lib/regcomp.c (re_compile_internal, init_dfa):
40572         Length arg is now size_t, not Idx.  All uses changed.
40573         (peek_token): Forward decl now says internal_function.
40574         (__re_error_msgid, __re_error_msgid_idx):
40575         Now static rather than extern with attribute_hidden.
40576         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
40577         For some reason libc prefers K&R style defns for external functions.
40578         (regerror) [!defined _LIBC]: Likewise.
40579         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
40580         (seek_collating_symbol_entry, lookup_collation_sequence_value):
40581         (build_range_exp, build_collating_symbol):
40582         Use K&R-style defn.
40583         (re_compile_fastmap): Use '\0' to memset, not 0.
40584         (utf8_sb_map): Make the calculations more obvious.
40585         (init_dfa, parse_bracket_exp, build_charclass_op):
40586         Call calloc and cast result, as glibc does.
40587         (init_word_char, fetch_token, peek_token, peek_token_bracket):
40588         (build_range_exp, build_collating_symbol):
40589         Now internal functions.
40590
40591         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
40592
40593         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
40594         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
40595         Don't depend on VMS; depend on __VMS instead, for POSIX
40596         namespace cleanness.
40597         (regoff_t): Define to ssize_t, not long int.
40598
40599         Remove the REG_ macros named below.  Instead, make the old names
40600         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
40601         __USE_GNU_REGEX.
40602         (REG_BACKSLASH_ESCAPE_IN_LISTS):
40603         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
40604         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
40605         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
40606         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
40607         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
40608         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
40609         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
40610         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
40611         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
40612         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
40613         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
40614         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
40615         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
40616         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
40617         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
40618         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
40619         (REG_NREGS):
40620         Remove.  All uses replaced by the old RE_* names.
40621         (RE_BACKSLASH_ESCAPE_IN_LISTS):
40622         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
40623         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
40624         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
40625         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
40626         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
40627         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
40628         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
40629         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
40630         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
40631         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
40632         Don't bother having these macros be independent of each others'
40633         values, since they no longer exist in the POSIX name space.
40634
40635         Rename the following member names back to their old names,
40636         unless !__USE_GNU_REGEX.  All uses changed back.
40637         (buffer): Renamed from re_buffer.
40638         (allocated): Renamed from re_allocated.
40639         (used): Renamed from re_used.
40640         (syntax): Renamed from re_syntax.
40641         (fastmap): Renamed from re_fastmap.
40642         (translate): Renamed from re_translate.
40643         (can_be_null): Renamed from re_can_be_null.
40644         (regs_allocated): Renamed from re_regs_allocated.
40645         (fastmap_accurate): Renamed from re_fastmap_accurate.
40646         (no_sub): Renamed from re_no_sub.
40647         (not_bol): Renamed from re_not_bol.
40648         (not_eol): Renamed from re_not_eol.
40649         (newline_anchor): Renamed from re_newline_anchor.
40650         (num_regs): Renamed from rm_num_regs.
40651         (start): Renamed from rm_start.
40652         (end): Renamed from rm_end.
40653
40654         (free_state): Move up a bit.
40655
40656         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
40657         #define to be empty.
40658         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
40659         when that is what is intended.
40660         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
40661         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
40662         (MAX): New macro.
40663         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
40664         All uses changed back to re_malloc, etc.  It's now the caller's
40665         responsibility to check for overflow; all callers changed.
40666         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
40667         (re_x2nrealloc): Remove.
40668         (free_state): Remove decl.
40669
40670         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
40671         (re_set_registers, re_exec):
40672         Use K&R-style defn.
40673
40674         2006-01-31  Roland McGrath  <roland@redhat.com>
40675
40676         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
40677         Reported by Mike Frysinger <vapier@gentoo.org>.
40678
40679         2006-01-15  Andreas Jaeger  <aj@suse.de>
40680
40681         [BZ #1950]
40682         * lib/regex_internal.c (re_string_reconstruct): Adjust for
40683         build_wcs_upper_buffer change.
40684         (build_wcs_upper_buffer): Change return type.
40685
40686         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
40687
40688         * lib/regex_internal.h: Include <stdint.h> if available.
40689
40690         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
40691
40692         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
40693
40694         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
40695
40696         * lib/regcomp.c: Adjust for changed secondary hash function.
40697
40698         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
40699
40700         * lib/regex.h: Pretty printing.
40701         Clean up namespace a bit.
40702
40703         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
40704
40705         * lib/regexec.c (update_cur_sifted_state, check_arrival,
40706         check_arrival_add_next_nodes): Avoid using uninitialized variable.
40707
40708         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
40709                     Ulrich Drepper  <drepper@redhat.com>
40710
40711         [BZ #1302]
40712         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
40713         changed.
40714         (bitset_word_t): Renamed from bitset_word.  All uses changed.
40715
40716         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
40717
40718         [BZ #281]
40719         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
40720         * lib/regcomp.c: Remove unnecessary uses of
40721         unsigned RE_TRANSLATE_TYPE.
40722         * lib/regex_internal.h: Likewise.
40723         * lib/regex_internal.c: Likewise.
40724         * lib/regexec.c: Likewise.
40725         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
40726
40727         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
40728
40729         * lib/regexec.c (find_recover_state): Remove unnecessary
40730         initialization.
40731         (transit_state_bkref): Make DFA a const pointer.
40732         (get_subexp): Likewise.
40733         (check_arrival): Likewise.
40734         (update_cur_sifted_state): Likewise.
40735         (re_search_internal): Likewise.
40736         (prune_impossible_nodes): Likewise.
40737         (acquire_init_state_context): Likewise.
40738         (proceed_next_node): Likewise.
40739         (set_regs): Likewise.
40740         (free_fail_stack_return): Likewise.
40741         (check_arrival_expand_ecl): Mark DFA parameter as const.
40742         (check_arrival_expand_ecl_sub): Likewise.
40743         (check_subexp_limits): Likewise.
40744         (sub_epsilon_src_nodes):  Likewise.
40745         (add_epsilon_src_nodes):  Likewise.
40746         (merge_state_array): Likewise.
40747         (update_regs): Likewise.
40748         (build_trtable): Likewise.
40749         (sift_states_backward): Mark MCTX parameter as const.
40750         (build_sifted_states): Likewise.
40751         (update_cur_sifted_state): Likewise.
40752         (sift_states_mkref): Likewise.
40753         (check_arrival_expand_ecl): Mark eclosure as const.
40754         (check_dst_limits_calc_pos_1): Likewise.
40755         * lib/regex_internal.h (re_match_context_t): Make dfa a const
40756         pointer.
40757
40758         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
40759
40760         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
40761         (transit_state_sb): Likewise.
40762         (transit_state_mb): Likewise.
40763         (sift_states_iter_mb): Likewise.
40764         (check_arrival_add_next_nodes): Likewise.
40765         (check_node_accept_bytes): Change first parameter to pointer-to-const.
40766         [_LIBC] (re_search_2_stub): Use mempcpy.
40767
40768         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
40769         mbrtowc for very simple UTF-8 case.
40770
40771         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
40772         a pointer-to-const.
40773         (re_acquire_state_context): Likewise.
40774         * lib/regex_internal.h: Adjust prototypes.
40775
40776         * lib/regex.c: Prevent using C++ compilers.
40777
40778         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
40779         (re_acquire_state_context): Likewise.
40780
40781 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40782
40783         * modules/regex (Depends-on): Add ssize_t.
40784
40785 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40786
40787         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
40788         translation table.
40789
40790 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40791
40792         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
40793
40794 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
40795             Bruno Haible  <bruno@clisp.org>
40796
40797         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
40798         <sys/types.h> and <inttypes.h>.
40799
40800 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40801
40802         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
40803         `__error_t_defined', so argp.h will not typedef the former.
40804
40805 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
40806
40807         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
40808         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
40809         glibc names.  Even if glibc is changed to conform to POSIX, the
40810         traditional names will be available anyway, since regex depends on
40811         the extensions module.  Also, fix a longstanding typo in the
40812         implementation of Spencer ERE test #75 from grep 2.3.  Problems
40813         reported by Emanuele Giaquinta.  Also, change sense of cached
40814         variable, so that the message makes sense.
40815
40816 2006-03-24  Simon Josefsson  <jas@extundo.com>
40817
40818         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
40819         including some doc fixes.
40820         (base64_encode_alloc): Fix +1 bug on allocation failures.
40821
40822 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40823
40824         * lib/base64.c (base64_encode): Do not read past end of array with
40825         unsanitized input on systems with CHAR_BIT > 8.
40826
40827 2006-03-24  Eric Blake  <ebb9@byu.net>
40828
40829         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
40830
40831 2006-03-22  Karl Berry  <karl@gnu.org>
40832
40833         * config/srclist.txt (*setenv.[ch]): get from coreutils.
40834         * config/srclistvars.sh (COREUTILS): new var.
40835
40836 2006-03-17  Jim Meyering  <jim@meyering.net>
40837
40838         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
40839         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
40840
40841 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40842
40843         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
40844         no longer needs it.  Instead, check that regoff_t is as least
40845         as wide as ptrdiff_t.
40846
40847         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
40848         so that our regex.h stays compatible with the installed regex.
40849         This is helpful for installers who configure --without-included-regex.
40850         Problem reported by Emanuele Giaquinta.
40851
40852 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40853
40854         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
40855         Typedef to long int, not to off_, as POSIX will likely change
40856         in that direction.
40857
40858 2006-03-15  Eric Blake  <ebb9@byu.net>
40859
40860         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
40861
40862 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
40863
40864         * lib/argp-help.c (validate_uparams): Fix typo
40865         * lib/argp-parse.c (argp_default_options): Consistently begin help
40866         messages with a lowercase letter.
40867
40868 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
40869
40870         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
40871         overrun buffers and shouldn't be used (much as gets shouldn't be
40872         used).
40873         * lib/time_r.c (asctime_r, ctime_r): Likewise.
40874
40875 2006-03-08  Simon Josefsson  <jas@extundo.com>
40876
40877         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
40878         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40879
40880 2006-03-08  Simon Josefsson  <jas@extundo.com>
40881
40882         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
40883         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40884
40885 2006-03-08  Simon Josefsson  <jas@extundo.com>
40886
40887         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
40888         signal that configure disabled the device.
40889
40890 2006-03-08  Simon Josefsson  <jas@extundo.com>
40891
40892         * build-aux/maint.mk: Fix refresh-po, to handle no translated
40893         languages.
40894
40895 2006-03-07  Simon Josefsson  <jas@extundo.com>
40896
40897         * modules/getopt (Depends-on): Add unistd.
40898
40899         * modules/unistd: New file.
40900
40901 2006-03-07  Simon Josefsson  <jas@extundo.com>
40902
40903         * modules/gc-random: New file.
40904
40905 2006-03-07  Simon Josefsson  <jas@extundo.com>
40906
40907         * m4/unistd_h.m4: New file.
40908
40909 2006-03-07  Simon Josefsson  <jas@extundo.com>
40910
40911         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
40912         test to be side-effect free by storing the result in the cache
40913         variable gl_cv_lib_readline, and moving the assignment of
40914         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
40915         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40916
40917 2006-03-07  Simon Josefsson  <jas@extundo.com>
40918
40919         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
40920         error on missing devices (the functions will return an error).
40921
40922         * m4/gc.m4: Move random stuff to gc-random.m4
40923
40924 2006-03-07  Simon Josefsson  <jas@extundo.com>
40925
40926         * lib/unistd_.h: New file.
40927
40928 2006-03-07  Simon Josefsson  <jas@extundo.com>
40929
40930         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
40931
40932 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40933
40934         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
40935         Problem reported by Juan Manuel Guerrero.
40936
40937 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40938
40939         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
40940         the unistd module.
40941         * lib/getlogin_r.c: Likewise.
40942         * lib/getlogin_r.h: Likewise.
40943         * lib/glob.c: Likewise.
40944         * lib/pagealign_alloc.c: Likewise.
40945         * lib/unistd_.h: Remove; no longer needed.
40946
40947 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40948
40949         * MODULES.html.sh (Support for systems lacking POSIX:2001):
40950         Add unistd.
40951         * modules/c-stack (Depends-on): Add unistd.
40952         * modules/getlogin_r: Likewise.
40953         * modules/glob: Likewise.
40954         * modules/pagealign_alloc: Likewise.
40955         * modules/unistd (Files): Remove lib/unistd_.h.
40956         (EXTRA_DIST): Remove.
40957         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
40958         need unistd_.h.
40959         (MOSTLYCLEANFILES): Remove unistd.h-t.
40960
40961 2006-03-03  Simon Josefsson  <jas@extundo.com>
40962
40963         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
40964
40965 2006-03-03  Simon Josefsson  <jas@extundo.com>
40966
40967         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
40968         libidn and bison.
40969
40970 2006-03-03  Simon Josefsson  <jas@extundo.com>
40971
40972         * build-aux/maint.mk: Add indent target.
40973
40974 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
40975
40976         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
40977         our replacement poll.h in any case, to avoid a differing
40978         declaration from a system header.  Seen on AIX.
40979
40980 2006-03-01  Simon Josefsson  <jas@extundo.com>
40981
40982         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
40983         <kasal@ucw.cz>.
40984
40985 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40986
40987         * modules/gettime (Depends-on): Add extensions module.
40988         * modules/nanosleep (Depends-on): Likewise.
40989         * modules/settime (Depends-on): Likewise.
40990
40991 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40992
40993         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
40994         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
40995         pedantically.
40996         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40997         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
40998
40999         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
41000         not "==".  Reported by Ralf Wildenhues.
41001
41002 2006-03-01  Karl Berry  <karl@gnu.org>
41003
41004         * doc/Copyright/request-*: new files, synced from gnuorg.
41005
41006 2006-03-01  Karl Berry  <karl@gnu.org>
41007
41008         * config/srclist.txt (Copyright/*): new entries.
41009
41010 2006-02-28  Simon Josefsson  <jas@extundo.com>
41011
41012         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
41013
41014 2006-02-27  Simon Josefsson  <jas@extundo.com>
41015
41016         * lib/base64.h: Indent #define's.  From Jim Meyering
41017         <jim@meyering.net>.
41018
41019 2006-02-27  Jim Meyering  <jim@meyering.net>
41020
41021         Revert the change of 2006-02-24, so these files can continue
41022         to be sync'd from gettext.
41023         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
41024         of `config.h'.
41025
41026 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
41027
41028         * modules/intprops: New file.
41029         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
41030         Add intprops.
41031         * modules/getloadavg (Files): Remove lib/intprops.h.
41032         (Depends-on): Add intprops.
41033         * modules/human: Likewise.
41034         * modules/inttostr: Likewise.
41035         * modules/openat: Likewise.
41036         * modules/sig2str: Likewise.
41037         * modules/userspec: Likewise.
41038         * modules/utimecmp: Likewise.
41039         * modules/xnanosleep: Likewise.
41040         * modules/xstrtol: Likewise.
41041
41042 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
41043
41044         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
41045         * modules/lock-tests (TESTS): Use $(EXEEXT).
41046         * modules/tls-tests: Likewise.
41047         * modules/argp-tests: Likewise.
41048         (check_PROGRAMS): New var, replacing...
41049         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
41050
41051 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41052
41053         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
41054         `config.h'.
41055
41056 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
41057
41058         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
41059
41060 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41061
41062         Sync from coreutils.
41063         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
41064         gl_CHDIR_SAFER.
41065
41066 2006-02-22  Jim Meyering  <jim@meyering.net>
41067
41068         Sync from coreutils.
41069         * m4/chdir-safer.m4: New file.
41070
41071 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
41072
41073         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
41074         AT_FDCWD exceeds INT_MAX.
41075         * lib/openat.h (AT_FDCWD): Likewise.
41076
41077 2006-02-17  Eric Blake  <address@hidden>
41078
41079         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
41080
41081 2006-02-16  Simon Josefsson  <jas@extundo.com>
41082
41083         * modules/getaddrinfo (Depends-on): Add sys_socket.
41084
41085 2006-02-15  Simon Josefsson  <jas@extundo.com>
41086
41087         * build-aux/maint.mk: Add dsyntax-check rule.
41088
41089 2006-02-15  Eric Blake  <ebb9@byu.net>
41090
41091         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
41092         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
41093         'present but cannot compile' warnings on cygwin.
41094         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
41095         use ws2tcpip.h if sys/socket.h works.
41096         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
41097         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
41098
41099 2006-02-14  Simon Josefsson  <jas@extundo.com>
41100
41101         * modules/maintainer-makefile (Files): Rename.
41102
41103         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
41104         and (the local) Makefile.cfg to maint-cfg.mk.
41105
41106         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
41107         to the latter.
41108
41109         * modules/maintainer-makefile: New module.
41110
41111         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
41112         severaly stripped to make it possible to build it up from scratch
41113         with reliable tests.
41114
41115         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
41116         fixes to permit overriding the default actions when configure and
41117         makefile are not available.
41118
41119 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
41120
41121         Sync from coreutils.
41122         * modules/lstat (Depends-on): Don't depend on xalloc.
41123         (License): Change from GPL to LGPL, since this is now simply a
41124         replacement for a libc function.
41125
41126 2006-02-14  Jim Meyering  <jim@meyering.net>
41127
41128         Sync from coreutils.
41129
41130         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
41131         failure on deficient systems, and simplify gnulib lgpl dependencies.
41132         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
41133         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
41134
41135         * lib/xalloc-die.c: Remove unused definition of N_.
41136
41137 2006-02-14  Jim Meyering  <jim@meyering.net>
41138
41139         Sync from coreutils.
41140         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
41141         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
41142         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
41143         double-quote uses of that variable, to accommodate the rare case in
41144         which getmntent is available in none of the libraries checked.  This
41145         happens at least on FreeBSD 5.0.
41146
41147 2006-02-13  Simon Josefsson  <jas@extundo.com>
41148
41149         * gnulib-tool (Usage): Fix --import, from
41150         karl@freefriends.org (Karl Berry).
41151
41152 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
41153
41154         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
41155
41156 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
41157
41158         * lib/argp-namefrob.h: Restore changes accidentally lost during the
41159         "autoupdate" on 2005-12-12.
41160
41161 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41162
41163         * modules/closeout (Depends-on): Remove atexit.
41164
41165 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41166
41167         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
41168         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
41169
41170 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
41171
41172         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
41173         __EXTENSIONS__ if this causes compilation to fail.  Problem
41174         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
41175         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
41176
41177 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
41178
41179         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
41180         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
41181         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
41182         All uses changed.
41183
41184 2006-01-26  Simon Josefsson  <jas@extundo.com>
41185
41186         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
41187         prototype is visible on mingw32.
41188
41189         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
41190         for mingw32.
41191
41192         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
41193         mingw32).
41194
41195 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
41196
41197         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
41198         attempt to open for write; this always fails, at least on POSIX
41199         hosts.  This reinstates the 2006-01-09 change, which was
41200         inadvertently removed.
41201
41202 2006-01-26  Bruno Haible  <bruno@clisp.org>
41203
41204         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
41205         Reported by Paul Eggert.
41206
41207 2006-01-26  Bruno Haible  <bruno@clisp.org>
41208             Paul Eggert  <eggert@cs.ucla.edu>
41209
41210         * lib/stdbool_.h (_Bool)
41211         [(! (defined __cplusplus || defined __BEOS__)
41212           && !defined __GNUC__
41213           && !(defined __HP_cc || defined __xlc__
41214                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
41215                || defined __sgi))]:
41216         #define to signed char in these cases too; this simplifies
41217         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
41218         etc., separately) and makes it more conservative.
41219
41220 2006-01-25  Simon Josefsson  <jas@extundo.com>
41221
41222         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
41223         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
41224         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
41225
41226 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
41227
41228         * lib/argp-namefrob.h: Bugfix. Remove stray #
41229
41230 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
41231
41232         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
41233         so that we test the test.
41234         Check for yet another HP-UX cc bug involving *bool |= bool.
41235
41236 2006-01-25  Karl Berry  <karl@gnu.org>
41237
41238         * config/srclist.txt (vasnprintf.c): sync lost.
41239
41240 2006-01-25  Jim Meyering  <jim@meyering.net>
41241
41242         Sync from the stable (b5) branch of coreutils:
41243
41244         * lib/fts.c (fts_children): Don't let close() clobber errno from
41245         failed fchdir().
41246
41247         * lib/fts.c (fts_stat): When following a symlink-to-directory,
41248         don't necessarily interpret stat-fails+lstat-succeeds as indicating
41249         a dangling symlink.  That can also happen at least for ELOOP.
41250         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
41251         FYI, this bug predates the inclusion of fts.c in coreutils.
41252
41253         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
41254         in their own block, so pre-c99 compilers don't object.
41255
41256         Avoid the double-free (first in fts_read, second in fts_close) that
41257         would occur when an `active' directory is made inaccessible (e.g.,
41258         via chmod a-x) during a traversal.
41259         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41260         before returning.  Reproduce this failure by
41261         mkdir -p a/b; cd a; chmod a-x . b
41262         Reported by Stavros Passas.
41263
41264 2006-01-25  Jim Meyering  <jim@meyering.net>
41265
41266         * lib/fileblocks.c: Remove more useless parentheses.
41267         * lib/readutmp.h: Likewise.
41268
41269 2006-01-25  Bruno Haible  <bruno@clisp.org>
41270
41271         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
41272         warnings.
41273         Reported by Paul Eggert.
41274
41275 2006-01-25  Bruno Haible  <bruno@clisp.org>
41276
41277         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
41278         rid of a trap command. For Solaris sh.
41279         Reported by Mark D. Baushke <mdb@gnu.org>.
41280
41281 2006-01-24  Simon Josefsson  <jas@extundo.com>
41282
41283         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
41284         Bruno.
41285
41286 2006-01-24  Karl Berry  <karl@gnu.org>
41287
41288         * config/srclist.txt (argp-namefrob.h): sync lost.
41289
41290 2006-01-24  Jim Meyering  <jim@meyering.net>
41291
41292         * modules/openat (Files): Add lib/intprops.h.
41293         From Mark D. Baushke.
41294
41295 2006-01-24  Jim Meyering  <jim@meyering.net>
41296
41297         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
41298         Reported by Mark D. Baushke.
41299
41300 2006-01-24  Jim Meyering  <jim@meyering.net>
41301
41302         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
41303
41304 2006-01-24  Bruno Haible  <bruno@clisp.org>
41305
41306         * modules/strnlen (Maintainer): Change from glibc to all.
41307
41308 2006-01-24  Bruno Haible  <bruno@clisp.org>
41309
41310         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
41311         Patch by Paul Eggert.
41312
41313 2006-01-24  Bruno Haible  <bruno@clisp.org>
41314
41315         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
41316         already has it.
41317         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
41318         2005-11-26.
41319
41320         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
41321         'signed char' to avoid problems with the built-in _Bool type.
41322         Reported by Paul Eggert on 2005-11-26.
41323
41324 2006-01-24  Bruno Haible  <bruno@clisp.org>
41325
41326         * gnulib-tool (func_import): Avoid constructing complicated sed
41327         expressions inside backquote.
41328         Report and solution by Mark D. Baushke <mdb@gnu.org>.
41329
41330 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
41331
41332         These changes imported from libc.
41333         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
41334         test and two separate function calls.
41335         * lib/strndup.c (__strndup): Add libc_hidden_def.
41336
41337 2006-01-23  Simon Josefsson  <jas@extundo.com>
41338
41339         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
41340         Remove the test_*_SOURCES variable: automake infers it by default.
41341         * modules/tls-tests: Likewise.
41342
41343 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41344
41345         Work around porting bugs reported by Dieter in
41346         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
41347         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
41348         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
41349         Include "getopt.h" first, to check interface.
41350         (getenv): Declare only if defined HAVE_DECL_GETENV &&
41351         !HAVE_DECL_GETENV.
41352         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
41353         (__strndup): Revert to K&R-style function dfns, the glibc style.
41354         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
41355         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
41356         Include strnlen.h first, to get prototype properly.
41357         (strnlen): Renamed from __strnlen.
41358         Remove weak alias.
41359
41360 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41361
41362         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
41363
41364 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41365
41366         * config/srclist.txt: Adjust to reflect glibc reorganization.
41367         This affects only comments.
41368
41369 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
41370
41371          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
41372          Reported by Bruce Korb <bkorb@gnu.org>.
41373
41374 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
41375
41376         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
41377         to pacify gcc -Wswitch-default.
41378
41379 2006-01-22  Bruno Haible  <bruno@clisp.org>
41380
41381         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
41382         temporary buffer for sprintf, take into account the precision also
41383         for 'd', 'i', 'u', 'o', 'x', 'X'.
41384
41385 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41386
41387         * modules/argp-tests: New module
41388         * tests/test-argp.c: New file
41389         * tests/test-argp-2.sh: New file
41390
41391 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41392
41393         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
41394         (__argp_base_name): Removed
41395         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
41396         typo.
41397         (__argp_base_name): Provide macro definition or extern declaration
41398         depending on the configuration
41399
41400 2006-01-20  Simon Josefsson  <jas@extundo.com>
41401
41402         * modules/inet_ntop (Depends-on): Depend on sys_socket.
41403
41404 2006-01-20  Simon Josefsson  <jas@extundo.com>
41405
41406         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
41407
41408 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
41409
41410         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
41411         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
41412         Suggested by Bruno Haible.
41413
41414 2006-01-20  Karl Berry  <karl@gnu.org>
41415
41416         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
41417         until changes propagate, I guess.
41418
41419 2006-01-19  Simon Josefsson  <jas@extundo.com>
41420
41421         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
41422
41423 2006-01-19  Simon Josefsson  <jas@extundo.com>
41424
41425         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
41426
41427 2006-01-19  Simon Josefsson  <jas@extundo.com>
41428
41429         * gnulib-tool: Set check_PROGRAMS.
41430
41431         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41432         modules/des-tests, modules/gc-arcfour-tests,
41433         modules/gc-arctwo-tests, modules/gc-des-tests,
41434         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41435         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41436         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41437         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41438         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41439         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
41440         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
41441         test_*_SOURCES.
41442
41443 2006-01-18  Simon Josefsson  <jas@extundo.com>
41444
41445         * modules/socklen (Depends-on): Depend on sys_socket.
41446
41447 2006-01-18  Simon Josefsson  <jas@extundo.com>
41448
41449         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41450         modules/des-tests, modules/gc-arcfour-tests,
41451         modules/gc-arctwo-tests, modules/gc-des-tests,
41452         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41453         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41454         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41455         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41456         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41457         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
41458         $(EXEEXT) to automake TESTS variable, for mingw32.
41459
41460 2006-01-17  Simon Josefsson  <jas@extundo.com>
41461
41462         * modules/socklen (Include): Need sys/socket.h.
41463
41464 2006-01-17  Bruno Haible  <bruno@clisp.org>
41465
41466         * modules/ssize_t (Include): Add <sys/types.h>.
41467
41468 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
41469
41470         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
41471         it's not portable and it doesn't work with cross-compiles.
41472         Problem reported by Bruno Haible.  Fix missing-$ typo in
41473         'test "gl_cv_ignore_unused_libraries" ...' that prevented
41474         -zignore from being used with Sun's C compiler.
41475
41476 2006-01-12  Simon Josefsson  <jas@extundo.com>
41477
41478         * lib/base64.c: Fix warning, reported by Bruno Haible
41479         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
41480
41481 2006-01-12  Bruno Haible  <bruno@clisp.org>
41482
41483         * modules/ldd: New file.
41484         * build-aux/ldd.sh.in: New file.
41485         * MODULES.html.sh (Support for building libraries and executables): Add
41486         ldd.
41487
41488 2006-01-12  Bruno Haible  <bruno@clisp.org>
41489
41490         * m4/ldd.m4: New file.
41491
41492 2006-01-12  Bruno Haible  <bruno@clisp.org>
41493
41494         * gnulib-tool (func_import, func_create_testdir): Don't go into an
41495         endless loop while replacing $auxdir with build-aux.
41496
41497 2006-01-11  Simon Josefsson  <jas@extundo.com>
41498
41499         * lib/stdint_.h (SIZE_MAX): Add missing (.
41500
41501 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
41502
41503         Sync from coreutils.
41504         * lib/md5.c: Fix commentary typos.
41505         (alignof, UNALIGNED_P): No need for a GCC-specific version.
41506         * lib/md5.h (__attribute__): Remove; unused.
41507         * lib/sha1.c: Fix commentary to match md5 better.
41508         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
41509         so that we don't need to worry about alignment.  All uses changed.
41510         This merges the 2005-10-28 md5 change into sha1.
41511
41512 2006-01-11  Jim Meyering  <jim@meyering.net>
41513
41514         Sync from coreutils.
41515         * lib/md5.c (OP): Fix spacing.
41516
41517 2006-01-11  Bruno Haible  <bruno@clisp.org>
41518
41519         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41520         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
41521         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
41522
41523 2006-01-11  Bruno Haible  <bruno@clisp.org>
41524
41525         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41526         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
41527         the "early" section as well.
41528
41529 2006-01-11  Bruno Haible  <bruno@clisp.org>
41530
41531         Avoid "ar: no archive members specified" error on MacOS X.
41532         * gnulib-tool (func_modules_add_dummy): New function.
41533         (func_import, func_create_testdir): Invoke it.
41534
41535 2006-01-11  Bruno Haible  <bruno@clisp.org>
41536
41537         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
41538         with $auxdir in AC_CONFIG_FILES statements.
41539
41540 2006-01-11  Bruno Haible  <bruno@clisp.org>
41541
41542         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41543         Initialize also noinst_HEADERS to empty.
41544
41545 2006-01-11  Bruno Haible  <bruno@clisp.org>
41546
41547         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
41548         variables.
41549         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
41550         autoreconf.
41551
41552 2006-01-11  Bruno Haible  <bruno@clisp.org>
41553
41554         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
41555         overridable by the user.
41556         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41557
41558 2006-01-10  Simon Josefsson  <jas@extundo.com>
41559
41560         * modules/sys_socket: New file.
41561
41562 2006-01-10  Simon Josefsson  <jas@extundo.com>
41563
41564         * m4/sys_socket_h.m4: New file.
41565
41566 2006-01-10  Simon Josefsson  <jas@extundo.com>
41567
41568         * lib/socket_.h: New file.
41569
41570 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41571
41572         * modules/readutmp (Maintainer): Add myself.
41573
41574 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41575
41576         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
41577         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
41578         People who are still concerned with buggy memcmp implementations
41579         can invoke gl_FUNC_MEMCMP themselves.
41580
41581 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41582
41583         * lib/regex_internal.h (BITSET_WORD_BITS):
41584         Work around a bug in 64-bit PGC (before version 6.1-2), where the
41585         preprocessor mishandles large unsigned values as if they were signed.
41586         Problem reported by Claudio Fontana in
41587         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
41588
41589 2006-01-10  Jim Meyering  <jim@meyering.net>
41590
41591         Avoid the double-free (first in fts_read, second in fts_close) that
41592         would occur when an `active' directory is made inaccessible (e.g.,
41593         via chmod a-x) during a traversal.
41594         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41595         before returning.  Reproduce this failure by
41596         mkdir -p a/b; cd a; chmod a-x . b
41597         Reported by Stavros Passas.
41598
41599         Sync from coreutils.
41600         * lib/sha1.c: Tweak grammar in a comment.
41601
41602 2006-01-10  Jim Meyering  <jim@meyering.net>
41603
41604         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
41605         Patch by Joerg Sonnenberger.
41606
41607 2006-01-10  Bruno Haible  <bruno@clisp.org>
41608
41609         * modules/readutmp: Depend on module free.
41610         * modules/strtok_r: Depend on module restrict.
41611
41612 2006-01-10  Bruno Haible  <bruno@clisp.org>
41613
41614         * modules/gettext (configure.ac): Add an invocation of
41615         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
41616
41617 2006-01-10  Bruno Haible  <bruno@clisp.org>
41618
41619         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
41620         Reported by Werner Lemberg <wl@gnu.org>.
41621
41622 2006-01-10  Bruno Haible  <bruno@clisp.org>
41623
41624         * lib/localcharset.c: Update from GNU gettext.
41625
41626 2006-01-10  Bruno Haible  <bruno@clisp.org>
41627
41628         * lib/argp.h (__const): Remove macro. Use const instead.
41629         * lib/argp-fmtstream.h (__const): Likewise.
41630         * lib/glob_.h (__const): Remove macro.
41631         * lib/glob-libc.h: Use const instead of __const.
41632
41633 2006-01-10  Bruno Haible  <bruno@clisp.org>
41634
41635         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
41636         variable.
41637         Needed to avoid an automake error regarding the 'gettext' module.
41638
41639 2006-01-09  Simon Josefsson  <jas@extundo.com>
41640
41641         * modules/inet_ntop (Depends-on): Add restrict.
41642
41643 2006-01-09  Simon Josefsson  <jas@extundo.com>
41644
41645         * modules/gc-rijndael-tests (License): Put under LGPL.
41646
41647         * modules/gc-des-tests (License): Likewise.
41648
41649         * modules/gc-arcfour-tests (License): Likewise.
41650
41651         * modules/gc-arctwo-tests (License): Likewise.
41652
41653         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
41654
41655         * modules/gc-hmac-sha1-tests (Files): Likewise.
41656
41657         * modules/gc-hmac-md5-tests (License): Likewise.
41658
41659         * modules/gc-sha1-tests (License): Likewise.
41660
41661         * modules/gc-md5-tests (License): Likewise.
41662
41663         * modules/gc-md4-tests (License): Likewise.
41664
41665         * modules/gc-md2-tests (License): Likewise.
41666
41667         * modules/gc-tests (License): Likewise.
41668
41669         * modules/des-tests (License): Likewise.
41670
41671         * modules/md4-tests (License): Likewise.
41672
41673         * modules/md2-tests (License): Likewise.
41674
41675 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41676
41677         Sync from coreutils:
41678
41679         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
41680         * modules/lib-ignore: New file.
41681         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
41682         chdir-safer.m4, lchmod.m4.
41683         * modules/openat: Add mkdirat.c, openat-priv.h.
41684
41685 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41686
41687         Sync from coreutils.
41688         * m4/lib-ignore.m4: New file.
41689         * m4/lchmod.m4: New file.
41690
41691 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41692
41693         Sync from coreutils.
41694         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
41695         for write access: POSIX says that must fail.
41696         * lib/fts.c (diropen): Likewise.
41697         * lib/save-cwd.c (save_cwd): Likewise.
41698         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
41699         well, for minor improvements on hosts that lack O_DIRECTORY.
41700         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
41701         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
41702         Fall back on chown if open failed with EACCES.
41703
41704         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
41705         Report an error at compile-time if only a 1-second nominal clock
41706         resolution is found.
41707
41708         * lib/lchmod.h: New file.
41709         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
41710         (make_dir_parents): Use lchown rather than chown, and
41711         lchmod rather than chmod.
41712
41713         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
41714         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
41715         "proc" reported by n0dalus.
41716
41717         * lib/mountlist.c: Include <limits.h>.
41718         (dev_from_mount_options)
41719         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
41720         New function.  It no longer assumes "dev=" has the System V meaning
41721         on Linux (since it doesn't).  It also parses "dev=" more carefully.
41722         (read_file_system_list)
41723         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
41724         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
41725         dev= in that case.
41726
41727         * lib/posixtm.h (PDS_PRE_2000): New macro.
41728         * lib/posixtm.c (year): Arg is now syntax_bits rather than
41729         allow_century.  All usages changed.  Reject dates outside the range
41730         1969-1999 if PDS_PRE_2000 is used.
41731
41732 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41733
41734         Sync from coreutils.
41735         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
41736         (Time of day items): Mention the possibility of leap seconds.
41737         Problem reported by Dr. David Alan Gilbert.
41738
41739 2006-01-09  Jim Meyering  <jim@meyering.net>
41740
41741         Sync from coreutils.
41742
41743         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
41744
41745         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
41746
41747         * lib/modechange.c (mode_compile): Reject an invalid mode string
41748         that starts with an octal digit.  From Andreas Gruenbacher.
41749
41750         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
41751         and dup to open_safer and dup_safer, respectively.
41752         (openat_permissive): Fix typo in comment.
41753
41754         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
41755         "gettext.h"; either no longer needed or are guaranteed by openat.h.
41756         (_): Remove; no longer needed.
41757         (openat): Renamed from rpl_openat; no need for rpl_openat
41758         since openat.h renames openat for us.
41759         Replace most of the body with a call to openat_permissive,
41760         to avoid duplicate code.
41761         Port to (probably hypothetical) environments were mode_t is
41762         wider than int.
41763         (openat_permissive): Require mode arg, so that we can check
41764         types better.  Put it just after flags.  Change cwd failure
41765         indicator from pointer-to-bool to pointer-to-errno-value.
41766         All callers changed.
41767         Invoke openat_save_fail and/or openat_restore_fail if
41768         cwd_errno is null, so that openat can call us.
41769         (openat_permissive, fdopendir, fstatat, unlinkat):
41770         Simplify errno handling to avoid some duplicate code,
41771         as it's OK to set errno on success.
41772         * lib/openat.h: Revamp code so that function macros depend on
41773         __OPENAT_PREFIX only, not also on AT_FDCWD.
41774         (openat_ro): Remove.  Caller changed to use openat_permissive.
41775         (openat_permissive): Now a macro, if not a function.
41776         (openat_restore_fail, openat_save_fail): Now always functions,
41777         since mkdirat needs them even if __OPENAT_PREFIX is defined.
41778
41779         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
41780         and openat.c.
41781         * lib/mkdirat.c: Include openat-priv.h.
41782         Remove definitions of macros defined therein.
41783         * lib/openat.c: Likewise.
41784
41785         * lib/mkdirat.c (mkdirat): New file and function.
41786         * lib/openat.h (mkdirat): Declare.
41787
41788         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
41789
41790         * lib/openat.h (openat_permissive): Declare.
41791         (openat_ro): Define.
41792
41793         * lib/openat.c (EXPECTED_ERRNO): New macro.
41794         (openat_permissive): New function -- used in remove.c rewrite.
41795         (all functions): Set errno just before returning, only if there
41796         was an actual failure.
41797         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
41798
41799         Emulate openat-family functions using Linux's procfs, if possible.
41800         Idea and some code based on Ulrich Drepper's glibc changes.
41801
41802         * lib/openat.c: (BUILD_PROC_NAME): New macro.
41803         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
41804         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
41805         before falling back on save_cwd and restore_cwd.
41806         (fdopendir, fstatat, unlinkat): Likewise.
41807
41808         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
41809         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
41810
41811         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
41812         as second argument to va_arg.  Otherwise, some versions of gcc
41813         warn that `if this code is reached, the program will abort'.
41814
41815 2006-01-09  Jim Meyering  <jim@meyering.net>
41816
41817         Sync from coreutils.
41818         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
41819         Require openat-priv.h.
41820
41821 2006-01-09  Bruno Haible  <bruno@clisp.org>
41822
41823         * modules/strnlen (Include): Use strnlen.h.
41824
41825 2006-01-09  Bruno Haible  <bruno@clisp.org>
41826
41827         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
41828
41829 2006-01-09  Bruno Haible  <bruno@clisp.org>
41830
41831         * lib/sysexit_.h (EX_OK): New macro.
41832         Suggested by Martin Lambers <marlam@marlam.de>.
41833
41834 2006-01-09  Bruno Haible  <bruno@clisp.org>
41835
41836         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
41837         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
41838
41839 2006-01-09  Bruno Haible  <bruno@clisp.org>
41840
41841         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
41842         numbers.
41843
41844 2006-01-09  Bruno Haible  <bruno@clisp.org>
41845
41846         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
41847         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
41848         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
41849         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
41850
41851 2006-01-09  Bruno Haible  <bruno@clisp.org>
41852
41853         * build-aux/javacomp.sh.in: New file, moved from lib/.
41854         * modules/javacomp-script (Files): Update.
41855         (configure.ac): Add AC_CONFIG_FILES invocation.
41856         (EXTRA_DIST): Remove variable.
41857
41858         * build-aux/javaexec.sh.in: New file, moved from lib/.
41859         * modules/javaexec (Files): Update.
41860         (configure.ac): Add AC_CONFIG_FILES invocation.
41861         (EXTRA_DIST): Remove javaexec.sh.in.
41862
41863         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
41864         * modules/csharpcomp-script (Files): Update.
41865         (configure.ac): Add AC_CONFIG_FILES invocation.
41866         (EXTRA_DIST): Remove variable.
41867
41868         * build-aux/csharpexec.sh.in: New file, moved from lib/.
41869         * modules/csharpexec (Files): Update.
41870         (configure.ac): Add AC_CONFIG_FILES invocation.
41871         (EXTRA_DIST): Remove csharpexec.sh.in.
41872
41873 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41874
41875         Sync from coreutils.
41876
41877         Add POSIX ACL support
41878         * lib/acl.h (copy_acl, set_acl): Add declarations.
41879         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
41880         systems other than Linux.
41881         (chmod_or_fchmod): New function: use fchmod when possible,
41882         and chmod otherwise.
41883         (file_has_acl): Add a POSIX ACL implementation, with a
41884         Linux-specific subcase.
41885         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
41886         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
41887         acls are unsupported.
41888         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
41889         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
41890         are unsupported.
41891
41892 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41893
41894         Sync from coreutils.
41895         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
41896
41897 2006-01-07  Bruno Haible  <bruno@clisp.org>
41898
41899         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
41900         gl_EARLY.
41901
41902 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41903
41904         * lib/strftime.c (tzname): Don't declare if it is already #defined.
41905         Problem reported for Mingw by Mark Junker.
41906
41907 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41908
41909         * README: Gnulib normally doesn't generate a tarball.
41910
41911 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
41912
41913         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
41914         long int, not int, for nanosecond counts, so that people who are
41915         used to POSIX struct timespec won't be surprised.  Reported by Jim
41916         Meyering.
41917
41918 2005-12-28  Bruno Haible  <bruno@clisp.org>
41919
41920         * build-aux/config.rpath: Update from GNU gettext.
41921
41922 2005-12-16  Jim Meyering  <jim@meyering.net>
41923
41924         * modules/fprintftime: New module.
41925         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
41926
41927 2005-12-16  Jim Meyering  <jim@meyering.net>
41928
41929         * m4/fprintftime.m4: New file.
41930
41931 2005-12-16  Jim Meyering  <jim@meyering.net>
41932
41933         * lib/fprintftime.c, lib/fprintftime.h: New files.
41934
41935 2005-12-15  Simon Josefsson  <jas@extundo.com>
41936
41937         * modules/socklen (configure.ac): Fix M4 macro name, to align with
41938         new m4/socklen.m4.
41939
41940 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
41941
41942         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
41943         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
41944
41945 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
41946
41947         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
41948         * lib/argp-help.c (fill_in_uparams): Check if the constructed
41949         struct uparams is valid. Fall back to the default values if it is
41950         not.
41951
41952 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41953
41954         * modules/argp (Files): Add argp-pin.c
41955         (Depends-on): dirname
41956         (lib_SOURCES): Add argp-pin.c
41957
41958 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41959
41960         * m4/argp.m4:  Check if program_invocation_name and
41961         program_invocation_short_name are declared and define appropriate
41962         macros if they are not.
41963
41964 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41965
41966         * lib/argp-help.c (__argp_base_name): New function
41967         (__argp_short_program_name): Rewrite using __argp_base_name
41968         * lib/argp-namefrob.h: Define program_invocation_name and
41969         program_invocation_short_name if requested
41970         (__argp_base_name): Add prototype
41971         * lib/argp-parse.c (argp_def): Use gettext wrappers
41972         (argp_default_parser): Use __argp_base_name
41973         * lib/argp-pin.c: New file. Defines program_invocation_name and
41974         program_invocation_short_name on systems that lack them.
41975
41976 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
41977
41978         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
41979         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
41980         porting problem reported by Georg Schwarz in
41981         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
41982
41983 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
41984
41985         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
41986         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
41987         porting problem reported by Georg Schwarz in
41988         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
41989
41990 2005-12-05  Bruno Haible  <bruno@clisp.org>
41991
41992         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
41993         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
41994         Reported by Mark Junker <mjscod@gmx.de>.
41995
41996 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
41997
41998         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
41999         Use implementation from Albert Chin, with some
42000         comments/corrections by Stepan Kasal and myself.
42001
42002 2005-12-02  Bruno Haible  <bruno@clisp.org>
42003
42004         * gnulib-tool (func_import): Accept GPLed build tool modules when
42005         --lgpl is given.
42006         * modules/csharpcomp-script: New file.
42007         * modules/csharpcomp: Depend on it.
42008         * modules/javacomp-script: New file.
42009         * modules/javacomp: Depend on it.
42010         Suggested by Simon Josefsson.
42011
42012 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
42013
42014         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
42015         statement, to work around an HP-UX 10.20 compiler bug reported by
42016         Peter O'Gorman.
42017
42018 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42019
42020         * modules/savedir (Depends-on): Add openat.
42021
42022 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42023
42024         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
42025         (uintmax_t) [defined uintmax_t]: Do not declare.
42026         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
42027         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
42028         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
42029         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
42030         sake of portability to weird hosts that C allows (though we don't
42031         know of any practical examples).
42032
42033         * lib/savedir.h (fdsavedir): New decl.
42034         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
42035         contains most of the former guts of savedir.
42036         (savedir): Use savedirstream.
42037         Include "openat.h".
42038
42039 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
42040
42041         * modules/obstack (Files): Add m4/ulonglong.m4.
42042         Problem reported by Davide Angelocola.
42043
42044 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
42045
42046         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
42047         coreutils no longer futzes with rounding modes.
42048
42049 2005-11-14  Jim Meyering  <jim@meyering.net>
42050
42051         * lib/mkstemp-safer.c: Include <config.h>, required for possible
42052         replacement of mkstemp.
42053
42054 2005-11-10  Simon Josefsson  <jas@extundo.com>
42055
42056         * lib/readline.c: Remove EOL.
42057
42058 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42059
42060         * modules/gethrxtime (Depends-on): Add gettime.
42061
42062 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42063
42064         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
42065         or gettimeofday; no longer needed.
42066
42067 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42068
42069         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
42070         time business.
42071         (gethrxtime) [! (HAVE_NANOUPTIME
42072         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
42073         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
42074         our own approximation.
42075
42076 2005-11-08  Eric Blake  <ebb9@byu.net>
42077
42078         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42079
42080 2005-11-08  Eric Blake  <ebb9@byu.net>
42081
42082         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42083
42084 2005-11-04  Bruno Haible  <bruno@clisp.org>
42085
42086         * gnulib-tool: Implement --update mode.
42087
42088 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42089
42090         Fix porting problem reported by Theodoros V. Kalamatianos.
42091         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
42092         Don't assume that futimes failing means we must fail.
42093
42094 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42095
42096         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
42097         variables to suggest the intended function of the PATH_MAX check.
42098
42099 2005-10-30  Kean Johnston  <jkj@sco.com>
42100
42101         Trivial changes to support SCO systems.
42102         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
42103         as PATH_MAX.
42104         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
42105         where __ptr is null when no I/O is pending.
42106
42107 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
42108
42109         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
42110         leave errno alone.  Problem reported by Dmitry V. Levin.
42111
42112 2005-10-28  Simon Josefsson  <jas@extundo.com>
42113
42114         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
42115         Test more.
42116
42117         * tests/test-gc-md2.c, tests/test-md2.c: New files.
42118
42119         * modules/md2, modules/md2-tests: New files.
42120
42121 2005-10-28  Simon Josefsson  <jas@extundo.com>
42122
42123         * m4/inet_ntop.m4: More tests.
42124
42125         * m4/gc-md2.m4, md2.m4: New file.
42126
42127 2005-10-28  Simon Josefsson  <jas@extundo.com>
42128
42129         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
42130         "restrict" keywords, as per POSIX.  Protect the function
42131         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
42132         Don't use K&R prototypes.  Check the sprintf return values.
42133         Re-define EAFNOSUPPORT if not present.  Indent.
42134
42135         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
42136         suggested by Bruno Haible <bruno@clisp.org>.
42137
42138         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
42139
42140         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
42141
42142         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
42143         libgcrypt).
42144
42145         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
42146
42147         * lib/md2.h, lib/md2.c: New files.
42148
42149 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
42150
42151         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
42152         errno alone.  Problem reported by Frederic Jolliton.
42153
42154 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42155
42156         * modules/verify (License): Change from GPL to LGPL.  This is a
42157         tiny module and there are apparently near-equivalents that are
42158         under the BSD license.
42159
42160 2005-10-24  Simon Josefsson  <jas@extundo.com>
42161
42162         * modules/sha1: Relicense to LGPL.
42163
42164 2005-10-24  Simon Josefsson  <jas@extundo.com>
42165
42166         * lib/md4.h: Shrink buffer size, now that we changed the type.
42167
42168 2005-10-23  Simon Josefsson  <jas@extundo.com>
42169
42170         * gnulib-tool (func_import): Fix --tests-base.
42171
42172 2005-10-22  Simon Josefsson  <jas@extundo.com>
42173
42174         * modules/arcfour (Depends-on): Need stdint.
42175
42176 2005-10-22  Simon Josefsson  <jas@extundo.com>
42177
42178         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
42179         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
42180
42181 2005-10-22  Simon Josefsson  <jas@extundo.com>
42182
42183         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
42184         suggested by Bruno Haible <bruno@clisp.org>.
42185
42186 2005-10-22  Simon Josefsson  <jas@extundo.com>
42187
42188         * lib/crc.h: Include stddef.h, for size_t.
42189
42190 2005-10-22  Simon Josefsson  <jas@extundo.com>
42191
42192         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
42193         arcfour_context struct (simplify test vector testing in GNU
42194         Shishi).
42195
42196 2005-10-21  Simon Josefsson  <jas@extundo.com>
42197
42198         * modules/des, modules/des-tests: New files.
42199
42200         * modules/gc-des, modules/gc-des-tests: New files.
42201
42202         * tests/test-des.c, tests/test-gc-des.c: New file.
42203
42204 2005-10-21  Simon Josefsson  <jas@extundo.com>
42205
42206         * modules/arctwo, modules/arctwo-tests: New files.
42207
42208         * tests/test-arctwo.c: New file.
42209
42210         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
42211
42212         * tests/test-gc-arctwo.c: New file.
42213
42214 2005-10-21  Simon Josefsson  <jas@extundo.com>
42215
42216         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
42217         Bruno Haible <bruno@clisp.org>.
42218
42219         * m4/gc-des.m4: New file.
42220
42221 2005-10-21  Simon Josefsson  <jas@extundo.com>
42222
42223         * m4/arctwo.m4: New file.
42224
42225         * m4/gc-arctwo.m4: New file.
42226
42227 2005-10-21  Simon Josefsson  <jas@extundo.com>
42228
42229         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
42230         block.
42231
42232 2005-10-21  Simon Josefsson  <jas@extundo.com>
42233
42234         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
42235         <bruno@clisp.org>.
42236
42237         * lib/hmac-sha1.c (hmac_sha1): Likewise.
42238
42239         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
42240         Bruno Haible <bruno@clisp.org>.
42241
42242         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
42243         <bruno@clisp.org>.
42244
42245 2005-10-21  Simon Josefsson  <jas@extundo.com>
42246
42247         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
42248
42249 2005-10-21  Simon Josefsson  <jas@extundo.com>
42250
42251         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
42252
42253 2005-10-21  Simon Josefsson  <jas@extundo.com>
42254
42255         * lib/des.h, lib/des.c: New files.
42256
42257         * lib/gc-gnulib.c: Support DES.c
42258
42259 2005-10-21  Simon Josefsson  <jas@extundo.com>
42260
42261         * lib/arctwo.h, lib/arctwo.c: New files.
42262
42263         * lib/gc-gnulib.c: Support ARCTWO.
42264
42265 2005-10-21  Simon Josefsson  <jas@extundo.com>
42266
42267         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
42268         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
42269
42270 2005-10-21  Simon Josefsson  <jas@extundo.com>
42271
42272         * gnulib-tool (func_import, func_create_testdir): Define automake
42273         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
42274         Makefile.am snippet),
42275         suggested by Bruno Haible <bruno@clisp.org>.
42276
42277         * modules/gc (Makefile.am): Use it.
42278
42279 2005-10-21  Bruno Haible  <bruno@clisp.org>
42280
42281         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
42282         patch.
42283
42284 2005-10-19  Simon Josefsson  <jas@extundo.com>
42285
42286         * tests/test-gc-rijndael.c: New file.
42287
42288         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
42289
42290 2005-10-19  Simon Josefsson  <jas@extundo.com>
42291
42292         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
42293         interface too.
42294
42295 2005-10-19  Simon Josefsson  <jas@extundo.com>
42296
42297         * tests/test-gc-arcfour.c: New file.
42298
42299         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
42300
42301 2005-10-19  Simon Josefsson  <jas@extundo.com>
42302
42303         * modules/gc-md4, modules/gc-md4-tests: New file.
42304
42305         * tests/test-gc-md4.c: New file.
42306
42307 2005-10-19  Simon Josefsson  <jas@extundo.com>
42308
42309         * m4/gc-md4.m4: New file.
42310
42311 2005-10-19  Simon Josefsson  <jas@extundo.com>
42312
42313         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
42314         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
42315         <kasal@ucw.cz>.
42316
42317 2005-10-19  Simon Josefsson  <jas@extundo.com>
42318
42319         * m4/gc-arcfour.m4: New file.
42320
42321         * m4/gc-rijndael.m4: New file.
42322
42323 2005-10-19  Simon Josefsson  <jas@extundo.com>
42324
42325         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
42326
42327 2005-10-19  Simon Josefsson  <jas@extundo.com>
42328
42329         * lib/gc-gnulib.c: Support ARCFOUR.
42330
42331 2005-10-19  Simon Josefsson  <jas@extundo.com>
42332
42333         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
42334         support.
42335
42336         * lib/gc.h: Add ECB enum type.
42337
42338         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
42339
42340 2005-10-18  Simon Josefsson  <jas@extundo.com>
42341
42342         * tests/test-md5.c: New file.
42343
42344         * modules/md5-tests: New file.
42345
42346 2005-10-18  Simon Josefsson  <jas@extundo.com>
42347
42348         * tests/test-md4.c: New file.
42349
42350         * modules/md4, modules/md4-tests: New files.
42351
42352 2005-10-18  Simon Josefsson  <jas@extundo.com>
42353
42354         * m4/md4.m4: New file.
42355
42356 2005-10-18  Simon Josefsson  <jas@extundo.com>
42357
42358         * lib/md4.h, lib/md4.c: New files, based on md5.?.
42359
42360 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
42361
42362         * gnulib-tool (func_create_testdir): Omit the second check whether
42363         BUILT_SOURCES in nonempty.
42364
42365 2005-10-17  Simon Josefsson  <jas@extundo.com>
42366
42367         * tests/test-rijndael.c: New file.
42368
42369 2005-10-17  Simon Josefsson  <jas@extundo.com>
42370
42371         * modules/sha1: Depend on stdint instead of md5.
42372
42373         * modules/md5: Depend on stdint, remove uint32_t.
42374
42375 2005-10-17  Simon Josefsson  <jas@extundo.com>
42376
42377         * modules/gc-sha1-tests: New file.
42378
42379         * tests/test-gc-sha1.c: New file.
42380
42381 2005-10-17  Simon Josefsson  <jas@extundo.com>
42382
42383         * m4/md5.m4: Remove call to uint32_t.m4.
42384
42385 2005-10-17  Simon Josefsson  <jas@extundo.com>
42386
42387         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
42388
42389         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
42390         md5.h.
42391
42392         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
42393
42394         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
42395
42396 2005-10-17  Simon Josefsson  <jas@extundo.com>
42397
42398         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
42399
42400 2005-10-17  Simon Josefsson  <jas@extundo.com>
42401
42402         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
42403
42404 2005-10-17  Simon Josefsson  <jas@extundo.com>
42405
42406         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
42407
42408         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
42409
42410 2005-10-17  Bruno Haible  <bruno@clisp.org>
42411
42412         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
42413         that it can also be used in a test.
42414
42415 2005-10-16  Bruno Haible  <bruno@clisp.org>
42416
42417         * gnulib-tool (func_emit_tests_Makefile_am): Also define
42418         TESTS_ENVIRONMENT, so that individual tests can augment it.
42419
42420         * gnulib-tool (func_create_testdir): Use an intermediate target for
42421         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
42422         macros, like $(ALLOCA_H), which cannot be passed through the command
42423         line.
42424
42425 2005-10-15  Simon Josefsson  <jas@extundo.com>
42426
42427         * modules/rijndael-tests: New file.
42428
42429         * modules/rijndael: New file.
42430
42431 2005-10-15  Simon Josefsson  <jas@extundo.com>
42432
42433         * m4/rijndael.m4: New file.
42434
42435 2005-10-15  Simon Josefsson  <jas@extundo.com>
42436
42437         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
42438
42439         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
42440
42441 2005-10-14  Simon Josefsson  <jas@extundo.com>
42442
42443         * tests/test-arcfour.c: New file.
42444
42445         * modules/arcfour, modules/arcfour-tests: New files.
42446
42447 2005-10-14  Simon Josefsson  <jas@extundo.com>
42448
42449         * m4/arcfour.m4: New file.
42450
42451 2005-10-14  Simon Josefsson  <jas@extundo.com>
42452
42453         * lib/arcfour.h, lib/arcfour.c: New files.
42454
42455 2005-10-14  Roland McGrath  <roland@redhat.com>
42456
42457         Import from libc.  [BZ #1331]
42458         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
42459         macro argument.
42460         Reported by Matej Vela <vela@debian.org>.
42461
42462 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42463
42464         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
42465         include <wchar.h>; no longer needed.
42466
42467 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42468
42469         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
42470
42471 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
42472         and  Ulrich Drepper  <drepper@redhat.com>
42473
42474         Import from libc.
42475         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
42476         instead of inline stream orientation test and two separate
42477         function calls.  Pay no attention to USE_IN_LIBIO.
42478
42479 2005-10-13  Simon Josefsson  <jas@extundo.com>
42480
42481         * modules/gc-hmac-md5-tests: New file.
42482
42483         * tests/test-gc-hmac-sha1.c: New file.
42484
42485         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
42486
42487         * modules/gc-hmac-md5-tests: New file.
42488
42489         * tests/test-gc-md5.c: New file.
42490
42491         * modules/gc-md5-tests: New file.
42492
42493 2005-10-13  Simon Josefsson  <jas@extundo.com>
42494
42495         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
42496         Move memory allocation outside of loop.
42497
42498 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
42499
42500         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
42501         intermediate directory is in a read-only file system.  Problem
42502         reported by Eric Blake.
42503
42504 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
42505
42506         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
42507
42508 2005-10-12  Simon Josefsson  <jas@extundo.com>
42509
42510         * tests/test-hmac-sha1.c: New file.
42511
42512         * modules/hmac-sha1-tests: New file.
42513
42514         * modules/hmac-sha1: New file.
42515
42516 2005-10-12  Simon Josefsson  <jas@extundo.com>
42517
42518         * modules/gc-sha1: New file.
42519
42520 2005-10-12  Simon Josefsson  <jas@extundo.com>
42521
42522         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
42523
42524         * tests/test-gc-pbkdf2-sha1.c: New file.
42525
42526 2005-10-12  Simon Josefsson  <jas@extundo.com>
42527
42528         * modules/gc-md5, modules/gc-hmac-md5: New files.
42529
42530         * modules/gc (Files): Remove md5, memxor and hmac files.
42531
42532 2005-10-12  Simon Josefsson  <jas@extundo.com>
42533
42534         * m4/gc-pbkdf2-sha1.m4: New file.
42535
42536         * m4/gc-hmac-sha1.m4: New file.
42537
42538         * m4/gc-sha1: New file.
42539
42540         * m4/hmac-sha1.m4: New file.
42541
42542 2005-10-12  Simon Josefsson  <jas@extundo.com>
42543
42544         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
42545
42546         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
42547
42548 2005-10-12  Simon Josefsson  <jas@extundo.com>
42549
42550         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
42551         suggested by Bruno Haible <bruno@clisp.org>.
42552
42553 2005-10-12  Simon Josefsson  <jas@extundo.com>
42554
42555         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
42556
42557 2005-10-12  Simon Josefsson  <jas@extundo.com>
42558
42559         * lib/gc-pbkdf2-sha1.c: New file.
42560
42561         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
42562
42563 2005-10-12  Simon Josefsson  <jas@extundo.com>
42564
42565         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
42566
42567         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
42568
42569 2005-10-12  Simon Josefsson  <jas@extundo.com>
42570
42571         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
42572         GC_USE_HMAC_MD5, respectively.
42573
42574         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
42575         (gc_md5): Fix typo.
42576
42577         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
42578
42579         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
42580
42581         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
42582
42583 2005-10-12  Bruno Haible  <bruno@clisp.org>
42584
42585         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
42586         Reported by Stepan Kasal <kasal@ucw.cz>.
42587
42588 2005-10-11  Simon Josefsson  <jas@extundo.com>
42589
42590         * tests/test-crc.c: New file.
42591
42592         * modules/crc, modules/crc-tests: New files.
42593
42594 2005-10-11  Simon Josefsson  <jas@extundo.com>
42595
42596         * m4/crc.m4: New file.
42597
42598 2005-10-11  Simon Josefsson  <jas@extundo.com>
42599
42600         * lib/gc.h: Add gc_hash and gc_hash_buffer.
42601
42602         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
42603
42604         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
42605
42606 2005-10-11  Simon Josefsson  <jas@extundo.com>
42607
42608         * lib/crc.h, lib/crc.c: New files.
42609
42610         * lib/gc.h (gc_hash_buffer): Add doc.
42611
42612 2005-10-11  Bruno Haible  <bruno@clisp.org>
42613
42614         * modules/c-strcasestr: New file.
42615         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
42616
42617 2005-10-11  Bruno Haible  <bruno@clisp.org>
42618
42619         * modules/c-strcase: New file.
42620         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
42621
42622 2005-10-11  Bruno Haible  <bruno@clisp.org>
42623
42624         * lib/strcasecmp.c: Include limits.h.
42625         (strcasecmp): Avoid integer overflow on exotic platforms.
42626         * lib/strncasecmp.c: Include limits.h.
42627         (strncasecmp): Avoid integer overflow on exotic platforms.
42628         Reported by Paul Eggert.
42629
42630 2005-10-11  Bruno Haible  <bruno@clisp.org>
42631
42632         * lib/c-strcasestr.h: New file, from GNU gettext.
42633         * lib/c-strcasestr.c: New file, from GNU gettext.
42634
42635 2005-10-11  Bruno Haible  <bruno@clisp.org>
42636
42637         * lib/c-strcase.h: New file, from GNU gettext.
42638         * lib/c-strcasecmp.c: New file, from GNU gettext.
42639         * lib/c-strncasecmp.c: New file, from GNU gettext.
42640
42641 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42642
42643         * modules/mempcpy (License): GPL -> LGPL.
42644         * modules/strchrnul (License): Likewise.
42645         * modules/sysexits (License): Likewise.
42646
42647 2005-10-08  Simon Josefsson  <jas@extundo.com>
42648
42649         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
42650
42651 2005-10-07  Simon Josefsson  <jas@extundo.com>
42652
42653         * m4/memxor.m4: Remove gl_C_RESTRICT call.
42654
42655 2005-10-06  Simon Josefsson  <jas@extundo.com>
42656
42657         * tests/test-hmac-md5.c: New file.
42658
42659         * modules/hmac-md5-tests: New file.
42660
42661         * modules/hmac-md5: New file.
42662
42663 2005-10-06  Simon Josefsson  <jas@extundo.com>
42664
42665         * m4/hmac-md5.m4: New file.
42666
42667         * m4/memxor.m4: Require gl_C_RESTRICT.
42668
42669 2005-10-06  Simon Josefsson  <jas@extundo.com>
42670
42671         * lib/memxor.c (memxor): Avoid casts and warnings.
42672
42673 2005-10-06  Simon Josefsson  <jas@extundo.com>
42674
42675         * lib/hmac-md5.c: New file.
42676
42677         * lib/hmac.h: New file.
42678
42679 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
42680
42681         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
42682         promotes to int, not unsigned int, to catch the AIX 5.3
42683         compiler bug.
42684
42685 2005-10-05  Simon Josefsson  <jas@extundo.com>
42686
42687         * modules/memxor: New file.
42688
42689         * modules/iconv (Files): Move config.rpath to havelib, it is used
42690         there.
42691
42692         * modules/havelib (Files): Add config.rpath.
42693
42694 2005-10-05  Simon Josefsson  <jas@extundo.com>
42695
42696         * m4/memxor.m4: New file.
42697
42698 2005-10-05  Simon Josefsson  <jas@extundo.com>
42699
42700         * lib/memxor.c (memxor): Fix compiler error.
42701
42702         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
42703         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
42704
42705         * lib/memxor.h, lib/memxor.c: New files.
42706
42707         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
42708         we assume all systems have it, suggested by Jim Meyering
42709         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
42710         any systems lack sys/socket.h; mingw32 is known to lack it, but we
42711         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
42712         same reasons.
42713
42714 2005-10-05  Simon Josefsson  <jas@extundo.com>
42715
42716         * config/srclist.txt: Add glibc bug 1423 for md5.h.
42717
42718 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42719
42720         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
42721         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
42722         needed, since the source code now assumes these .h files.
42723
42724 2005-10-05  Derek Price  <derek@ximbiot.com>
42725
42726         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
42727
42728 2005-10-05  Bruno Haible  <bruno@clisp.org>
42729
42730         * modules/stdint (License): Change to LGPL.
42731
42732 2005-10-04  Simon Josefsson  <jas@extundo.com>
42733
42734         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
42735         D. Baushke" <mdb@gnu.org>.
42736
42737 2005-10-04  Bruno Haible  <bruno@clisp.org>
42738
42739         * lib/verify.h (verify_true): Provide alternative definition for C++.
42740
42741 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
42742
42743         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
42744         (SSIZE_MAX): New macro, if not already defined.
42745         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
42746         than 2 GiB.
42747
42748 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42749
42750         Sync from coreutils.
42751         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
42752         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
42753         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
42754         ULLONG_MAX doesn't work with 2.7.2.1.
42755
42756 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42757
42758         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
42759         From Ben Pfaff.
42760
42761         * modules/exclude (Depends-on): Depend on verify.
42762         * modules/strtoimax (Depends-on): Likewise.
42763         * modules/utimecmp (Depends-on): Likewise.
42764
42765 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42766
42767         * lib/exclude.c: Include verify.h.
42768         (verify): Remove.  All callers changed to use verify.h's version.
42769         * lib/strtoimax.c: Likewise.
42770         * lib/utimecmp.c: Likewis.e
42771
42772         Sync from coreutils.
42773         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
42774         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
42775         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
42776         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
42777         bother returning ENOSYS if settimeofday or stime fails; just let
42778         them return whatever errno they want to return.
42779         * lib/utimens.c: Include unistd.h, for dup2.
42780         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
42781         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
42782
42783 2005-10-02  Jim Meyering  <jim@meyering.net>
42784
42785         Sync from coreutils.
42786         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
42787         from glibc-2.2.5 that fails for read-only files.
42788
42789 2005-10-02  Jim Meyering  <jim@meyering.net>
42790
42791         Sync from coreutils.
42792         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
42793         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
42794         `#if HAVE_CONFIG_H'.
42795         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
42796         Remove AT_FDCWD test.
42797         Do not consume the fd unless successful.
42798         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
42799         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
42800         block, so that we don't even try to compile it if settimeofday is
42801         available.  This works around a compilation failure on OSF1 V5.1,
42802         due to stime requiring a `long int*' while tv_sec is `int'.
42803
42804 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
42805
42806         Sync from coreutils.
42807         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
42808         against `yes', rather than just testing for nonempty.
42809
42810 2005-10-01  Simon Josefsson  <jas@extundo.com>
42811
42812         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
42813         and Darwin.
42814
42815         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
42816         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
42817         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
42818         freeaddrinfo and gai_strerror are declared by the POSIX headers.
42819         Check if struct addrinfo is declared.
42820
42821 2005-10-01  Simon Josefsson  <jas@extundo.com>
42822
42823         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
42824         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
42825         AI_* and EAI_* definitions.  Protect function declarations.
42826
42827 2005-10-01  Jim Meyering  <jim@meyering.net>
42828
42829         Sync from coreutils.
42830
42831         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
42832         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
42833         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
42834         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42835         in the inet and nsl libraries.  Required on Solaris 5.7.
42836
42837 2005-10-01  Jim Meyering  <jim@meyering.net>
42838
42839         Sync from coreutils.
42840         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42841         in the inet and nsl libraries.  Required on Solaris 5.7.
42842
42843 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
42844
42845         * lib/getdelim.c (getdelim): Remove unused variables.
42846
42847 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
42848
42849         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
42850         so that the code works even with ancient cpp.  Portability problem
42851         with GCC 2.7.2.1 reported by Thomas M.Ott.
42852
42853 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
42854
42855         * modules/regex (Depends-on): Add strcase.
42856
42857         * modules/gethostname (Licence): Change from GPL to LGPL, since
42858         gethostname.c is a trivial implementation of a standard library
42859         function.
42860         * modules/poll (License): Change from GPL to LGPL, since it's
42861         derived from LGPL code.
42862
42863 2005-09-27  Jim Meyering  <jim@meyering.net>
42864
42865         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
42866         HAVE_CONFIG_H.
42867
42868         * lib/intprops.h (signed_type_or_expr__): Define.
42869         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
42870         for unsigned types.
42871
42872 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
42873
42874         * lib/verify.h (verify_expr): Remove, replacing with:
42875         (verify_true): New macro that returns true instead of void.
42876         (verify_type__): Remove.
42877         (verify): Use verify_true rather than verify_type__.
42878
42879 2005-09-26  Bruno Haible  <bruno@clisp.org>
42880
42881         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
42882         is necessary.
42883         (lib_SOURCES): Remove mbchar.c.
42884         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
42885         (Files): Add m4/mbrtowc.m4.
42886         * modules/mbiter: Likewise.
42887         * modules/mbuiter: Likewise.
42888
42889 2005-09-26  Bruno Haible  <bruno@clisp.org>
42890
42891         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
42892         compile mbchar.c if they are not both present.
42893         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
42894         * m4/mbiter.m4 (gl_MBITER): Likewise.
42895         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
42896         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
42897         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
42898
42899 2005-09-25  Jim Meyering  <jim@meyering.net>
42900
42901         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
42902         also uses socklen_t.
42903
42904 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
42905
42906         * lib/utimens.c (ENOSYS): Define if not already defined.
42907         (futimens): Support having a null PATH if the file descriptor
42908         is nonnegative.
42909
42910         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
42911         Remove.
42912         (__attribute): Define to empty unless GCC 3.1 or later.
42913         This works around a core dump on OpenBSD 3.4, which has GCC
42914         2.95.3, which dumps core when given __attribute__(()).  It also
42915         simplifies other tests, since we really don't want to bother with
42916         worrying about which ancient version of GCC supported what.
42917         Original problem reported by Yoann Vandoorselaere, with part of
42918         the fix suggested by Derek Price.
42919
42920 2005-09-24  Jim Meyering  <jim@meyering.net>
42921
42922         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
42923         so we can once again use a positive bitfield width of 1 -- now we
42924         don't have to explain why we were using a bitfield width of 2.
42925
42926 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
42927
42928         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
42929         and similarly for the other external symbols.  Problem reported
42930         by James Gallager.
42931
42932         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
42933         bug reported by Jim Meyering.
42934
42935         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
42936         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
42937         not needed, since socklen is a prerequisite module.
42938
42939 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
42940
42941         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
42942         Problem reported by Eric Blake.
42943         (getaddrinfo): Initialize se so that it's not garbage.
42944         Redo internal storage allocation so that it doesn't make unportable
42945         assumptions about alignment.
42946         Fix a memory leak.
42947
42948         * lib/utimens.c (futimens): Use futimesat if available.
42949         Prefer it to futimes since it doesn't have the futimes bug.
42950
42951         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
42952         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
42953         Instead, declare a function that returns a pointer to an array,
42954         and use verify_type__ to declare the size of the array.
42955         Problem and germ of a solution reported by Bruno Haible.
42956         (verify_type__): Use 2, not 1, for bitfield size, to avoid
42957         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
42958
42959 2005-09-23  Jim Meyering  <jim@meyering.net>
42960
42961         Sync from coreutils.
42962         Correct build failure (socklen_t not defined) on at least
42963         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
42964         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
42965
42966 2005-09-23  Jim Meyering  <jim@meyering.net>
42967
42968         * modules/getaddrinfo (Depends-on): Add socklen.
42969
42970 2005-09-23  Bruno Haible  <bruno@clisp.org>
42971
42972         * tests/test-verify.c: New file.
42973
42974 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42975
42976         Sync from coreutils.
42977
42978         * modules/argmatch (Depends-on): Add verify.
42979         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
42980         unistd-safer.
42981         * modules/save-cwd (Depends-on): Likewise.
42982
42983         * modules/openat (Files): Add lib/openat-die.c.
42984         (Depends-on): Remove error, exitfail.
42985         Add dirname.
42986
42987         * modules/verify: New file.
42988         * MODULES.html.sh (Diagnostics <assert.h>): New section,
42989         with "verify" module.
42990
42991 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42992
42993         Sync from coreutils.
42994
42995         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
42996         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
42997         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
42998         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
42999         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
43000         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
43001         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
43002         Don't bother checking for string.h, stdlib.h, unistd.h.
43003         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
43004         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
43005         module's job.
43006         * m4/jm-macros.m4 (gl_MACROS): Likewise.
43007         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
43008
43009         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
43010         (gl_GETDATE): Use it.
43011
43012         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
43013
43014 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43015
43016         Sync from coreutils.
43017
43018         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
43019         stat-time.h.
43020         * lib/argmatch.h: Include verify.h
43021         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
43022         (ARGMATCH_ASSERT): Remove; unused.
43023         * lib/canonicalize.c: Assume STDC_HEADERS.
43024         * lib/exclude.c: Include "strcase.h".
43025         * lib/regex_internal.h [!defined _LIBC]: Likewise.
43026         * lib/getusershell.c: Include stdio--.h rather than stdio.h
43027         and stdio-safer.h.
43028         (getusershell): Call fopen, not fopen_safer.
43029         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
43030         Do not include unistd-safer.h.
43031         (save_cwd): Don't call fd_safer; no longer needed
43032         now that we include fcntl--.h.
43033
43034         * lib/getdate.y (relative_time): New type.
43035         (RELATIVE_TIME_0): New constant.
43036         (parser_control): Use relative_time instead of doing it ourselves.
43037         (%union): Add new relative_time rel member.
43038         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
43039         Now typeless.
43040         (relunit, relunit_snumber): Now of type rel.
43041         (zone, rel, relunit, get_date): Adjust to above changes.
43042
43043         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
43044         Do not include unistd-safer.h.
43045         (getloadavg): Don't call fd_safer; no longer needed
43046         now that we include fcntl--.h.
43047
43048         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
43049         (make_dir_parents): Treat ENOSYS like EEXIST.
43050
43051         Improve quality of diagnostics on restore_cwd failure.
43052         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
43053         (make_dir_parents): Last arg is now int * (for errno), not bool *.
43054         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
43055         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
43056         each time through the loop.  Do not diagnose restore_cwd failure;
43057         that is the caller's job (and perhaps the caller does not care).
43058
43059         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
43060         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
43061         If the file already exists but is not a directory, don't bother
43062         to try to make its parents.
43063         Close potential file descriptor leak if we can't chdir("/") (!).
43064         Don't always return true if chdir($PWD) fails; return true only
43065         if the requested action was done successfully (except for the
43066         chdir($PWD)).
43067         Don't log final directory unless we actually made it.
43068         Refactor to avoid duplicate code to fix up permissions.
43069         Don't attempt to fix up parent permissions if chdir($PWD) fails.
43070
43071         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
43072         to make it a bit faster and (I hope) clearer.
43073         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
43074         Fix bug in formats like %2N.
43075
43076         * lib/verify.h: New file.
43077
43078 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43079
43080         Sync from coreutils.
43081         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
43082
43083 2005-09-22  Jim Meyering  <jim@meyering.net>
43084
43085         Sync from coreutils.
43086
43087         * m4/lstat.m4 (gl_FUNC_LSTAT):
43088         Use AC_LIBSOURCES to require lstat.c and lstat.h.
43089         Remove obsolete comment.
43090         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
43091         * m4/xstrtod.m4: Likewise.
43092
43093         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
43094
43095 2005-09-22  Jim Meyering  <jim@meyering.net>
43096
43097         Sync from coreutils.
43098
43099         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
43100
43101         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
43102         the .tm_year member, since otherwise gcc-4.0 would now warn about
43103         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
43104
43105         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
43106         order to avoid an unsuppressible warning from gcc on 64-bit systems.
43107
43108         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
43109         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
43110         when run in a time zone for which daylight savings time is in effect
43111         for the starting date.
43112
43113         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
43114         stop us from restricting permissions of just-created absolute-named
43115         directories.
43116         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
43117         to restore initial working directory.
43118         * lib/mkdir-p.c (make_dir_parents): New parameter:
43119         different_working_dir, to tell caller if/when we change the working
43120         directory and are unable to return to the initial one.
43121         * lib/mkdir-p.h (make_dir_parents): Update prototype.
43122         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
43123         `return false'.  This fixes a bug introduced on 2004-07-30.
43124
43125         * lib/openat.c (fdopendir): Be sure to close the supplied
43126         file descriptor before returning.  This makes our replacement
43127         implementation a little closer to Solaris's, where fdopendir
43128         ties the file descriptor to the returned DIR* pointer.
43129         * lib/openat.c (unlinkat): New function.
43130         * lib/openat.h (unlinkat): Add prototype.
43131         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
43132         (openat_restore_fail): Rename from openat_restore_die.
43133         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
43134
43135         Provide an alternative to exiting immediately upon save_cwd or
43136         restore_cwd failure.  Now, an application can arrange e.g.,
43137         to perform a longjump in that case.
43138         * lib/openat.c: Include dirname.h.
43139         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
43140         (rpl_openat, fdopendir, fstatat): Call openat_save_die
43141         and openat_restore_die rather than calling error directly.
43142         Don't include "error.h" or "exitfail.h"; they're no longer needed.
43143
43144         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
43145         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
43146         define.
43147
43148         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
43149         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
43150                             int utc, int nanoseconds);
43151         Background:
43152         date should not have to allocate a megabyte of virtual memory to
43153         handle a format argument like +%1048575T.  When implemented with
43154         strftime, it must allocate such a buffer, use strftime to fill it
43155         in, print it, then free it.
43156         With fprintftime, it simply prints everything and exits.
43157         With no need for memory allocation, that's one fewer way to fail.
43158         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
43159         optional field width, not before, so we accept %9:z, not %:9z.
43160         (my_strftime): Be sure to use L_('x') for literals.
43161
43162         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
43163         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
43164         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
43165         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
43166         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
43167         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
43168         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
43169         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
43170         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
43171         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
43172         * lib/xgethostname.c, lib/xreadlink.c:
43173         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
43174
43175         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
43176         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
43177         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
43178         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
43179         and don't include <sys/file.h>).
43180
43181 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
43182
43183         Sync from coreutils.
43184
43185         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
43186         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
43187         [!LDAV_DONE]: Avoid unused variable warning.
43188
43189 2005-09-21  Bruno Haible  <bruno@clisp.org>
43190
43191         * lib/unicodeio.h (unicode_to_mb): New declaration.
43192
43193 2005-09-20  Derek Price  <derek@ximbiot.com>
43194
43195         * lib/getaddrinfo.c: Don't include <netdb.h> included from
43196         getaddrinfo.h.
43197
43198 2005-09-20  Bruno Haible  <bruno@clisp.org>
43199
43200         * gnulib-tool: Remove trailing slashes from the values specified for
43201         --source-base, --m4-base, --tests-base, --aux-dir.
43202         Suggested by Simon Josefsson <jas@extundo.com>.
43203
43204 2005-09-20  Bruno Haible  <bruno@clisp.org>
43205
43206         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
43207         func_modules_to_filelist, func_import, func_create_testdir): Make all
43208         sorting results locale-independent, so that gnulib-cache.m4 doesn't
43209         change when gnulib-tool is invoked in a different locale.
43210
43211 2005-09-19  Simon Josefsson  <jas@extundo.com>
43212
43213         * m4/socklen.m4: Fix typo.
43214
43215 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43216
43217         Use a consistent style for including <config.h>.
43218         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
43219         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
43220         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
43221         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
43222         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
43223         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
43224         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
43225         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
43226         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
43227         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
43228         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
43229         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
43230         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
43231         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
43232         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
43233         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
43234         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
43235         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
43236         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
43237         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
43238         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
43239         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
43240         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
43241         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
43242         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
43243         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
43244         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
43245         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
43246         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
43247         lib/xstrtoumax.c, lib/yesno.c:
43248         Standardize inclusion of config.h.
43249         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
43250         lib/inttostr.h:  Removed inclusion of config.h from header files.
43251         * lib/inttostr.c:  Adjusted in-tree users.
43252         * lib/timespec.h: Remove superfluous warning to include config.h.
43253         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
43254         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
43255         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
43256         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
43257         config.h with HAVE_CONFIG_H.
43258
43259 2005-09-19  Jim Meyering  <jim@meyering.net>
43260
43261         * modules/pathmax (License): Change to LGPL.
43262
43263 2005-09-19  Derek Price  <derek@ximbiot.com>
43264
43265         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
43266
43267 2005-09-19  Bruno Haible  <bruno@clisp.org>
43268
43269         * gnulib-tool (import): Provide default for --tests-base.
43270
43271 2005-09-19  Bruno Haible  <bruno@clisp.org>
43272
43273         * doc/quote.texi: New file, extracted from gnulib.texi.
43274         * doc/ctime.texi: New file, extracted from gnulib.texi.
43275         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
43276         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
43277         * doc/gnulib.texi: Include them.
43278
43279 2005-09-18  Bruno Haible  <bruno@clisp.org>
43280
43281         Portability fix.
43282         * gnulib-tool (func_readlink): New function.
43283         (func_ln_if_changed): Use it.
43284
43285 2005-09-18  Bruno Haible  <bruno@clisp.org>
43286
43287         * gnulib-tool: Support --with-tests also with --import.
43288         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
43289         (func_import): Use variables $testsbase and $inctests. Emit a
43290         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
43291         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
43292         SUBDIRS += $testsdir.
43293         (func_create_testdir): Update.
43294
43295 2005-09-18  Bruno Haible  <bruno@clisp.org>
43296
43297         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
43298         instead of $dry_run.
43299         (func_cp_if_changed, func_mv_if_changed): Remove functions.
43300         (func_ln_if_changed): Don't handle dry-run here.
43301         (func_import): In dry-run mode, detect more precisely which actions
43302         would be performed, and don't use "...ing" verbs.
43303
43304 2005-09-18  Bruno Haible  <bruno@clisp.org>
43305
43306         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
43307         (func_import): Use join on two temporary files instead of three nested
43308         loops, in order to determine which files are new or old.
43309
43310 2005-09-18  Bruno Haible  <bruno@clisp.org>
43311
43312         * gnulib-tool (func_import): Comment out code that spits out the
43313         new files with --dry-run.
43314
43315 2005-09-18  Bruno Haible  <bruno@clisp.org>
43316
43317         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
43318
43319 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43320
43321         * lib/stat-time.h: New file.
43322         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
43323         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
43324         in a different way.
43325         (timespec_cmp): New function.
43326         * lib/utimecmp.c: Include stat-time.h.
43327         (SYSCALL_RESOLUTION): Depend on whether various struct stat
43328         members exist, not on the obsolescent ST_MTIM_NSEC.
43329         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
43330
43331 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43332
43333         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
43334
43335 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43336
43337         * MODULES.html.sh (File system functions): Add stat-time.
43338         * modules/stat-time: New file.
43339         * modules/timespec (Files): Remove m4/st_mtim.m4; this
43340         is now done in a different way, by the stat-time module.
43341         * modules/utimecmp (Depends-on): Add stat-time.
43342
43343 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43344
43345         * m4/st_mtim.m4: Remove.  Superseded by...
43346         * m4/stat-time.m4: New file.
43347         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
43348         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
43349
43350 2005-09-15  Derek Price  <derek@ximbiot.com>
43351
43352         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
43353
43354 2005-09-15  Derek Price  <derek@ximbiot.com>
43355
43356         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
43357         * lib/regex_internal.c: Ditto, using this...
43358         (__GNUC_PREREQ): ...new macro.
43359         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
43360         using...
43361         (__GNUC_PREREQ): ...this new macro.
43362
43363         * lib/strstr.h: Include string.h. Define strstr as a macro here.
43364
43365 2005-09-15  Derek Price  <derek@ximbiot.com>
43366             Paul Eggert  <eggert@cs.ucla.edu>
43367
43368         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
43369         changes, consolidating in...
43370         * lib/regex_internal.h: ...this file.
43371
43372 2005-09-13  Jim Meyering  <jim@meyering.net>
43373
43374         * lib/canon-host.c: Filter through gnu indent and reword comments
43375         slightly.
43376         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
43377
43378 2005-09-13  Derek Price  <derek@ximbiot.com>
43379
43380         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
43381         failure.
43382         Reported by Jim Meyering  <jim@meyering.net>.
43383
43384 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
43385
43386         * lib/base64.c: Typo.
43387         (base64_encode): Put b64str in initialized data section.
43388
43389 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
43390
43391         Merge glibc and coreutils changes into gnulib, plus a few
43392         extra fixes.
43393         * lib/md5.c: Use #error rather than a string.
43394         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
43395         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
43396         (__attribute__): Define to empty for non recent-GCC.
43397         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
43398         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
43399         Renamed from their non-__ counterparts, with new macros replacing
43400         them if not _LIBC.  Add __THROW attribute.
43401         (rol): Remove.
43402         (struct md5_ctx): Align buffer if using GCC.
43403         * lib/sha1.h (struct sha1_ctx): Likewise.
43404         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
43405         The old name was backwards.
43406         (NOTSWAP): Remove; not used.
43407         (rol): New macro, moved here from md5.h.
43408         (sha1_process_block): Remove a FIXME that doesn't make sense.
43409
43410 2005-09-12  Derek Price  <derek@ximbiot.com>
43411
43412         Return usable errors from canon-host.
43413         * lib/canon-host.h: New file.
43414         * lib/canon-host.c (canon_host): Wrap...
43415         (canon_host_r): ...this new function, which now relies exclusively on
43416         getaddrinfo.
43417         (ch_strerror): New function.
43418         (last_cherror): New global.
43419         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
43420         interface.
43421         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
43422         void *.
43423         (freeaddrinfo): Free ai->ai_canonname when set.
43424
43425 2005-09-12  Derek Price  <derek@ximbiot.com>
43426
43427         Make canon-host require getaddrinfo.
43428         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
43429         AC_LIBSOURCE canon-host.h.  Call...
43430         (gl_PREREQ_CANON_HOST): ...this new function, which requires
43431         gl_GETADDRINFO.
43432         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
43433
43434 2005-09-12  Derek Price  <derek@ximbiot.com>
43435
43436         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
43437         LGPL.
43438         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
43439
43440 2005-09-12  Derek Price  <derek@ximbiot.com>
43441
43442         * lib/gai_strerror.c: Include config.h when available.  Include
43443         getaddrinfo.h before other headers to test interface.
43444         Reported by Larry Jones <lawrence.jones@ugs.com>.
43445
43446 2005-09-12  Derek Price  <derek@ximbiot.com>
43447             Paul Eggert  <eggert@cs.ucla.edu>
43448
43449         * modules/glob (Files): Add glob-libc.h.
43450
43451 2005-09-12  Derek Price  <derek@ximbiot.com>
43452             Paul Eggert  <eggert@cs.ucla.edu>
43453
43454         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
43455         glob_.h, glob-libc.h.
43456         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
43457
43458 2005-09-12  Derek Price  <derek@ximbiot.com>
43459             Paul Eggert  <eggert@cs.ucla.edu>
43460
43461         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
43462         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
43463         protecting things that should be done only in gnulib contexts.
43464         * lib/glob_.h: New file, containing only the glob things needed for
43465         gnulib.
43466         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
43467         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
43468         (glob, globfree, glob_pattern_p): Now defined simply in terms of
43469         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
43470         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
43471         and to respect the namespace rules better.
43472
43473 2005-09-08  Simon Josefsson  <jas@extundo.com>
43474
43475         * modules/socklen: New file.
43476
43477 2005-09-08  Simon Josefsson  <jas@extundo.com>
43478
43479         * m4/socklen.m4: New file.
43480
43481 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43482
43483         * modules/utimens (Files): Add m4/utimbuf.m4, since
43484         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
43485         Reported by Sergey Poznyakoff.
43486
43487 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43488
43489         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
43490         definitions, since that's the preferred style in glibc.
43491         Fix a minor spacing issue, and update copyright notice to match
43492         glibc's.
43493
43494 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43495
43496         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
43497
43498 2005-09-06  Simon Josefsson  <jas@extundo.com>
43499
43500         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
43501         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
43502
43503 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43504
43505         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
43506         warning.
43507
43508 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43509
43510         * config/srclist.txt: Add glibc bug 1302.
43511
43512 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
43513
43514         Change bitset word type from unsigned int to unsigned long int,
43515         as this has better performance on typical 64-bit hosts.
43516         Port bitset code to hosts with unusual word sizes.
43517         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
43518         (build_collating_symbol):
43519         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
43520         argument is a bitset.  This is merely a style issue, but it makes
43521         it clearer that an entire array is expected.
43522         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
43523         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
43524         Port to the case where bitset_word is not the same as unsigned int.
43525         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43526         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
43527         Likewise.
43528         * lib/regexec.c (check_dst_limits_calc_pos_1,
43529         check_subexp_matching_top):
43530         (build_trtable, group_nodes_into_DFAstates):
43531         Likewise.
43532         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
43533         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
43534         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
43535         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
43536         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
43537         * lib/regcomp.c (optimize_subexps, lower_subexp):
43538         Work even if bitset_word has holes in its bitwise representation.
43539         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
43540         * lib/regexec.c (check_dst_limits_calc_pos_1,
43541         check_subexp_matching_top):
43542         Likewise.
43543         * lib/regex_internal.c (re_string_reconstruct):
43544         Don't assume UCHAR_MAX == 255.
43545         * lib/regex_internal.h (bitset_set_all): Likewise.
43546         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
43547         All uses changed.
43548         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
43549         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
43550         All uses changed.
43551         (BITSET_WORD_MAX): New macro.
43552         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
43553         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
43554         (bitset_empty, bitset_copy):
43555         Prefer sizeof (bitset) to multiplying it out ourselves.
43556         (bitset_not_merge): Remove; unused.
43557         (bitset_contain): Return bool, not unsigned int with one bit on.
43558         All callers changed.
43559         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
43560         alignment than re_node_set; do this by defining a new internal
43561         type struct dests_alloc and using it to allocate memory.
43562
43563 2005-09-05  Bruno Haible  <bruno@clisp.org>
43564
43565         * gnulib-tool (func_import): Fix comparison in handling of symbolic
43566         links.
43567
43568 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
43569
43570         * modules/size_max (Makefile.am): Add size_max.h
43571
43572 2005-09-04  Derek Price  <derek@ximbiot.com>
43573
43574         * gnulib-tool (func_import): Fix reversed $symbolic logic.
43575
43576 2005-09-03  Simon Josefsson  <jas@extundo.com>
43577
43578         * gnulib-tool: Fix typo.
43579
43580 2005-09-03  Simon Josefsson  <jas@extundo.com>
43581
43582         * config/srclist.txt: Add glibc bug 1293.
43583
43584 2005-09-03  Derek Price  <derek@ximbiot.com>
43585
43586         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
43587         From Larry Jones <lawrence.jones@ugs.com>.
43588
43589 2005-09-02  Simon Josefsson  <jas@extundo.com>
43590
43591         * modules/socklen: New file.
43592
43593 2005-09-02  Simon Josefsson  <jas@extundo.com>
43594
43595         * modules/havelib: New module.
43596
43597         * modules/gettext, modules/iconv, modules/lock, modules/readline:
43598         Use havelib.
43599
43600 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43601
43602         Check for arithmetic overflow when calculating sizes, to prevent
43603         some buffer-overflow issues.  These patches are conservative, in the
43604         sense that when I couldn't determine whether an overflow was possible,
43605         I inserted a run-time check.
43606         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
43607         macros.
43608         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
43609         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
43610         (re_xnrealloc, re_x2nrealloc): New inline functions.
43611         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
43612         parse_bracket_exp):
43613         (build_equiv_class, build_charclass): Check for arithmetic overflow
43614         in size expression calculations.
43615         * lib/regex_internal.c (re_string_realloc_buffers):
43616         (build_wcs_upper_buffer, re_node_set_add_intersect):
43617         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
43618         (re_dfa_add_node, register_state): Likewise.
43619         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
43620         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
43621         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
43622         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
43623
43624 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43625
43626         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
43627         m4/ulonglong.m4.  Problem reported by Martin Lambers.
43628
43629 2005-09-02  Bruno Haible  <bruno@clisp.org>
43630
43631         Support for lib vs. lib64 distinction on biarch platforms.
43632         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
43633         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
43634         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
43635
43636 2005-09-02  Bruno Haible  <bruno@clisp.org>
43637
43638         * gnulib-tool (import): In the other first-use case, provide defaults
43639         as well.
43640
43641 2005-09-02  Bruno Haible  <bruno@clisp.org>
43642
43643         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
43644         patches not yet found in the latest gettext release.
43645
43646 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43647
43648         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
43649         to avoid a collision with bits/local_lim.h in glibc.
43650         All uses changed.  Problem reported by Dmitry V. Levin in
43651         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
43652
43653         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
43654         bugs in int versus size_t comparisons.
43655         (re_string_context_at): Fix bug where the code assumed that
43656         Idx is signed.
43657
43658         Use bool where appropriate.
43659         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
43660         All callers changed.
43661         (calc_eclosure_iter): Likewise, for ROOT arg.
43662         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
43663         (build_charclass_op): Likewise, for NON_MATCH arg.
43664         * lib/regex_internal.c (re_string_allocate, re_string_construct):
43665         (re_string_construct_common): Likewise, for ICASE arg.
43666         * lib/regexec.c (re_search_2_stub, re_search_stub):
43667         Likewise, for RET_LEN arg.
43668         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
43669         (set_regs): Likewise, for FL_BACKTRACK arg.
43670         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
43671         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
43672         (calc_eclosure_iter, parse_bracket_exp):
43673         Use bool for internal variables that are booleans.
43674         * lib/regexec.c (re_search_internal, check_matching,
43675         proceed_next_node):
43676         (set_regs, build_sifted_states, sift_states_bkref):
43677         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
43678         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
43679         (find_collation_sequence_value):
43680         Likewise.
43681         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
43682         (re_node_set_compare):
43683         Return bool, not int. All callers changed.
43684         * lib/regexec.c (check_halt_node_context, check_dst_limits):
43685         (build_trtable, check_node_accept): Likewise.
43686         * lib/regex_internal.h: Include stdbool.h.
43687
43688         Fix bugs uncovered when converting to bool.
43689         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
43690         failure instead of charging ahead blindly.
43691         * lib/regex_internal.c (register_state): Likewise.
43692         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
43693         for freeing internal storage.
43694         (group_nodes_into_DFA_states): Use unsigned int, not int, for
43695         bitset pieces used as boolean, to avoid undefined behavior
43696         on hosts that do int overflow checking.
43697
43698 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43699
43700         * config/srclist.txt: Add glibc bugs 1285-1287.
43701
43702 2005-09-01  Jim Meyering  <jim@meyering.net>
43703
43704         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
43705         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
43706         Require gl_STAT_MACROS, too.
43707
43708 2005-09-01  Bruno Haible  <bruno@clisp.org>
43709
43710         * gnulib-tool (import): In the first-use case, provide defaults.
43711
43712 2005-09-01  Bruno Haible  <bruno@clisp.org>
43713
43714         * gnulib-tool (func_import): Remove the .tmp files.
43715
43716 2005-09-01  Bruno Haible  <bruno@clisp.org>
43717
43718         * gnulib-tool (func_import): Fix handling of symbolic links.
43719
43720 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43721
43722         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
43723         old glibc regex code mishandles strings longer than 2**31 bytes.
43724         This patch fixes this when the regex code is used in gnulib
43725         (i.e., outside glibc).
43726
43727         This patch should not affect the use of the regex code inside
43728         glibc.  No doubt this problem also needs to be handled for glibc
43729         as well, but the result will be an incompatible change to the
43730         glibc ABI, and the old ABI will have to be supported too.  That
43731         can be the the subject for another patch.
43732
43733         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
43734         governing whether the rest of this patch is active.  By default,
43735         the macro is disabled and the patch has no effect.
43736         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
43737         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
43738         (struct re_pattern_buffer, re_search, re_search_2, re_match):
43739         (re_match_2, re_set_registers): Use the new types.
43740         * lib/regex_internal.h (Idx, re_hashval_t): New types.
43741         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
43742         New macros.
43743         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
43744         (re_string_context_at, bin_tree_t, re_dfastate_t):
43745         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
43746         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
43747         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
43748         (re_string_char_size_at, re_string_wchar_at):
43749         (re_string_elem_size_at):
43750         Use the new types and macros to port to 64-bit hosts.
43751         Use unsigned types for internal values, so that the code
43752         mostly works even for arrays larger than SSIZE_MAX.
43753         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
43754         (search_duplicated_node, calc_eclosure_iter, fetch_number):
43755         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
43756         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
43757         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
43758         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
43759         (calc_inveclosure, parse_dup_op, build_range_exp):
43760         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
43761         (fetch_number, create_token_tree, mark_opt_subexp):
43762         Likewise.
43763         * lib/regex_internal.c (re_string_construct_common,
43764         create_ci_newstate):
43765         (create_cd_newstate, re_string_allocate, re_string_construct):
43766         (re_string_realloc_buffers, build_wcs_upper_buffer):
43767         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
43768         (re_string_reconstruct, re_string_peek_byte_case):
43769         (re_string_fetch_byte_case, re_string_context_at):
43770         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
43771         (re_node_set_init_copy, re_node_set_add_intersect):
43772         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
43773         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
43774         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
43775         (re_acquire_state, re_acquire_state_context, register_state):
43776         Likewise.
43777         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
43778         search_cur_bkref_entry):
43779         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
43780         (re_search_internal, re_search_2_stub, re_search_stub)
43781         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
43782         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
43783         (update_cur_sifted_state, check_dst_limits):
43784         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43785         (check_subexp_limits, sift_states_bkref, merge_state_array):
43786         (check_subexp_matching_top, get_subexp, get_subexp_sub):
43787         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
43788         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
43789         (expand_bkref_cache, check_node_accept_bytes):
43790         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
43791         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
43792         (acquire_init_state_context, check_halt_node_context):
43793         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
43794         (sift_states_backward, clean_state_log_if_needed):
43795         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
43796         (find_recover_state, transit_state_sb, transit_state_mb):
43797         (transit_state_bkref, build_trtable, match_ctx_clean):
43798         Likewise.
43799         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
43800         to work around an assumption that REG_MISSING is negative.
43801
43802         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
43803         (seek_collating_symbol_entry) [defined _LIBC]:
43804         (lookup_collation_sequence_value) [defined _LIBC]:
43805         (build_range_exp, build_collating_symbol) [defined _LIBC]:
43806         Use prototypes rather than old-style function definitions.
43807         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
43808         (transit_state_sb) [0]:
43809         (find_collation_sequence_value) [defined _LIBC]: Likewise.
43810
43811         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
43812         rm_eo.
43813
43814         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
43815         (optimize_subexps, lower_subexp):
43816         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
43817         since the signed shift might overflow.  Use 1u<<31 instead.
43818         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43819         Likewise.
43820         * lib/regexec.c (check_dst_limits_calc_pos_1,
43821         check_subexp_matching_top): Likewise.
43822
43823         * lib/regcomp.c (optimize_subexps, lower_subexp):
43824         Use CHAR_BIT rather than 8, for clarity.
43825         * lib/regexec.c (check_dst_limits_calc_pos_1):
43826         (check_subexp_matching_top): Likewise.
43827         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
43828         have to worry about portability issues when shifting it left.
43829         Remove no-longer-needed test for table_size > 0.
43830         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
43831         in a word, as the resulting behavior is undefined.
43832         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
43833         in one case, a <= should have been an <, and in another case the
43834         whole test was missing.
43835         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
43836         the standard name CHAR_BIT.
43837         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
43838         this is not true on one's complement and signed-magnitude hosts.
43839
43840         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
43841         next_last_offset.
43842         (struct re_dfa_t): Remove unused member states_alloc.
43843         * lib/regcomp.c (init_dfa): Don't initialize unused members.
43844
43845 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43846
43847         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
43848         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
43849         and large-file glibc and in 32-bit large-file Solaris.
43850
43851 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43852
43853         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
43854         lengths fit in regoff_t; this isn't true if regoff_t is the same
43855         width as size_t.
43856         * lib/regex.c (re_search_internal): 5th arg is LAST_START
43857         (= START + RANGE) instead of RANGE.  This avoids overflow
43858         problems when regoff_t is the same width as size_t.
43859         All callers changed.
43860         (re_search_2_stub): Check for overflow when adding the
43861         sizes of the two strings.
43862         (re_search_stub): Check for overflow when adding START
43863         to RANGE; if it occurs, substitute the extreme value.
43864
43865 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43866
43867         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
43868
43869 2005-08-31  Jim Meyering  <jim@meyering.net>
43870
43871         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
43872         a pointer-to-const.
43873         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
43874         (register_state): Likewise.
43875         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
43876         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43877         (group_nodes_into_DFAstates): Likewise.
43878
43879 2005-08-31  Jim Meyering  <jim@meyering.net>
43880
43881         * check-module: Add a FIXME comment.
43882
43883 2005-08-31  Eric Blake  <ebb9@byu.net>
43884
43885         * modules/unistd-safer (Files): Add unistd--.h.
43886         * modules/stdio-safer (Files): Add stdio--.h.
43887
43888 2005-08-31  Derek Price  <derek@ximbiot.com>
43889
43890         * lib/getdelim.c (getdelim): Return EOF on EOF.
43891         Reported by Larry Jones <lawrence.jones@ugs.com>.
43892
43893 2005-08-31  Bruno Haible  <bruno@clisp.org>
43894
43895         Avoid unnecessary diffs in the generated lib/Makefile.am.
43896         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
43897         the generated files.
43898         (func_import): Don't set cmd.
43899
43900 2005-08-31  Bruno Haible  <bruno@clisp.org>
43901
43902         * lib/strstr.c: Include <stddef.h>, for NULL.
43903         * lib/strcasestr.c: Likewise.
43904         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
43905
43906 2005-08-31  Bruno Haible  <bruno@clisp.org>
43907
43908         * gnulib-tool: New option --macro-prefix.
43909         (func_import): Use macro_prefix.
43910         (import): Handle option --macro-prefix.
43911
43912 2005-08-31  Bruno Haible  <bruno@clisp.org>
43913
43914         * gnulib-tool (import): Rename most ac_* variables to cached_*.
43915         Also use new variables cached_lgpl, cached_libtool.
43916
43917 2005-08-31  Bruno Haible  <bruno@clisp.org>
43918
43919         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
43920         always instantiating them.
43921
43922 2005-08-31  Bruno Haible  <bruno@clisp.org>
43923
43924         * gnulib-tool (func_import): Read the previous cached settings
43925         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
43926         earlier added by gnulib but are now dropped. Warn when a gnulib file
43927         overwrites a non-gnulib file.
43928
43929 2005-08-31  Bruno Haible  <bruno@clisp.org>
43930
43931         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
43932         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
43933         projects that don't keep autogenerated files in CVS. Put into
43934         actioncmd only the specified modules, not the transitive closure.
43935
43936 2005-08-31  Bruno Haible  <bruno@clisp.org>
43937
43938         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
43939         Create directories that shall be filled.
43940         (import): Don't look for gl_* macros in configure.ac. Recurse across
43941         all directories containing a gnulib-cache.m4 files, if meaningful.
43942
43943 2005-08-31  Bruno Haible  <bruno@clisp.org>
43944
43945         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
43946         (import): Set seen_libtool when we see gl_LIBTOOL.
43947
43948 2005-08-31  Bruno Haible  <bruno@clisp.org>
43949
43950         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
43951         declaration macro definitions from generated gnulib.m4.
43952
43953 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
43954
43955         * lib/iconvme.h: Add prototype for iconv_alloc.
43956
43957 2005-08-29  Simon Josefsson  <jas@extundo.com>
43958
43959         * lib/iconvme.c: Fix errno.
43960
43961 2005-08-29  Bruno Haible  <bruno@clisp.org>
43962
43963         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
43964         that it works when the directory contains spaces.
43965
43966 2005-08-29  Bruno Haible  <bruno@clisp.org>
43967
43968         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
43969
43970 2005-08-29  Bruno Haible  <bruno@clisp.org>
43971
43972         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
43973         Emit more advice.
43974
43975 2005-08-29  Bruno Haible  <bruno@clisp.org>
43976         and Stepan Kasal  <kasal@ucw.cz>
43977
43978         * check-module: If more parameters are given, check each of them
43979         separately; add more exceptions, as noted by Jim Meyering.
43980         (check_module): New procedure.
43981         (%exempt_header): Now contains all exceptions.
43982
43983 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
43984
43985         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
43986
43987 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
43988
43989         * lib/iconvme.c: Split iconv_string into iconv_alloc.
43990
43991 2005-08-28  Bruno Haible  <bruno@clisp.org>
43992
43993         * m4/gnulib-tool.m4: New file.
43994
43995 2005-08-27  Jim Meyering  <jim@meyering.net>
43996
43997         * modules/unistd-safer (Files): Add pipe-safer.c.
43998         * modules/fcntl-safer (Files): Add creat-safer.c.
43999
44000 2005-08-27  Jim Meyering  <jim@meyering.net>
44001
44002         * m4/stdlib-safer.m4: New file.  From coreutils.
44003         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
44004         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
44005         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
44006         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
44007         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
44008
44009 2005-08-27  Jim Meyering  <jim@meyering.net>
44010
44011         * lib/fopen-safer.c: Merge minor changes from coreutils.
44012         * lib/dup-safer.c: Likewise.
44013         * lib/fd-safer.c: Likewise.
44014
44015         Merge from coreutils.
44016         * lib/stdio--.h: New file.
44017         * lib/stdlib--.h: New file.
44018         * lib/mkstemp-safer.c: New file.
44019
44020         GNU tar needs these.
44021         * lib/pipe-safer.c: New file.
44022         * lib/creat-safer.c: New file.
44023         * lib/fcntl--.h (creat): Define to creat_safer.
44024         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
44025         * lib/unistd--.h (pipe): Define to pipe_safer.
44026         * lib/unistd-safer.h: Declare pipe_safer.
44027
44028 2005-08-26  Simon Josefsson  <jas@extundo.com>
44029
44030         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
44031         Haible <bruno@clisp.org>.
44032
44033 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
44034
44035         * lib/regex_internal.h: Remove all references to
44036         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
44037         or better.
44038         (bitset_not, bitset_merge, bitset_not_merge):
44039         (bitset_mask, re_string_allocate, re_string_construct):
44040         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
44041         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
44042         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
44043         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
44044         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44045         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44046         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
44047         (re_acquire_state_context):
44048         Remove unnecessary forward decls.
44049         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
44050         Put __attribute at function definition,
44051         now that the function decl has been removed.
44052         * lib/regex_internal.c (re_string_peek_byte_case):
44053         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
44054         Likewise.
44055
44056 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
44057
44058         * m4/regex.m4: Add AC_PREREQ(2.50).
44059         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
44060
44061 2005-08-25  Simon Josefsson  <jas@extundo.com>
44062
44063         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
44064         __fsetlocking.
44065
44066 2005-08-25  Simon Josefsson  <jas@extundo.com>
44067
44068         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
44069         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
44070         GLIBC specific code.
44071
44072 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44073
44074         Make regex safe for g++.  This fixes one real bug (an "err"
44075         that should have been "*err").  g++ problem reported by
44076         Sam Steingold.
44077         * lib/regex_internal.h (re_calloc): New macro, consistent with
44078         re_malloc etc.  All callers of calloc changed to use re_calloc.
44079         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
44080         not int.  All callers changed.
44081         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
44082         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
44083         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
44084         (find_recover_state): Change "err" to "*err"; this fixes what
44085         appears to be a real bug.
44086         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
44087         versus int.
44088
44089 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44090
44091         * modules/regex (Depends-on): Add malloc, since the code
44092         assumes that !malloc(0) means failure.
44093
44094 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44095
44096         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
44097
44098         alloca modernization/simplification for regex.
44099         * lib/regex.c: Remove portability cruft for alloca.  This no longer
44100         needs to be at the start of the file, and can be moved into
44101         regex_internal.h and simplified.
44102         * lib/regex_internal.h: Include <alloca.h>.
44103         (__libc_use_alloca) [!defined _LIBC]: New macro.
44104         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
44105         now works outside glibc.
44106
44107 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44108
44109         * config/srclist.txt: Add glibc bugs 1241, 1245.
44110
44111 2005-08-25  Jim Meyering  <jim@meyering.net>
44112
44113         * lib/open-safer.c: Include <config.h>.
44114         Otherwise, we'd lose LARGEFILE support in any file using
44115         e.g. "fcntl--.h"
44116
44117 2005-08-25  Bruno Haible  <bruno@clisp.org>
44118
44119         * m4/minmax.m4: Require autoconf 2.52.
44120         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
44121         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
44122         alternatives of translit over the alphabet.
44123         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
44124
44125 2005-08-24  Simon Josefsson  <jas@extundo.com>
44126
44127         * tests/test-getpass.c: New file.
44128
44129 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44130
44131         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
44132         for GNU regex features.
44133
44134 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44135
44136         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
44137         * lib/regex.h (regerror): Likewise.
44138
44139         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
44140         requires this.  (The code never needed it.)
44141
44142         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
44143         All uses of recently-renamed identifiers changed to use the new,
44144         POSIX-compliant names.  The code will build and run just fine
44145         without these changes, but it's better to eat our own dog food
44146         and use the standard-conforming names.
44147
44148         * lib/regex.h: Fix a multitude of POSIX name space violations.
44149         These changes have an effect only for programs that define
44150         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
44151         do not change anything for programs compiled in the normal way.
44152         Also, there is no effect on the ABI.
44153
44154         (_REGEX_SOURCE): New macro.
44155         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
44156         defined and _GNU_SOURCE is not; this fixes a name space violation.
44157
44158         Rename the following macros to obey POSIX requirements.
44159         The old names are still visible as macros if _REGEX_SOURCE is defined.
44160         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
44161         RE_BACKSLASH_ESCAPE_IN_LISTS.
44162         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
44163         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
44164         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
44165         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
44166         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
44167         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
44168         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
44169         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
44170         (REG_INTERVALS): renamed from RE_INTERVALS.
44171         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
44172         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
44173         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
44174         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
44175         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
44176         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
44177         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
44178         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
44179         RE_UNMATCHED_RIGHT_PAREN_ORD.
44180         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
44181         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
44182         (REG_DEBUG): renamed from RE_DEBUG.
44183         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
44184         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
44185         unusual, since we can't clash with the POSIX REG_ICASE.
44186         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
44187         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
44188         (REG_NO_SUB): renamed from RE_NO_SUB.
44189         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
44190         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
44191         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
44192         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
44193         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
44194         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
44195         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
44196         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
44197         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
44198         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
44199         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
44200         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
44201         RE_SYNTAX_POSIX_MINIMAL_BASIC.
44202         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
44203         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
44204         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
44205         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
44206         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
44207         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
44208         (REG_FIXED): Renamed from REGS_FIXED.
44209         (REG_NREGS): Renamed from RE_NREGS.
44210
44211         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
44212         of other REG_* macros, since POSIX says the user is allowed to
44213         #undef these macros selectively.
44214
44215         (reg_errcode_t): Update comment stating what other tables need
44216         to be consistent.
44217
44218         Rename the following enum values to obey POSIX requirements.
44219         The old names are still visible as macros.
44220         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
44221         is not defined, since GNU is supposed to be a superset of POSIX as
44222         much as possible, and since we want reg_errcode_t to be a signed
44223         type for implementation consistency.
44224         (_REG_NOERROR): Renamed from REG_NOERROR.
44225         (_REG_NOMATCH): Renamed from REG_NOMATCH.
44226         (_REG_BADPAT): Renamed from REG_BADPAT.
44227         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
44228         (_REG_ECTYPE): Renamed from REG_ECTYPE.
44229         (_REG_EESCAPE): Renamed from REG_EESCAPE.
44230         (_REG_ESUBREG): Renamed from REG_ESUBREG.
44231         (_REG_EBRACK): Renamed from REG_EBRACK.
44232         (_REG_EPAREN): Renamed from REG_EPAREN.
44233         (_REG_EBRACE): Renamed from REG_EBRACE.
44234         (_REG_BADBR): Renamed from REG_BADBR.
44235         (_REG_ERANGE): Renamed from REG_ERANGE.
44236         (_REG_ESPACE): Renamed from REG_ESPACE.
44237         (_REG_BADRPT): Renamed from REG_BADRPT.
44238         (_REG_EEND): Renamed from REG_EEND.
44239         (_REG_ESIZE): Renamed from REG_ESIZE.
44240         (_REG_ERPAREN): Renamed from REG_ERPAREN.
44241         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
44242         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
44243         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
44244         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
44245
44246         (_REG_RE_NAME, _REG_RM_NAME): New macros.
44247         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
44248         changed.  But support the old name if the new one is not defined
44249         and if _REGEX_SOURCE.
44250
44251         Change the following member names in struct re_pattern_buffer.
44252         The old names are still supported if !_REGEX_SOURCE.
44253         The new names are always supported, regardless of _REGEX_SOURCE.
44254         (re_buffer): Renamed from buffer.
44255         (re_allocated): Renamed from allocated.
44256         (re_used): Renamed from used.
44257         (re_syntax): Renamed from syntax.
44258         (re_fastmap): Renamed from fastmap.
44259         (re_translate): Renamed from translate.
44260         (re_can_be_null): Renamed from can_be_null.
44261         (re_regs_allocated): Renamed from regs_allocated.
44262         (re_fastmap_accurate): Renamed from fastmap_accurate.
44263         (re_no_sub): Renamed from no_sub.
44264         (re_not_bol): Renamed from not_bol.
44265         (re_not_eol): Renamed from not_eol.
44266         (re_newline_anchor): Renamed from newline_anchor.
44267
44268         Change the following member names in struct re_registers.
44269         The old names are still supported if !_REGEX_SOURCE.
44270         The new names are always supported, regardless of _REGEX_SOURCE.
44271         (rm_num_regs): Renamed from num_regs.
44272         (rm_start): Renamed from start.
44273         (rm_end): Renamed from end.
44274
44275         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
44276         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
44277         Prepend __ to parameter names.
44278
44279         Undo yesterday's changes.
44280
44281 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44282
44283         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
44284         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
44285         lib/regex.c.
44286
44287 2005-08-24  Jim Meyering  <jim@meyering.net>
44288
44289         Sync from coreutils.
44290         * m4/fcntl-safer.m4: New file.
44291
44292         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
44293         and object files for this module.
44294
44295 2005-08-24  Jim Meyering  <jim@meyering.net>
44296
44297         Sync from coreutils.
44298         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
44299
44300 2005-08-24  Jim Meyering  <jim@meyering.net>
44301
44302         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
44303         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
44304
44305 2005-08-24  Jim Meyering  <jim@meyering.net>
44306
44307         * modules/fcntl-safer: New module.
44308         * modules/fts (Depends-on): Add fcntl-safer.
44309         * MODULES.html.sh (File descriptor based Input/Output):
44310         Add fcntl-safer.
44311
44312 2005-08-24  Bruno Haible  <bruno@clisp.org>
44313
44314         Support for unit test modules.
44315         * modules/README: Mention tests modules.
44316         * modules/TEMPLATE-TESTS: New file.
44317         * gnulib-tool: New options --extract-tests-module, --with-tests and
44318         --tests-base (unused for the moment).
44319         (testsbase, inctests): New variables.
44320         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
44321         (func_verify_module): Exclude TEMPLATE-TESTS.
44322         (func_verify_nontests_module, func_verify_tests_module): New functions.
44323         (func_get_dependencies): Add implicit dependency for tests modules.
44324         (func_get_tests_module): New function.
44325         (func_modules_transitive_closure): When --with-tests was specified,
44326         include the unit tests as well, unless explicitly avoided.
44327         (func_emit_lib_Makefile_am): Ignore the tests modules here.
44328         (func_emit_tests_Makefile_am): New function.
44329         (func_create_testdir): When --with-tests was specified, emit a
44330         tests/ directory.
44331         * MODULES.html.sh (Future developments): Update.
44332
44333 2005-08-24  Bruno Haible  <bruno@clisp.org>
44334
44335         * modules/tls-tests: New file.
44336         * tests/test-tls.c: New file, from GNU gettext.
44337
44338 2005-08-24  Bruno Haible  <bruno@clisp.org>
44339
44340         * modules/lock-tests: New file.
44341         * tests/test-lock.c: New file, from GNU gettext.
44342
44343 2005-08-24  Bruno Haible  <bruno@clisp.org>
44344
44345         * lib/lock.h: Add multiple inclusion guard.
44346         * lib/tls.h: Add multiple inclusion guard.
44347
44348 2005-08-24  Bruno Haible  <bruno@clisp.org>
44349
44350         * gnulib-tool: Add support for the --aux-dir option to
44351         --create-testdir, --create-megatestdir, --test, --megatest.
44352         (func_create_testdir, func_create_megatestdir): Optionally emit a
44353         AC_CONFIG_AUX_DIR directive.
44354         (create-testdir, create-megatestdir, test, megatest): Provide a
44355         default value for $auxdir.
44356
44357 2005-08-24  Bruno Haible  <bruno@clisp.org>
44358
44359         * gnulib-tool (import): Use compound statement instead of subshell
44360         where possible.
44361
44362 2005-08-24  Bruno Haible  <bruno@clisp.org>
44363
44364         * gnulib-tool (import): Change --aux-dir default to "build-aux".
44365
44366 2005-08-24  Bruno Haible  <bruno@clisp.org>
44367
44368         * gnulib-tool (func_version): Update.
44369
44370 2005-08-24  Bruno Haible  <bruno@clisp.org>
44371
44372         * gnulib-tool (func_import, func_create_testdir,
44373         func_create_megatestdir): Quote all autoconf macro arguments.
44374
44375 2005-08-24  Bruno Haible  <bruno@clisp.org>
44376
44377         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
44378         option --force, because --force causes the aclocal.m4 of each
44379         subdirectory to be newer than the corresponding config.h.in.
44380
44381 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44382
44383         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
44384         All contents moved to gl_REGEX.
44385         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
44386         assume that it does.
44387
44388 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44389
44390         * lib/regex.h (REG_NOSYS)
44391         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
44392         Define, since POSIX requires it as of 2001.
44393         (_REG_ENOSYS)
44394         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
44395         New private symbol, used to keep the enum signed in all cases.
44396         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
44397         Youngman in
44398         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
44399
44400         * lib/regex_internal.c (re_string_skip_chars, register_state):
44401         (calc_state_hash):
44402         Remove forward decls; no longer needed now that we use prototypes.
44403         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
44404         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
44405         (clean_state_log_if_needed): Likewise.
44406
44407 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44408
44409         * config/srclist.txt: Add glibc bugs 1231-1233.
44410
44411 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44412
44413         Fix problems reported by Sam Steingold in
44414         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
44415         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
44416         assumed that reg_errcode_t is a signed type, which is not
44417         necessarily true if _XOPEN_SOURCE is not defined.
44418         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
44419         since some compilers warn about it otherwise.
44420
44421 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44422
44423         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
44424         (init_word_char, create_initial_state, duplicate_node_closure):
44425         (fetch_token, peek_token_bracket, build_range_exp):
44426         (build_collating_symbol): Remove forward decls; no longer needed
44427         now that we use prototypes.
44428
44429         * lib/regcomp.c:
44430         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
44431         (re_compile_fastmap_iter, regcomp, regerror, regfree):
44432         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
44433         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
44434         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
44435         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
44436         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
44437         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
44438         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
44439         (build_range_exp, build_collating_symbol, parse_bracket_exp):
44440         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
44441         (build_charclass, build_charclass_op, fetch_number, create_tree):
44442         (create_token_tree, mark_opt_subexp, duplicate_tree):
44443         Use prototypes rather than old-style definitions.
44444
44445         * lib/regex_internal.c:
44446         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
44447         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
44448         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
44449         (re_string_reconstruct, re_string_peek_byte_case):
44450         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
44451         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
44452         (re_node_set_init_copy, re_node_set_add_intersect):
44453         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44454         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44455         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
44456         (re_acquire_state, re_acquire_state_context, register_state):
44457         (create_ci_newstate, create_cd_newstate, free_state):
44458         Likewise.
44459         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
44460         re_search_2):
44461         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
44462         (re_search_internal, prune_impossible_nodes):
44463         (acquire_init_state_context, check_matching, static):
44464         (check_halt_node_context, check_halt_state_context, proceed_next_node):
44465         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
44466         (update_regs, sift_states_backward, build_sifted_states):
44467         (clean_state_log_if_needed, merge_state_array):
44468         (update_cur_sifted_state, add_epsilon_src_nodes):
44469         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
44470         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
44471         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
44472         (find_recover_state, check_subexp_matching_top, transit_state_mb):
44473         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
44474         (check_arrival, check_arrival_add_next_nodes):
44475         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
44476         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
44477         (check_node_accept_bytes, check_node_accept, extend_buffers):
44478         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
44479         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
44480         (sift_ctx_init):
44481         Likewise.
44482
44483         * lib/regex_internal.h:
44484         (re_string_allocate, re_string_construct, re_string_reconstruct):
44485         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
44486         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
44487         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
44488         (re_string_context_at, re_string_peek_byte_case):
44489         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
44490         is defined, since we now use prototypes always.
44491
44492         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
44493         C89 or better.  All uses removed.
44494
44495 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44496
44497         * config/srclist.txt: Add glibc bugs 1220-1227.
44498
44499 2005-08-20  Jim Meyering  <jim@meyering.net>
44500
44501         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
44502         of unused local, dfa.
44503
44504 2005-08-20  Bruno Haible  <bruno@clisp.org>
44505
44506         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
44507
44508 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44509
44510         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
44511         (re_node_set_insert_last, re_dfa_add_node):
44512         Rename local variables to avoid GCC shadowing warnings.
44513
44514 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44515
44516         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
44517         [defined lint]: Suppress bogus uninitialized-variable warnings.
44518
44519         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
44520         and let the caller return REG_ESPACE if out of space.  This
44521         removes an uninitialied-variable warning with GCC 4.0.1, and also
44522         avoids taking the address of a local variable.  All callers
44523         changed.
44524
44525 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44526
44527         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
44528         $LIBCSRC/posix/regexec.c.
44529         Add glibc bug 1217 for regcomp.c.
44530
44531 2005-08-19  Jim Meyering  <jim@meyering.net>
44532
44533         * lib/regexec.c (proceed_next_node): Redo local variables to
44534         avoid GCC shadowing warnings.
44535
44536 2005-08-18  Bruno Haible  <bruno@clisp.org>
44537
44538         * lib/strstr.c (strstr): Fix return value in multibyte case.
44539         * lib/strcasestr.c (strcasestr): Likewise.
44540
44541 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44542
44543         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
44544
44545 2005-08-17  Jim Meyering  <jim@meyering.net>
44546
44547         Make the %s format (seconds since the epoch) work for a negative
44548         number and when used with a zero-padded field width, e.g. %015s.
44549
44550         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
44551         label so that it precedes the code to set `digits'.  Otherwise,
44552         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
44553         print `00-22'.  Now, it prints `-0022', as it should.
44554
44555 2005-08-17  Bruno Haible  <bruno@clisp.org>
44556
44557         * modules/strstr (Files): Add m4/mbrtowc.m4.
44558         (Depends-on): Add mbuiter.
44559
44560 2005-08-17  Bruno Haible  <bruno@clisp.org>
44561
44562         * modules/strcasestr: New file.
44563         * MODULES.html.sh (String handling, based on ANSI C 89): Add
44564         strcasestr.
44565
44566 2005-08-17  Bruno Haible  <bruno@clisp.org>
44567
44568         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
44569
44570 2005-08-17  Bruno Haible  <bruno@clisp.org>
44571
44572         * modules/mbuiter: New file.
44573         * MODULES.html.sh (Extended multibyte and wide character utilities):
44574         Add mbuiter.
44575
44576 2005-08-17  Bruno Haible  <bruno@clisp.org>
44577
44578         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
44579         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
44580
44581 2005-08-17  Bruno Haible  <bruno@clisp.org>
44582
44583         * m4/strcasestr.m4: New file.
44584
44585 2005-08-17  Bruno Haible  <bruno@clisp.org>
44586
44587         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
44588         * lib/strstr.c: Completely rewritten, with multibyte locale support.
44589
44590 2005-08-17  Bruno Haible  <bruno@clisp.org>
44591
44592         * lib/strcasestr.h: New file.
44593         * lib/strcasestr.c: New file.
44594
44595 2005-08-17  Bruno Haible  <bruno@clisp.org>
44596
44597         * lib/strcasecmp.c: Use mbuiter.h.
44598
44599 2005-08-17  Bruno Haible  <bruno@clisp.org>
44600
44601         * lib/mbuiter.h: New file.
44602
44603 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44604
44605         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
44606         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
44607         and gl_GETOPT are both invoked via different paths (as happens
44608         with GNU tar CVS because it uses both argp and getopt), the former
44609         wins.
44610
44611 2005-08-16  Bruno Haible  <bruno@clisp.org>
44612
44613         * modules/tls: New file.
44614         * MODULES.html.sh (Multithreading): Add tls.
44615
44616 2005-08-16  Bruno Haible  <bruno@clisp.org>
44617
44618         * modules/strnlen1: New file.
44619         * MODULES.html.sh (String handling): Add strnlen1.
44620
44621 2005-08-16  Bruno Haible  <bruno@clisp.org>
44622
44623         * modules/strcase (Files): Add m4/mbrtowc.m4.
44624         (Depends-on): Add strnlen1, mbchar.
44625
44626 2005-08-16  Bruno Haible  <bruno@clisp.org>
44627
44628         * modules/mbiter: New file.
44629         * MODULES.html.sh (Extended multibyte and wide character utilities):
44630         Add mbiter.
44631
44632 2005-08-16  Bruno Haible  <bruno@clisp.org>
44633
44634         * modules/mbfile: New file.
44635         * MODULES.html.sh (Extended multibyte and wide character utilities):
44636         Add mbfile.
44637
44638 2005-08-16  Bruno Haible  <bruno@clisp.org>
44639
44640         * modules/mbchar: New file.
44641         * MODULES.html.sh (Extended multibyte and wide character utilities):
44642         New section.
44643
44644 2005-08-16  Bruno Haible  <bruno@clisp.org>
44645
44646         * m4/tls.m4: New file, from GNU gettext.
44647
44648 2005-08-16  Bruno Haible  <bruno@clisp.org>
44649
44650         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
44651         always.
44652         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
44653
44654 2005-08-16  Bruno Haible  <bruno@clisp.org>
44655
44656         * m4/mbiter.m4: New file.
44657
44658 2005-08-16  Bruno Haible  <bruno@clisp.org>
44659
44660         * m4/mbfile.m4: New file.
44661
44662 2005-08-16  Bruno Haible  <bruno@clisp.org>
44663
44664         * m4/mbchar.m4: New file.
44665
44666 2005-08-16  Bruno Haible  <bruno@clisp.org>
44667
44668         * lib/tls.h: New file, from GNU gettext.
44669         * lib/tls.c: New file, from GNU gettext.
44670
44671 2005-08-16  Bruno Haible  <bruno@clisp.org>
44672
44673         * lib/strnlen1.h: New file.
44674         * lib/strnlen1.c: New file.
44675
44676 2005-08-16  Bruno Haible  <bruno@clisp.org>
44677
44678         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
44679         (mbi_init): Update.
44680         (mbi_avail, mbi_advance): Let the iteration end before the terminating
44681         NUL byte, not after it.
44682
44683 2005-08-16  Bruno Haible  <bruno@clisp.org>
44684
44685         * lib/strcase.h (strcasecmp): Add note in comments.
44686         * lib/strncasecmp.c: Use code from strcasecmp.c.
44687         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
44688         (strcasecmp): Work correctly in multibyte locales.
44689
44690 2005-08-16  Bruno Haible  <bruno@clisp.org>
44691
44692         * lib/mbiter.h: New file.
44693
44694 2005-08-16  Bruno Haible  <bruno@clisp.org>
44695
44696         * lib/mbfile.h: New file.
44697
44698 2005-08-16  Bruno Haible  <bruno@clisp.org>
44699
44700         * lib/mbchar.h: New file.
44701         * lib/mbchar.c: New file.
44702
44703 2005-08-16  Bruno Haible  <bruno@clisp.org>
44704
44705         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
44706         the valid ones. Makes the comparison operations transitive:
44707         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
44708         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
44709
44710 2005-08-15  Simon Josefsson  <jas@extundo.com>
44711
44712         * modules/ssize_t (License): Change to 'unlimited'.
44713
44714         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
44715
44716 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44717
44718         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
44719         Add comments for each pending glibc patch.
44720
44721 2005-08-15  Bruno Haible  <bruno@clisp.org>
44722
44723         * lib/regex.h (__restrict_arr): Don't define to __restrict if
44724         __cplusplus is defined.
44725
44726 2005-08-14  Jim Meyering  <jim@meyering.net>
44727
44728         Sync from coreutils.
44729
44730         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
44731         Use the hash-table-based cycle-detection code not just when
44732         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
44733         Reported by James Youngman in
44734         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
44735         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
44736         FTS_TIGHT_CYCLE_CHECK.
44737         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
44738         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
44739         once again.
44740         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
44741         * lib/fts.c (fd_safer): Remove decl.
44742         Include fcntl--.h rather than unistd-safer.h
44743         (fts_safe_changedir): Don't call fd_safer; no longer needed
44744         now that we include fcntl--.h.
44745
44746 2005-08-12  Simon Josefsson  <jas@extundo.com>
44747
44748         * modules/getndelim2: Use ssize_t module.
44749         * modules/getnline: Likewise.
44750         * modules/safe-read: Likewise.
44751         * modules/xreadlink: Likewise.
44752
44753         * modules/ssize_t: New file.
44754
44755 2005-08-12  Simon Josefsson  <jas@extundo.com>
44756
44757         * m4/readline.m4: Look for termcap, curses or ncurses if required.
44758
44759 2005-08-12  Simon Josefsson  <jas@extundo.com>
44760
44761         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
44762         ssize_t.
44763
44764 2005-08-12  Simon Josefsson  <jas@extundo.com>
44765
44766         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
44767         readline, getdelim and check_version.
44768         (Support for systems lacking ISO C 99: Sizes of integer types):
44769         Add size_max.
44770
44771 2005-08-12  Bruno Haible  <bruno@clisp.org>
44772
44773         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
44774
44775 2005-08-11  Simon Josefsson  <jas@extundo.com>
44776
44777         * modules/readline: New file.
44778
44779         * modules/strnlen (Files): Add strnlen.h.
44780
44781 2005-08-11  Simon Josefsson  <jas@extundo.com>
44782
44783         * m4/readline.m4: New file.
44784
44785 2005-08-11  Simon Josefsson  <jas@extundo.com>
44786
44787         * lib/readline.h, readline.c: New file.
44788
44789 2005-08-11  Simon Josefsson  <jas@extundo.com>
44790
44791         * doc/gnulib.texi (Initial import, Finishing touches): Mention
44792         gl_AVOID.
44793
44794 2005-08-11  Bruno Haible  <bruno@clisp.org>
44795
44796         * lib/strnlen.h (strnlen): Change parameter name to match comment.
44797
44798 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
44799
44800         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
44801
44802 2005-08-10  Simon Josefsson  <jas@extundo.com>
44803
44804         * tests/test-iconvme.c: New file.
44805
44806 2005-08-10  Simon Josefsson  <jas@extundo.com>
44807
44808         * m4/strnlen.m4: New file.
44809
44810         * m4/strndup.m4: Don't check for strnlen declaration, done in
44811         strnlen.m4.
44812
44813 2005-08-10  Simon Josefsson  <jas@extundo.com>
44814
44815         * lib/strndup.c: Use strnlen.h.
44816
44817         * lib/strnlen.h: New file.
44818
44819 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
44820
44821         * README: Typos.
44822
44823 2005-08-02  Simon Josefsson  <jas@extundo.com>
44824
44825         * modules/readline: New file.
44826
44827 2005-08-02  Simon Josefsson  <jas@extundo.com>
44828
44829         * modules/getdelim: New file.
44830
44831         * modules/getline: Rewrite, don't use getndelim2.
44832
44833 2005-08-02  Simon Josefsson  <jas@extundo.com>
44834
44835         * m4/getline.m4: Separate out getdelim stuff into separate module.
44836
44837         * m4/getdelim.m4: New file.
44838
44839 2005-08-02  Simon Josefsson  <jas@extundo.com>
44840
44841         * lib/getline.h, getline.c: Rewrite.
44842
44843         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
44844
44845 2005-07-31  Bruno Haible  <bruno@clisp.org>
44846
44847         * lib/lock.h (gl_lock_initializer): New macro.
44848         (gl_lock_define_initialized): Use it.
44849         (gl_rwlock_initializer): New macro.
44850         (gl_rwlock_define_initialized): Use it.
44851         (gl_recursive_lock_initializer): New macro.
44852         (gl_recursive_lock_define_initialized): Use it.
44853
44854 2005-07-30  Karl Berry  <karl@gnu.org>
44855
44856         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
44857         Report from Ben Pfaff, regarding getopt.
44858
44859 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
44860
44861         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
44862         normal way.
44863         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
44864         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
44865         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
44866         (gl_GETOPT): Use the new macros.  Most of the implementation
44867         is moved to the new macros.  This is for programs like Emacs
44868         that don't want all the functionality of gl_GETOPT.
44869
44870 2005-07-26  Bruno Haible  <bruno@clisp.org>
44871
44872         * m4/lock.m4: Update from GNU gettext.
44873
44874 2005-07-26  Bruno Haible  <bruno@clisp.org>
44875
44876         * lib/lock.h: Update from GNU gettext.
44877         * lib/lock.c: Update from GNU gettext.
44878
44879 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
44880
44881         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
44882         obsolescent AC_TRY_RUN.  Include the default includes files, for
44883         'exit'.
44884
44885 2005-07-24  Bruno Haible  <bruno@clisp.org>
44886
44887         * modules/visibility: New file.
44888         * MODULES.html.sh (Misc): Add visibility.
44889
44890 2005-07-24  Bruno Haible  <bruno@clisp.org>
44891
44892         * m4/visibility.m4: New file.
44893
44894 2005-07-24  Bruno Haible  <bruno@clisp.org>
44895
44896         * doc/visibility.texi: New file.
44897
44898 2005-07-22  Bruno Haible  <bruno@clisp.org>
44899
44900         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
44901         $(ALLOCA_H), redundant through BUILT_SOURCES.
44902         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
44903         redundant through BUILT_SOURCES.
44904         * modules/byteswap (Makefile.am): Remove explicit dependency on
44905         $(BYTESWAP_H), redundant through BUILT_SOURCES.
44906         * modules/fnmatch (Makefile.am): Remove explicit dependency on
44907         $(FNMATCH_H), redundant through BUILT_SOURCES.
44908         * modules/getopt (Makefile.am): Remove explicit dependency on
44909         $(GETOPT_H), redundant through BUILT_SOURCES.
44910         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
44911         redundant through BUILT_SOURCES.
44912         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
44913         redundant through BUILT_SOURCES.
44914         * modules/stdbool (Makefile.am): Remove explicit dependency on
44915         $(STDBOOL_H), redundant through BUILT_SOURCES.
44916         * modules/stdint (Makefile.am): Remove explicit dependency on
44917         $(STDINT_H), redundant through BUILT_SOURCES.
44918         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
44919         Remove explicit dependency on $(SYSEXITS_H).
44920         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
44921
44922 2005-07-18  Simon Josefsson  <jas@extundo.com>
44923
44924         * lib/check-version.c (check_version): Accept identical versions too.
44925
44926 2005-07-18  Bruno Haible  <bruno@clisp.org>
44927
44928         * modules/lock: New file.
44929         * MODULES.html.sh (Multithreading): New section.
44930
44931 2005-07-18  Bruno Haible  <bruno@clisp.org>
44932
44933         * m4/lock.m4: New file, from GNU gettext.
44934
44935 2005-07-18  Bruno Haible  <bruno@clisp.org>
44936
44937         * lib/lock.h: New file, from GNU gettext.
44938         * lib/lock.c: New file, from GNU gettext.
44939
44940 2005-07-18  Bruno Haible  <bruno@clisp.org>
44941
44942         * lib/lock.h (gl_once_t): New type.
44943         (gl_once_define, gl_once): New macros.
44944         * lib/lock.c (fresh_once): New variable.
44945         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
44946         functions.
44947
44948 2005-07-16  Simon Josefsson  <jas@extundo.com>
44949
44950         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
44951         workaround, suggested by Bruno.
44952
44953 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
44954
44955         * modules/xalloc (Depends-on): Add xalloc-die.
44956         * modules/xvasprintf (Depends-on): Add xalloc-die.
44957
44958 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
44959
44960         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
44961         with a minor change.
44962
44963 2005-07-15  Bruno Haible  <bruno@clisp.org>
44964
44965         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
44966         When using lib/poll.c, define poll as rpl_poll.
44967
44968 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
44969
44970         * modules/argp (Depends-on): Remove unlocked-io.
44971
44972 2005-07-14  Derek Price  <derek@ximbiot.com>
44973
44974         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
44975         for glob symlink bug.
44976
44977 2005-07-14  Bruno Haible  <bruno@clisp.org>
44978
44979         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
44980         Instead, test for *_unlocked function declarations directly.
44981
44982 2005-07-11  Simon Josefsson  <jas@extundo.com>
44983
44984         * modules/size_max: New file.
44985
44986         * modules/xsize: Depend on size_max module for size_max.m4.
44987
44988 2005-07-11  Simon Josefsson  <jas@extundo.com>
44989
44990         * lib/size_max.h: New file.
44991
44992 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
44993
44994         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
44995         copyright symbol and the year.
44996         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
44997         (version_etc_va): Use parameterized copyright notice.
44998         Reword to conform to the current GNU coding standards.
44999
45000 2005-07-11  Karl Berry  <karl@gnu.org>
45001
45002         * doc/gnulib.texi (Quoting): new node.
45003         (Initial import): more info, from Patrice.
45004
45005 2005-07-11  Bruno Haible  <bruno@clisp.org>
45006
45007         * gnulib-tool (func_usage): Document option --avoid.
45008         (Command line options): Handle --avoid.
45009         (func_acceptable): New function.
45010         (func_modules_transitive_closure): Use it.
45011
45012 2005-07-11  Bruno Haible  <bruno@clisp.org>
45013
45014         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
45015         Reported by Jim Meyering.
45016
45017 2005-07-10  Bruno Haible  <bruno@clisp.org>
45018
45019         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
45020         Needed when size_t is smaller than 'unsigned int'.
45021         Reported by Paul Eggert.
45022
45023 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45024
45025         * modules/argp (Depends-on): Add unlocked-io
45026
45027 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45028
45029         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
45030         block of defines.
45031
45032 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
45033
45034         * config/srclist.txt: Comment out regcomp.c, since we have a porting
45035         fix now.
45036
45037 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
45038         and Paul Eggert  <eggert@cs.ucla.edu>
45039
45040         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
45041         in wint_t, not wchar_t.  Remove now-unnecessary cast.
45042
45043 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45044
45045         * modules/regex (Files): Add lib/regex_internal.c,
45046         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
45047         (Depends-on): Add extensions.
45048         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
45049
45050 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45051
45052         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
45053         pathconf.
45054         * m4/same.m4 (gl_SAME): Likewise.
45055         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
45056
45057         * m4/regex.m4: Adjust to new libc regex implementation.
45058         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
45059         all the .c and .h parts of (the new) regex.
45060         Quote the m4 stuff better.
45061         Check for RE_ICASE bug of old gnulib.
45062         Check for REG_STARTEND of recent libc.
45063         Rename local variables from jm_* to gl_*.
45064         Quote operand of "test -f".
45065         Say "recent enough" version of libc, not "version 2".
45066         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
45067         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
45068         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
45069         Remove check for btowc, isascii.
45070         Require AM_LANGINFO_CODESET.
45071
45072 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45073
45074         * lib/regex.c, regex.h: Sync from libc.
45075         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
45076         * lib/regexec.c:
45077         New files, synced from libc, except that regex_internal.h
45078         currently has a small porting fix.
45079
45080 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45081
45082         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
45083         regex_internal.c, regexec.c.
45084         Add regex_internal.h too, but as a comment, since the libc version
45085         is currently broken in gnulib mode.
45086
45087 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45088
45089         Support programs like Emacs that use gnulib but not gettext.
45090         * MODULES.html.sh (Internationalization functions): Add gettext-h.
45091         * modules/gettext-h: New file.
45092         * modules/gettext (Files): Remove lib/gettext.h.
45093         (Depends-on): Add gettext-h.
45094         (Makefile.am): Remove lib_SOURCES.
45095         * modules/argmatch, modules/c-stack, modules/closeout:
45096         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
45097         * modules/execute, modules/file-type, modules/getaddrinfo:
45098         * modules/getopt, modules/human, modules/javacomp:
45099         * modules/javaexec, modules/mkdir-p, modules/obstack:
45100         * modules/openat, modules/pagealign_alloc, modules/pipe:
45101         * modules/quotearg, modules/regex, modules/rpmatch:
45102         * modules/unicodeio, modules/userspec, modules/version-etc:
45103         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
45104         * modules/xsetenv:
45105         Depend on gettext-h, not gettext.
45106
45107 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45108
45109         * gnulib-tool (func_import): Add support for 'public domain' license.
45110         * modules/alloca, modules/atexit, modules/memmove:
45111         Now public domain, not GPL.
45112         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
45113         * modules/realloc, modules/strerror, modules/strtod:
45114         Now LGPL, not GPL.
45115
45116 2005-07-05  Bruno Haible  <bruno@clisp.org>
45117
45118         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
45119         autoconf CVS. Needed for mingw.
45120
45121 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45122
45123         Remove the dependency of the strftime module on the tzset module.
45124         * modules/strftime (Depends-on): Remove dependency on tzset.
45125
45126 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45127
45128         Remove the dependency of the strftime module on the tzset module.
45129         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
45130         gl_FUNC_TZSET_CLOBBER.
45131
45132 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45133
45134         Remove the dependency of the strftime module on the tzset module.
45135         * lib/strftime.c (my_strftime)
45136         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
45137         Copy the input structure, to work around some of the bug with
45138         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
45139         Solaris releases, you should also use the tzset module, but we won't
45140         require it as a dependency any more since we don't want LGPLed code
45141         to depend on GPLed code.
45142
45143 2005-07-02  Jim Meyering  <jim@meyering.net>
45144
45145         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
45146         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
45147         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
45148         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
45149
45150 2005-07-02  Jim Meyering  <jim@meyering.net>
45151
45152         * lib/backupfile.c (backup_args): Change a `0' to NULL.
45153
45154 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
45155
45156         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
45157         declares only 'struct timespec;' (!).
45158
45159 2005-07-01  Jim Meyering  <jim@meyering.net>
45160
45161         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
45162         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
45163         * lib/save-cwd.c, tempname.c:
45164         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
45165         and don't include <sys/file.h>).
45166
45167 2005-06-29  Jim Meyering  <jim@meyering.net>
45168
45169         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
45170         type name.  Use the variable name instead.
45171         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
45172         Likewise.
45173
45174 2005-06-28  Simon Josefsson  <jas@extundo.com>
45175
45176         * modules/check-version (Files): Add check-version.m4.
45177
45178 2005-06-28  Simon Josefsson  <jas@extundo.com>
45179
45180         * m4/check-version.m4: New file, suggested by Jim Meyering
45181         <jim@meyering.net>.
45182
45183 2005-06-28  Simon Josefsson  <jas@extundo.com>
45184
45185         * lib/check-version.h, lib/check-version.c: New files.
45186
45187 2005-06-28  Simon Josefsson  <jas@extundo.com>
45188
45189         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
45190         collision with global variable.  Better indentation.  Don't
45191         increment buffer pointer beyond buffer end.  Based on comments
45192         from Paul Eggert <eggert@cs.ucla.edu>.
45193
45194         * lib/base64.h: Indent.
45195
45196 2005-06-28  Simon Josefsson  <jas@extundo.com>
45197
45198         * doc/gnulib.texi (Library version handling): New section.
45199
45200 2005-06-28  Jim Meyering  <jim@meyering.net>
45201
45202         * check-module (find_included_lib_files): Hard-code another
45203         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
45204         but modules/fts-lgpl (correctly) does not list those files.
45205
45206         * modules/canonicalize (Files): Add lib/pathmax.h.
45207
45208 2005-06-25  Simon Josefsson  <jas@extundo.com>
45209
45210         * modules/check-version: New file.
45211
45212 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
45213
45214         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
45215         initializer of struct addrinfo, as an indication that we don't
45216         care how many members the structure has.
45217
45218 2005-06-24  Derek Price  <derek@ximbiot.com>
45219         and Bruno Haible  <bruno@clisp.org>
45220
45221         Remove stat module & update lstat.
45222         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
45223         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
45224         * m4/stat.m4: Remove this file.
45225
45226 2005-06-24  Derek Price  <derek@ximbiot.com>
45227         and Bruno Haible  <bruno@clisp.org>
45228
45229         Remove stat module & update lstat.
45230         * lib/stat.c: Remove this file...
45231         (slash_aware_lstat): ...moving this content and its support...
45232         * lib/lstat.c (rpl_lstat): ...into here.
45233         * lib/lstat.h: New file.
45234
45235 2005-06-24  Derek Price  <derek@ximbiot.com>
45236         and Bruno Haible  <bruno@clisp.org>
45237
45238         Remove stat module & update lstat.
45239         * config/srclist.txt (libc sources): Remove stat.
45240
45241 2005-06-24  Derek Price  <derek@ximbiot.com>
45242         and Bruno Haible  <bruno@clisp.org>
45243
45244         Remove stat module & update lstat.
45245         * MODULES.html.sh (stat): Remove.
45246         * MODULES.html: Regenerated.
45247         * modules/lstat (Description): Correct function name.
45248         (Files): Add "lstat.h".
45249         (Depends-on): Remove stat, add xalloc, stat-macros.
45250         * modules/stat: Remove this file.
45251         (Include): Add "lstat.h", remove <sys/stat.h>.
45252
45253 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
45254
45255         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
45256         (ranged_convert): Don't save conversion in a temporary struct.
45257         This causes a warning with GCC 4.0.0, and anyway in the typical
45258         case it's not worth the extra 100 bytes or so of code.
45259         (ranged_convert, __mktime_internal): When calling a function via a
45260         pointer P, use P () rather than (*P) (), as we now assume C89 or
45261         better.
45262
45263 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
45264
45265         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
45266         "who -r" failed to give output.  Problem reported by Tim Waugh.
45267
45268         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
45269         (xcalloc): Use it to avoid needless tests.
45270         Problem reported by Jim Meyering.
45271
45272 2005-06-20  Derek Price  <derek@ximbiot.com>
45273
45274         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
45275         unnecessary for Autoconfs > 2.59c.
45276
45277 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45278
45279         * lib/argp.h (__option_is_short): Check upper limit of
45280         __key. Isprint() requires its argument to have the value
45281         of an unsigned char or EOF.
45282
45283 2005-06-16  Jim Meyering  <jim@meyering.net>
45284
45285         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
45286         when either N or S is zero.
45287
45288 2005-06-16  Derek Price  <derek@ximbiot.com>
45289
45290         * m4/bison.m4: Declare YACC & YFLAGS precious.
45291
45292 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
45293
45294         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
45295         multibyte string or pattern, fall back on unibyte matching.
45296         Problem reported by James Youngman.
45297
45298 2005-06-08  Bruno Haible  <bruno@clisp.org>
45299
45300         * modules/csharpcomp: New file.
45301         * MODULES.html.sh (C#): Add csharpcomp.
45302
45303 2005-06-08  Bruno Haible  <bruno@clisp.org>
45304
45305         * m4/csharpcomp.m4: New file, from GNU gettext.
45306
45307 2005-06-08  Bruno Haible  <bruno@clisp.org>
45308
45309         * lib/csharpcomp.h: New file, from GNU gettext.
45310         * lib/csharpcomp.c: New file, from GNU gettext.
45311         * lib/csharpcomp.sh.in: New file, from GNU gettext.
45312
45313 2005-06-08  Bruno Haible  <bruno@clisp.org>
45314
45315         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
45316         warning on mingw.
45317
45318 2005-06-07  Derek Price  <derek@ximbiot.com>
45319
45320         Sync from CVS.
45321         * lib/glob_.h: Indent nested #ifdef.
45322
45323 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45324
45325         Sync from coreutils.
45326         Use "file name" when talking about file names, instead of "filename"
45327         or "path", as per the GNU coding standards.
45328         * lib/mkdir-p.c: Renamed from makepath.c.
45329         (make_dir_parents): Renamed from make_path.  All callers changed.
45330         * lib/mkdir-p.h: Likewise.  All includers changed.
45331         * lib/filenamecat.c: Renamed from path-concat.c.
45332         (file_name_concat): Renamed from path_concat.  All callers changed.
45333         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
45334         * lib/filenamecat.h: Likewise.  All includers changed.
45335         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
45336         in comments or local variable names.
45337         * lib/basename.c: Likewise.
45338         * lib/canonicalize.c, canonicalize.h: Likewise.
45339         * lib/dirname.c, dirname.h: Likewise.
45340         * lib/euidaccess.c: Likewise.
45341         * lib/exclude.c: Likewise
45342         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
45343         * lib/fsusage.c, fsuage.h: Likewise.
45344         * lib/fts.c, fts_.h: Likewise.
45345         * lib/getcwd.c: Likewise.
45346         * lib/getloadavg.c: Likewise.
45347         * lib/mkstemp.c: Likewise.
45348         * lib/mountlist.c, mountlist.h: Likewise.
45349         * lib/openat.c, openat.h: Likewise.
45350         * lib/readlink-stub.c: Likewise.
45351         * lib/readutmp.c, readutmp.h: Likewise.
45352         * lib/rename.c: Likewise.
45353         * lib/rmdir.c: Likewise.
45354         * lib/same.c: Likewise.
45355         * lib/savedir.c: Likewise.
45356         * lib/stripslash.c: Likewise.
45357         * lib/tempname.c: Likewise.
45358         * lib/xreadlink.c: Likewise.
45359         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
45360         All uses changed.
45361         * lib/exclude.h: Likewise.
45362
45363         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
45364         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45365         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
45366         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45367         * lib/pathmax.h: Include <limits.h> unconditionally, since other
45368         files have been getting away with it for years (MORE/BSD 4.3
45369         is extinct now).
45370         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
45371         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45372
45373         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
45374         Define to 256, not 255, as per modern POSIX.
45375
45376 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45377
45378         Sync from coreutils.
45379         Use "file name" when talking about file names, instead of "filename"
45380         or "path", as per the GNU coding standards.
45381         * MODULES.html.sh: mkdir-p renamed from makepath.
45382         filenamecat renamed from path-concat.
45383         * modules/filenamecat: Renamed from modules/path-concat.
45384         (Files): filenamecat.h and filenamecat.c renamed from
45385         path-concat.h and path-concat.c.
45386         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
45387         (Include): filenamecat.h, not path-concat.h.
45388         * modules/mkdir-p: Renamed from modules/makepath.
45389         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
45390         makepath.c.
45391         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
45392         (Include): mkdir-p.h, not makepath.h.
45393
45394 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45395
45396         Sync from coreutils.
45397         * m4/mkdir-p.m4: Renamed from makepath.m4.
45398         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
45399         Rename files from makepath.c to mkdir-p.c, and from
45400         makepath.h to mkdir-p.h.
45401         * m4/filenamecat.m4: Renamed from path-concat.m4.
45402         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
45403         Rename files from path-concat.c to filenamecat.c,
45404         and from path-concat.h to filenamecat.h.
45405         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
45406         "file name" in local variables or comments.
45407         * m4/rename.m4: Likewise.
45408
45409 2005-06-01  Bruno Haible  <bruno@clisp.org>
45410
45411         * modules/csharpexec: New file.
45412         * MODULES.html.sh (C#): New section.
45413
45414 2005-06-01  Bruno Haible  <bruno@clisp.org>
45415
45416         * m4/csharp.m4: New file, from GNU gettext.
45417         * m4/csharpexec.m4: New file, from GNU gettext.
45418
45419 2005-06-01  Bruno Haible  <bruno@clisp.org>
45420
45421         * lib/csharpexec.h: New file, from GNU gettext.
45422         * lib/csharpexec.c: New file, from GNU gettext.
45423         * lib/csharpexec.sh.in: New file, from GNU gettext.
45424
45425 2005-05-31  Derek Price  <derek@ximbiot.com>
45426             Paul Eggert  <eggert@cs.ucla.edu>
45427
45428         Sync from cvs.
45429         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45430
45431 2005-05-31  Derek Price  <derek@ximbiot.com>
45432             Paul Eggert  <eggert@cs.ucla.edu>
45433
45434         Sync from cvs.
45435         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45436
45437 2005-05-29  Derek Price  <derek@ximbiot.com>
45438
45439         * config/srclist.txt (glob_.h, glob.c): Add these files.
45440
45441 2005-05-29  Derek Price  <derek@ximbiot.com>
45442
45443         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
45444         * modules/glob: New file.
45445         * modules/getlogin_r: Add link to POSIX spec in description.
45446
45447 2005-05-29  Derek Price  <derek@ximbiot.com>
45448             Paul Eggert  <eggert@cs.ucla.edu>
45449
45450         * m4/glob.m4: New file.
45451
45452 2005-05-29  Derek Price  <derek@ximbiot.com>
45453             Paul Eggert  <eggert@cs.ucla.edu>
45454
45455         * lib/glob_.h, lib/glob.c: New files.
45456
45457 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45458
45459         * modules/fts (Files): Remove m4/inttypes-pri.m4.
45460         * modules/fts-lgpl (Depends-on): Remove gettext.
45461
45462 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45463
45464         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
45465         and don't require gt_INTTYPES_PRI.
45466
45467 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45468
45469         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
45470
45471         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
45472         the configuration hassle isn't worth it.
45473         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
45474         (LONGEST_MODIFIER, PRIuMAX): Remove.
45475
45476 2005-05-27  Bruno Haible  <bruno@clisp.org>
45477
45478         * lib/getlogin_r.h: Remove second include of <stddef.h>.
45479
45480 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
45481
45482         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
45483         _POSIX_PTHREAD_SEMANTICS for Solaris.
45484
45485 2005-05-25  Derek Price  <derek@ximbiot.com>
45486
45487         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
45488
45489 2005-05-25  Derek Price  <derek@ximbiot.com>
45490             Paul Eggert  <eggert@cs.ucla.edu>
45491
45492         * modules/getlogin_r, m4/getlogin_r.m4: New files.
45493         * lib/getlogin_r.c, getlogin_r.h: New files.
45494
45495 2005-05-25  Bruno Haible  <bruno@clisp.org>
45496             Derek Price  <derek@ximbiot.com>
45497
45498         * lib/getlogin_r.h: Simplify API documentation.
45499
45500 2005-05-23  Derek Price  <derek@ximbiot.com>
45501
45502         * modules/minmax (Files): Add m4/minmax.m4.
45503         (configure.ac): Add gl_MINMAX.
45504
45505 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45506
45507         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
45508         so that unistd-safer.h (GPL'ed code) need not be included.
45509
45510 2005-05-22  Bruno Haible  <bruno@clisp.org>
45511
45512         * m4/minmax.m4: New file.
45513         Based on a patch by Derek Price <derek@ximbiot.com>.
45514
45515 2005-05-22  Bruno Haible  <bruno@clisp.org>
45516
45517         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
45518         (INT64_MIN): Fix definition.
45519         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
45520
45521         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
45522         NEED_SIGNED_INT_TYPES.
45523
45524         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
45525         HAVE_SYSTEM_INTTYPES.
45526
45527 2005-05-22  Bruno Haible  <bruno@clisp.org>
45528
45529         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
45530         Also include <sys/param.h> if it defines MIN, MAX.
45531         Based on a patch by Derek Price <derek@ximbiot.com>.
45532
45533 2005-05-21  Jim Meyering  <jim@meyering.net>
45534
45535         * modules/fts (Files): Add m4/inttypes-pri.m4.
45536         (Depends-on): Add lstat and remove gettext.  Alphabetize.
45537
45538 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45539
45540         New fts module.
45541         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
45542         (setup_dir, free_dir): New functions.
45543         (enter_dir, leave_dir): Define trivial
45544         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
45545         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
45546         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
45547         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
45548         Move to fts-cycle.c.
45549         (fts_open): Use setup_dir.
45550         (fts_close): Use free_dir.
45551         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
45552         This adds a label and some gotos, but the alternatives were messier.
45553         Check for memory allocation failure when entering a dir.
45554         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
45555         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
45556         (FTS): New member fts_cycle, that is a union that contains the
45557         old active_dir_ht and cycle_state.  All uses changed to mention
45558         fts_cycle.ht and fts_cycle.state.
45559         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
45560         fts.c, with the following changes:
45561         (setup_dir, free_dir): New functions.
45562         (enter_dir): Now returns bool.  Return true if successful, false
45563         if memory exhausted.  All callers changed.
45564         Do not bother partly cleaning up on
45565         memory allocation failure; that is free_dir's job.
45566         However, free ad if hash_insert fails, to avoid memory leak.
45567         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
45568         fts->fts_options to see which union member to use.
45569
45570 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45571
45572         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
45573         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
45574
45575 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45576
45577         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
45578
45579 2005-05-20  Jim Meyering  <jim@meyering.net>
45580
45581         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
45582         Now a macro, to pacify GCC.
45583
45584 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45585
45586         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
45587         of -1.
45588
45589 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45590
45591         * lib/chown.c (rpl_chown): Return -1 on failure.
45592
45593 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45594
45595         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
45596         Don't check for stddef.h.
45597         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
45598         don't use its results.
45599         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
45600         since we include them unconditionally.  Don't require
45601         AM_STDBOOL_H, since stdbool is a prerequisite.
45602         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
45603         since we assume C89 or better.
45604         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
45605         as we don't use their results.
45606         Don't check for fchdir, memmove, memset, strrchr, as we use
45607         them unconditionally.
45608         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
45609         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
45610
45611 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45612
45613         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
45614         Include <stddef.h> unconditionally, since we assume C89 now.
45615         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
45616         * lib/fts.c: Include fts_.h first, to check interface.
45617         Do not include intprops.h; no longer needed.
45618         Include cycle-check.h and hash.h, since fts_.h no longer does.
45619         Remove unnecessary casts of closedir to void.
45620         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
45621         decide whether to decrement nlinks.
45622         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
45623         (FTS): Use struct hash_table * instead of Hash_table, so that
45624         we no longer need to include hash.h here.
45625
45626 2005-05-18  Jim Meyering  <jim@meyering.net>
45627
45628         * modules/dirfd (License): Change to LGPL.  Most of the code
45629         is already in the public domain.
45630
45631 2005-05-18  Jim Meyering  <jim@meyering.net>
45632
45633         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
45634         Reported by Yoann Vandoorselaere.
45635
45636 2005-05-17  Jim Meyering  <jim@meyering.net>
45637
45638         * m4/fts.m4: New file, from coreutils.
45639
45640 2005-05-17  Jim Meyering  <jim@meyering.net>
45641
45642         * lib/fts.c, lib/fts_.h: New files, from coreutils.
45643
45644 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45645
45646         Sync from coreutils.
45647         * m4/unlinkdir.m4: New file.
45648
45649 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45650
45651         Sync from coreutils.
45652         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
45653         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
45654         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
45655         White space changes only.
45656         * lib/makepath.c (make_path): Port to hosts where leading "//" is
45657         special.
45658         * lib/yesno.c: Include getline.h, not ctype.h.
45659         (yesno): Don't remove leading white space; POSIX doesn't allow it.
45660         Use getline to remove arbitrary restriction on response length.
45661
45662 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45663
45664         * config/srclist-update: Spell out "Street" in FSF postal
45665         mail address; this is the style the FSF seems to prefer.
45666
45667         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
45668         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
45669         this updates FSF postal mail address.
45670
45671         Sync from coreutils.
45672         * modules/unlinkdir: New file.
45673         * modules/yesno (Depends-on): Add getline.
45674         * MODULES.html.sh (File system functions): Add unlinkdir.
45675
45676 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45677
45678         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
45679         lib/strsep.h:
45680         Change the initial comment to refer to GPL, not LGPL.
45681         gnulib-tool will change it to LGPL as needed.
45682
45683         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
45684         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
45685         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
45686         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
45687         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
45688         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
45689         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
45690         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
45691         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
45692         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
45693         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
45694         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
45695         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
45696         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
45697         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
45698         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
45699         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
45700         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
45701         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
45702         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
45703         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
45704         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
45705         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
45706         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
45707         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
45708         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
45709         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
45710         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
45711         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
45712         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
45713         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
45714         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
45715         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
45716         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
45717         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
45718         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
45719         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
45720         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
45721         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
45722         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
45723         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
45724         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
45725         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
45726         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
45727         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
45728         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
45729         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
45730         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
45731         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
45732         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
45733         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
45734         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
45735         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
45736         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
45737         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
45738         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
45739         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
45740         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
45741         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
45742         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
45743         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
45744         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
45745         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
45746         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
45747         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
45748         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
45749         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
45750         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
45751         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
45752         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
45753         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
45754         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
45755         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
45756         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
45757         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
45758         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
45759         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
45760         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
45761         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
45762         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
45763         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
45764         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
45765         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
45766         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
45767         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
45768         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
45769         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
45770         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
45771         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
45772         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
45773         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
45774         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
45775         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
45776         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
45777         lib/yesno.c, lib/yesno.h:
45778         Update FSF postal mail address.
45779
45780 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45781
45782         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
45783         tests/test-memmem.c, tests/test-stpncpy.c:
45784         Update FSF postal mail address.
45785
45786 2005-05-13  Bruno Haible  <bruno@clisp.org>
45787
45788         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
45789         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
45790         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
45791         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
45792         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
45793         Add support for 64-bit integers in the MSVC compiler.
45794
45795 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45796
45797         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
45798
45799 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
45800
45801         * gnulib-tool (func_import): Sort and uniquify recommended includes.
45802
45803 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
45804
45805         * doc/getdate.texi (General date syntax): Don't say that date
45806         date --iso-8601=ns generates acceptable dates; it doesn't yet.
45807         Problem reported by Nic Ferrier.
45808
45809 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45810
45811         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
45812         specified in ai_socktype. Fix invalid ai_protocol
45813         check. ai_protocol is usually set to 0 or depending on
45814         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
45815         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
45816         ai_socktype / ai_protocol in the returned addrinfo structure.
45817
45818 2005-05-10  Simon Josefsson  <jas@extundo.com>
45819
45820         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
45821         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
45822
45823 2005-05-10  Karl Berry  <karl@gnu.org>
45824
45825         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
45826         (from http://www.gnu.org/licenses).
45827         * doc/COPYING.LIB: also rename to COPYING.LESSER.
45828         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
45829         fdl.texi suffices.
45830
45831 2005-05-10  Karl Berry  <karl@gnu.org>
45832
45833         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
45834         (COPYING.DOC): remove.
45835
45836         * config/srclist-update: new FSF address.
45837
45838 2005-05-10  Derek Price  <derek@ximbiot.com>
45839
45840         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
45841         possible.
45842
45843 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45844             Bruno Haible  <bruno@clisp.org>
45845
45846         * modules/inet_ntop: New file.
45847         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45848         inet_ntop.
45849
45850 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45851             Bruno Haible  <bruno@clisp.org>
45852
45853         * m4/inet_ntop.m4: New file.
45854
45855 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45856             Bruno Haible  <bruno@clisp.org>
45857
45858         * lib/inet_ntop.h: New file.
45859         * lib/inet_ntop.c: New file, from glibc with modifications.
45860
45861 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
45862
45863         * modules/time_r (License): Change to LGPL.
45864         * modules/extensions (License): Change to LGPL.  Actually,
45865         the license is more permissive than that, but currently gnulib-tool
45866         doesn't know how to handle more-permissive licenses.
45867
45868         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
45869         Problem reported by Dave Love.
45870
45871 2005-05-08  Jim Meyering  <jim@meyering.net>
45872
45873         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
45874         blank.
45875
45876 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
45877
45878         * modules/argmatch (Depends-on): Add stdbool.
45879         * modules/backupfile (Depends-on): Likewise.
45880         * modules/chdir-long (Depends-on): Likewise.
45881         * modules/closeout (Depends-on): Likewise.
45882         * modules/cycle-check (Depends-on): Likewise.
45883         * modules/dirname (Depends-on): Likewise.
45884         * modules/fnmatch (Depends-on): Likewise.
45885         * modules/fsusage (Depends-on): Likewise.
45886         * modules/fwriteerror (Depends-on): Likewise.
45887         * modules/getcwd (Depends-on): Likewise.
45888         * modules/getloadavg (Depends-on): Likewise.
45889         * modules/hard-locale (Depends-on): Likewise.
45890         * modules/makepath (Depends-on): Likewise.
45891         * modules/mountlist (Depends-on): Likewise.
45892         * modules/nanosleep (Depends-on): Likewise.
45893         * modules/posixtm (Depends-on): Likewise.
45894         * modules/quotearg (Depends-on): Likewise.
45895         * modules/readtokens (Depends-on): Likewise.
45896         * modules/readtokens0 (Depends-on): Likewise.
45897         * modules/readutmp (Depends-on): Likewise.
45898         * modules/save-cwd (Depends-on): Likewise.
45899         * modules/strftime (Depends-on): Likewise.
45900         * modules/userspec (Depends-on): Likewise.
45901         * modules/utimecmp (Depends-on): Likewise.
45902         * modules/xgetcwd (Depends-on): Likewise.
45903         * modules/xnanosleep (Depends-on): Likewise.
45904         * modules/xstrtod (Depends-on): Likewise.
45905         * modules/yesno (Depends-on): Likewise.
45906
45907 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
45908
45909         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
45910         needless checks.
45911
45912 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45913
45914         Merge from coreutils.  Among other things,
45915         add bulletproofing for cases where stdin, stdout, or stderr are closed.
45916         * lib/fd-safer.c: New file.
45917         * lib/fcntl-safer.h, open-safer.c: Remove.
45918         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
45919         * lib/dup-safer.c: Include unistd-safer.h first.
45920         Don't include errno.h.
45921         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
45922         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
45923         * lib/file-type.c: Rely on file-type.h change.
45924         * lib/getloadavg.c: Include unistd-safer.h.
45925         (getloadavg): Use safer open.
45926         * lib/getusershell.c: Include "stdio-safer.h".
45927         (getusershell): Use safer fopen.
45928         * lib/long-options.c (long_options): Use NULL rather than 0.
45929         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
45930         'free'.
45931         * lib/modechange.c: Likewise.
45932         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
45933         (MODE_DONE): New constant.
45934         (struct mode_change): Remove 'next' member.
45935         (make_node_op_equals): New function; like the old one of the
45936         same name, except it allocates an array.
45937         (mode_compile, mode_create_from_ref): Use it.
45938         (mode_compile): Allocate result as an array, not a linked list.
45939         Parse octal string ourself, so that we catch mistakes like "+0".
45940         (mode_adjust): Arg is an array, not a linked list.
45941         * lib/modechange.c: Include stat-macros.h, xalloc.h.
45942         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
45943         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
45944         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
45945         Remove.  This is now stat-macros.h's job.
45946         (talloc): Remove.  All callers replaced by xalloc, so that
45947         our invokers don't have to worry about reporting memory failures.
45948         (make_node_op_equals): Remove.
45949         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
45950         New constants.
45951         (struct mode_change): Moved here from modechange.h.
45952         (mode_append_entry): Remove.
45953         (mode_compile): Remove MASKED_OPS arg, since it encouraged
45954         apps to have incorrect behavior.  Use simpler algorithm for head
45955         and tail.  Don't futz with umask; that's now the job of mode_adjust.
45956         Detect more invalid usages rather than having somewhat-random behavior.
45957         Don't insert an "a=" action, as that leads to incorrect behavior.
45958         (mode_compile, mode_create_from_ref): Return NULL on error instead
45959         of an enum, since now there's only one way to have an error.  All
45960         callers changed.
45961         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
45962         at the correct time.  Simplify calculation of "+u" and its ilk.
45963         Don't mishandle "+X".
45964         (mode_free): Remove "register" and localize decls.
45965         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
45966         (struct mode_change): Move to modechange.c; callers don't
45967         need to see this stuff.
45968         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
45969         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
45970         (mode_change, mode_adjust): Reflect the new signatures noted above.
45971         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
45972         that might redefine system include files.
45973         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
45974         (my_usleep): Use NULL rather than (void *) 0.
45975         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
45976         Use siginterrupt to specify that system calls should be interrupted.
45977         (rpl_nanosleep): Move initialization of suspended closer to call of
45978         my_usleep.
45979         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
45980         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
45981         (desirable_utmp_entry): New function.
45982         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
45983         using x2nrealloc, to simplify logic.
45984         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
45985         size calculation.  Do not assume utmp file is a regular file.
45986         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
45987         (READ_UTMP_CHECK_PIDS): New constant.
45988         * lib/save-cwd.c: Include unistd-safer.h.
45989         (save_cwd): Use fd_safer.
45990         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
45991         [!_LIBC] Include "stat-macros.h" instead.
45992         * lib/unistd-safer.h (fd_safer): New decl.
45993
45994 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45995
45996         * modules/getloadavg (Depends-on): Add unistd-safer.
45997         * modules/getusershell (Depends-on): Add stdio-safer.
45998         * modules/lstat (Depends-on): Remove xalloc.
45999         * modules/mkstemp (Depends-on): Add stat-macros.
46000         * modules/modechange (Depends-on): Remove xstrtol.
46001         Add stat-macros, xalloc.
46002         * modules/save-cwd (Depends-on): Add unistd-safer.
46003         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
46004         * modules/unistd-safer (Files): Add lib/fd-safer.c
46005         (Makefile.am): Remove lib_SOURCES.
46006
46007         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
46008         Remove fcntl-safer; unistd-safer supersedes it.
46009
46010 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46011
46012         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
46013         AC_HEADER_STAT.
46014         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
46015         (gl_PREREQ_CHOWN): Remove.
46016         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
46017         it.  Don't require AC_HEADER_STAT.
46018         (gl_PREREQ_LSTAT): Remove.
46019         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
46020         Don't require AC_HEADER_STAT.
46021         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
46022         (gl_PREREQ_RMDIR): Remove.
46023         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
46024         mention stat-macros.h or AC_HEADER_STAT, since we'll make
46025         the stat-macros module a prerequisite.
46026         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
46027         * m4/filemode.m4 (gl_FILEMODE): Likewise.
46028         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
46029         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
46030         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
46031         variable names.
46032         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
46033         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
46034         variable prefixes.
46035         * m4/fcntl-safer.m4: Remove.
46036         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
46037         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
46038         Invoke gl_PREREQ_FD_SAFER.
46039         (gl_PREREQ_FD_SAFER): New macro.
46040         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
46041         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
46042         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
46043         Remove duplicate call to AC_LIBOBJ(readutmp).
46044         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
46045
46046         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
46047         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
46048
46049 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46050
46051         * MODULES.html.sh (Misc): Add byteswap.
46052
46053 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46054
46055         * modules/getcwd (Depends-on): Add extensions.
46056         * modules/openat (Depends-on): Likewise.
46057
46058 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46059
46060         * modules/byteswap: New file.
46061
46062 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46063
46064         * m4/byteswap.m4: New file.
46065
46066 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46067
46068         * lib/byteswap_.h: New file.
46069
46070 2005-04-25  Karl Berry  <karl@gnu.org>
46071
46072         * m4/gettext.m4: Update from GNU gettext 0.14.4.
46073
46074 2005-04-25  Albert Chin  <china@thewrittenword.com>
46075
46076         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
46077         Toolkit C bug.
46078
46079 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
46080
46081         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
46082         (func_ln_if_changed) Remove forcibly for no error message
46083         in case file does not exist.
46084
46085 2005-04-19  Simon Josefsson  <jas@extundo.com>
46086
46087         * gnulib-tool (Options): Make --symlink mean --symbolic.
46088
46089 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
46090
46091         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
46092
46093 2005-04-16  Simon Josefsson  <jas@extundo.com>
46094
46095         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
46096
46097 2005-04-15  Simon Josefsson  <jas@extundo.com>
46098
46099         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
46100
46101 2005-04-15  Simon Josefsson  <jas@extundo.com>
46102
46103         * gnulib-tool: Rename --symlink to --symbolic.
46104
46105 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
46106
46107         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
46108         symbolic links to files instead of copying/moving.  Add --aux-dir,
46109         specifying directory relative --dir where auxiliary build tools
46110         are placed.
46111
46112 2005-04-14  Bruno Haible  <bruno@clisp.org>
46113
46114         * modules/allocsa (License): Change to LGPL.
46115         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
46116
46117 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46118
46119         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
46120         that "UTC +1 second" continues to work.  Problem reported
46121         by Dmitry V. Levin.
46122         (relunit_snumber): New rule.
46123         (relunit): Use it.
46124
46125 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
46126
46127         * lib/getdate.y (universal_time_zone_table): New constant.
46128         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
46129         universal_time_zone_table.
46130         (lookup_zone): Prefer universal_time_zone_table to
46131         local_time_zone_table, so that "GMT" time stamps are allowed in
46132         London during the summer.  Problem reported by Ian Abbott.
46133
46134 2005-04-12  Jim Meyering  <jim@meyering.net>
46135
46136         * lib/human.c (humblock): Set *options even when returning due to
46137         xstrtoumax conversion failure.  Thanks to a used-uninitialized
46138         warning from gcc-4.
46139
46140 2005-04-09  Jim Meyering  <jim@meyering.net>
46141
46142         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
46143         -Wuninitialized: initialize tm0.tm_year.
46144
46145 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
46146
46147         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
46148         count, since there's no maximum.  All uses changed.
46149         Add member dsts_seen.
46150         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
46151         not being INT_MAX.
46152         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
46153         Use pc_rels_seen to decide whther a date is absolute.
46154
46155         * lib/getdate.y (number): Don't overwrite year.
46156         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
46157         check.
46158
46159 2005-04-02  Simon Josefsson  <jas@extundo.com>
46160
46161         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
46162         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
46163
46164 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
46165
46166         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
46167         where no absolute path name can be longer than PATH_MAX.
46168
46169 2005-03-27  Jim Meyering  <jim@meyering.net>
46170
46171         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
46172
46173 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
46174
46175         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
46176         "one's complement" -> "ones' complement" in comment, as per Knuth.
46177         "value of type" -> "type or expression" in comment.
46178         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
46179
46180 2005-03-26  Jim Meyering  <jim@meyering.net>
46181
46182         Comment nits.
46183         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
46184         Correct typos: s/or/of/.
46185
46186 2005-03-26  Jim Meyering  <jim@meyering.net>
46187
46188         * modules/check-include-files: Move to ../ and rename to...
46189         * check-module: ...this.
46190
46191 2005-03-25  Jim Meyering  <jim@meyering.net>
46192
46193         * modules/xvasprintf (Files): Add xalloc.h.
46194
46195 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
46196
46197         * modules/gettext (Files): config/config.rpath ->
46198         build-aux/config.rpath
46199         * modules/iconv (Files): Likewise.
46200         Problem reported by Oskar Liljeblad.
46201
46202 2005-03-23  Jim Meyering  <jim@meyering.net>
46203
46204         * modules/check-include-files: New script to check for
46205         missing dependencies, multiple includes, etc.
46206
46207         * modules/c-strtold (Depends-on): Add xalloc.
46208         * modules/c-strtod (Depends-on): Add xalloc.
46209         * modules/hash (Depends-on): Add xalloc.
46210         (Files): Remove lib/xalloc.h.
46211
46212         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
46213         * modules/userspec (Files): Add lib/inttostr.h.
46214
46215 2005-03-23  Jim Meyering  <jim@meyering.net>
46216
46217         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
46218
46219 2005-03-22  Jim Meyering  <jim@meyering.net>
46220
46221         * modules/stat-macros: New module.
46222         * modules/canonicalize, modules/euidaccess, modules/file-type,
46223         * modules/filemode, modules/lchown, modules/makepath,
46224         * modules/rmdir, modules/stat: Depend on new stat-macros module
46225         rather than listing lib/stat-macros.h manually.
46226         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
46227
46228 2005-03-22  Jim Meyering  <jim@meyering.net>
46229
46230         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
46231
46232 2005-03-22  Bruno Haible  <bruno@clisp.org>
46233
46234         * config/srclist.txt: Replace target directory 'config' with
46235         'build-aux'.
46236         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
46237         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
46238         ../build-aux/.
46239
46240 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
46241
46242         * modules/chdir-long (Depends-on): Add mempcpy.
46243
46244         * modules/acl, modules/backupfile, modules/c-strtod,
46245         modules/c-strtold, modules/canon-host, modules/canonicalize,
46246         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
46247         modules/exclude, modules/exitfail, modules/file-type,
46248         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
46249         modules/getdate, modules/getline, modules/getpagesize,
46250         modules/getpass, modules/getugroups, modules/group-member,
46251         modules/hard-locale, modules/hash, modules/human, modules/idcache,
46252         modules/inttostr, modules/long-options, modules/makepath,
46253         modules/md5, modules/memcasecmp, modules/memcoll,
46254         modules/modechange, modules/mountlist, modules/path-concat,
46255         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
46256         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
46257         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
46258         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
46259         modules/strftime, modules/strndup, modules/strverscmp,
46260         modules/timespec, modules/unlocked-io, modules/userspec,
46261         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
46262         modules/yesno:
46263         Remove lib_SOURCES line from Makefile.am section, as this is now
46264         done automatically by the corresponding Autoconf macro.
46265
46266 2005-03-21  Jim Meyering  <jim@meyering.net>
46267
46268         Changes imported from coreutils.
46269
46270         * lib/cycle-check.c: Don't include xalloc.h.
46271
46272         * lib/path-concat.c: Don't include assert.h.
46273         (path_concat): Remove assertion that would have triggered
46274         for ABASE starting with more than one slash.
46275         Reported by Andreas Schwab.
46276
46277         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
46278         properly when ABASE is an absolute file name.
46279         Correct the description of this function.
46280         Include <assert.h>.
46281         Add an assertion and a test driver.
46282         This fixes a bug introduced on 2004-07-02.
46283         Andreas Schwab reported the resulting failure of cp --parents:
46284         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
46285
46286 2005-03-21  Jim Meyering  <jim@meyering.net>
46287
46288         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
46289         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
46290
46291 2005-03-21  Jim Meyering  <jim@meyering.net>
46292         and  Paul Eggert  <eggert@cs.ucla.edu>
46293
46294         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
46295         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
46296         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
46297         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
46298         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
46299         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
46300         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
46301         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
46302         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
46303         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
46304         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
46305         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
46306         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
46307         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
46308         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
46309         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
46310         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
46311         for these modules.
46312
46313 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
46314
46315         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
46316         (which shouldn't happen), generate nothing instead of returning 0
46317         immediately, so that nstrftime (NULL, ...) doesn't return 0.
46318
46319 2005-03-16  Bruno Haible  <bruno@clisp.org>
46320
46321         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
46322         HAVE_LONGLONG_64BIT.
46323
46324 2005-03-16  Bruno Haible  <bruno@clisp.org>
46325
46326         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
46327         HAVE_LONGLONG_64BIT.
46328
46329 2005-03-16  Bruno Haible  <bruno@clisp.org>
46330
46331         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
46332         HAVE_LONGLONG_64BIT.
46333
46334 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46335
46336         * lib/strftime.c (my_strftime): Prepend space to format so that we can
46337         reliably distinguish strftime failure from empty output on POSIX
46338         hosts.
46339
46340 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46341
46342         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
46343         (iconv_string): Don't guess a size-zero buffer, as that might cause
46344         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
46345         result would be 'too large', where 'too large' is (heuristically)
46346         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
46347         overflow concerns.  This will prevent some unwanted malloc failures
46348         when the inputs are very large.
46349
46350 2005-03-15  Karl Berry  <karl@gnu.org>
46351
46352         * config/srclist.txt (config.rpath): from gettext.
46353         * config/config.rpath: update.
46354
46355 2005-03-15  Bruno Haible  <bruno@clisp.org>
46356
46357         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
46358         to 'negate'.
46359
46360         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
46361         variable.
46362
46363         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
46364         results.
46365
46366 2005-03-14  Simon Josefsson  <jas@extundo.com>
46367
46368         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
46369         <fx@gnu.org>.
46370
46371 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
46372
46373         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
46374         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
46375         intprops.h.
46376         * lib/strtol.c: Likewise.
46377
46378 2005-03-14  Jim Meyering  <jim@meyering.net>
46379
46380         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
46381         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
46382         to be nonzero so that we (and caller) can detect the difference
46383         between a valid zero-length expansion and an error return, even
46384         when the underlying strftime fails before writing anything into
46385         that location.
46386
46387 2005-03-14  Bruno Haible  <bruno@clisp.org>
46388
46389         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
46390         Update from GNU gettext 0.14.3.
46391
46392 2005-03-10  Jim Meyering  <jim@meyering.net>
46393
46394         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
46395
46396 2005-03-10  Jim Meyering  <jim@meyering.net>
46397
46398         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
46399         so that this module works on systems without fchdir.
46400
46401 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
46402
46403         Factor int-properties macros into a single file, except for
46404         glibc-related files.
46405         * lib/intprops.h: New file.
46406         * lib/getloadavg.c: Include it instead of limits.h.
46407         (INT_STRLEN_BOUND): Remove.
46408         * lib/human.c: Include intprops.h.
46409         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
46410         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
46411         302/1000.
46412         * lib/inttostr.h: Include intprops.h instead of limits.h.
46413         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
46414         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
46415         for consistency with intprops.h.
46416         (time_t_is_integer, twos_complement_arithmetic): Use them.
46417         * lib/sig2str.h: Include <signal.h>, intprops.h.
46418         (INT_STRLEN_BOUND): Remove.
46419         * lib/strftime.c (TYPE_SIGNED): Remove.
46420         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
46421         * lib/strtol.c: Adjust comments to match intprops.h.
46422         * lib/userspec.c: Include intprops.h.
46423         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
46424         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
46425         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
46426         instead of rolling our own expressions.
46427         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
46428
46429         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
46430         instead of int.
46431         (my_strftime): Do not mishandle years close to INT_MAX, by doing
46432         the right thing even if adding 1900 would overflow.  Similarly
46433         for tm_mon + 1 and tm_yday + 1.
46434         Make %Y always equivalent to %C%y, and similarly for %G and %g.
46435         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
46436         (DO_SIGNED_NUMBER): New macro.
46437         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
46438
46439 2005-03-07  Bruno Haible  <bruno@clisp.org>
46440
46441         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
46442
46443 2005-03-07  Bruno Haible  <bruno@clisp.org>
46444
46445         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
46446
46447 2005-03-04  Derek R. Price  <derek@ximbiot.com>
46448
46449         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
46450         (func_import): Only replace files via --import when they have actually
46451         changed.
46452
46453 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46454
46455         * m4/mmap-anon.m4: New file.
46456         * m4/pagealign_alloc.m4: New file.
46457
46458 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46459             Bruno Haible  <bruno@clisp.org>
46460
46461         * modules/pagealign_alloc: New file.
46462         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
46463
46464 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46465             Bruno Haible  <bruno@clisp.org>
46466
46467         * lib/pagealign_alloc.h: New file.
46468         * lib/pagealign_alloc.c: New file.
46469
46470 2005-03-03  Bruno Haible  <bruno@clisp.org>
46471
46472         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
46473         Use an all-permissive copyright notice, recommended by RMS.
46474
46475 2005-03-02  Bruno Haible  <bruno@clisp.org>
46476
46477         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
46478         of AIX, the replacement has to be done only after <string.h> is
46479         included, therefore not in config.h. stpncpy.h does the replacement,
46480         and stpncpy.c uses it.
46481
46482 2005-03-02  Bruno Haible  <bruno@clisp.org>
46483
46484         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
46485         stpncpy.c uses it.
46486
46487 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46488
46489         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
46490         The workaround isn't strictly needed for POSIX conformance, and
46491         it's too much of a pain to configure and maintain.  We'll ask
46492         people to fix their kernels instead.
46493         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
46494         (NANOSLEEP_BUG_WORKAROUND): Remove.
46495         (xnanosleep): Remove the workaround.
46496
46497 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46498
46499         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
46500         Reported by Derek Price.
46501         (Include): Add "timespec.h".
46502
46503         * modules/xnanosleep (Depends-on): Remove gethrxtime.
46504
46505 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46506
46507         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
46508         to detect nanosleep bug.
46509
46510 2005-03-01  Bruno Haible  <bruno@clisp.org>
46511
46512         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
46513
46514 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
46515
46516         * modules/gethrxtime: New file.
46517         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
46518         (Depends-on): Add gethrxtime.
46519         (configure.ac): Add gl_XNANOSLEEP.
46520         (Makefile.am): Remove lib_SOURCES line.
46521
46522 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46523
46524         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
46525         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
46526
46527 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46528
46529         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
46530         * lib/timespec.h (gettime): Return void, since it always
46531         succeeds now.  All uses changed.
46532         * lib/gettime.c (gettime) Likewise.
46533         [HAVE_NANOTIME]: Prefer nanotime.
46534         Assume gettimeofday succeeds, as POSIX requires.
46535         Assime time () succeeds, since other code already does.
46536         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
46537         (timespec_subtract): Remove.
46538         (NANOSLEEP_BUG_WORKAROUND): New constant.
46539         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
46540         things considerably.  Use it only on GNU/Linux hosts, since the
46541         workaround shouldn't be needed elsewhere.
46542
46543 2005-02-24  Bruno Haible  <bruno@clisp.org>
46544
46545         * modules/gettext (Files): Add m4/glibc2.m4.
46546
46547 2005-02-24  Bruno Haible  <bruno@clisp.org>
46548
46549         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
46550         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
46551         * m4/progtest.m4:
46552         Update from GNU gettext 0.14.2.
46553         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
46554
46555 2005-02-24  Bruno Haible  <bruno@clisp.org>
46556
46557         * lib/localcharset.c: Update from GNU gettext 0.14.2.
46558         * lib/config.charset: Update from GNU gettext 0.14.2.
46559
46560 2005-02-24  Bruno Haible  <bruno@clisp.org>
46561
46562         * lib/gettext.h: Update from GNU gettext 0.14.2.
46563
46564 2005-02-23  Simon Josefsson  <jas@extundo.com>
46565
46566         * m4/iconvme.m4: New file.
46567
46568 2005-02-23  Jim Meyering  <jim@meyering.net>
46569
46570         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
46571         change.
46572         Thanks to Bruno Haible for catching it.
46573
46574 2005-02-22  Simon Josefsson  <jas@extundo.com>
46575
46576         * modules/iconvme: New file.
46577
46578         * MODULES.html.sh: Add iconvme.
46579
46580 2005-02-22  Simon Josefsson  <jas@extundo.com>
46581
46582         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
46583
46584 2005-02-22  Simon Josefsson  <jas@extundo.com>
46585
46586         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
46587
46588 2005-02-22  Jim Meyering  <jim@meyering.net>
46589
46590         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
46591         s/ifndef/ifdef/.
46592
46593 2005-02-20  Neil Conway  <neilc@samurai.com>
46594
46595         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
46596         returned by OSX/Darwin if the specified buffer is not large
46597         enough for the hostname.
46598
46599 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46600
46601         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
46602         pass it to _help, otherwise the latter coredumps trying to
46603         dereference state.root_argp.
46604
46605 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46606
46607         * modules/chdir-long (Depends-on): Add memrchr.
46608         * modules/memrchr (Files): Add lib/memrchr.h.
46609         (Include): "memrchr.h".
46610
46611 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46612
46613         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
46614
46615 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46616
46617         * lib/memrchr.h: New file.
46618         * lib/chdir-long.c: Include it.
46619         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
46620         Don't bother including stddef.h.
46621
46622 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
46623
46624         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
46625         inclusion.
46626         Include <sys/types.h>, for dev_t.
46627         (ME_DUMMY, ME_REMOTE): Move from here....
46628         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
46629         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
46630         Dmitry V. Levin.
46631         Include mountlist.h first, to test the interface.
46632
46633 2005-01-29  Bruno Haible  <bruno@clisp.org>
46634
46635         * lib/progname.c (program_name): Initialize.
46636         Needed when linking statically on MacOS X.
46637
46638 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46639
46640         Sync from coreutils.
46641         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
46642         (Depends-on): Add c-strtod.
46643         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
46644
46645 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46646
46647         Sync from coreutils.
46648         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
46649
46650         Remove files that are specific to coreutils.
46651         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
46652
46653 2005-01-28  Bruno Haible  <bruno@clisp.org>
46654
46655         * modules/javacomp: New file.
46656         * MODULES.html.sh (Java): Add javacomp.
46657
46658 2005-01-28  Bruno Haible  <bruno@clisp.org>
46659
46660         * m4/javacomp.m4: New file, from GNU gettext.
46661
46662 2005-01-28  Bruno Haible  <bruno@clisp.org>
46663
46664         * lib/javacomp.sh.in: New file, from GNU gettext.
46665         * lib/javacomp.h: New file, from GNU gettext.
46666         * lib/javacomp.c: New file, from GNU gettext.
46667
46668 2005-01-26  Simon Josefsson  <jas@extundo.com>
46669
46670         * lib/gai_strerror.c: Use GPL in header.
46671
46672 2005-01-26  Bruno Haible  <bruno@clisp.org>
46673
46674         * modules/javaexec: New file.
46675         * MODULES.html.sh (Java): Add javaexec.
46676
46677 2005-01-26  Bruno Haible  <bruno@clisp.org>
46678
46679         * m4/javaexec.m4: New file, from GNU gettext.
46680
46681 2005-01-26  Bruno Haible  <bruno@clisp.org>
46682
46683         * lib/javaexec.sh.in: New file, from GNU gettext.
46684         * lib/javaexec.h: New file, from GNU gettext.
46685         * lib/javaexec.c: New file, from GNU gettext.
46686
46687 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46688
46689         * modules/lchown (Depends-on): Remove lchown.h
46690
46691 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46692
46693         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
46694         must be defined if the header file was not found, in order
46695         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
46696
46697 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46698
46699         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
46700         initializers for struct pentry_state.
46701         (__argp_error): Check return value of __asprintf
46702         (__argp_failure): Translate error message
46703
46704         * lib/argp-parse.c: Removed braces around the expansion of N_()
46705
46706 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
46707
46708         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
46709         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
46710         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
46711         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
46712         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
46713         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
46714         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
46715         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
46716         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
46717         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
46718         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
46719         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
46720         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
46721         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
46722         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
46723         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
46724         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
46725         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
46726         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
46727         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
46728         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
46729         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
46730         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
46731         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
46732         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
46733         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
46734         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
46735         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
46736         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
46737         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
46738         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
46739         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
46740         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
46741         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
46742         xstrtol.m4, xstrtoumax.m4, yesno.m4:
46743         Use an all-permissive copyright notice, recommended by RMS.
46744
46745 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
46746
46747         * modules/chdir-long (Depends-on): Remove mempcpy.
46748
46749 2005-01-21  Jim Meyering  <jim@meyering.net>
46750
46751         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
46752         same value as for Solaris 9.
46753
46754         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
46755         component length.  This included changing the parameter to be
46756         of type `char *' rather than `char const *'.
46757         * lib/chdir-long.h (chdir_long): Update prototype.
46758
46759         * lib/openat.c (fdopendir, fstatat): New functions.
46760         * lib/openat.h: Include headers required for use of DIR and struct
46761         stat.
46762         [AT_SYMLINK_NOFOLLOW]: Define.
46763         (fdopendir, fstatat): Add prototypes.
46764
46765 2005-01-21  Bruno Haible  <bruno@clisp.org>
46766
46767         * modules/classpath: New file.
46768         * MODULES.html.sh (Java): Add classpath.
46769
46770 2005-01-21  Bruno Haible  <bruno@clisp.org>
46771
46772         * lib/classpath.h: New file, from GNU gettext.
46773         * lib/classpath.c: New file, from GNU gettext.
46774
46775 2005-01-20  Simon Josefsson  <jas@extundo.com>
46776
46777         * modules/version-etc-fsf: New file.
46778
46779 2005-01-20  Simon Josefsson  <jas@extundo.com>
46780
46781         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
46782         * lib/version-etc.c: Remove version_etc_copyright.
46783         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
46784         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
46785
46786 2005-01-20  Simon Josefsson  <jas@extundo.com>
46787
46788         * lib/base64.h (isbase64): Add.
46789
46790         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
46791         using a unsigned prototype, don't inline.
46792         (base64_decode): Use it.
46793
46794 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46795
46796         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
46797         it.
46798
46799 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46800
46801         * lib/save-cwd.c (save_cwd): Remove code to support the case
46802         where fchdir is missing or flaky.
46803
46804 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46805
46806         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
46807
46808 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
46809
46810         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
46811         AC_LIBSOURCES now does this.
46812         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
46813         with new ullong_max module.
46814
46815 2005-01-19  Bruno Haible  <bruno@clisp.org>
46816
46817         * modules/sh-quote: New file.
46818         * MODULES.html.sh (Executing programs): Add sh-quote.
46819
46820 2005-01-19  Bruno Haible  <bruno@clisp.org>
46821
46822         * lib/sh-quote.h: New file, from GNU gettext.
46823         * lib/sh-quote.c: New file, from GNU gettext.
46824
46825 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46826
46827         Merge from coreutils.
46828         * m4/ullong_max.m4: New file.
46829         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
46830         (gl_MACROS): Assume localeconv exists.
46831
46832 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46833
46834         Merge changes from coreutils, as described below in several
46835         changelogs dated today.
46836
46837         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
46838         (O_DIRECTORY): Remove; not needed here, since "." must be
46839         a directory.  All uses removed.
46840         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
46841         universal on Suns, and we also need to test for IRIX.
46842         Revamp code to use 'if' rather than '#if'.
46843         Avoid unnecessary comparison of cwd->desc to 0.
46844
46845         * lib/utimens.c (futimens): Robustify the previous patch, by checking
46846         for known valid error numbers rather than observed invalid ones.
46847
46848 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46849
46850         * modules/ullong_max: New file.
46851
46852         * modules/chdir-long, modules/openat: New files.
46853         * modules/save-cwd (Depends-on): Depend on chdir-long.
46854         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
46855
46856 2005-01-18  Jim Meyering  <jim@meyering.net>
46857
46858         Merge from coreutils.
46859         * m4/chdir-long.m4, m4/openat.m4: New files.
46860         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
46861         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
46862         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
46863         is sane and DOES follow symlinks.  Besides, testing 20 different
46864         systems found no broken chown implementations.
46865         Prompted by a change in rsync's copy of this macro.
46866         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
46867
46868         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
46869
46870         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
46871         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
46872         NULL-means-set-to-current-time semantics.
46873         Remove temporary file immediately, rather than waiting
46874         for configure's at-exit trap code to do it.
46875
46876 2005-01-18  Jim Meyering  <jim@meyering.net>
46877
46878         * lib/version-etc.c (version_etc_copyright): Update copyright date.
46879
46880         * lib/utimens.c (futimens): Account for the fact that futimes
46881         can also fail with errno == ENOSYS or errno == ENOENT.
46882         Patch from Dmitry V. Levin.
46883
46884         Change the name of the robust chdir function from chdir to chdir_long.
46885         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
46886         (restore_cwd): Use chdir_long, not chdir.
46887         * lib/chdir-long.c: Renamed from chdir.c.
46888         * lib/chdir-long.h: Renamed from chdir.h.
46889         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
46890         Hurd.
46891
46892 2005-01-18  Bruno Haible  <bruno@clisp.org>
46893
46894         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
46895         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
46896         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
46897         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
46898         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
46899         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
46900         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
46901         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
46902         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
46903         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
46904         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
46905         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
46906         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
46907         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
46908         Use an all-permissive copyright notice, recommended by RMS.
46909
46910 2005-01-18  Bob Proulx  <bob@proulx.com>
46911
46912         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
46913         simplify offsetof() macro construct to avoid compile failure with
46914         native HP-UX 11.0 ANSI C compiler.
46915
46916 2005-01-17  Bruno Haible  <bruno@clisp.org>
46917
46918         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
46919         redundant because stpncpy.m4 takes care of it.
46920
46921 2005-01-17  Bruno Haible  <bruno@clisp.org>
46922
46923         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
46924
46925 2005-01-17  Bruno Haible  <bruno@clisp.org>
46926
46927         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
46928         used.
46929
46930 2005-01-17  Bruno Haible  <bruno@clisp.org>
46931
46932         * lib/fwriteerror.h (fwriteerror): Change specification to include
46933         fclose.
46934         * lib/fwriteerror.c: Include <stdbool.h>.
46935         (fwriteerror): At the end, close the file stream. Record whether
46936         stdout was already closed.
46937
46938 2005-01-17  Bruno Haible  <bruno@clisp.org>
46939
46940         * lib/execute.c (environ): Declare if needed.
46941         * lib/pipe.c (environ): Likewise.
46942         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
46943
46944 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46945
46946         * modules/argp: Depend on vsnprintf
46947
46948 2005-01-10  Jim Meyering  <jim@meyering.net>
46949
46950         * modules/closeout (Depends-on): Add atexit.
46951
46952 2005-01-06  Bruno Haible  <bruno@clisp.org>
46953
46954         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
46955
46956 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
46957
46958         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
46959         definitions to be after all include files, to avoid collisions.
46960         Problem reported by Bob Proulx.
46961
46962 2005-01-04  Jim Meyering  <jim@meyering.net>
46963
46964         Changes imported from coreutils.
46965         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
46966         as the mkstemp template, use a temporary directory and an
46967         8.3-friendly template to avoid trouble on systems like DJGPP.
46968         Reported by Juan M. Guerrero via Stepan Kasal.
46969         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
46970         close. Remove the temporary directory right away, rather than waiting
46971         for configure's at-exit trap code to do it.
46972         Suggestion from Stepan Kasal.
46973
46974 2005-01-01  Simon Josefsson  <jas@extundo.com>
46975
46976         * gnulib-tool: Print #include directives when --import'ing.
46977
46978 2004-12-28  Simon Josefsson  <jas@extundo.com>
46979
46980         * tests/test-base64.c: Include required header files.  Remove
46981         unused variables.
46982
46983 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
46984
46985         * modules/error (Depends-on): Remove gettext.
46986
46987 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
46988
46989         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
46990         not needed.  This removes a dependency on the gettext module.
46991         [defined _LIBC]: Do not include <libintl.h>; not needed.
46992
46993 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
46994
46995         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
46996         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
46997
46998 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
46999
47000         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
47001         HAVE_DECL_STRTOLD.
47002
47003 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47004
47005         * modules/getdate (Depends-on): Remove alloca-opt.
47006
47007 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47008
47009         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
47010
47011 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47012
47013         * lib/argp-parse.c: Include <stddef.h>.
47014         (alignof, alignto): New macros.
47015         (parser_init): Don't assume that void * is aligned sufficiently
47016         for struct option.
47017
47018         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
47019         need to extend the stack.
47020         (YYINITDEPTH): New macro, so that the initial stack isn't overly
47021         large.
47022
47023 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47024
47025         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
47026
47027 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47028
47029         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
47030         (2004-10-24) change.  Apparently this was a false alarm.
47031
47032         * modules/getdate: Depend on alloca-opt, not alloca.
47033
47034 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47035
47036         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
47037         Remove now-obsolete comment about AIX.
47038         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
47039         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
47040         (YYMAXDEPTH): New macro.
47041
47042 2004-12-18  Simon Josefsson  <jas@extundo.com>
47043
47044         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
47045
47046 2004-12-18  Bruno Haible  <bruno@clisp.org>
47047
47048         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
47049
47050 2004-12-18  Bruno Haible  <bruno@clisp.org>
47051
47052         * lib/fatal-signal.c (fatal_signals): Make non-const.
47053         (init_fatal_signals): New function.
47054         (uninstall_handlers, install_handlers): Ignore signals that were set to
47055         SIG_IGN.
47056         (at_fatal_signal): Call init_fatal_signals.
47057         (init_fatal_signal_set): Likewise. Ignore signals that were set to
47058         SIG_IGN.
47059         Reported by Paul Eggert.
47060
47061 2004-12-18  Bruno Haible  <bruno@clisp.org>
47062
47063         * doc/alloca.texi: New file.
47064         * doc/alloca-opt.texi: New file.
47065
47066 2004-12-17  Jim Meyering  <jim@meyering.net>
47067
47068         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
47069         Otherwise, install-sh could exit with improper exit status when
47070         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
47071
47072 2004-12-16  Simon Josefsson  <jas@extundo.com>
47073
47074         * tests/test-base64.c: Add license.
47075
47076 2004-12-15  Stepan Kasal  <address@hidden>
47077
47078         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
47079
47080 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
47081
47082         * modules/getcwd (Files): Add m4/d-ino.m4.
47083         Suggested by Mark D. Baushke.
47084
47085 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47086
47087         * lib/getdate.y (textint): New member "negative".
47088         (time_zone_hhmm): New function.
47089         Expect 14 shift-reduce conflicts, not 13.
47090         (o_colon_minutes): New rule.
47091         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
47092         (yylex): Set the "negative" member of signed numbers.
47093
47094 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47095
47096         * doc/getdate.texi (Time of day items, Time zone items):
47097         Describe new formats +00:00, UTC+00:00.
47098
47099 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
47100
47101         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
47102         spurious "-l"s.  Problem reported by Stepan Kasal.
47103
47104 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
47105
47106         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
47107         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
47108
47109 2004-12-04  Simon Josefsson  <jas@extundo.com>
47110
47111         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
47112         Vandoorselaere <yoann@prelude-ids.org>.
47113
47114 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47115
47116         Changes imported from coreutils.
47117         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
47118         exist.
47119         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
47120
47121 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47122
47123         Changes imported from coreutils.
47124         * lib/hard-locale.c: Assume <locale.h> exists.
47125         Include "strdup.h".
47126         (GLIBC_VERSION): New macro.
47127         (hard_locale): Assume setlocale exists.
47128         Rewrite to avoid #ifdef.
47129         Use strdup rather than malloc + strcpy.
47130         * lib/human.c: Assume <locale.h> exists.
47131         (human_readable): Assume localeconv exists.
47132
47133 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47134
47135         * modules/hard-locale (Depends-on): Add strdup.
47136
47137 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
47138
47139         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
47140         convert T2, not T.  (Imported from libc.)
47141
47142 2004-11-30  Simon Josefsson  <jas@extundo.com>
47143
47144         * modules/restrict (License): Change to LGPL.
47145
47146 2004-11-30  Simon Josefsson  <jas@extundo.com>
47147
47148         * m4/restrict.m4: Add copyright and copying conditions.
47149
47150 2004-11-30  Simon Josefsson  <jas@extundo.com>
47151
47152         * m4/base64.m4: New file.
47153
47154 2004-11-30  Simon Josefsson  <jas@extundo.com>
47155
47156         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
47157         base64.
47158
47159         * tests/test-base64.c: New file.
47160
47161         * modules/base64: New file.
47162
47163 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47164
47165         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
47166         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
47167
47168         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
47169
47170 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47171
47172         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
47173         (__getcwd.c): Don't restore errno; glibc doesn't.
47174         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
47175         first, falling back to our code only if its results look suspicious.
47176         Ensure that the resulting buffer is only as large as necessary.
47177
47178         * lib/readutmp.c: Include readutmp.h first.
47179         Include <errno.h>, since readutmp.h no longer does that.
47180         * lib/readutmp.h: Don't include <errno.h>,
47181         <sys/param.h>, <time.h>; not needed to establish interface.
47182         (errno): Remove decl.
47183         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
47184         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
47185         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
47186
47187 2004-11-28  Simon Josefsson  <jas@extundo.com>
47188
47189         * lib/base64.h, base64.c: New file.
47190
47191 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
47192
47193         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
47194
47195 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
47196
47197         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
47198         (Depends-on): Remove pathmax, same.  Add mempcpy.
47199         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
47200         (Makefile.am): Append getcwd.h to lib_SOURCES.
47201         (Include): Add getcwd.h.
47202         (Maintainer): Change from Jim Meyering to "all, glibc",
47203         since getdate now uses intended-for-glibc code.
47204         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
47205         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
47206
47207 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47208
47209         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
47210         HP's ANSI C compiler.
47211         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
47212         Declaring int functions causes warnings on some modern systems and
47213         shouldn't be needed to compile on ancient ones.
47214         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
47215         defined.
47216
47217         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
47218         with the following changes.
47219         (__set_errno): Parenthesize properly.
47220         Include <stdbool.h>.
47221         (MIN, MAX, MATCHING_INO): New macros.
47222         (__getcwd): Define with prototype, not K&R form.
47223         Use heuristics to allocate default buffer on stack if possible.
47224         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
47225         behavior, and to avoid the PATH_MAX limit when computing
47226         ../../../../...
47227         Use MATCHING_INO to compare inode number to file.
47228         Check for arithmetic overflow in size calculations.
47229         Fix bug in reallocation of dot array that caused getcwd to fail
47230         on directories nested deeper than 75.
47231         Be more careful about saving errno on error.
47232         Do not use realloc; use only free+malloc, as this is a bit
47233         more flexible and avoids a needless copy operation.
47234         Do not inspect st_dev and st_ino for symbolic links; POSIX
47235         doesn't specify the latter.
47236         Check for closedir errors.
47237         Avoid needless casts.
47238         Use "#ifdef weak_alias" around weak_alias, to be like other
47239         glibc code.
47240         The following changes to getcwd.c have effect only when used in
47241         gnulib; they have no effect inside glibc proper.
47242         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
47243         as alloca isn't used.
47244         (alloca, __alloca): Likewise.
47245         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
47246         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
47247         unconditionally, as gnulib assumes C89 or better.
47248         Do not include <sys/param.h>.
47249         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
47250         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
47251         better.
47252         (NULL) [!defined NULL]: Remove; we assume C89 or better.
47253         Include <dirent.h> in a way that is compatible with modern Autoconf.
47254         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
47255         New macros, if not already defined.
47256         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
47257         Use "_LIBC", not "defined _LIBC", for consistency.
47258         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
47259         a mempcpy module.
47260         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
47261         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
47262         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
47263         credit only to Jim Meyering and adjust the copyright dates.
47264         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
47265         <stdlib.h>, <unistd.h>, "pathmax.h".
47266         Instead, include "xgetcwd.h" (first) and "getcwd.h".
47267         (INITIAL_BUFFER_SIZE): Remove.
47268         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
47269
47270 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47271
47272         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
47273         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
47274         Use the _ONCE methods, for efficiency.
47275         Check for fcntl.h.  In test program, include <errno.h>
47276         and <fcntl.h> if available.  Remove old K&R cruft from
47277         test program.  Check for common errors in GNU/Linux,
47278         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
47279         don't do AC_LIBOBJ, as that's getcwd.m4's job.
47280         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
47281         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
47282         name accordingly.
47283         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
47284         accommodate new getcwd.c.
47285         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
47286         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
47287         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
47288         that's all we need now.
47289
47290 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47291
47292         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
47293         argp-parse.c depends on getopt internals, that means we should
47294         always use our getopt, to be on the safe side.
47295         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
47296         order not to spoil the result of an eventual previous invocation
47297         of gl_GETOPT_SUBSTITUTE.
47298
47299 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47300
47301         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
47302         redefinition warnings. To avoid them, include the defines
47303         in `#if !defined __need_getopt ... #endif'. The only place
47304         where __getopt_argv_const is used is in definitions
47305         of getopt_long and getopt_long_only below, which are as well
47306         protected by `#ifndef __need_getopt'.
47307         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
47308         __need_getopt after including <stdio.h> and <unistd.h> These
47309         headers might have defined it.
47310
47311 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47312
47313         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
47314
47315 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47316
47317         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
47318         (futimens): New function, which uses futimes if available.
47319         (futimens, utimens): Support timespec==NULL, with same semantics
47320         as utime and utimens.
47321         * lib/utimens.h (futimens): New decl.
47322
47323 2004-11-23  Jim Meyering  <jim@meyering.net>
47324
47325         * lib/getopt_.h: Remove trailing blanks.
47326
47327 2004-11-23  Jim Meyering  <jim@meyering.net>
47328
47329         * lib/__fpending.c: Add comment.
47330
47331 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
47332
47333         * modules/canonicalize (Depends-on): Add xreadlink.
47334         Problem reported by James Youngman.
47335
47336 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
47337
47338         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
47339         New macros.
47340         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
47341         optopt): Use them instead of invoking ## directly; otherwise, the
47342         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
47343
47344 2004-11-19  Bruno Haible  <bruno@clisp.org>
47345
47346         * lib/strtok_r.c: Move comments from here...
47347         * lib/strtok_r.h: ... to here.
47348
47349 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47350
47351         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
47352         implementations that mishandle size_t overflow.
47353
47354 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47355
47356         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
47357         might fail.  Problem reported by Yoann Vandoorselaere.
47358         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
47359         implementations that mishandle size_t overflow.
47360
47361 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47362
47363         * modules/canon-host (Depends-on): Add strdup.
47364
47365 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47366
47367         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
47368
47369 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47370
47371         * lib/canon-host.c: Include "strdup.h".
47372         (canon_host): Use getaddrinfo if available, so that IPv6 works.
47373         Use strdup instead of malloc/strcpy to duplicate strings.
47374
47375         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
47376         (human_space_before_unit): New constant.
47377         * lib/human.c (human_readable): Support it.
47378
47379         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
47380         (xgetcwd): Set errno correctly when failing.
47381         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
47382         the failure is actually due to a PATH_MAX problem.
47383
47384         Further getopt changes to make it more likely that glibc will
47385         buy the changes back.
47386         * lib/getopt.c (POSIXLY_CORRECT): New constant.
47387         (getopt): Use it, so to preserve glibc semantic
47388         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
47389         when compiling for libc.
47390         * lib/getopt_.h (__getopt_argv_const): Bring it back.
47391         (getopt_long, getopt_long_only): Use it.
47392
47393         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47394         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
47395         (getopt): Argv is now char * const *, as per standard.
47396         (_getopt_internal_r, _getopt_internal): Argv is now char **,
47397         not char *__getopt_argv_const *.
47398         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47399         _getopt_long_only_r): Likewise.
47400         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
47401         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47402         _getopt_long_r, _getopt_long_only_r): Likewise.
47403         * lib/getopt_.h (__getopt_argv_const): Remove.
47404         (getopt): Argv is now char * const *, as per standard.
47405
47406         * lib/getdate.y (tORDINAL): New token.
47407         (day, relunit): Allow it for relative times.
47408         (relative_time_table): Use tORDINAL for ordinals.
47409
47410 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47411
47412         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
47413         Document that "second" isn't allowed as an ordinal number.
47414
47415 2004-11-16  Jim Meyering  <jim@meyering.net>
47416
47417         * modules/closeout (Depends-on): Add fpending.
47418
47419 2004-11-15  Jim Meyering  <jim@meyering.net>
47420
47421         * lib/closeout.c: Include "__fpending.h" once again.
47422         Include <stdbool.h>.
47423         (close_stdout): Don't fail just because stdout was closed initially,
47424         since some programs don't write to stdout in the normal course of
47425         operation (other than --version and --help), and we don't want this
47426         function to make e.g. `touch file >&-' fail.
47427         But do fail if it was closed and someone has tried to write to it.
47428         E.g., `printf foo >&-' must fail.
47429
47430 2004-11-13  Jim Meyering  <jim@meyering.net>
47431
47432         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
47433
47434 2004-11-12  Simon Josefsson  <jas@extundo.com>
47435
47436         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
47437         small doc fix is still pending.
47438
47439 2004-11-11  Simon Josefsson  <jas@extundo.com>
47440
47441         * modules/strtok_r: New file.
47442
47443         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47444         strtok_r.
47445
47446 2004-11-11  Simon Josefsson  <jas@extundo.com>
47447
47448         * m4/strtok_r.m4: New file.
47449
47450         * m4/getopt.m4: Replace opterr.
47451
47452 2004-11-11  Simon Josefsson  <jas@extundo.com>
47453
47454         * lib/strtok_r.h, strtok_r.c: New file.
47455
47456 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47457
47458         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
47459         of replacing opterr, getopt, etc.  This should handle the
47460         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
47461
47462 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47463
47464         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
47465         we can stop lying to compilers about the constness of argv when we
47466         are compiled outside glibc.
47467         (getopt, getopt_long, getopt_long_only): Use it.
47468         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47469         _getopt_internal, getopt): Likewise.
47470         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47471         _getopt_long_only_r): Likewise.
47472         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47473         _getopt_long_r, _getopt_long_only_r): Likewise.
47474
47475         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
47476         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
47477         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
47478         the other external symbols.
47479         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
47480         declaration, since the above renaming now works around collisions.
47481
47482 2004-11-11  Jim Meyering  <jim@meyering.net>
47483
47484         * lib/linebreak.c: Remove trailing blanks.
47485         * lib/alloca_.h: Likewise.
47486         * lib/acosl.c: Likewise.
47487         * lib/euidaccess.c: Likewise.
47488         * lib/allocsa.h: Likewise.
47489
47490 2004-11-10  Simon Josefsson  <jas@extundo.com>
47491
47492         * m4/getaddrinfo.m4: New file.
47493
47494 2004-11-10  Simon Josefsson  <jas@extundo.com>
47495
47496         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
47497
47498 2004-11-10  Simon Josefsson  <jas@extundo.com>
47499
47500         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47501         getaddrinfo.
47502
47503         * modules/getaddrinfo: New file.
47504
47505 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47506
47507         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
47508
47509 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47510
47511         * lib/mktime.c (SHR): New macro, which is a portable
47512         substitute for >> that should work even on Crays.
47513         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
47514         Problem reported by Mark D. Baushke in
47515         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
47516         * lib/getdate.y (SHR): Likewise.
47517         (tm_diff): Use it.
47518         * lib/strftime.c (SHR): Likewise.
47519         (tm_diff): Use it.
47520         * lib/quotearg.c (struct quoting_options): Use unsigned int for
47521         quote_these_too, so that right shifts are well defined.  All uses
47522         changed.
47523
47524 2004-11-10  Jim Meyering  <jim@meyering.net>
47525
47526         Ensure that no close failure goes unreported.
47527         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
47528         return early when it seems there's nothing to flush.
47529         Don't include __fpending.h.
47530
47531 2004-11-10  Jim Meyering  <jim@meyering.net>
47532
47533         * modules/closeout (Depends-on): Remove fpending.
47534
47535 2004-11-10  Jim Meyering  <jim@meyering.net>
47536
47537         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
47538
47539 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47540
47541         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
47542         gl_FUNC_STRFTIME.
47543         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
47544         and AC_REQUIRE when possible, to avoid duplicate checks.
47545         Check for <wchar.h>.
47546
47547 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47548
47549         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
47550
47551 2004-11-09  Bruno Haible  <bruno@clisp.org>
47552
47553         * m4/sockpfaf.m4: New file.
47554
47555 2004-11-05  Bruno Haible  <bruno@clisp.org>
47556
47557         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
47558         Reported by Mark D. Baushke <mdb@cvshome.org>.
47559
47560 2004-11-04  Bruno Haible  <bruno@clisp.org>
47561
47562         2004-09-11  Bruno Haible  <bruno@clisp.org>
47563                 * allocsa.valgrind: New file.
47564         2004-02-06  Bruno Haible  <bruno@clisp.org>
47565                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
47566                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
47567                 Reported by Christopher Seip <chris.seip@hp.com>.
47568
47569 2004-11-04  Bruno Haible  <bruno@clisp.org>
47570
47571         * modules/allocsa (Files): Add lib/allocsa.valgrind.
47572         (Makefile.am): Distribute it.
47573
47574 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
47575
47576         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
47577         with errno == ERANGE if the buffer is too small.
47578         Problem reported by Mark D. Baushke.
47579
47580 2004-11-03  Albert Chin  <china@thewrittenword.com>
47581             Paul Eggert  <eggert@cs.ucla.edu>
47582
47583         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
47584         equivalent, substitute $ac_type for equivalent type rather than
47585         blindly using uint32_t *always* which won't work if uint32_t is not
47586         available.  Define _UINT32_T to work around typedef of uint32_t if
47587         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
47588         2.5.1.
47589
47590 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47591
47592         * m4/jm-macros.m4: Sync from coreutils.
47593         (gl_MACROS): Check for mbrlen, for pathchk.
47594         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
47595
47596 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47597
47598         * lib/xreadlink.c (MAXSIZE): New macro.
47599         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
47600         size does not exceed MAXSIZE.  Avoid cast.
47601         As suggested by Mark D. Baushke in
47602         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
47603         if readlink fails with buffer size just under MAXSIZE, try again
47604         with MAXSIZE.
47605
47606 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47607
47608         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
47609
47610 2004-11-02  Derek R. Price  <derek@ximbiot.com>
47611         and  Paul Eggert  <eggert@cs.ucla.edu>
47612
47613         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
47614         (get_date): Overparenthesize to avoid GCC warning.
47615
47616 2004-11-02  Bruno Haible  <bruno@clisp.org>
47617
47618         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
47619         returns void.
47620
47621 2004-11-02  Bruno Haible  <bruno@clisp.org>
47622
47623         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
47624         function returns void.
47625
47626 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47627
47628         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
47629         fflush_unlocked, flockfile, funlockfile, funlockfile,
47630         fputs_unlocked, putc_unlocked.
47631
47632 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47633
47634         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47635         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
47636         already declared.
47637
47638 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47639
47640         * modules/getdate (Files): Add doc/getdate.texi.
47641         (Depends-on): Add setenv, xalloc.
47642
47643 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47644
47645         * lib/getdate.y: Add support for TZ="foo" within a date string.
47646         Fix some bugs near time_t boundaries.  Reject dates with
47647         out-of-range components, e.g., "Sept 31".
47648         Include <stdlib.h>, "setenv.h", "xalloc.h".
47649         (ISDIGIT_LOCALE): Remove; unused.
47650         Note that the TZ and time functions used here are not reentrant.
47651         (mktime_ok, get_tz): New functions.
47652         (TZBUFSIZE): New constant.
47653         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
47654         This requires that we sometimes generate our own TZ="XXX..." setting.
47655
47656 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47657
47658         * doc/getdate.texi: New file, from coreutils with modifications for
47659         the new TZ parsing.
47660
47661 2004-10-27  Derek R. Price  <derek@ximbiot.com>
47662
47663         * lib/mktime.c (not_equal_tm): Remove redundant check.
47664
47665 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47666
47667         * modules/regex (lib_SOURCES): Add regex.c.
47668         Reported by James Youngman in
47669         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
47670
47671 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47672
47673         * lib/getdate.y: Use Bison 1.875 features, and some minor
47674         code cleanups.  This change does not affect semantics.
47675         Don't include <stdlib.h>; no longer needed.
47676         Don't include unlocked-io.h; only the "#if TEST" code uses
47677         stdio, and performance isn't crucial there.
47678         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
47679         Bison 1.875 features as described below.
47680         All uses of "PC." replaced by "pc->".
47681         (YYSTYPE): Add a forward declaration.
47682         (yylex, yyerror): Use full prototypes in forward decls.
47683         Use "%pure-parser" rather than obsolescent "%pure_parser".
47684         Use %parse-param and %lex-param instead of obsolescent
47685         YYPARSE_PARAM and YYLEX_PARAM.
47686         (meridian_table, month_and_day_table, time_units_table,
47687         relative_time_table, time_zone_table, military_table,
47688         lookup_zone, lookup_word, get_date):
47689         Use NULL instead of 0 where appropriate.
47690         (to_hour): Avoid abort (), to avoid a dependency on
47691         stdlib.h.
47692         (yyerror, yylex): Now accepts parser_control * arg.
47693         (main) [TEST]: Use '\0' rather than 0 for char.
47694
47695 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
47696
47697         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
47698
47699 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
47700
47701         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
47702         It's now the caller's responsibility to handle the case where
47703         !HAVE_GETPAGESIZE && !defined getpagesize.
47704
47705         * lib/mktime.c (leapyear): Arg is long int, not int.
47706
47707 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
47708
47709         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
47710
47711 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
47712
47713         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
47714         missing.  Problem reported by James Youngman.
47715
47716 2004-10-16  Simon Josefsson  <jas@extundo.com>
47717
47718         * gnulib-tool: Fix comments.  Fix parse problem.
47719         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
47720
47721 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
47722
47723         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
47724         implementation of getopt_long.  Problem reported by Alexander Taler in:
47725         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
47726
47727 2004-10-15  Bruno Haible  <bruno@clisp.org>
47728
47729         * gnulib-tool: Untabify. Initialize supplied_libname.
47730         (func_usage): More homogenous output.
47731         (func_modules_transitive_closure, func_modules_to_filelist,
47732         func_emit_lib_Makefile_am): New functions.
47733         (func_import): New function, extracted from big case statement. Use
47734         func_get_license, func_modules_transitive_closure,
47735         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
47736         opt_lgpl. Don't use test -a, as it's not portable.
47737         (func_create_testdir): Use func_modules_transitive_closure,
47738         func_modules_to_filelist, func_emit_lib_Makefile_am.
47739
47740 2004-10-15  Bruno Haible  <bruno@clisp.org>
47741
47742         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
47743
47744 2004-10-15  Bruno Haible  <bruno@clisp.org>
47745
47746         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
47747         the portions belonging to each module.
47748         Suggested by Derek Robert Price <derek@ximbiot.com>.
47749
47750 2004-10-12  Simon Josefsson  <jas@extundo.com>
47751
47752         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47753         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
47754         to real functions.
47755
47756 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47757
47758         * modules/vsnprintf: New file.
47759
47760 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47761
47762         * m4/vsnprintf.m4: New file.
47763
47764 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47765
47766         * lib/vsnprintf.h: New file.
47767         * lib/vsnprintf.c: New file.
47768
47769 2004-10-11  Bruno Haible  <bruno@clisp.org>
47770
47771         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
47772         vsnprintf.
47773
47774 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
47775
47776         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
47777
47778 2004-10-07  Bruno Haible  <bruno@clisp.org>
47779
47780         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
47781         fits into the provided buffer.
47782
47783 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
47784
47785         * lib/diacrit.c, diacrit.h: Add GPL notice.
47786
47787         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
47788         notice.
47789         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
47790         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
47791         This avoids a potential constant-folding bug.
47792
47793 2004-10-05  Bruno Haible  <bruno@clisp.org>
47794
47795         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
47796         for the declaration of strsep.
47797
47798 2004-10-05  Bruno Haible  <bruno@clisp.org>
47799
47800         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
47801
47802 2004-10-04  Simon Josefsson  <jas@extundo.com>
47803
47804         * modules/memmem: New file.
47805         * tests/test-memmem.c: New file.
47806         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
47807
47808 2004-10-04  Simon Josefsson  <jas@extundo.com>
47809
47810         * m4/memmem.m4: New file.
47811
47812 2004-10-04  Simon Josefsson  <jas@extundo.com>
47813
47814         * lib/memmem.h: New file.
47815         * lib/memmem.c: New file, taken from glibc.
47816
47817 2004-10-04  Simon Josefsson  <jas@extundo.com>
47818
47819         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
47820         '#ifdef USE_UNLOCKED_IO'.
47821
47822 2004-10-04  Simon Josefsson  <jas@extundo.com>
47823
47824         * config/srclist.txt: Add memmem from glibc.
47825
47826 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47827
47828         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
47829
47830         * modules/argmatch, modules/argp, modules/closeout, modules/error,
47831         modules/exclude, modules/getdate, modules/getline,
47832         modules/getndelim2, modules/getpass, modules/getpass-gnu,
47833         modules/getusershell, modules/linebuffer, modules/md5,
47834         modules/mountlist, modules/posixtm, modules/readtokens,
47835         modules/readutmp, modules/regex, modules/sha1,
47836         modules/version-etc, modules/yesno:
47837         Remove dependency on unlocked-io.
47838
47839 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47840
47841         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
47842
47843         * m4/unlocked-io.m4: Add copyright notice.
47844         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
47845
47846 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47847
47848         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
47849         * lib/xmalloc.c (xmemdup): Likewise.
47850         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
47851         XFREE): Remove these long-obsolescent macros.
47852         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
47853         * lib/xstrdup.c: Remove.
47854
47855         * lib/regex.c (re_comp): Cast gettext return value to char *,
47856         Problem reported by Martin Neitzel via Mark D. Baushke.
47857
47858 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47859
47860         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
47861         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
47862         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
47863         regex.c, sha1.c, version-etc.c, yesno.c:
47864         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
47865         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
47866         the includer's responsibility.
47867
47868         Sync from coreutils.
47869
47870         * lib/modechange.c (mode_compile): Don't decrement a pointer that
47871         points to the start of a string, as the C Standard says the
47872         resulting behavior is undefined.
47873
47874         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
47875         simple -> simple_backups, numbered_existing ->
47876         numbered_existing_backups, numbered -> numbered_backups
47877         to avoid shadowing problems.  All uses changed.
47878         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
47879         * lib/backupfile.c (check_extension, numbered_backup):
47880         Rename locals to avoid shadowing 'basename'.
47881         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
47882         once.
47883
47884         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
47885         * lib/.cvsignore: Add getopt.h.
47886
47887 2004-10-04  Bruno Haible  <bruno@clisp.org>
47888
47889         * modules/README: New file.
47890         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
47891         not a module.
47892
47893 2004-10-02  Jim Meyering  <jim@meyering.net>
47894
47895         * lib/dirfd.h, getpagesize.h: Add copyright notice.
47896
47897 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47898
47899         * modules/strsep: New file.
47900
47901 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47902
47903         * m4/strsep.m4: New file.
47904
47905 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47906
47907         * lib/strsep.h: New file.
47908         * lib/strsep.c: New file.
47909
47910 2004-10-01  Simon Josefsson  <jas@extundo.com>
47911
47912         * lib/snprintf.c (snprintf): Handle size==0.
47913
47914 2004-10-01  Simon Josefsson  <jas@extundo.com>
47915             Bruno Haible  <bruno@clisp.org>
47916
47917         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
47918         (snprintf): Declare 'args'.
47919
47920 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
47921
47922         * lib/snprintf.c: Remove comments as to why each header is needed.
47923
47924 2004-10-01  Bruno Haible  <bruno@clisp.org>
47925
47926         * MODULES.html.sh: Add strsep.
47927
47928 2004-09-30  Simon Josefsson  <jas@extundo.com>
47929
47930         * modules/snprintf: New file.
47931
47932 2004-09-30  Simon Josefsson  <jas@extundo.com>
47933
47934         * m4/snprintf.m4: New file.
47935
47936 2004-09-30  Simon Josefsson  <jas@extundo.com>
47937
47938         * lib/snprintf.h, lib/snprintf.c: New files.
47939
47940 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47941
47942         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
47943         (hol_entry_help): Never translate an empty string.
47944         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
47945         * lib/argp.h (OPTION_NO_TRANS): New option.
47946
47947 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47948
47949         * modules/argp (Maintainer): Replace Simon Josefsson
47950         by Sergey Poznyakoff.
47951
47952 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47953
47954         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
47955         changes merged back into glibc.
47956
47957 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47958
47959         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
47960
47961 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
47962
47963         * lib/xvasprintf.c: Include xalloc.h.
47964         (xvasprintf): Use xalloc_die, not xmalloc_die.
47965
47966 2004-09-29  Bruno Haible  <bruno@clisp.org>
47967
47968         * modules/alloca-opt: New file, derived from modules/alloca.
47969         * modules/allocsa: Depend on alloca-opt instead of alloca.
47970         * modules/setenv: Likewise.
47971         * modules/vasnprintf: Likewise.
47972         * MODULES.html.sh: Add alloca-opt.
47973
47974 2004-09-28  Simon Josefsson  <jas@extundo.com>
47975
47976         * gnulib-tool: New parameter --lgpl, to asseert that modules are
47977         LGPL, and to replace license template from GPL to LGPL.
47978
47979 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
47980
47981         * modules/dummy: Change license to LGPL.
47982
47983 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
47984
47985         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
47986
47987 2004-09-24  Simon Josefsson  <jas@extundo.com>
47988
47989         * modules/minmax (License): Change from GPL to LGPL.
47990
47991 2004-09-23  Simon Josefsson  <jas@extundo.com>
47992
47993         * gnulib-tool (--import): Typo.
47994
47995 2004-09-23  Simon Josefsson  <jas@extundo.com>
47996
47997         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
47998
47999 2004-09-22  Bruno Haible  <bruno@clisp.org>
48000
48001         * modules/*: Add 'License' field.
48002         * gnulib-tool: Accept --extract-license option.
48003         (func_get_license): New function.
48004
48005 2004-09-21  Bruno Haible  <bruno@clisp.org>
48006
48007         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
48008         Reported by Simon Josefsson.
48009
48010 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48011
48012         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
48013         gl_AC_TYPE_LONG_LONG.
48014
48015 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48016
48017         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
48018
48019 2004-09-18  Simon Josefsson  <jas@extundo.com>
48020         and  Paul Eggert  <eggert@cs.ucla.edu>
48021
48022         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
48023         calls with autoreconf.  Define GL_LIB.
48024
48025 2004-09-14  Karl Berry  <karl@gnu.org>
48026
48027         * config/srclist.txt: unsync setenv.c, sigh.
48028
48029 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48030
48031         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
48032         Problem reported by Bruno Haible in:
48033         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
48034
48035 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48036
48037         * config/srclist.txt: Comment out argp-pvh.c.
48038
48039 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
48040
48041         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
48042         in case some system header has #define'd it.  Problem reported by
48043         Soeren D. Schulze in
48044         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
48045
48046 2004-09-09  Karl Berry  <karl@gnu.org>
48047
48048         * regex.[ch]: delete from the root.  These were supposed to be
48049                 synced with emacs cvs, but this has not happened for about
48050                 a year, and anyway nothing else uses emacs regex.[ch].
48051                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
48052                 lib/regex[.ch] is untouched.
48053
48054 2004-09-09  Bruno Haible  <bruno@clisp.org>
48055
48056         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
48057
48058 2004-09-09  Bruno Haible  <bruno@clisp.org>
48059
48060         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
48061         modifications.
48062         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
48063
48064 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48065
48066         * modules/xvasprintf: New file.
48067         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
48068
48069 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48070
48071         * lib/xvasprintf.h: New file.
48072         * lib/xvasprintf.c: New file.
48073         * lib/xasprintf.c: New file.
48074
48075 2004-09-08  Bruno Haible  <bruno@clisp.org>
48076
48077         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
48078
48079 2004-09-08  Bruno Haible  <bruno@clisp.org>
48080
48081         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
48082         length is > INT_MAX.
48083         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
48084         more.
48085
48086 2004-09-08  Bruno Haible  <bruno@clisp.org>
48087
48088         * lib/stdint_.h: New file, taken from GNU clisp.
48089
48090 2004-09-08  Bruno Haible  <bruno@clisp.org>
48091             Oskar Liljeblad  <oskar@osk.mine.nu>
48092
48093         * modules/stdint: New file.
48094         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
48095
48096 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48097
48098         Import from coreutils.
48099         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
48100         strings on unbounded length.  alloca's performance benefits aren't
48101         that important here.
48102         (V_STRDUP): Remove.
48103         (parse_with_separator): New function, with most of the internals
48104         of the old parse_user_spec.  Allow user to omit both user and group,
48105         for compatibility with FreeBSD.
48106         Clone only the user name, not the entire spec.
48107         Do not set *uid, *gid unless entirely successful.
48108         Avoid memory leak in some failing cases.
48109         Fix regression for USER.GROUP reported by Dmitry V. Levin in
48110         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
48111         (parse_user_spec): Rewrite to use parse_with_separator.
48112
48113 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48114
48115         * modules/userspec: Don't depend on alloca.
48116
48117 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48118
48119         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
48120
48121 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
48122
48123         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
48124         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
48125         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
48126
48127 2004-08-16  Simon Josefsson  <jas@extundo.com>
48128
48129         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
48130         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
48131         Add --dry-run for --import.
48132         Let user provided command line parameters override configure.ac
48133         settings.
48134
48135 2004-08-12  Simon Josefsson  <jas@extundo.com>
48136
48137         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
48138         as discussed with Paul Eggert in threads rooted at
48139         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
48140         and
48141         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
48142         Before, the test was empty, and relied on ELIDE_CODE in source
48143         code.)
48144         (gl_PREREQ_GETOPT): New macro.
48145         (gl_GETOPT): Use them.
48146
48147 2004-08-12  Simon Josefsson  <jas@extundo.com>
48148
48149         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
48150         * lib/getopt_.h: Renamed from getopt.h.
48151
48152 2004-08-12  Simon Josefsson  <jas@extundo.com>
48153
48154         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
48155         Change default library name from libfoo to libgnu.
48156         Now, if you have a configure.ac that says:
48157                 gl_SOURCE_BASE(gl)
48158                 gl_M4_BASE(gl/m4)
48159                 gl_MODULES(error getopt etcetera)
48160                 gl_INIT
48161         you can import all you need by running:
48162                 ../gnulib/gnulib-tool --import
48163
48164         * modules/getopt (Files): Rename getopt.h to getopt_.h.
48165         (Makefile.am): Rewrite, use logic from argz.
48166         (Include): Use <getopt.h> instead of "getopt.h".
48167
48168 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48169
48170         * modules/argp (Files): Add m4/unlocked-io.m4.
48171         (Depends-on): Add extensions.
48172
48173 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48174
48175         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
48176         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
48177         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
48178         Check for program_invocation_name, program_invocation_short_name,
48179         flockfile, funlockfile, features.h, _getopt_long_only_r.
48180
48181 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48182
48183         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
48184         its complicated substitute.
48185         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
48186         and program_invocation_name.
48187         (__argp_basename) [!_LIBC]: Remove; the only use was
48188         replaced by its body.
48189         (__argp_short_program_name): Change condition from
48190         !defined __argp_short_program_name to
48191         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
48192         to match argp-namefrob.h.
48193         (__argp_failure): Don't assume strerror_r returns char *.
48194         * lib/argp-parse.c (N_): Define unconditionally.
48195         (argp_default_options): Fill out initializers with 0 to avoid
48196         gcc warnings.
48197
48198 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48199
48200         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
48201         getopt1.c.
48202
48203 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48204
48205         Merge from coreutils.
48206
48207         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
48208
48209         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
48210         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
48211
48212 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48213
48214         Merge from coreutils.
48215
48216         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
48217         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
48218         for Reliant Unix 5.43.
48219
48220         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
48221         (union fooround): Use uintmax_t, not long int.
48222         The rest is a merge from libc:
48223         [defined _LIBC]: Include <shlib-compat.h>.
48224         (_obstack) [defined _LIBC]: Remove after 2.3.4.
48225
48226         * lib/settime.c (settime): Recode to avoid warning with
48227         Sun Forte C 6U2.
48228
48229         * lib/strverscmp.c: Convert to UTF-8.
48230
48231 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48232
48233         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
48234         m4/uintmax_t.m4.
48235
48236 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48237
48238         * modules/xalloc-die: New file.
48239         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
48240
48241         * modules/md5 (Files): Add m4/uint32_t.m4.
48242         * modules/sha1: Renamed from modules/sha.
48243         (Files):
48244         Rename lib/sha.h to lib/sha1.h.
48245         Rename lib/sha.c to lib/sha1.c.
48246         Rename m4/sha.m4 to m4/sha1.m4.
48247         (lib_SOURCES): Likewise.
48248         (configure.ac): Rename gl_SHA to gl_SHA1.
48249         (Include): sha.h -> sha1.h.
48250
48251 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48252
48253         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
48254         * m4/sha1.m4: Renamed from sha.m4.
48255         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
48256
48257 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48258
48259         * lib/obstack.h (obstack_empty_p):
48260         Don't assume that chunk->contents is suitably aligned.
48261         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
48262         Likewise. Problem reported by Benno in
48263         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
48264
48265         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
48266         readable.  This could be improved further but it'd take some work.
48267
48268 2004-08-08  Simon Josefsson  <jas@extundo.com>
48269
48270         * modules/xgethostname (Depends-on): Remove exit and error (not
48271         used).
48272
48273         * modules/getpass-gnu: Add getpass.h.
48274         (Depends-on): Add stdbool.
48275         * modules/getpass: Add getpass.h.
48276
48277 2004-08-08  Simon Josefsson  <jas@extundo.com>
48278
48279         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
48280         Check getpass declaration.
48281
48282 2004-08-08  Simon Josefsson  <jas@extundo.com>
48283
48284         * lib/xgethostname.c: Don't include error.h (not used).
48285
48286         * lib/getpass.h: Add.
48287         * lib/getpass.c: Include getpass.h first.
48288
48289 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
48290
48291         * lib/xalloc-die.c: New file.
48292         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
48293         All uses removed.
48294         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
48295         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
48296         xalloc-die.c.
48297         (_, N_, xalloc_die): Move to xalloc-die.c.
48298         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
48299         so that we needn't mess with xalloc_msg_memory_exhausted.
48300
48301         * lib/sha1.h: Renamed from sha.h.
48302         (SHA1_H): Renamed from _SHA_H.
48303         (sha1_ctx): Renamed from sha_ctx.
48304         (sha1_init_ctx): Renamed from sha_init_ctx.
48305         (sha1_process_block): Renamed from sha_process_block.
48306         (sha1_process_bytes): Renamed from sha_process_bytes.
48307         (sha1_finish_ctx): Renamed from sha_finish_ctx.
48308         (sha1_read_ctx): Renamed from sha_read_ctx.
48309         (sha1_stream): Renamed from sha_stream.
48310         (sha1_buffer): Renamed from sha_buffer.
48311         * lib/sha1.c: Likewise; renamed from sha.c.
48312         Do not include <sys/types.h>.
48313         Include <stddef.h> rather than <stdlib.h>.
48314
48315 2004-08-08  Bruno Haible  <bruno@clisp.org>
48316
48317         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
48318         FILESYSTEM_PREFIX_LEN.
48319         * lib/progreloc.c: Likewise.
48320         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
48321
48322 2004-08-06  Simon Josefsson  <jas@extundo.com>
48323
48324         * modules/progname (Depends-on): Don't depend on stdbool.
48325
48326 2004-08-06  Simon Josefsson  <jas@extundo.com>
48327
48328         * modules/getsubopt: New file.
48329         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
48330         getsubopt.
48331
48332 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48333
48334         More merge from coreutils.
48335
48336         * m4/utimens.m4, m4/utimecmp.m4: New files.
48337         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
48338         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
48339         prereq.m4, sha.m4: Import changes from coreutils.
48340
48341 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48342
48343         More merge from coreutils.
48344         * modules/raise, modules/readtokens0, modules/utimens:
48345         * modules/utimecmp, module/xnanosleep: New files.
48346         * modules/strftime: Add lib/strftime.h.
48347         Change include from <time.h> to "strftime.h".
48348         * modules/yesno: Add lib/yesno.h.
48349         * modules/backupfile: Remove lib/addext.c.
48350         * modules/euidaccess: Add stat-macros.h.
48351         * modules/canonicalize, modules/euidaccess,
48352         modules/filemode, modules/lchown, modules/makepath,
48353         modules/rmdir, modules/stat: Likewise.
48354
48355 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48356
48357         Merge from tar.
48358         * lib/argp-help.c (make_hol, hol_append): Don't assume that
48359         SIZE_MAX is a valid preprocessor constant.
48360         (__argp_basename): Change from "#ifndef _LIBC"
48361         to "#ifndef __argp_short_program_name", so that
48362         we don't compile these functions for tar.
48363
48364         More merges from coreutils.
48365         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
48366         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
48367         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
48368         * lib/addext.c: Remove; no longer needed.
48369         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
48370         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
48371         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
48372         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
48373         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
48374         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
48375         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
48376         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
48377         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
48378         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
48379         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
48380         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
48381         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
48382         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
48383         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
48384         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
48385         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
48386         Import changes from coreutils.
48387
48388 2004-08-05  Simon Josefsson  <jas@extundo.com>
48389
48390         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
48391
48392 2004-08-05  Simon Josefsson  <jas@extundo.com>
48393
48394         * m4/getsubopt.m4: New file.
48395
48396 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48397
48398         Merge from coreutils.
48399
48400         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
48401         * m4/getcwd-path-max.m4: New files.
48402
48403         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
48404         FILESYSTEM_PREFIX_LEN ->
48405         FILE_SYSTEM_PREFIX_LEN.
48406         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
48407         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
48408         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
48409         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
48410
48411         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
48412         prerequisite modules now handle the DOS stuff.
48413         Don't check for unistd.h.
48414
48415 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48416
48417         Merge from coreutils.
48418
48419         * lib/.gdb-history: Remove; this doesn't belong here.
48420
48421         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
48422         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
48423         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
48424         * lib/getcwd.c: New files.
48425
48426         * lib/dirname.h: Include <stdbool.h>.
48427         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
48428         for consistency with POSIX terminology.  All uses changed.
48429         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
48430         (strip_trailing_slashes): Use bool for booleans.
48431         * lib/stripslash.c (strip_trailing_slashes): Likewise.
48432
48433         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
48434         sometimes returns a positive errno value even when it succeeds.
48435         (print_errno_message) [!LIBC]: Fall back on strerror if
48436         __strerror_r fails.
48437
48438         * lib/path-concat.c (mempcpy): Don't define if a system header defines
48439         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
48440         (longest_relative_suffix): New function.
48441         (path_concat): Use it.  Assume first argument is not NULL.
48442         Port to DOS.  Omit redundant separators.
48443         Report an error instead of returning NULL.
48444         Use mempcpy instead of memcpy.
48445         (xpath_concat): Remove: not declared or used.
48446
48447         * lib/same.h: Include <stdbool.h>
48448         (same_name): Return bool, not int.
48449         * lib/same.c (same_name): Likewise.
48450         (errno): Don't declare; we assume C89 or better now.
48451
48452         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
48453         if not already defined.
48454
48455         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
48456         * lib/dup-safer.c (errno): Likewise.
48457
48458 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48459
48460         Merge from coreutils.
48461         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
48462         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
48463         * modules/path-concat: Don't depend on strdup.
48464
48465 2004-08-03  Simon Josefsson  <jas@extundo.com>
48466
48467         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
48468         * lib/progname.h: Don't include stdbool.h.
48469
48470 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48471
48472         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
48473         * MODULES.html.sh (func_all_modules): Remove fatal.
48474
48475 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48476
48477         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
48478
48479 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48480
48481         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
48482         working.
48483
48484 2004-08-02  Simon Josefsson  <jas@extundo.com>
48485
48486         * lib/getsubopt.h: New file, with comments from Bruno Haible.
48487         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
48488         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
48489
48490 2004-08-01  Simon Josefsson  <jas@extundo.com>
48491
48492         * lib/xgetdomainname.c: Include stdlib.h, for free().
48493
48494 2004-07-19  Bruno Haible  <bruno@clisp.org>
48495
48496         * MODULES.html.sh (func_all_modules): Add dummy.
48497
48498 2004-07-16  Simon Josefsson  <jas@extundo.com>
48499
48500         * modules/dummy: New file.
48501
48502 2004-07-16  Simon Josefsson  <jas@extundo.com>
48503
48504         * lib/dummy.c: New file.
48505
48506 2004-07-16  Bruno Haible  <bruno@clisp.org>
48507
48508         * lib/backupfile.h: Add extern "C" for C++.
48509         * lib/closeout.h: Likewise.
48510         * lib/copy-file.h: Likewise.
48511         * lib/findprog.h: Likewise.
48512         * lib/full-write.h: Likewise.
48513         * lib/pathname.h: Likewise.
48514         * lib/progname.h: Likewise.
48515         * lib/stpcpy.h: Likewise.
48516         * lib/stpncpy.h: Likewise.
48517         * lib/strcase.h: Likewise.
48518         * lib/strstr.h: Likewise.
48519         * lib/xalloc.h: Likewise.
48520
48521         * lib/mbswidth.h: Add extern "C" for C++.
48522         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
48523
48524 2004-07-13  Robert Millan  <robertmh@gnu.org>
48525
48526         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
48527
48528 2004-07-09  Simon Josefsson  <jas@extundo.com>
48529
48530         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
48531         failed without this.)
48532
48533 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48534
48535         * modules/chown (Files): Add lib/fchown-stub.c, since
48536         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
48537
48538 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48539
48540         * lib/fchown-stub.c: New file.
48541
48542 2004-06-24  Jim Meyering  <jim@meyering.net>
48543
48544         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
48545
48546 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48547
48548         * modules/argz: Omit "#include".
48549
48550         * MODULES.html.sh (func_all_modules): Add calloc, to match
48551         2004-06-01 addition of calloc module.
48552
48553 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48554
48555         * m4/argz.m4: New file, which is autoupdated from libtool.
48556
48557 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48558
48559         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
48560         libtool.
48561
48562 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48563
48564         * config/srclist-update: Don't insist on "USA." before the
48565         close-comment, as libtool omits the period and puts the */ on a
48566         separate line.
48567         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
48568         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
48569
48570 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
48571
48572         * modules/argz: New file.
48573         * MODULES.html.sh (func_all_modules): Add argz.
48574
48575 2004-06-12  Jim Meyering  <jim@meyering.net>
48576         and  Paul Eggert  <eggert@cs.ucla.edu>
48577
48578         * modules/hash (Files): Add lib/xalloc.h.
48579         * modules/pipe (Depends-on): Add wait-process.
48580         * modules/stat (Depends-on): Add xalloc.
48581         * modules/userspec (Files): Add lib/userspec.h.
48582         * modules/xstrto
48583
48584         Upgrade from gettext-0.13.
48585         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
48586         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
48587         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
48588
48589 2004-06-10  Jim Meyering  <jim@meyering.net>
48590
48591         * lib/calloc.c: New file.
48592
48593 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
48594
48595         * lib/getdate.y (yylex): Allow space between sign and number.
48596         Problem reported by Dan Jacobson.
48597
48598 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48599
48600         Merge from coreutils CVS.
48601
48602         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
48603         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
48604         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
48605         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
48606         xstrtol.m4: Fix copyright date and/or serial number.
48607
48608         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
48609         See if we need an fchown replacement.
48610         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
48611         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
48612         and use the replacement function if we detect either defect.
48613
48614         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
48615         gl_UTIMECMP.
48616
48617 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48618         and  Jim Meyering  <jim@meyering.net>
48619
48620         Merge from coreutils CVS.
48621
48622         * lib/stat-macros.h: New file, with contents from file-type.h
48623         and coreutils' system.h.
48624         * lib/file-type.c: Include "stat-macros.h".
48625         * lib/file-type.h (file_type): Move all macro definitions to new file,
48626         stat-macros.h.
48627
48628         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
48629         Wrap old code with this conditional.
48630         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
48631         function that does not dereference symlinks.
48632         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
48633
48634         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
48635         dependency problems.
48636         (xreadlink): Accept new arg SIZE, for efficiency.
48637         All decls and uses changed.
48638         * lib/xreadlink.h: Include <stddef.h>, for size_t.
48639
48640         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
48641         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
48642
48643         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
48644         sysexits.h.
48645
48646 2004-06-01  Jim Meyering  <jim@meyering.net>
48647
48648         * m4/calloc.m4: New file.
48649
48650 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
48651
48652         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
48653         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
48654         Also, fix a typo in a diagnostic.
48655
48656 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
48657
48658         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
48659         or AC_FUNC_REALLOC.
48660
48661 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
48662
48663         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
48664         macros to be defined.
48665         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
48666         the allocator returns NULL because the requested size is zero.
48667
48668 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
48669
48670         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
48671         var.  Add comment explaining why libc still defines it.  This
48672         merges the following patch from glibc:
48673         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
48674
48675 2004-05-20  Andreas Schwab  <schwab@suse.de>
48676
48677         * m4/free.m4: Replace free if it not known to work, not the other
48678         way round.
48679
48680 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
48681
48682         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
48683         present in glibc since revision 1.1 of this file.
48684         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
48685         obstack_alignment_mask, obstack_alloc, obstack_base,
48686         obstack_blank, obstack_blank_fast, obstack_chunk_size,
48687         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
48688         obstack_grow0, obstack_init, obstack_int_grow,
48689         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
48690         obstack_next_free, obstack_object_size, obstack_ptr_grow,
48691         obstack_ptr_grow_fast, obstack_room): Remove declarations of
48692         nonexistent functions.
48693
48694 2004-05-18  Karl Berry  <karl@gnu.org>
48695
48696         * config/srclist.txt: break link for vasnprintf.c.
48697
48698 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48699
48700         Port obstack to the AS/400, where pointers are 16 bytes wide and
48701         you cannot cast an integer to a valid pointer.  This patch is
48702         currently waiting to be integrated into glibc; see
48703         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
48704
48705         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
48706         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
48707         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
48708         (struct obstack): temp member is now a union of a pointer and
48709         an integer, instead of an integer.  All integer uses changed.
48710         This does not affect the physical layout of struct obstack,
48711         except on hosts (like the AS/400) where the size or alignment of
48712         void * is greater than that of ptrdiff_t.
48713         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
48714         __STDC__)]: Store temporary in pointer member of union, not
48715         integer member.
48716         * lib/obstack.c: Include <stddef.h>, for offsetof.
48717         (struct fooalign): Remove; it doesn't need a name.
48718         (union fooround): Change double to long double, and add void *.
48719         (DEFAULT_ALIGNMENT): Use offsetof to compute.
48720         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
48721         not a macro.  Hence the values are always int; so remove all
48722         casts-to-int in uses.
48723
48724 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48725
48726         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
48727         we can get this patch merged into glibc.
48728
48729 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48730             Paul Eggert  <eggert@cs.ucla.edu>
48731
48732         * m4/argp: Depend on alloca.
48733
48734 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48735             Paul Eggert  <eggert@cs.ucla.edu>
48736
48737         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
48738         freecoding.
48739
48740 2004-05-17  Bruno Haible  <bruno@clisp.org>
48741
48742         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
48743         precision that consists of a '.' followed by an empty digit string.
48744         Patch by Tor Lillqvist <tml@iki.fi>.
48745
48746 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48747
48748         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
48749         for backward compatibility with older code.  We need our own
48750         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
48751         it under some other name, and our alloca.h will define it.
48752
48753 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48754             Derek Price  <derek@ximbiot.com>
48755
48756         * lib/alloca.c: Include <alloca.h>, to get our interface.
48757         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
48758         include <alloca.h> first.  Use C89 prototype for alloca; this
48759         requires including <stddef.h> for size_t.  Use extern "C" if C++.
48760         Use #elif for simplicity, since we can assume C89 now.
48761         Don't try to source the system alloca.h since it will not be found
48762         and to prevent recursively including its replacement.
48763         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
48764         * lib/regex.c: Likewise.
48765
48766 2004-05-16  Derek Price  <derek@ximbiot.com>
48767             Paul Eggert  <eggert@cs.ucla.edu>
48768
48769         getline cleanup.  This changes the getndelim2 API: both order of
48770         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
48771         no delimiter).
48772
48773         * lib/getline.c: Don't include stddef.h or stdio.h, since our
48774         interface does that.
48775         (getline): Always use getdelim, so that we don't have two
48776         copies of this code.
48777         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
48778         if available.
48779         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
48780         (GETNDELIM2_MAXIMUM): New macro.
48781         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
48782         instead of the old practice of delim2==0.  All callers changed.
48783         Return -1 on overflow, instead of returning junk.
48784         Do not set *linesize unless allocation succeeds.
48785         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
48786         that we include sys/types.h.
48787         * lib/getnline.h: Likewise.
48788         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
48789         (getndelim2): Reorder arguments.
48790         * lib/getnline.c (getnline, getndelim):
48791         Don't discard the NMAX argument.
48792         (getnline): Invoke getndelim, to avoid code duplication.
48793         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
48794         of (size_t) -1 by callers of the getnline family.
48795
48796 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48797
48798         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
48799         Check for gettimeofday.
48800         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
48801         Check for settimeofday, stime.
48802
48803 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48804
48805         * lib/nanosleep.c (suspended): Change its type from int to
48806         sig_atomic_t volatile.
48807         (first_call): Make it private to rpl_nanosleep, and have it
48808         be zero initially as that's a bit faster.
48809         (my_usleep): Round up fractional times instead of truncating them,
48810         as this is the usual meaning for 'sleep'.
48811
48812         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
48813         doesn't work.
48814         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
48815         (ENOSYS): Define if not defined.
48816         (settime): Fall back on stime if it exists and settimeofday fails.
48817         But don't bother with fallbacks if a method fails with errno == EPERM.
48818
48819 2004-05-11  Jim Meyering  <jim@meyering.net>
48820
48821         Prior to this change, the save_cwd caller required read access to the
48822         current directory on most systems (ones with the fchdir function).
48823
48824         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
48825         fails, try write-only, and finally, resort to using xgetcwd.
48826
48827 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
48828
48829         * lib/obstack.c, obstack.h: Import changes from libc.
48830
48831 2004-04-28  Bruno Haible  <bruno@clisp.org>
48832
48833         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
48834         also implicitly appends .exe to executables.
48835         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
48836         accepts Windows pathnames.
48837         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48838         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48839         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48840         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48841         Reported by Derek Robert Price <derek@ximbiot.com>.
48842
48843 2004-04-21  Karl Berry  <karl@gnu.org>
48844
48845         * config/srclist.txt (localcharset.c): break sync.
48846
48847 2004-04-20  Paul Eggert  <eggert@twinsun.com>
48848
48849         * m4/host-os.m4: Add a copyright notice.
48850
48851 2004-04-20  Jim Meyering  <jim@meyering.net>
48852
48853         Change UTILS_ to gl_ in AC_DEFINE'd names.
48854         Change utils_- and jm_-prefixed variables, too.
48855         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
48856         UTILS_FUNC_MKDIR_TRAILING_SLASH.
48857         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
48858
48859         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
48860         Don't emit trailing blanks.
48861         Also rename jm_-prefixed variables to have gl_ prefix.
48862
48863         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
48864         Also rename jm_-prefixed variables to have gl_ prefix.
48865
48866         * m4/jm-macros.m4: Reflect the renamings.
48867         * m4/prereq.m4: Likewise.
48868
48869 2004-04-20  Jim Meyering  <jim@meyering.net>
48870
48871         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
48872         memory.
48873
48874 2004-04-20  Jim Meyering  <jim@meyering.net>
48875             Bruno Haible  <bruno@clisp.org>
48876
48877         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
48878         memory when realloc fails.
48879
48880 2004-04-19  Jim Meyering  <jim@meyering.net>
48881
48882         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
48883         now that readutmp.c may call `free (0)'.
48884
48885 2004-04-19  Bruno Haible  <bruno@clisp.org>
48886
48887         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
48888         * m4/inttypes_h.m4: Likewise.
48889         * m4/stdint_h.m4: Likewise.
48890         * m4/intmax_t.m4: Likewise.
48891         * m4/uintmax_t.m4: Likewise.
48892
48893 2004-04-18  Jim Meyering  <jim@meyering.net>
48894
48895         * m4/prereq.m4: Don't forbid jm_ prefix.
48896
48897         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
48898         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
48899         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
48900         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
48901         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
48902         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
48903         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
48904         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
48905         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
48906         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
48907         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
48908         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
48909         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
48910         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
48911         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
48912         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
48913         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
48914         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
48915         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
48916
48917 2004-04-18  Jim Meyering  <jim@meyering.net>
48918
48919         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
48920         failure, don't leak memory and do call END_UTMP_ENT.
48921
48922 2004-04-16  Jim Meyering  <jim@meyering.net>
48923
48924         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
48925         coreutils' stat program.
48926         (gl_PREREQ): Don't require jm_PREREQ_STAT.
48927
48928 2004-04-11  Paul Eggert  <eggert@twinsun.com>
48929
48930         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
48931         C89.
48932         (CHAR_BIT): Remove, since we assume C89.
48933         Include <stdint.h> if available, as per current Autoconf CVS advice.
48934
48935 2004-03-31  Jim Meyering  <jim@meyering.net>
48936
48937         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
48938         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
48939         * m4/xalloc.m4: Likewise.
48940
48941 2004-03-30  Paul Eggert  <eggert@twinsun.com>
48942
48943         Merge from coreutils.
48944
48945         * m4/inttostr.m4: New file.
48946         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
48947         Require AM_STDBOOL_H and gl_TIMESPEC instead.
48948         Require gl_CLOCK_TIME.
48949         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
48950
48951 2004-03-30  Paul Eggert  <eggert@twinsun.com>
48952
48953         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
48954         not bool, to be more consistent with Unix conventions.
48955         Suggested by Bruno Haible.
48956
48957         Merge from coreutils.
48958
48959         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
48960         * lib/umaxtostr.c: New files.
48961
48962         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
48963         the usual <time.h> dance.
48964         (get_date): Change signature to support fractional time stamps.
48965         All callers changed.
48966         * lib/getdate.y: Include "getdate.h" first, as we can now
48967         assume C89 and don't need to worry about 'const'.
48968         Similarly, include "unlocked-io.h" near start, not in middle.
48969         Include <limits.h>.
48970         (textint.value): Use long int rather than int.
48971         (textint.digits): Use size_t rather than int.
48972         (BILLION, LOG10_BILLION): New constants.
48973         (parser_control): New member rel_ns.  Members day_ordinal,
48974         time_zone, month, day, hour, minutes, rel_year, rel_month,
48975         rel_day, rel_hour, rel_minutes, rel_seconds
48976         are now long int, not int.  Member seconds is now struct timespec,
48977         not int.  New member timespec_seen.  Members dates_seen, days_seen,
48978         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
48979         not int.
48980         (%union.intval): Now long int, not int.
48981         New member timespec.
48982         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
48983         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
48984         (spec): Now is a timespec or an item list.
48985         (timespec, items): New nonterminals.
48986         (time, rel, relunit, number, get_date):
48987         Add support for fractional seconds.
48988         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
48989         (gmtime, localtime, mktime): Remove decls; not needed with C89.
48990         (to_hour): First arg is now long int, not int.
48991         (to_year): Returns long int, not int.
48992         Don't treat year -70 like 70.
48993         (tm_diff): Returns long int, not int.
48994         (lookup_word): Use bool instead of int when appropriate.
48995         (yylex): Use size_t for count, not int.
48996         Detect overflow when parsing large integer constants.
48997         Add support for fractions.
48998         (get_date): Make pointers 'const' if possible.
48999         Use more-portable code to detect integer overflow.
49000         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
49001         Don't use ctime; it's not reliable if the year has >4 digits.
49002
49003         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
49004         This is for compatibility with BSD.
49005
49006         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
49007         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
49008         From coreutils' system.h.
49009
49010         * lib/userspec.c: Don't include "posixver.h".
49011         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
49012         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
49013         compatible extension.  Simplify code by removing a boolean int
49014         that was always nonzero if a string was nonnull.
49015
49016 2004-03-30  Jim Meyering  <jim@meyering.net>
49017
49018         Merge from coreutils.
49019
49020         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
49021         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
49022         on some systems one must include <grp.h> before it.
49023         Reported by Christian Krackowizer.
49024
49025 2004-03-30  Jim Meyering  <jim@meyering.net>
49026
49027         Merge from coreutils.
49028
49029         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
49030
49031         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
49032         an empty input stream.
49033
49034         * lib/readtokens.c: Include <stdbool.h>.
49035         (readtoken): Use `size_t' rather than int/long.
49036         All callers adjusted.
49037         Use `bool' rather than `int' where appropriate.
49038         Use memset rather than an explicit loop.
49039         Use x2nrealloc rather than xrealloc.
49040         Allow the use of `\0' as a delimiter.
49041         (readtokens): Likewise.
49042         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
49043
49044 2004-03-30  Jim Meyering  <jim@meyering.net>
49045
49046         * m4/realloc.m4: Remove file, since now it does no more than
49047         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
49048         the `configure.ac' section of module/realloc.
49049         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
49050
49051 2004-03-30  Bruno Haible  <bruno@clisp.org>
49052
49053         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
49054         nonnull.
49055
49056 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49057
49058         Merge changes to getloadavg.c from coreutils and Emacs.
49059
49060         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
49061         Define to an expression, not to the empty string.
49062         Include cloexec.h and xalloc.h.
49063         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
49064         Use set_cloexec_flag rather than rolling our own.
49065         * lib/cloexec.c, lib/cloexec.h: New files.
49066
49067 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49068
49069         * m4/cloexec.m4: New file.
49070
49071 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49072
49073         * lib/getopt.h: Sync with libc CVS.
49074
49075 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49076             Bruno Haible  <bruno@clisp.org>
49077
49078         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
49079         mbswidth.
49080
49081 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49082             Bruno Haible  <bruno@clisp.org>
49083
49084         * lib/mbswidth.h: Include <wchar.h> only if
49085         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
49086         <wchar.h>.
49087         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
49088
49089 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49090
49091         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
49092         Sync with libc CVS.
49093         * lib/getopt_int.h: New file, also synced from libc.
49094
49095 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49096
49097         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
49098         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
49099         Bring back getopt.c, getopt.h, getopt1.c.
49100
49101 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49102
49103         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
49104         All uses changed.  Check for sa_sigaction member; this fixes
49105         a bug first reported by Jason Andrade in
49106         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49107
49108 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49109
49110         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
49111         '#if' expressions.  Unlike the code it replaces, it does not
49112         depend on (defined _SC_PAGESIZE).  However, it does depend on
49113         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
49114         first reported by Jason Andrade in
49115         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49116
49117 2004-02-25  Simon Josefsson  <jas@extundo.com>
49118
49119         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
49120
49121 2004-02-25  Simon Josefsson  <jas@extundo.com>
49122
49123         * lib/strdup.h: New file.
49124         * lib/strdup.c: Include it.
49125         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
49126         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
49127
49128 2004-02-23  Karl Berry  <karl@gnu.org>
49129
49130         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
49131         (from fencepost.gnu.org:/gd/gnuorg).
49132
49133 2004-02-23  Karl Berry  <karl@gnu.org>
49134
49135         * config/srclistvars.sh (GNUORG) [karl]: redefine.
49136         * config/srclist.txt: add maintain/standards documents.
49137
49138 2004-02-18  Bruno Haible  <bruno@clisp.org>
49139
49140         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
49141         Reported by Derek Robert Price <derek@ximbiot.com>.
49142
49143 2004-02-16  Karl Berry  <karl@gnu.org>
49144
49145         * config/mkinstalldirs, install-sh: update from automake.
49146
49147 2004-02-06  Karl Berry  <karl@gnu.org>
49148
49149         * m4/po.m4: update from gettext 0.14.1.
49150
49151 2004-02-06  Karl Berry  <karl@gnu.org>
49152
49153         * lib/config.charset: update from gettext 0.14.1.
49154
49155 2004-02-05  Paul Eggert  <eggert@twinsun.com>
49156
49157         Add comments and code, prompted by suggestions from Bruno Haible
49158         for sh-quote.
49159         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
49160         describing the enum quoting_style values.
49161         * lib/quotearg.c (quotearg_alloc): New function.
49162         (quotearg_buffer_restyled): Treat lone { and } as special.
49163         Treat = as special.  Work around bug with older shells
49164         that "see" a '\' that is really the 2nd byte of a multibyte char.
49165         Quote empty string with shell_quoting_style.
49166
49167 2004-02-03  Bruno Haible  <bruno@clisp.org>
49168
49169         * m4/pipe.m4: New file, from GNU gettext.
49170
49171 2004-02-03  Bruno Haible  <bruno@clisp.org>
49172
49173         * lib/pipe.h: New file, from GNU gettext.
49174         * lib/pipe.c: New file, from GNU gettext.
49175
49176 2004-01-27  Bruno Haible  <bruno@clisp.org>
49177
49178         * m4/execute.m4: New file, from GNU gettext.
49179
49180 2004-01-27  Bruno Haible  <bruno@clisp.org>
49181
49182         * lib/execute.h: New file, from GNU gettext.
49183         * lib/execute.c: New file, from GNU gettext.
49184         * lib/w32spawn.h: New file, from GNU gettext.
49185
49186 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49187
49188         Merge from diffutils.
49189
49190         * lib/file-type.c (file_type): Add typed memory objects.
49191         * lib/file-type.h (S_TYPEISTMO): New macro.
49192
49193         * lib/c-stack.h (c_stack_action): Remove argv argument.
49194         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
49195         (die): Don't calculate message unless segv_action returns.
49196         (get_stack_location, min_address_from_argv, max_address_from_argv,
49197         volatile stack_base, volatile_stack_size): Remove.
49198         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
49199         that every segmentation violation is a stack overflow.  (Ouch!)
49200         See Debian bug 136249 (still outstanding) for more info about why
49201         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
49202
49203 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49204
49205         Exit-status fix from coreutils.
49206
49207         Use exit_failure consistently in place of EXIT_FAILURE,
49208         so that program exit statuses are consistent on failure.
49209
49210         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
49211         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
49212         * lib/argmatch.h: Comment fix to match the above.
49213         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
49214         Now a macro referring to exit_failure, instead of a separate
49215         variable.  Include "exitfail.h" to get it.
49216         * lib/xstrtol.h: Include "exitfail.h".
49217         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
49218
49219         * lib/long-options.c (parse_long_options): Use prototype
49220         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
49221         for clarity.
49222
49223 2004-01-21  Jim Meyering  <jim@meyering.net>
49224
49225         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
49226         so as not to conflict with a different-sized __mktime_internal
49227         function in GNU libc.
49228         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
49229         Problem building statically-linked `ls' reported by Michael Brunnbauer.
49230
49231 2004-01-20  Karl Berry  <karl@gnu.org>
49232
49233         * config/config.guess: update from config.
49234
49235         * config/srclistvars.sh: GNUWWWLICENSES for karl.
49236
49237 2004-01-20  Bruno Haible  <bruno@clisp.org>
49238
49239         Safer stack allocation.
49240         * lib/setenv.c: Include allocsa.h.
49241         (alloca): Remove fallback definition.
49242         (freea): Remove macro.
49243         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
49244         instead of freea.
49245
49246 2004-01-20  Bruno Haible  <bruno@clisp.org>
49247
49248         * m4/eealloc.m4: New file, from GNU gettext.
49249
49250 2004-01-20  Bruno Haible  <bruno@clisp.org>
49251
49252         * m4/allocsa.m4: New file, from GNU gettext.
49253
49254 2004-01-20  Bruno Haible  <bruno@clisp.org>
49255
49256         * lib/xallocsa.h: New file, from GNU gettext.
49257         * lib/xallocsa.c: New file, from GNU gettext.
49258
49259 2004-01-20  Bruno Haible  <bruno@clisp.org>
49260
49261         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
49262
49263 2004-01-20  Bruno Haible  <bruno@clisp.org>
49264
49265         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
49266         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
49267         specially.
49268
49269 2004-01-20  Bruno Haible  <bruno@clisp.org>
49270
49271         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
49272         patch.
49273
49274 2004-01-20  Bruno Haible  <bruno@clisp.org>
49275
49276         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
49277
49278 2004-01-20  Bruno Haible  <bruno@clisp.org>
49279
49280         * lib/eealloc.h: New file.
49281
49282 2004-01-20  Bruno Haible  <bruno@clisp.org>
49283
49284         * lib/binary-io.h: Avoid warnings on Cygwin.
49285
49286 2004-01-20  Bruno Haible  <bruno@clisp.org>
49287
49288         * lib/allocsa.h: New file, from GNU gettext.
49289         * lib/allocsa.c: New file, from GNU gettext.
49290
49291 2004-01-18  Karl Berry  <karl@gnu.org>
49292
49293         * doc/gpl.texi, doc/lgpl.texi: new files.
49294
49295 2004-01-18  Karl Berry  <karl@gnu.org>
49296
49297         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
49298         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
49299
49300 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49301
49302         Merge from coreutils.
49303
49304         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
49305         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
49306         (gl_DEFAULT_POSIX2_VERSION): Move
49307         the documentation from 'configure' into 'config.hin',
49308         so that 'configure --help' isn't burdened by it and
49309         we don't have to worry about its formatting there.
49310         Reword the documentation so that it's more succinct
49311         and can be run together into a single paragraph.
49312         * m4/same.m4 (gl_SAME): Check for pathconf.
49313
49314 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49315
49316         Merge from coreutils.
49317
49318         * lib/posixver.c: Include posixver.h.
49319
49320         * lib/same.c: Include <stdbool.h>, <limits.h>.
49321         (_POSIX_NAME_MAX): Define if not defined.
49322         (MIN): New macro.
49323         (same_name): If file names are silently truncated, report
49324         that the file names are the same if they are the same after
49325         the silent truncation.
49326
49327         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
49328         conversion function.
49329         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
49330         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
49331         longer needed.
49332
49333 2004-01-15  Jim Meyering  <jim@meyering.net>
49334
49335         Merge from coreutils.
49336
49337         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
49338         if no library is required.
49339         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
49340         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
49341         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
49342         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
49343         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
49344         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
49345         value, $ac_cv_search_crypt, if it's "none required".
49346         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
49347         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
49348         not gl_FUNC_GETLOADAVG.
49349         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
49350         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
49351
49352 2004-01-15  Jim Meyering  <jim@meyering.net>
49353
49354         Merge from coreutils.
49355
49356         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
49357         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
49358         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
49359
49360         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
49361         optional configure-time default.
49362
49363         * lib/version-etc.c (version_etc_copyright): Update copyright date.
49364
49365         * lib/xreadlink.c (xreadlink): Correct outdated comment.
49366
49367 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
49368
49369         Merge from coreutils.
49370
49371         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
49372         value, $ac_cv_search_nanosleep, if it's "none required".
49373
49374 2004-01-14  Paul Eggert  <eggert@twinsun.com>
49375
49376         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
49377         with like-named macro in fnmatch.c.
49378         (EXT): Use an internal constant instead.
49379
49380         Merge fnmatch patches from glibc.
49381         * lib/fnmatch.c (mbsinit): Remove define.
49382         Add libc_hidden_ver (__fnmatch, fnmatch).
49383         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
49384         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
49385
49386 2004-01-14  Karl Berry  <karl@gnu.org>
49387
49388         * config/install-sh: update from automake.
49389
49390 2004-01-13  Karl Berry  <karl@gnu.org>
49391
49392         * config/install-sh: update from automake.
49393
49394 2004-01-09  Karl Berry  <karl@gnu.org>
49395
49396         * config/install-sh: update from automake.
49397
49398 2004-01-05  Karl Berry  <karl@gnu.org>
49399
49400         * config/config.{sub,guess}: update from config.
49401
49402 2003-12-31  Karl Berry  <karl@gnu.org>
49403
49404         * config/depcomp: update from automake.
49405
49406 2003-12-14  Karl Berry  <karl@gnu.org>
49407
49408         * lib/config.charset: update from gettext-runtime.
49409
49410 2003-12-03  Paul Eggert  <eggert@twinsun.com>
49411
49412         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
49413         Bug reported by Alfred M. Szmidt.
49414
49415 2003-12-03  Bruno Haible  <bruno@clisp.org>
49416
49417         * m4/gettext.m4: Upgrade from gettext-0.13.
49418         * m4/po.m4: Upgrade from gettext-0.13.
49419         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
49420         * m4/intmax.m4: New file, from gettext-0.13.
49421         * m4/printf-posix.m4: New file, from gettext-0.13.
49422
49423 2003-11-29  Karl Berry  <karl@gnu.org>
49424
49425         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
49426
49427 2003-11-25  Paul Eggert  <eggert@twinsun.com>
49428             Bruno Haible  <bruno@clisp.org>
49429
49430         * lib/printf-parse.h: Don't include sys/types.h.
49431         (ARG_NONE): New macro.
49432         (char_directive): Change type of *arg_index fields to size_t.
49433         * lib/printf-parse.c: Don't include sys/types.h.
49434         (SSIZE_MAX): Remove macro.
49435         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
49436         Remove unnecessary overflow check.
49437         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
49438         fields.
49439
49440 2003-11-25  Bruno Haible  <bruno@clisp.org>
49441
49442         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
49443
49444 2003-11-25  Bruno Haible  <bruno@clisp.org>
49445
49446         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
49447         gt_TYPE_SSIZE_T.
49448
49449 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49450
49451         * modules/alloca: Remove dependency on xalloc.
49452
49453 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49454
49455         * lib/alloca.c: Remove dependency on xalloc module.
49456         (xalloc_die): Remove.
49457         (memory_full) [!defined emacs]: New macro.
49458         [!defined emacs]: Don't include xalloc.h.
49459         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
49460         address arithmetic overflows.  Change datatypes a bit to avoid
49461         unnecessary casts.
49462
49463 2003-11-22  Jim Meyering  <jim@meyering.net>
49464
49465         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
49466         s/size/size_t/.
49467
49468 2003-11-21  Karl Berry  <karl@gnu.org>
49469
49470         * config/config.{sub,guess}: update from config.
49471
49472 2003-11-18  Karl Berry  <karl@gnu.org>
49473
49474         * config/config.{sub,guess}: update from config.
49475
49476         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
49477
49478 2003-11-17  Paul Eggert  <eggert@twinsun.com>
49479
49480         * README: Mention that S+T cannot overflow if S is the size of
49481         an existing object and T is sufficiently small.
49482
49483 2003-11-17  Jim Meyering  <jim@meyering.net>
49484
49485         On systems without utime and without a utimes function capable of
49486         dealing with a NULL struct utimbuf* argument, this utime replacement
49487         could -- in unusual circumstances -- leak a file descriptor.
49488         * lib/utime.c: Include <unistd.h> and <errno.h>.
49489         (utime_null): Be sure to close `fd' and to preserve errno.
49490         Reported by Geoff Collyer via Arnold Robbins.
49491
49492 2003-11-17  Bruno Haible  <bruno@clisp.org>
49493
49494         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
49495         (Depends-on): Add xsize.
49496
49497 2003-11-17  Bruno Haible  <bruno@clisp.org>
49498
49499         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
49500
49501 2003-11-17  Bruno Haible  <bruno@clisp.org>
49502
49503         * lib/vasnprintf.c (alloca): Remove fallback definition.
49504         (freea): Remove definition.
49505         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
49506         Reported by Paul Eggert.
49507
49508 2003-11-16  Paul Eggert  <eggert@twinsun.com>
49509             Bruno Haible  <bruno@clisp.org>
49510
49511         Protect against address arithmetic overflow.
49512         * lib/printf-args.h: Include stddef.h.
49513         (arguments): Change type of field 'count' to size_t.
49514         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
49515         'unsigned int' where appropriate.
49516         * lib/printf-parse.h: Include sys/types.h.
49517         (char_directive): Change type of *arg_index fields to ssize_t.
49518         (char_directives): Change type of fields 'count', max_*_length to
49519         size_t.
49520         * lib/printf-parse.c: Include sys/types.h and xsize.h.
49521         (SSIZE_MAX): Define fallback value.
49522         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
49523         instead of 'int' where appropriate. Check a_allocated, d_allocated
49524         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
49525         * lib/vasnprintf.c: Include xsize.h.
49526         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
49527         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
49528         overflow. Avoid wraparound when converting a width or precision from
49529         decimal to binary.
49530
49531 2003-11-16  Bruno Haible  <bruno@clisp.org>
49532
49533         Update from GNU gettext.
49534         * lib/printf-parse.c: Generalize to it can be compiled for wide
49535         strings.
49536         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
49537         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
49538         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
49539         SNPRINTF): New macros.
49540         Don't include <alloca.h> if the file is used inside libintl.
49541         (local_wcslen): New function, for Solaris 2.5.1.
49542         (VASNPRINTF): Use it instead of wcslen.
49543
49544 2003-11-16  Bruno Haible  <bruno@clisp.org>
49545
49546         * lib/xsize.h (xmax): New function.
49547         (xsum, xsum3, xsum4): Declare as "pure" functions.
49548
49549 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49550
49551         * modules/xalloc (Files): Undo latest change, since xalloc.h
49552         no longer needs SIZE_MAX or PTRDIFF_MAX.
49553
49554 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49555
49556         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
49557         gl_PTRDIFF_MAX.
49558
49559 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49560
49561         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
49562         "return", to pacify some unknown compiler.  Problem reported
49563         by Joerg Schilling.
49564
49565 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49566
49567         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
49568         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
49569         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
49570         heuristic is just as accurate as far as we know, and it removes a
49571         dependency on size_max.m4 and ptrdiff_max.m4.
49572
49573 2003-11-11  Bruno Haible  <bruno@clisp.org>
49574
49575         * modules/xsize (Files): Add m4/size_max.m4.
49576         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
49577
49578 2003-11-11  Bruno Haible  <bruno@clisp.org>
49579
49580         * m4/size_max.m4: New file.
49581         * m4/ptrdiff_max.m4: New file.
49582         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
49583         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
49584         (gl_XALLOC): Invoke it.
49585
49586 2003-11-11  Bruno Haible  <bruno@clisp.org>
49587
49588         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
49589         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
49590         defined.
49591
49592 2003-11-10  Paul Eggert  <eggert@twinsun.com>
49593
49594         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
49595         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
49596         rejected some allocations of exactly SIZE_MAX - 2 bytes.
49597         From Bruno Haible.
49598         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
49599         not (size_t) -1, since it's defined here.
49600
49601 2003-11-09  Karl Berry  <karl@gnu.org>
49602
49603         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
49604
49605 2003-11-06  Paul Eggert  <eggert@twinsun.com>
49606
49607         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
49608         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
49609         Reject sizes of exactly SIZE_MAX bytes.
49610         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
49611         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
49612
49613 2003-11-05  Bruno Haible  <bruno@clisp.org>
49614
49615         * lib/xsize.h: Include limits.h, to avoid a possible collision with
49616         SIZE_MAX defined in <limits.h> on Solaris.
49617
49618 2003-11-04  Jim Meyering  <jim@meyering.net>
49619
49620         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
49621         variable names, rather than @VAR@.
49622         * modules/poll: Likewise.
49623
49624 2003-11-04  Bruno Haible  <bruno@clisp.org>
49625
49626         * modules/xsize: New file.
49627         * modules/linebreak: Depend on xsize.
49628         * MODULES.html.sh (func_all_modules): Add xsize.
49629
49630 2003-11-04  Bruno Haible  <bruno@clisp.org>
49631
49632         * m4/xsize.m4: New file.
49633
49634 2003-11-04  Bruno Haible  <bruno@clisp.org>
49635
49636         * lib/xsize.h: New file.
49637         * lib/linebreak.c: Include xsize.h.
49638         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
49639         argument for overflow.
49640         Suggested by Paul Eggert.
49641
49642 2003-11-03  Karl Berry  <karl@gnu.org>
49643
49644         * config/config.{guess,sub}: update from config.
49645
49646 2003-11-03  Jim Meyering  <jim@meyering.net>
49647
49648         * modules/userspec (lib_SOURCES): Add userspec.h.
49649         (Include): Add "userspec.h".
49650         Improve description.
49651
49652 2003-11-03  Jim Meyering  <jim@meyering.net>
49653
49654         * lib/userspec.c: Include "userspec.h".
49655         * lib/userspec.h: New file.
49656
49657 2003-11-03  Bruno Haible  <bruno@clisp.org>
49658
49659         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
49660
49661 2003-11-03  Bruno Haible  <bruno@clisp.org>
49662
49663         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
49664         available, to avoid (extremely rare) race condition.
49665         Suggested by Paul Eggert.
49666
49667 2003-11-02  Karl Berry  <karl@gnu.org>
49668
49669         * config/srclist.txt (vasprintf.c): sync broken, sigh.
49670
49671 2003-10-31  Paul Eggert  <eggert@twinsun.com>
49672
49673         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
49674         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
49675         (read_filesystem_list): Set and use me_type_malloced.
49676         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
49677         whatever the type happens to be), for brevity and consistency.
49678         Check for size calculation overflow on Alphas running OSF/1.
49679
49680 2003-10-31  Jim Meyering  <jim@meyering.net>
49681
49682         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
49683
49684         * lib/linebuffer.c: Include <string.h> for declaration of memset.
49685
49686 2003-10-30  Paul Eggert  <eggert@twinsun.com>
49687             Bruno Haible  <bruno@clisp.org>
49688
49689         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
49690         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
49691
49692 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49693
49694         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
49695         netbsd*-gnu*.  Suggested by Robert Millan.
49696
49697 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49698
49699         * modules/group-member: Depend on stdbool.
49700
49701 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49702
49703         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
49704
49705 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49706
49707         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
49708         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
49709         after the 'gnu' in these cases.  This fixes some bugs in the
49710         previous change, and is based on suggestions by Robert Millan.
49711
49712 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49713
49714         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
49715         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
49716         no longer needed.
49717         * lib/quotearg.c (quotearg_n_options): Use it.
49718         * lib/group-member.c: Include <stdbool.h>.
49719         (free_group_info): Arg is now const *; don't free arg.
49720         (get_group_info): Now returns bool and accepts struct group_info *,
49721         rather than returning a malloc'ed struct group_info *.
49722         All uses changed.  Check for overflow in internal size calculation.
49723
49724         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
49725         rather than xmalloc/xrealloc.
49726         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
49727         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
49728         conformance bug: the old code used a pointer after freeing the
49729         storage that it addressed.
49730         * lib/hash.c (hash_initialize): Simplify the code by using
49731         xalloc_oversized rather than doing it by hand.
49732         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
49733         the buffer preserved.  Use free and xmalloc instead.
49734         * lib/quotearg.c (quotearg_n_options): Likewise.
49735         Use a simpler test for size overflow.  Don't use xalloc_oversized
49736         because unsigned int might be wider than size_t (!); this suggests
49737         that we should switch from unsigned int to size_t for slot numbers.
49738
49739 2003-10-28  Paul Eggert  <eggert@twinsun.com>
49740
49741         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
49742         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
49743         NetBSD kernels.  Requested by Richard Stallman.
49744
49745 2003-10-27  Paul Eggert  <eggert@twinsun.com>
49746
49747         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
49748         to allocate the returned structure.  Do not allocate a subarray,
49749         as x2nrealloc will do that.
49750         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
49751         instead of xnrealloc.
49752         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
49753
49754 2003-10-27  Bruno Haible  <bruno@clisp.org>
49755
49756         * lib/stdbool_.h: Better support for BeOS.
49757
49758 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49759
49760         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
49761         now uses inline.
49762
49763 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49764
49765         * lib/xalloc.h (xalloc_oversized): New static inline function, for
49766         callers that want to do their own size-overflow checking.  Include
49767         <stdbool.h>, since xalloc_oversized returns bool.
49768         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
49769         to use xalloc_oversized.
49770
49771         Add two functions x2realloc, x2nrealloc, for programs that grow
49772         arrays dynamically by doubling their sizes.
49773         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
49774         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
49775         New functions.
49776
49777         Port to C99 semantics for 'inline' of external functions.
49778         Bug reported by Bruno Haible.
49779         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
49780         with the old contents of xnmalloc.
49781         (xnmalloc, xmalloc): Use it.
49782         (xnrealloc_inline): New static inline function,
49783         with the old contents of xnrealloc.
49784         (xnrealloc, xrealloc): Use it.
49785
49786         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
49787         that.
49788
49789 2003-10-26  Karl Berry  <karl@gnu.org>
49790
49791         * config/srclist.txt (COPYING.DOC): no longer available from
49792         /gd/gnuorg; don't know where the ultimate source is.
49793
49794 2003-10-25  Paul Eggert  <eggert@twinsun.com>
49795
49796         Fix several address-calculation bugs in the hash modules,
49797         plus some minor code cleanup.
49798
49799         * lib/hash.h: Include <stdbool.h>, for bool.
49800         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
49801         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
49802         hash_get_n_entries, hash_get_max_bucket_length,
49803         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
49804         hash_rehash): Use size_t rather than unsigned.
49805         * lib/hash.c (struct hash_table, hash_get_n_buckets,
49806         hash_get_n_buckets_used, hash_get_n_entries,
49807         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
49808         hash_get_entries, hash_do_for_each, hash_string, is_prime,
49809         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
49810         Likewise.
49811         (SIZE_MAX): Define if not defined.
49812         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
49813         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
49814         hash_print):
49815         Use const * when possible.
49816         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
49817         (check_tuning): Fix bug: if tuning parameters were very close to
49818         0 or 1, rounding errors could have caused subscript violations.
49819         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
49820         (hash_initialize): Add 'fail:' label
49821         to free table and return NULL, and use it to simplify code.
49822         Use calloc rather than clearing the storage ourself.
49823         (hash_initialize, hash_rehash): Check for arithmetic overflow in
49824         buffer size calculations.
49825         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
49826         Include <stddef.h>, for size_t.
49827         * lib/hash-pjw.c (hash_pjw): Likewise.
49828         Switch to method described by Bruno Haible.
49829         Include <limits.h>, for CHAR_BIT.
49830         (SIZE_BITS): New macro.
49831
49832 2003-10-23  Paul Eggert  <eggert@twinsun.com>
49833
49834         * m4/getline.m4 (AM_FUNC_GETLINE):
49835         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
49836         hosts.  Problem reported by Derek Robert Price in
49837         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
49838         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
49839         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
49840
49841 2003-10-21  Paul Eggert  <eggert@twinsun.com>
49842
49843         * lib/getndelim2.c (getndelim2): When size calculation overflows,
49844         ceiling the allocation at NMAX bytes rather than silently
49845         discarding input bytes before NMAX is reached.  This makes
49846         a difference only if NMAX exceeds SIZE_MAX / 2.
49847
49848         * lib/obstack.c: Merge from glibc.
49849         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
49850         Add libc_hidden_def (_obstack_newchunk).
49851         (_obstack_free) [! defined _LIBC]: Remove.
49852         [defined _LIBC]: Make a strong alias from obstack_free, rather than
49853         a clone of the function body.
49854         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
49855         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
49856
49857         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
49858         glibc.
49859         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
49860         arg to memcpy.
49861
49862         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
49863         (obstack_ptr_grow_fast, obstack_int_grow_fast):
49864         Don't use lvalue casts, as GCC plans to remove support for them
49865         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
49866         was also present in the non-GCC version, indicating that this
49867         code had always been buggy and had never been widely used.
49868         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
49869         Use the fast variant of each macro, rather than copying the
49870         definiens of the fast variant; that way, we'll be more likely to
49871         catch future bugs in the fast variants.
49872
49873 2003-10-20  Bruno Haible  <bruno@clisp.org>
49874
49875         * modules/wait-process: New file.
49876         * MODULES.html.sh (func_all_modules): Add wait-process.
49877
49878 2003-10-20  Bruno Haible  <bruno@clisp.org>
49879
49880         * m4/wait-process.m4: New file.
49881
49882 2003-10-20  Bruno Haible  <bruno@clisp.org>
49883
49884         * lib/wait-process.h: New file, from GNU gettext.
49885         * lib/wait-process.c: New file, from GNU gettext.
49886
49887 2003-10-19  Jim Meyering  <jim@meyering.net>
49888
49889         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
49890         HPUX 10.20.
49891
49892 2003-10-18  Karl Berry  <karl@gnu.org>
49893
49894         * config/config.guess: update from config.
49895
49896 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49897
49898         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
49899         (getgroups): First arg is int, not size_t.
49900         Don't let 'free' mangle errno.
49901
49902 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49903
49904         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
49905
49906 2003-10-16  Karl Berry  <karl@gnu.org>
49907
49908         * config/config.{guess,sub}: update from config.
49909
49910 2003-10-16  Jim Meyering  <jim@meyering.net>
49911
49912         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
49913         memcpy.
49914
49915 2003-10-15  Paul Eggert  <eggert@twinsun.com>
49916
49917         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
49918         (SIZE_MAX): Remove.
49919         (new_exclude, add_exclude_file): Initial size no longer needs to
49920         be a power of 2.
49921         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
49922         our own address arithmetic overflow checking.
49923
49924         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
49925         (fnmatch): Do not alloca more than 2000 wide characters;
49926         instead, use malloc for large buffers.
49927         Check for address arithmetic overflow, and return -1
49928         with errno set to ENOMEM in that case.
49929         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
49930         (NEW_PATTERN): Do not alloca more than 8000 bytes;
49931         instead, return -1.  Check for address arithmetic overflow.
49932
49933 2003-10-14  Paul Eggert  <eggert@twinsun.com>
49934
49935         Handle invalid suffixes and overflow independently, so that
49936         callers can treat them independently as needed.  Fix some bugs in
49937         suffix handling, e.g., "100k@" was not diagnosed as an invalid
49938         suffix for a human-readable blocksize.  The major caller-visible
49939         change is the addition of a new
49940         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
49941         that both overflow and suffix chars were found.
49942
49943         * lib/human.c (humblock): Don't check separately for invalid suffix
49944         char; that is xstrtoumax's job (now that its bug is fixed).
49945         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
49946         INTMAX_MAX]: New macros.
49947         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
49948         TYPE_MAXIMUM): New macros.
49949         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
49950         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
49951         if overflow occurs, as it's what __strtol does and it's more useful
49952         in practice.
49953         (__xstrtol): If __strtol reports some error other than ERANGE,
49954         reflect it to the caller as LONGINT_INVALID.  If it reports
49955         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
49956         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
49957         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
49958         value.
49959         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
49960         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
49961         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
49962         [defined UINTMAX_MAX]: New macros.
49963
49964 2003-10-14  Bruno Haible  <bruno@clisp.org>
49965
49966         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
49967
49968 2003-10-14  Bruno Haible  <bruno@clisp.org>
49969
49970         * m4/sig_atomic_t: New file, from GNU gettext.
49971         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
49972
49973 2003-10-14  Bruno Haible  <bruno@clisp.org>
49974
49975         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
49976         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
49977         Also use volatile where needed.
49978
49979 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49980
49981         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
49982         Change maintainer from Bruno Haible to 'all'.
49983
49984 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49985
49986         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
49987
49988 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49989
49990         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
49991         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
49992         and define in terms of the other primitives.
49993         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
49994         (SIZE_MAX): Define if not already defined.
49995         (array_size_overflow): New function.
49996         (xalloc_die): Abort instead of exiting if 'error' returns.
49997         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
49998         (xmalloc, xrealloc): Use them.
49999         (xcalloc): Check for address arithmetic overflow.
50000         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
50001         a bit faster than strcpy.
50002
50003 2003-10-10  Simon Josefsson  <jas@extundo.com>
50004
50005         * modules/argp (Depends-on): Add restrict and strcase.
50006
50007 2003-10-10  Simon Josefsson  <jas@extundo.com>
50008
50009         * m4/argp.m4: Add AC_C_INLINE.
50010
50011 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50012
50013         Merge getpass from libc, plus a few fixes.
50014
50015         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
50016         Include <stdbool.h>.
50017         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
50018         __fsetlocking to empty.
50019         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
50020         do include <bits/libc-lock.h>.
50021         Do not include <fcntl.h>; not needed.
50022         [_LIBC]: Include <wchar.h>.
50023         (NOTCANCEL_MODE): New macro.
50024         (flockfile, funlockfile) [_LIBC]: New macros.
50025         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
50026         [!_LIBC]: New macros.
50027         (call_fclose): New function.
50028         (getpass): Use it.  Save tty stream separately; this simplifies the
50029         code and makes it more reliable if stdin happens to equal stdout.
50030         Invoke __fsetlocking on tty.
50031         Handle thread cancellation if needed.
50032         Namespace cleanup (use __tcgetattr, __getline).
50033         Use bool for Booleans.
50034         [USE_IN_LIBIO]: Handle wide streams.
50035         [!_LIBC]: Unconditionally do the fseek, since we don't know what
50036         stream might go where.
50037
50038         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
50039         doesn't have to include <stdio.h> before us.
50040         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
50041         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
50042         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
50043         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
50044         if not declared, so that we can use getpass.c code from libc without
50045         rewriting it.
50046         (flockfile, ftrylockfile, funlockfile): New macros.
50047
50048 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50049
50050         * modules/getpass: Depend on stdbool.
50051
50052 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50053
50054         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
50055
50056 2003-10-07  Karl Berry  <karl@gnu.org>
50057
50058         * config/config.{guess,sub}: update from config.
50059
50060 2003-10-06  Jim Meyering  <jim@meyering.net>
50061             Bruno Haible  <bruno@clisp.org>
50062
50063         This lets translators provide better translations for the
50064         "Written by ..." part of --version output.
50065         * lib/version-etc.h: Include stdarg.h.
50066         (version_etc_copyright): Declare as readonly.
50067         (version_etc): Make this function variadic with a NULL-terminated list
50068         of author name strings.
50069         (version_etc_va): New declaration.
50070         * lib/version-etc.c: Include stdarg.h, stdlib.h.
50071         (version_etc_copyright): Declare as readonly.
50072         (version_etc_va): New function. Provide a different translatable string
50073         for each possible number of authors < 10. Abbreviate when there are 10
50074         authors or more.
50075         (version_etc): Make this function variadic. Call version_etc_va.
50076         Suggestion from Gary V. Vaughan.
50077
50078         * lib/long-options.h (parse_long_options): Change prototype: the
50079         authors string is moved to the end and becomes variadic.
50080         * lib/long-options.c: Include stdarg.h.
50081         (parse_long_options): Make this function variadic, too.
50082         Call version_etc_va, not version_etc.
50083
50084 2003-10-06  Bruno Haible  <bruno@clisp.org>
50085
50086         * modules/version-etc-2: Remove file.
50087         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
50088
50089 2003-10-06  Bruno Haible  <bruno@clisp.org>
50090
50091         * modules/fatal-signal: New file.
50092         * MODULES.html.sh (func_all_modules): Add fatal-signal.
50093
50094 2003-10-06  Bruno Haible  <bruno@clisp.org>
50095
50096         * m4/fatal-signal.m4: New file.
50097         * m4/signalblocking.m4: New file, from GNU gettext.
50098
50099 2003-10-06  Bruno Haible  <bruno@clisp.org>
50100
50101         * lib/version-etc-2.h: Remove file.
50102         * lib/version-etc-2.c: Remove file.
50103
50104 2003-10-06  Bruno Haible  <bruno@clisp.org>
50105
50106         * lib/fatal-signal.h: New file, from GNU gettext.
50107         * lib/fatal-signal.c: New file, from GNU gettext.
50108
50109 2003-10-05  Paul Eggert  <eggert@twinsun.com>
50110
50111         * README: Rework advice for preventing empty .o files.
50112         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
50113         not <sys/types.h>.
50114
50115 2003-10-04  Karl Berry  <karl@gnu.org>
50116
50117         * lib/argp*: update from libc.
50118
50119 2003-10-04  Karl Berry  <karl@gnu.org>
50120
50121         * config/config.{guess,sub}: update from config.
50122
50123 2003-10-02  Bruno Haible  <bruno@clisp.org>
50124
50125         * modules/lchown (Include): Add lchown.h.
50126         * modules/time_r (Include): Use "..." syntax.
50127         * modules/xgetdomainname (Include): Add xgetdomainname.h.
50128
50129 2003-10-01  Simon Josefsson  <jas@extundo.com>
50130
50131         * MODULES.html.sh (func_all_modules): Move gethostname from section
50132         'based on' to section 'lacking' POSIX:2001.
50133
50134 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
50135
50136         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
50137         to output mode on the same stream.
50138
50139 2003-09-29  Paul Eggert  <eggert@twinsun.com>
50140
50141         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
50142         Fix arg typo in previous patch.
50143
50144 2003-09-28  Jim Meyering  <jim@meyering.net>
50145
50146         * lib/error.c: Correct cpp indentation.
50147
50148 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50149
50150         * modules/free: New file.
50151
50152 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50153
50154         * m4/free.m4: New file.
50155
50156 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50157
50158         * lib/minmax.h (MIN, MAX)
50159         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
50160         Omit the special code that used __typeof__, since we worry that
50161         it could be more trouble than it's worth.  See:
50162         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
50163         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
50164
50165         * lib/free.c: New file.
50166
50167 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
50168
50169         Trivial fixes to Makefile.am parts of module listings.
50170         * modules/strstr: Append strstr.h to lib_SOURCES.
50171         * modules/strcase: Likewise, for strcase.h.
50172
50173 2003-09-27  Karl Berry  <karl@gnu.org>
50174
50175         * config/mkinstalldirs: update from automake.
50176
50177 2003-09-26  Paul Eggert  <eggert@twinsun.com>
50178
50179         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
50180         (error_tail): Do not loop, reallocating temporary buffer, since
50181         the output cannot contain more wide characters than the input
50182         contains bytes, the size must be big enough already.  This avoids
50183         one potential size overflow calculation.  Check for size overflow
50184         when calculating temporary buffer size.  Free temporary buffer
50185         when done, if it was allocated with malloc; this plugs a memory
50186         leak.  Remove casts from void * to pointers, that are no longer
50187         needed now that we're assuming C89 or better.
50188
50189         Merge error changes from glibc.
50190
50191         * lib/error.c, error.h: Update copyright notice header to match glibc.
50192         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
50193         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
50194         Disable cancellation while printing error.
50195         * lib/error.h: Prepend __ to parameter names.
50196
50197 2003-09-26  Jim Meyering  <jim@meyering.net>
50198
50199         * lib/error.c (error_tail): Move some declarations
50200         into inner scope where the local variables are used.
50201
50202 2003-09-26  Bruno Haible  <bruno@clisp.org>
50203
50204         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
50205         stpncpy().
50206         Don't define stpncpy through config.h; it's now done through stpncpy.h.
50207
50208 2003-09-26  Bruno Haible  <bruno@clisp.org>
50209
50210         * lib/stpncpy.h (gnu_stpncpy): New declaration.
50211         (stpncpy): Define as alias for gnu_stpncpy.
50212         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
50213
50214 2003-09-25  Simon Josefsson  <jas@extundo.com>
50215
50216         * lib/xgetdomainname.h: New file.
50217         * lib/xgetdomainname.c: New file.
50218
50219 2003-09-25  Simon Josefsson  <jas@extundo.com>
50220             Bruno Haible  <bruno@clisp.org>
50221
50222         * modules/getdomainname: New file.
50223         * modules/xgetdomainname: New file.
50224         * MODULES.html.sh (func_all_modules): Add getdomainname,
50225         xgetdomainname.
50226
50227 2003-09-25  Simon Josefsson  <jas@extundo.com>
50228             Bruno Haible  <bruno@clisp.org>
50229
50230         * m4/getdomainname.m4: New file.
50231
50232 2003-09-25  Simon Josefsson  <jas@extundo.com>
50233             Bruno Haible  <bruno@clisp.org>
50234
50235         * lib/getdomainname.h: New file.
50236         * lib/getdomainname.c: New file.
50237
50238 2003-09-25  Karl Berry  <karl@gnu.org>
50239
50240         * lib/argp-fmtstream.c, argp-help.c: update from libc.
50241
50242 2003-09-25  Karl Berry  <karl@gnu.org>
50243
50244         * config/install-sh: update from automake.
50245
50246 2003-09-25  Bruno Haible  <bruno@clisp.org>
50247
50248         * modules/version-etc-2: New file, from modules/version-etc with
50249         modifications.
50250         * MODULES.html.sh (func_all_modules): Add version-etc-2.
50251
50252 2003-09-25  Bruno Haible  <bruno@clisp.org>
50253
50254         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
50255         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
50256
50257 2003-09-24  Simon Josefsson  <jas@extundo.com>
50258
50259         * modules/xgethostname: Add xgethostname.h.
50260
50261 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50262
50263         * lib/linebuffer.c (freebuffer): Don't free the argument, just
50264         the buffer associated with the argument.  Bug reported by
50265         Simon Josefsson.
50266
50267 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50268
50269         * README: Document assumptions that 'int' is at least 32 bits
50270         wide, that integer arithmetic is 2's complement without overflow,
50271         that there are no holes in integer values, that adding sizes of
50272         two nonoverlapping objects can't overflow, and that all-bits-zero
50273         yields scalar zero.  Fix spelling and capitalization typos.
50274
50275 2003-09-19  Karl Berry  <karl@gnu.org>
50276
50277         * lib/argp.h: update from libc.
50278
50279 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50280
50281         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
50282         to avoid spurious warnings like "AC_RUN_IFELSE was called before
50283         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
50284
50285 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50286
50287         * gnulib-tool: Use "test -h", not "test -L", for portability
50288         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
50289         (tags_regexp): Remove, since \| doesn't conform to POSIX.
50290         (sed_extract_prog): Issue s commands one-by-one, rather than
50291         using \| in one s command.
50292
50293 2003-09-16  Paul Eggert  <eggert@twinsun.com>
50294
50295         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
50296         input error, instead of returning NULL the next time we are called
50297         (and therefore losing track of errno).
50298
50299 2003-09-16  Bruno Haible  <bruno@clisp.org>
50300
50301         * gnulib-tool (func_create_testdir): Warn about duplicated
50302         dependencies.
50303
50304 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50305
50306         * modules/argmatch, modules/fatal, modules/obstack,
50307         modules/xalloc, modules/xgethostname: Sort dependencies by
50308         importance, not alphabetically.
50309
50310 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50311
50312         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
50313         fails, so that the caller gets the proper errno.
50314
50315         * lib/readutmp.c (read_utmp): Likewise.
50316         Check for fstat error.  Close stream and free storage
50317         when failing.
50318
50319 2003-09-14  Karl Berry  <karl@gnu.org>
50320
50321         * config/srclist.txt (strdup.c): disable for c89 changes.
50322
50323 2003-09-14  Jim Meyering  <jim@meyering.net>
50324
50325         * lib/getloadavg.c: Correct cpp indentation.
50326         * lib/strdup.c: Likewise.
50327         * lib/vasnprintf.c: Likewise.
50328
50329 2003-09-14  Bruno Haible  <bruno@clisp.org>
50330
50331         * modules/fwriteerror: New file.
50332         * MODULES.html.sh (func_all_modules): Add fwriteerror.
50333
50334 2003-09-14  Bruno Haible  <bruno@clisp.org>
50335
50336         * lib/fwriteerror.h: New file.
50337         * lib/fwriteerror.c: New file.
50338
50339 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50340
50341         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
50342         modules/xgethostname, modules/xalloc: Depend on exit.
50343
50344 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50345
50346         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
50347
50348         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
50349         and AC_MINIX, too, so that their extensions are available.
50350
50351         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
50352         This macro has been superseded by gl_BACKUPFILE.
50353
50354         More patches to assume C89 or better.
50355
50356         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
50357
50358         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
50359         unconditionally.
50360         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
50361         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
50362         Include <string.h>, <stdlib.h> unconditionally.
50363         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
50364         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
50365         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
50366         headers or for string.h.
50367         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
50368         or strtoul.
50369
50370         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
50371         headers.
50372         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
50373         * m4/userspec.m4 (gl_USERSPEC): Likewise.
50374         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
50375         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
50376         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
50377         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
50378         memcpy, memset.
50379         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
50380         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
50381         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
50382         strtol.
50383         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
50384         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
50385         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
50386         strtoul.
50387
50388 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50389
50390         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
50391         * lib/obstack.c [!defined _LIBC]: Likewise.
50392         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
50393         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
50394         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
50395
50396         More changes to assume C89 or better.
50397
50398         * lib/error.c (error_tail): Assume vprintf.
50399
50400         * lib/argmatch.c (getenv): Remove decl.
50401         * lib/progreloc.c (get_full_program_name): Define via prototype.
50402         * lib/setenv.c (clearenv): Likewise.
50403         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
50404         needed.
50405         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
50406         (malloc, memcpy): Remove decls.
50407         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
50408         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
50409         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50410         (memcpy): Remove macro.
50411         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
50412         (__P): Remove.  All uses removed.
50413         (PTR): Remove.  All uses changed to void *.
50414         (CHAR_BIT, NULL): Remove.
50415         (spaces, zeros, memset_space, memset_zero)
50416         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
50417         Remove.
50418         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
50419         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
50420         Define with prototype.
50421         Remove now-unnecessary prototype decl.
50422         (extra_args_spec): Assume ANSI C.  All uses changed.
50423         (extra_args_spec_iso): Remove.
50424         (my_strftime, emacs_strftimeu): Define via prototype.
50425         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
50426         unconditionally.
50427         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
50428         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
50429         (strtoul, strtol): Remove decls.
50430         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
50431         LONG_MAX): Remove.
50432         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50433         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
50434         (LOCALE_PARAM_PROTO): New macro.
50435         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
50436         (INTERNAL (strtol), strtol): Define with a prototype.
50437         (PARAMS): Remove.  All uses removed.
50438         * lib/tempname.c: Include <string.h> unconditionally.
50439         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
50440         * lib/xgethostname.c (main): Define with a prototype.
50441         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
50442         Include <stdlib.h> unconditionally.
50443         (calloc, malloc, realloc, free): Remove decls.
50444         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
50445         Include <stdlib.h> unconditionally.  Sort include file names.
50446         (strtod): Remove.
50447         (xstrtod): Define with a prototype.
50448         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
50449         (strtol, strtoul): Remove decls.
50450
50451 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50452
50453         More patches to assume C89 or better.
50454         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
50455         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
50456         string.h, memchr, STDC_HEADERS.
50457
50458 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50459
50460         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
50461         Include <stdlib.h>, <string.h> unconditionally.
50462         Remove now-unnecessary cast to char *.
50463         * lib/strnlen.c: Include <string.h> unconditionally.
50464         * lib/yesno.c (yesno): Define with a prototype.
50465
50466 2003-09-11  Bruno Haible  <bruno@clisp.org>
50467
50468         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
50469
50470 2003-09-10  Jim Meyering  <jim@meyering.net>
50471
50472         * lib/error.c: Correct indentation of cpp directives.
50473
50474 2003-09-10  Bruno Haible  <bruno@clisp.org>
50475
50476         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
50477         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
50478         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
50479         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
50480         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
50481         <stdlib.h> and <string.h> checks.
50482         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
50483         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
50484
50485 2003-09-10  Bruno Haible  <bruno@clisp.org>
50486
50487         * lib/strcspn.c: Include <string.h> unconditionally.
50488         * lib/strpbrk.c: Include <string.h> unconditionally.
50489         * lib/strstr.c: Include <string.h> unconditionally.
50490         * lib/unicodeio.c: Include <string.h> unconditionally.
50491         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
50492         * lib/unsetenv.c: Likewise.
50493         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
50494         * lib/yesno.c: Include <stdlib.h> unconditionally.
50495         (rpmatch): Add prototype.
50496
50497 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50498
50499         More patches to assume C89 or better.
50500         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
50501         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
50502         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
50503         or for string.h.
50504         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
50505         stdlib.h.
50506         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
50507         C headers.
50508         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
50509         string.h.
50510         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
50511         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
50512         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
50513         or for string.h.
50514         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
50515         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
50516         C headers.
50517         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
50518         memcpy.
50519         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
50520         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
50521         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
50522         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
50523         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
50524         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
50525         string.h, free.
50526         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
50527         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
50528         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
50529         C headers, or for string.h.
50530         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
50531         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
50532         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
50533         headers, memory.h, stdlib.h, string.h, strings.h.
50534         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
50535         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
50536         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
50537         strchr.
50538         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
50539         headers, memory.h, string.h.
50540         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
50541         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
50542         free.
50543         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
50544         headers.
50545         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
50546         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
50547         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
50548         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
50549         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
50550
50551 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50552
50553         More K&R removal.
50554
50555         * lib/acosl.c (main): Use a prototype.
50556         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
50557         tanl.c: Likewise.
50558
50559         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
50560
50561         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
50562         (getopt, etopt_long, getopt_long_only, _getopt_internal)
50563         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
50564         with a prototype.
50565         * lib/getopt.c (const): Remove macro.
50566         Include <string.h> unconditionally.
50567         (my_index): Remove; all uses changed to strchr.
50568         (strlen): Remove decl.
50569         (exchange): Remove forward decl; no longer needed.
50570         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
50571         Define with prototype.
50572         * lib/getopt1.c (const): Remove macro.
50573         (getopt_long, getopt_long_only, main): Define with prototype.
50574
50575         * lib/getugroups.c: Include <string.h> unconditionally.
50576
50577         * lib/getusershell.c: Include <stdlib.h> unconditionally.
50578         (getusershell, setusershell, endusershell, readname, main):
50579         Define with prototypes.
50580
50581         * lib/group-member.c: Include group-member.h first.
50582         Include <stdlib.h> unconditionally.
50583
50584         * lib/hard-locale.c: Include hard-locale.h first.
50585         Include <stdlib.h>, <string.h> unconditionally.
50586
50587         * lib/hash.c (free, malloc): Remove decls.
50588         Include <stdlib.h> unconditionally.
50589
50590         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
50591         (getenv): Do not declare.
50592
50593         * lib/idcache.c: Include <string.h> unconditionally.
50594
50595         * lib/long-options.c: Include long-options.h first, to test interface.
50596         Include <stdlib.h> unconditionally.
50597
50598         * lib/makepath.c: Include makepath.h first, to test interface.
50599         Include <stdlib.h> and <string.h> unconditionally.
50600
50601         * lib/linebuffer.c: Include <stdlib.h>.
50602         (free): Remove decl.
50603
50604         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
50605         stddef.h. rpl_malloc returns void *, not char *.
50606         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
50607         prototype.
50608
50609         * lib/md5.h: Include <limits.h> unconditionally.
50610         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
50611         (__P): Remove; all uses removed.
50612         * lib/md5.c: Include "md5.h" first.
50613         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
50614         md5_buffer, md5_process_bytes, md5_process_block):
50615         Define with prototypes.
50616         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
50617         * lib/sha.c: Include "sha.h" first.
50618         Include <stdlib.h>, <string.h> unconditionally.
50619
50620         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
50621         * lib/memcmp.c (__ptr_t): Likewise.
50622         * lib/memrchr.c (__ptr_t): Likewise.
50623         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
50624         Include <string.h> unconditionally.
50625         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
50626         * lib/memchr.c: Include <stdlib.h> unconditionally.
50627         * lib/memchr.c (LONG_MAX): Remove.
50628         * lib/memrchr.c (LONG_MAX): Likewise.
50629         * lib/memchr.c (__memchr): Define via a prototype.
50630         * lib/memrchr.c (__memrchr): Likewise.
50631         * lib/memcmp.c (__P): Remove, and remove all uses.
50632         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
50633         Remove forward decls; no longer needed.
50634         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
50635         Use types required by C89 in prototype.
50636
50637         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
50638         * lib/savedir.c: Likewise.
50639         * lib/mkdir.c (free): Remove decl.
50640         * lib/rmdir.c (rmdir): Define with a prototype.
50641         * lib/savedir.c: Include savedir.h first, to test interface.
50642
50643         * lib/mktime.c (STDC_HEADERS): Remove.
50644         Include <stdlib.h>, <string.h> unconditionally.
50645
50646         * lib/modechange.c: Include <stdlib.h> unconditionally.
50647         (malloc): Remove decl.
50648
50649         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
50650         (free): Remove decl.
50651
50652         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
50653         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
50654         (This type really should be intptr_t, but that's a C99ism.)
50655         (_obstack_memcpy): Remove: all uses changed to memcpy.
50656         Include <string.h> unconditionally.
50657         (struct obstack): Assume __STDC__ for types of members
50658         chunkfun, freefun, extra_arg.
50659         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
50660         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
50661         obstack_begin, obstack_specify_allocation,
50662         obstack_specify_allocation_with_arg, obstack_chunkfun,
50663         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
50664         Remove unprototyped decls and the macros that use them.
50665         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
50666         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
50667         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
50668         (defined __STDC__ && __STDC__)]:
50669         Remove nonprototyped code.
50670         Include <stdlib.h> unconditionally.
50671         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
50672         _obstack_allocated_p, _obstack_free, obstack_free,
50673         _obstack_memory_used, print_and_abort):
50674         Define using prototypes.
50675         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
50676         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
50677         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
50678         obstack_next_free, obstack_object_size, obstack_room) [0]:
50679         Remove unused, unprototyped code.
50680
50681         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
50682
50683         * lib/physmem.c (physmem_total, physmem_available, main): Define
50684         with prototypes.
50685
50686         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
50687         (main): Define with a prototype.
50688
50689         * lib/posixver.c (getenv): Remove decl.
50690
50691         * lib/putenv.c (malloc): Returns void *, not char *.
50692         Include <string.h> unconditionally.
50693         (strchr, memcpy, NULL): Do not define.
50694
50695         * lib/readtokens.c: Include readtokens.h first, to test interface.
50696         Include <stdlib.h>, <string.h> unconditionally.
50697         (init_tokenbuffer): Define with a prototype.
50698
50699         * lib/regex.c (PARAMS): Remove.  All uses removed.
50700         All uses of _RE_ARGS removed, too.
50701         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
50702         unconditionally.
50703         (bzero): Assume memset exists.
50704         (memcmp, memcpy, NULL): Remove.
50705         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
50706         char, or assignments to local vars of type signed char.
50707         (init_syntax_once, PREFIX(extract_number_and_incr),
50708         PREFIX(print_partial_compiled_pattern),
50709         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
50710         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
50711         PREFIX(regex_grow_registers), PREFIX(regex_compile),
50712         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
50713         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
50714         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
50715         wcs_compile_range, byte_compile_range, truncate_wchar,
50716         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
50717         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
50718         count_mbs_length, wcs_re_match_2_internal,
50719         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
50720         PREFIX(alt_match_null_string_p),
50721         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
50722         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
50723         regfree, PREFIX(extract_number)): Define with prototype.  Remove
50724         now-unnecessary declaration, if any.
50725         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
50726         regcomp, regexec):
50727         Remove now-unnecessary casts among pointer types.
50728         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
50729
50730         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
50731         (free): Remove decl.
50732
50733         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
50734
50735         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
50736         (free): Remove decl.
50737
50738         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
50739         * lib/xgetcwd.c: Likewise.
50740
50741         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
50742         (free): Remove decl.
50743
50744         * lib/strchrnul.c (strchrnul): Define with a prototype.
50745         Fix bug: c_in was not converted to char before searching.
50746
50747         The following changes are not K&R related:
50748
50749         * lib/group-member.h: Include <sys/types.h>, so that this file is
50750         self-contained.
50751         * lib/makepath.h: Likewise.
50752
50753         * lib/getusershell.c (readname, default_index, line_size, readname):
50754         Use size_t, not int, for sizes.
50755         (readname): If the size overflows, report an error instead of
50756         looping forever.
50757
50758 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50759
50760         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
50761         libc.
50762
50763 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50764
50765         * README: New section: portability guidelines.
50766
50767 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50768
50769         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
50770         C89 spec.
50771
50772 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50773
50774         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
50775
50776 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50777
50778         Assume C89 or better; remove K&R cruft.
50779         A few of these changes were first proposed by Derek Robert Price
50780         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
50781
50782         * lib/addext.c: Include <string.h> unconditionally.
50783         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
50784         Don't declare getenv or malloc.
50785
50786         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
50787         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
50788         (NULL): Remove.
50789         (find_stack_direction, alloca): Use prototypes.
50790
50791         * lib/atexit.c (atexit): Define using a prototype.
50792
50793         * lib/basename.c, dirname.c, stripslash.c:
50794         Include <string.h> unconditionally.
50795
50796         * lib/bcopy.c: Include <stddef.h>.
50797         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
50798
50799         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
50800
50801         * lib/error.h (error, error_at_line, error_print_progname)
50802         [! (defined (__STDC__) && __STDC__)]: Remove decls.
50803         * lib/error.c: Include error.h first, to check interface.
50804         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50805         (VA_START): Remove; all uses changeed to va_start.
50806         (exit, strerror): Remove decls.
50807         (error_print_progname): Prototype uncondionally.
50808         Don't include <errno.h>; no longer needed.
50809         (private_strerror): Remove.
50810         (error_tail): Always define.
50811         (error, error_at_line): Assume C89 or better; always use prototypes.
50812         * lib/fatal.c: Include "fatal.h" first, to test interface.
50813         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50814         (VA_START): Remove; all uses changed to va_start.
50815         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
50816         this case.
50817         (exit): Remove decl.
50818         (fatal): Prototype unconditionally.  Assume va_start works.
50819         Abort at end, to pacify gcc.
50820
50821         * lib/euidaccess.c (main): Define with a prototype.
50822
50823         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
50824
50825         * lib/exitfail.c: Include <stdlib.h> unconditionally.
50826
50827         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
50828         prototypes.
50829         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
50830         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
50831         (getenv): Remove decl.
50832         (fnmatch): Define using a prototype.
50833         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
50834         (FCT): Define using a prototype.
50835
50836         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
50837
50838         * lib/gethostname.c: Include <stddef.h>.
50839         (gethostname): Define with prototype.  Length is size_t, not int.
50840
50841 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50842
50843         Assume C89 or better; remove K&R cruft.
50844         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
50845         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
50846         string.h, getenv, malloc.
50847         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
50848         headers.
50849         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
50850         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
50851         do not check for strerror.
50852         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
50853         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
50854         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
50855         do not check for doprnt or vprintf.
50856         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
50857         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
50858
50859 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50860
50861         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
50862         getversion.c should have been removed then, but was accidentally
50863         preserved.
50864
50865         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
50866         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
50867
50868 2003-09-08  Karl Berry  <karl@gnu.org>
50869
50870         * config/config.sub, config.guess, srclistvars.sh: update from savannah
50871                 config, forget about prep.
50872
50873         * config/depcomp, missing: update from automake.
50874
50875 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50876
50877         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
50878         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50879
50880 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50881
50882         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
50883         copy_tm_result.  Bug reported by Simon Josefsson in
50884         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50885
50886 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50887
50888         * m4/time_r.m4: New file.
50889         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
50890         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
50891         is. Check for timegm declaration.
50892         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
50893         Do not check for gmtime_r.
50894         Replace mktime if __mktime_internal does not exist and if mktime
50895         hasn't been replaced already.
50896
50897 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50898
50899         * lib/time_r.c, lib/time_r.h: New files.
50900
50901         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
50902         __localtime_r.
50903         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
50904         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
50905
50906         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
50907         __gmtime_r.
50908         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
50909         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
50910         Include <time_r.h>.
50911
50912         * lib/timegm.c: Switch to glibc implementation, with the following
50913         changes:
50914         [defined HAVE_CONFIG_H]: Include <config.h>.
50915         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
50916         (__mktime_internal) [!defined _LIBC]: New decl.
50917         (__gmtime_r) [!defined _LIBC]: New macro and function.
50918         (timegm): Use a prototype, since gnulib assumes C89.
50919         Do not bother declaring tmp to be const, as it's not really usefu.
50920         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
50921         (timegm): Declare only if HAVE_DECL_TIMEGM.
50922
50923 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50924
50925         * MODULES.html.sh (func_all_modules): Add time_r.
50926         * modules/time_r: New file.
50927         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
50928         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
50929
50930 2003-09-03  Paul Eggert  <eggert@twinsun.com>
50931
50932         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
50933         Bug reported by Lute Kamstra in
50934         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
50935
50936         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
50937         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
50938         course with correspondingly smaller numbers for tomorrow and
50939         yesterday.  From Tadayoshi Funaba.  Originally installed into
50940         sh-utils on 1999-08-07, but the patch got lost (I guess during the
50941         coreutils merge?).
50942
50943 2003-08-31  Simon Josefsson  <jas@extundo.com>
50944
50945         * modules/timegm: New file.
50946         * MODULES.html.sh (func_all_modules): Add timegm.
50947
50948 2003-08-31  Simon Josefsson  <jas@extundo.com>
50949
50950         * m4/timegm.m4: New file.
50951
50952 2003-08-31  Simon Josefsson  <jas@extundo.com>
50953
50954         * lib/timegm.h: New file.
50955         * lib/timegm.c: New file.  Based on
50956         wget-1.8.2/src/http.c:mktime_from_utc.
50957
50958 2003-08-31  Karl Berry  <karl@gnu.org>
50959
50960         * lib/argp.h: update from libc.
50961
50962 2003-08-28  Bruno Haible  <bruno@clisp.org>
50963
50964         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
50965         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
50966         followed by '#define fnmatch fnmatch_posix' gives an error.
50967
50968 2003-08-28  Bruno Haible  <bruno@clisp.org>
50969
50970         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
50971         warning on QNX, which defines O_BINARY to 000000.
50972
50973 2003-08-27  Jim Meyering  <jim@meyering.net>
50974
50975         * m4/mkstemp.m4: Require that the system mkstemp be able to create
50976         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
50977         would fail after 32.  Reported by Danny Levinson.  Details here:
50978         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
50979
50980 2003-08-24  Bruno Haible  <bruno@clisp.org>
50981
50982         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
50983         MSVC7 <stdio.h> is included later.
50984
50985 2003-08-22  Simon Josefsson  <jas@extundo.com>
50986
50987         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
50988
50989 2003-08-20  Karl Berry  <karl@gnu.org>
50990
50991         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
50992
50993 2003-08-20  Bruno Haible  <bruno@clisp.org>
50994
50995         * modules/progname: New file.
50996         * MODULES.html.sh (func_all_modules): Add progname.
50997
50998 2003-08-20  Bruno Haible  <bruno@clisp.org>
50999
51000         * lib/progname.h: New file, from GNU gettext.
51001         * lib/progname.c: New file, from GNU gettext.
51002         * lib/progreloc.c: New file, from GNU gettext.
51003
51004 2003-08-19  Jim Meyering  <jim@meyering.net>
51005
51006         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
51007         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
51008
51009 2003-08-19  Bruno Haible  <bruno@clisp.org>
51010
51011         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
51012         more.
51013
51014 2003-08-19  Bruno Haible  <bruno@clisp.org>
51015
51016         * lib/xstrdup.c: Assume <string.h> exists.
51017
51018 2003-08-18  Paul Eggert  <eggert@twinsun.com>
51019
51020         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
51021         in makefile rules.
51022
51023 2003-08-18  Jim Meyering  <jim@meyering.net>
51024
51025         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
51026         * m4/lib-ld.m4: Likewise.
51027
51028 2003-08-18  Jim Meyering  <jim@meyering.net>
51029
51030         * lib/setenv.h: Indent nested cpp directive.
51031         * lib/vasnprintf.c: Remove trailing blanks.
51032
51033 2003-08-17  Simon Josefsson  <jas@extundo.com>
51034
51035         * modules/xstrndup: New file.
51036         * MODULES.html.sh (func_all_modules): Add xstrndup.
51037
51038 2003-08-17  Simon Josefsson  <jas@extundo.com>
51039
51040         * modules/argp: Fix autoconf macro name. Add more dependencies.
51041
51042 2003-08-17  Simon Josefsson  <jas@extundo.com>
51043
51044         * m4/xstrndup.m4: New file.
51045
51046 2003-08-17  Simon Josefsson  <jas@extundo.com>
51047
51048         * m4/argp.m4: New file.
51049
51050 2003-08-17  Simon Josefsson  <jas@extundo.com>
51051             Bruno Haible  <bruno@clisp.org>
51052
51053         * lib/xstrndup.h: New file.
51054         * lib/xstrndup.c: New file.
51055
51056 2003-08-17  Bruno Haible  <bruno@clisp.org>
51057
51058         * modules/strndup (Files, Include): Add lib/strndup.h.
51059
51060 2003-08-17  Bruno Haible  <bruno@clisp.org>
51061
51062         * modules/euidaccess (Files): Add lib/euidaccess.h.
51063
51064 2003-08-17  Bruno Haible  <bruno@clisp.org>
51065
51066         * lib/strndup.h: New file.
51067
51068 2003-08-17  Bruno Haible  <bruno@clisp.org>
51069
51070         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
51071         like AC_GNU_SOURCE.
51072         * modules/extensions (configure.ac): Comment out the invocation of
51073         gl_USE_SYSTEM_EXTENSIONS.
51074
51075 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51076
51077         Merges from coreutils, etc.
51078         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
51079         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
51080         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
51081         fixing a typo.
51082         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
51083         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
51084
51085 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51086
51087         Document merge from coreutils.
51088         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
51089         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
51090         * modules/utime: Add m4/utimes-null.m4.
51091
51092 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51093
51094         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
51095         space, undoing this 2003-08-12 change:
51096         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51097
51098 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51099
51100         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
51101         strtoul.c from libc, undoing this 2003-08-12 change:
51102         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51103
51104 2003-08-16  Jim Meyering  <jim@meyering.net>
51105
51106         Merges from coreutils.
51107         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
51108         prefix.  Adjust cache variables similarly.  Create 500 rather than
51109         just 300 files, to exercise bug on Darwin6.5, too.
51110         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
51111         $missing_dir.
51112         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
51113         AM_SYS_POSIX_TERMIOS.
51114         Reported by mkc@mathdogs.com.
51115         Also change use of $am_cv_sys_posix_termios
51116         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
51117         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
51118         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
51119         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
51120         in /proc/mounts until it finds one with matching device number.  This
51121         is unnecessary when the FILE argument *is* a mount point.  No stat call
51122         is necessary in that case.  So, disable the statvfs-testing code on
51123         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
51124         as RedHat bug# 84846.
51125         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51126         to 1MB, so as not to render systems with no stack size limit (e.g.,
51127         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51128         Include <unistd.h>.  On some systems,
51129         it is required for the definition of _SC_PAGESIZE.
51130
51131 2003-08-16  Jim Meyering  <jim@meyering.net>
51132
51133         Merge from coreutils.
51134         * lib/xstrtoimax.c: #else #if -> #elif.
51135         * lib/xstrtoumax.c: Likewise.
51136
51137 2003-08-16  Jim Meyering  <jim@meyering.net>
51138
51139         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
51140         * m4/utimes.m4: Removed.
51141         * m4/utimes-null.m4: Renamed from utimes.m4.
51142
51143         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51144         to 1MB, so as not to render systems with no stack size limit (e.g.,
51145         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51146         Include <unistd.h>.  On some systems,
51147         it is required for the definition of _SC_PAGESIZE.
51148
51149 2003-08-16  Jim Meyering  <jim@meyering.net>
51150         and Paul Eggert  <eggert@cs.ucla.edu>
51151
51152         Merges from coreutils, etc.
51153
51154         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
51155         using the latest version from cvs.  This avoids problems with #line
51156         directives using a vendor (Sun) compiler.
51157         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
51158         Don't set GETGROUPS_LIB here; now it's
51159         done via getgroups.m4's wrapper function.
51160         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
51161         rather than just in sh-util/configure.in, so that the
51162         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
51163         same.
51164         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
51165         AC_FUNC_GETLOADAVG where to find getloadavg.c.
51166         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
51167         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
51168         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
51169         Remove code that is now done by the newly-required macros.
51170         Append $(EXEEXT) to DF_PROG.
51171         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
51172         Do not invoke or require the following here,
51173         since prereq.m4 or some gnulib .m4 now does this for us:
51174         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
51175         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
51176         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
51177         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
51178         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
51179         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
51180         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
51181         AC_FUNC_OBSTACK.
51182         Do not replace the following functions, as this is now the job
51183         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
51184         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
51185         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
51186         atexit getpass, strdup, getpagesize.
51187         Replace 'raise'.
51188         Do not check for the following functions, as this is now the job
51189         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
51190         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
51191         setregid.
51192         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
51193         Check for sys/sysctl.h.
51194         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
51195         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
51196         of checking for ssize_t ourselves.
51197
51198         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
51199         Require every macro that gnulib/modules/* suggests for us.
51200         (jm_PREREQ_ADDEXT): New macro.
51201         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
51202         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
51203
51204         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
51205         (gl_PHYSMEM): Use it.
51206         Also check for `table' function.
51207         Check for new headers and functions.
51208         Add check for sys/sysmp.h.
51209         With suggestions from Kaveh Ghazi.
51210         Ignore headers that are present but cannot be compiled.  This
51211         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
51212         C 5.4.
51213
51214 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51215
51216         Document merge from coreutils.
51217         * modules/userspec: Depend on posixver.
51218         * modules/strftime: Depend on tzset.
51219
51220 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51221
51222         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
51223         rather than tab, after '#' in shell-script copyright notices.
51224         Suggested by Bruno Haible.
51225
51226 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51227
51228         * config/srclist-update: Use three spaces, rather than tab, after '#'
51229         in shell-script copyright notices.  Suggested by Bruno Haible.
51230         Remove unnecessary parenthesization in regular expression.
51231
51232 2003-08-15  Jim Meyering  <jim@meyering.net>
51233
51234         Merge from coreutils.
51235         * lib/xgethostname.c: Include <stdlib.h>.
51236         (xghostname): Don't exit for anything other than memory-related
51237         failure; just return NULL.
51238         * lib/userspec.c: Include "posixver.h".
51239         (parse_user_spec): Accept `.' as a separator only
51240         in pre-POSIX-200112 mode.
51241         * lib/strtoimax.c: Use #elif rather than #else #if.
51242         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
51243         Remove function, now that we can rely on a working tzset function.
51244         [!_LIBC]: Ensure that the required autoconf test has been run.
51245         [!defined _NL_CURRENT && HAVE_STRFTIME]:
51246         Use underlying_strftime for %r.
51247         * lib/sha.c: Merge in some clean-up and optimization changes from
51248         glibc.
51249         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
51250         Ensure that it is a multiple of 64.
51251         Rearrange loop exit tests so as to avoid performing an
51252         additional fread after encountering an error or EOF.
51253         * lib/realloc.c: Update copyright date.
51254
51255 2003-08-15  Jim Meyering  <jim@meyering.net>
51256         and Paul Eggert  <eggert@twinsun.com>
51257
51258         Merge from coreutils.
51259         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
51260         member but strut utmpx does not.  Needed for AIX 4.3.3.
51261         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
51262
51263 2003-08-15  Jim Meyering  <jim@meyering.net>
51264         and Paul Eggert  <eggert@cs.ucla.edu>
51265
51266         Merges from coreutils, etc.
51267         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
51268         Require gl_FUNC_TZSET_CLOBBER.
51269         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
51270         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
51271         members.
51272
51273 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51274
51275         Help the merge from coreutils.
51276         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
51277         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
51278         * m4/tzset.m4: Use it too.
51279
51280 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51281
51282         * modules/tzset: New file.
51283
51284 2003-08-14  Jim Meyering  <jim@meyering.net>
51285
51286         Merges from coreutils.
51287         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
51288         variable names, rather than @FNMATCH_H@.
51289         * modules/alloca: Likewise for $(ALLOCA_H).
51290
51291         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
51292         the three copies of the literal target, `fnmatch.h'.
51293         * modules/alloca (alloca.h): Likewise.
51294
51295 2003-08-14  Jim Meyering  <jim@meyering.net>
51296
51297         Merge from coreutils.
51298         * m4/tzset.m4: New file.
51299         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
51300         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
51301         otherwise, AIX 5.1 systems would end up using the latter.
51302         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
51303         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
51304         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
51305         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
51306
51307 2003-08-14  Jim Meyering  <jim@meyering.net>
51308
51309         Merge from coreutils.
51310         * lib/obstack.h: Whitespace changes.
51311         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
51312         and xcalloc return values.
51313         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
51314         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
51315         hang on OSF/1 5.1 for DIR on both local and remote file systems.
51316         Reported by (and fix confirmed by) Nelson H. F. Beebe.
51317         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
51318         error from mntctl.
51319         Use mntctl's return value to drive the entry-processing loop, since
51320         we can't rely on the value of the vmt_length member in the last
51321         entry.  On some systems doing so could result in exhausting
51322         virtual memory.  Based in part on a patch from Mike Jetzer.
51323
51324 2003-08-14  Jim Meyering  <jim@meyering.net>
51325         and Paul Eggert  <eggert@twinsun.com>
51326
51327         Merges from coreutils, plus other fixes.
51328         * lib/physmem.c: Merge in portability changes from gcc/libiberty
51329         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
51330         for credits and details.  Thanks to Kaveh Ghazi for helping
51331         to keep these files in sync.
51332         (ARRAY_SIZE): Define it.
51333         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
51334         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
51335         (memcasecmp): Don't assume size_t fits in unsigned int.
51336         Remove casts and duplicate code.
51337         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
51338         (memcpy): Remove definition.
51339         Merge in some clean-up and optimization changes from glibc.
51340         [BLOCKSIZE]: Move definition to top of file.
51341         Ensure that it is a multiple of 64.
51342         Rearrange loop exit tests so as to avoid performing an
51343         additional fread after encountering an error or EOF.
51344         * lib/md5.h (md5_uintptr): Define.
51345         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
51346         return to the initial working directory.  Preserve errno
51347         for caller.
51348         * lib/idcache.c: Include "xalloc.h".
51349         (xmalloc, xrealloc): Remove decls.
51350         (getuser): Remove casts no longer required in C89.
51351         * lib/human.c: Include stdio.h, for sprintf.
51352         * lib/group-member.c: Include "xalloc.h".
51353         (xmalloc, xrealloc): Remove decls.
51354         (get_group_info): Remove casts no longer required in C89.
51355         * lib/getusershell.c (readname): Remove casts no longer required in
51356         C89.
51357         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
51358         * lib/getline.c: Whitespace fix, from coreutils.
51359
51360 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51361
51362         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
51363         Check for isascii.
51364
51365         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51366         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51367         Undo previous (whitespace-only) change.
51368
51369 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51370
51371         * lib/exclude.c: Include <ctype.h>
51372         (IN_CTYPE_DOMAIN): New macro.
51373         (is_space): New fn.
51374         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
51375         and empty lines.
51376
51377         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51378         Undo previous (whitespace-only) change.
51379
51380 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51381
51382         * config/srclist-update: Change update back to the old behavior,
51383         leaving whitespace alone.  Use one 'sed' command rather than a
51384         pipeline.
51385         (fixlicense): Now a variable, not a function.
51386         (remove_trailing_blanks): Remove.
51387         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
51388         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51389         Undo previous (whitespace-only) change.
51390
51391 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51392
51393         Merge from coreutils.
51394         * modules/euidaccess: Add lib_SOURCES, include for new
51395         file euidaccess.h
51396
51397 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51398
51399         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51400         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51401         Normalize leading white space and remove trailing white space.
51402
51403         Merge from coreutils
51404         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
51405
51406         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
51407         0.12.1.  These files are now being upgraded automatically by
51408         ../config/srclist-update.
51409
51410 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51411
51412         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51413         Normalize leading white space and remove trailing white space.
51414         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
51415         notice, as per ../config/srclist-update.
51416
51417         Merge from coreutils.
51418         * lib/euidaccess.h: New file.
51419         * lib/euidaccess.c: Include it.
51420         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
51421         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
51422         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
51423
51424 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51425
51426         * config/srclist-update: Add copyright notice.
51427         (remove_id_lines, remove_trailing_blanks): New constants.
51428         (fixfile): Use them to normalize spacing a bit in copied files.
51429         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51430         Normalize leading white space and remove trailing white space.
51431
51432         * config/texinfo.tex: Sync with texinfo.
51433
51434         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
51435         strtoul.c from libc, to merge coreutils whitespace changes.
51436
51437         * config/srclist.txt: Get the following m4 files from gettext:
51438         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
51439         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
51440         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
51441         wint_t.m4.
51442
51443 2003-08-12  Karl Berry  <karl@gnu.org>
51444
51445         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
51446         been made.
51447
51448 2003-08-11  Paul Eggert  <eggert@twinsun.com>
51449
51450         * modules/gnu-source, m4/gnu-source.m4:
51451         Remove; we're assuming Autoconf 2.54 or later now.
51452         Suggested by Bruno Haible.
51453         * MODULES.html.sh (func_all_modules): Remove gnu-source.
51454
51455 2003-08-11  Bruno Haible  <bruno@clisp.org>
51456
51457         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
51458
51459 2003-08-11  Bruno Haible  <bruno@clisp.org>
51460
51461         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
51462         (vasnprintf): Use it instead of wcslen.
51463
51464 2003-08-11  Bruno Haible  <bruno@clisp.org>
51465
51466         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
51467         value to ensure that _Bool promotes to int. Use #define for _Bool when
51468         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
51469
51470 2003-08-10  Karl Berry  <karl@gnu.org>
51471
51472         * lib/regex.h: update from libc (whitespace fix).
51473
51474 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51475
51476         Merge some files from coreutils.  These changes were
51477         originally made by Jim Meyering.
51478         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
51479         many older Unixes require this.
51480         * lib/alloca.c (alloca): Remove cast to argument of free;
51481         no longer needed in C89.
51482         * lib/alloca_.h, regex.h: Fix white space to match
51483         what GNU indent does.
51484
51485 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51486
51487         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
51488         apparently Emacs's Unicode mode got confused before my 2003-08-05
51489         checkin.
51490
51491 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51492
51493         * m4/extensions.m4: New file.
51494         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
51495         Require gl_USE_SYSTEM_EXTENSIONS.
51496         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
51497         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
51498
51499 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51500
51501         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
51502         * modules/extensions, modules/gnu-source: New files.
51503         * modules/timespec, modules/unlocked-io: Depend on extensions.
51504
51505 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51506
51507         * modules/restrict: New file.
51508         * MODULES.html.sh (func_all_modules): Add restrict.
51509         * modules/regex: Depend on restrict.
51510
51511 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51512
51513         * m4/restrict.m4: New file.
51514         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
51515
51516 2003-08-07  Bruno Haible  <bruno@clisp.org>
51517
51518         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
51519         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
51520
51521 2003-08-07  Bruno Haible  <bruno@clisp.org>
51522
51523         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
51524         makes the module 'getndelim2' compatible with the module 'getline'.
51525
51526 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51527
51528         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
51529         byte with "\201" to avoid glitches when editing that source file
51530         with multi-gnome-terminal.
51531
51532 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51533
51534         * lib/bumpalloc.h: Remove.
51535
51536 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51537
51538         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
51539         * modules/bumpalloc: Remove.
51540
51541 2003-08-04  Paul Eggert  <eggert@twinsun.com>
51542
51543         * lib/getloadavg.c: Change copyright notice and spacing to conform to
51544         GNU coding style.
51545
51546         Merge from coreutils.
51547         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
51548         1. From glibc.
51549         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
51550         from Karl Berry, implemented by Jim Meyering.
51551         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
51552         from Dmitry V. Levin.
51553         Remove anachronistic cast of xrealloc.
51554         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
51555         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
51556         type. Otherwise, it wouldn't compile with at least /bin/cc on
51557         ymp-cray-unicos9.0.2.X.
51558         Combine two mostly-identical uses of alloca into one.
51559         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
51560
51561 2003-08-04  Dave Love  <d.love@dl.ac.uk>
51562
51563         [From Emacs.]
51564
51565         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
51566         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
51567         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
51568         obsolete NLIST_NAME_UNION.
51569         [__GNU__]: Undef BSD and FSCALE.
51570         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
51571
51572 2003-08-03  Paul Eggert  <eggert@twinsun.com>
51573
51574         * lib/stdbool_.h (_Bool): Make it signed char, instead of
51575         an enum type, so that it's guaranteed to promote to int.  See:
51576         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
51577
51578 2003-08-03  Karl Berry  <karl@gnu.org>
51579
51580         * config/depcomp: update from automake.
51581
51582 2003-07-31  Paul Eggert  <eggert@twinsun.com>
51583
51584         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
51585         (strerror): Don't assume that a printable int fits in 14 bytes.
51586
51587 2003-07-31  Bruno Haible  <bruno@clisp.org>
51588
51589         * modules/getpass-gnu: New file.
51590         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
51591
51592 2003-07-31  Bruno Haible  <bruno@clisp.org>
51593
51594         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
51595
51596 2003-07-24  Karl Berry  <karl@gnu.org>
51597
51598         * config/missing: update from automake.
51599
51600 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
51601             Bruno Haible  <bruno@clisp.org>
51602
51603         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
51604         * lib/getline.c (getline, getdelim): Likewise.
51605         Remove _GNU_SOURCE define; now it's defined in config.h through
51606         m4/getline.m4.
51607
51608 2003-07-23  Karl Berry  <karl@gnu.org>
51609
51610         * config/config.sub: update from prep.
51611
51612 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51613
51614         * modules/xalloc (Depends-on): Add exitfail.
51615         * modules/xmemcoll: Likewise.
51616
51617 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51618
51619         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
51620         over-parenthesization in macros.
51621
51622         Sync with coreutils.
51623
51624         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
51625         required by C99.
51626
51627         Use `exit_failure' for xalloc and xmemcoll instead of their own
51628         private exit-failure variables.
51629         * lib/xalloc.h (xalloc_exit_failure): Remove.
51630         * lib/xmalloc.c: Likewise.  Include exitfail.h.
51631         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
51632         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
51633         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
51634         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
51635
51636 2003-07-20  Jim Meyering  <jim@meyering.net>
51637
51638         * modules/closeout (Depends-on): Add exitfail.
51639         Suggestion from Bruno Haible.
51640
51641 2003-07-19  Karl Berry  <karl@gnu.org>
51642
51643         * config/config.sub: update from prep.
51644
51645 2003-07-18  Paul Eggert  <eggert@twinsun.com>
51646
51647         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
51648         Remove.
51649         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
51650         to test that it can stand by itself.  Include "exitfail.h".
51651         Clients should set exit_failure instead.
51652         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
51653
51654 2003-07-18  Bruno Haible  <bruno@clisp.org>
51655
51656         * modules/getndelim2: New file.
51657         * modules/getline: Share files with module getndelim2.
51658         * modules/getnline: Depend on getndelim2 instead of sharing files with
51659         it. Add getnline.c to lib_SOURCES.
51660         * MODULES.html.sh (func_all_modules): Add getndelim2.
51661
51662 2003-07-18  Bruno Haible  <bruno@clisp.org>
51663
51664         * m4/getndelim2.m4: New file.
51665         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
51666         invoke gl_PREREQ_GETNDELIM2.
51667         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
51668         gl_PREREQ_GETNDELIM2.
51669         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
51670         gl_GETNDELIM2.
51671
51672 2003-07-18  Bruno Haible  <bruno@clisp.org>
51673
51674         * lib/getndelim2.h: New file.
51675         * lib/getndelim2.c: Make into a module of its own. Include config.h,
51676         getndelim2.h.
51677         (getndelim2): Make non-static. Change return type to ssize_t.
51678         * lib/getline.h: Change argument names.
51679         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
51680         * lib/getnline.c: Include getndelim2.h.
51681
51682 2003-07-18  Andreas Schwab  <schwab@suse.de>
51683
51684         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
51685
51686 2003-07-17  Karl Berry  <karl@gnu.org>
51687
51688         * config/config.sub: update from prep.
51689
51690 2003-07-17  Bruno Haible  <bruno@clisp.org>
51691
51692         * modules/getnline: New file.
51693         * modules/getline: Add lib/getndelim2.c to source file list.
51694         * MODULES.html.sh (func_all_modules): Add getnline.
51695
51696 2003-07-17  Bruno Haible  <bruno@clisp.org>
51697
51698         * m4/getnline.m4: New file.
51699
51700 2003-07-17  Bruno Haible  <bruno@clisp.org>
51701
51702         * m4/Makefile.am.in: Remove file.
51703         * m4/Makefile.am: Remove file.
51704         * m4/Makefile.in: Remove file.
51705
51706 2003-07-17  Bruno Haible  <bruno@clisp.org>
51707
51708         * lib/getnline.h: New file.
51709         * lib/getnline.c: New file.
51710         * lib/getndelim2.c: New file, extracted from getline.c.
51711         (getndelim2): Renamed from getdelim2, with added nmax argument.
51712         * lib/getline.c: Include getndelim2.c.
51713         (getdelim2): Moved out to getndelim2.c.
51714         (getline, getdelim): Update.
51715
51716 2003-07-17  Bruno Haible  <bruno@clisp.org>
51717
51718         * lib/Makefile.am: Remove file.
51719         * lib/Makefile.in: Remove file.
51720
51721 2003-07-17  Bruno Haible  <bruno@clisp.org>
51722
51723         * configure.in: Remove file.
51724         * Makefile.in: Remove file.
51725
51726 2003-07-17  Bruno Haible  <bruno@clisp.org>
51727
51728         * MODULES.html.sh: Put the </BODY> right before </HTML>.
51729
51730 2003-07-16  Karl Berry  <karl@gnu.org>
51731
51732         * config/srclist-update: was running fixlicense twice, which caused
51733                 texinfo.tex to be nullified for some reason.  Simplify,
51734                 $gplsrc is no longer needed as far as I can see?
51735
51736 2003-07-16  Jim Meyering  <jim@meyering.net>
51737
51738         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
51739
51740 2003-07-15  Paul Eggert  <eggert@twinsun.com>
51741
51742         * config/srclist.txt: Get the following files from gettext-runtime/intl
51743         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
51744         ref-del.sin.  From Bruno Haible.
51745         * config/srclist-update (fixfile): Change grep pattern again, since the
51746         previous fix didn't work (there was another trailing $).  Use
51747         '[$]' to escape the $s.
51748
51749 2003-07-15  Karl Berry  <karl@gnu.org>
51750
51751         * lib/vasnprintf.c: update from gettext.
51752
51753 2003-07-15  Karl Berry  <karl@gnu.org>
51754
51755         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
51756         gets expanded when surrounded by '$'.
51757
51758 2003-07-15  Jim Meyering  <jim@meyering.net>
51759
51760         * modules/save-cwd: Don't depend on error.  From Derek Price.
51761
51762 2003-07-15  Jim Meyering  <jim@meyering.net>
51763
51764         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
51765
51766 2003-07-14  Simon Josefsson  <jas@extundo.com>
51767
51768         * modules/mempcpy: New file.
51769         * MODULES.html.sh (func_all_modules): Add mempcpy.
51770
51771 2003-07-14  Simon Josefsson  <jas@extundo.com>
51772
51773         * m4/mempcpy.m4: New file.
51774
51775 2003-07-14  Simon Josefsson  <jas@extundo.com>
51776
51777         * lib/mempcpy.h: New file.
51778         * lib/mempcpy.c: New file.
51779
51780 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51781
51782         * modules/getdate, modules/posixtm: Depend on mktime.
51783
51784 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51785
51786         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
51787         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
51788         unicodeio.c, unicodeio.h, unlocked-io.h:
51789         Switch from LGPL to GPL.
51790
51791 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51792
51793         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
51794         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
51795         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
51796         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
51797         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
51798         updated automatically by ../config/srclist-update.  This changes
51799         their license from LPGL to GPL.
51800
51801 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51802
51803         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
51804         assumed to refer to the root of the most recent stable gettext version.
51805         * config/srclistvars.sh: Add defaults for eggert.
51806         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
51807         Match "This program" as well as "The program".  This is needed
51808         for gettext.
51809
51810 2003-07-14  Jim Meyering  <jim@meyering.net>
51811
51812         Don't emit diagnostics.  Let callers do that.
51813         * lib/save-cwd.c: Don't include "error.h".
51814         (save_cwd): Don't call error.  Ensure that errno is valid
51815         when returning nonzero.
51816
51817         * lib/save-cwd.h (restore_cwd): Update prototype.
51818         * lib/save-cwd.c (restore_cwd): Remove two parameters.
51819         Simplify.  Don't call error upon failure.  Let callers do that.
51820         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
51821         when auditing is enabled.  But don't bother updating the #if.
51822
51823 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
51824
51825         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
51826         it breaks C++ compilation.
51827         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
51828
51829 2003-07-10  Simon Josefsson  <jas@extundo.com>
51830
51831         * modules/strchrnul (Makefile.am): Add strchrnul.h.
51832
51833 2003-07-10  Jim Meyering  <jim@meyering.net>
51834
51835         * m4/clock_time.m4: Remove trailing blank.
51836         * m4/intmax_t.m4: Likewise.
51837
51838 2003-07-10  Jim Meyering  <jim@meyering.net>
51839
51840         * lib/vasnprintf.c: Remove trailing blanks.
51841         Make cpp indentation consistent.
51842
51843 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51844
51845         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
51846         posixver.c, strftime.c, strnlen.c, strverscmp.c:
51847         Switch from LGPL to GPL.
51848
51849 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51850
51851         * config/srclist.txt: Sort sublists.  Add
51852         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
51853         that differ from gnulib for one reason or another; we'd like this list
51854         to be smaller but for now let's document what we have.
51855
51856 2003-07-08  Paul Eggert  <eggert@twinsun.com>
51857
51858         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
51859         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
51860         and sweeter "eval x=$x".
51861         * config/srclist.txt: Get lib/argp* from glibc.
51862
51863 2003-07-07  Paul Eggert  <eggert@twinsun.com>
51864
51865         * lib/mktime.c: Fix some boundary cases and remove need for floating
51866         point.
51867
51868         Issue a compile-time diagnostic if time_t is floating point, or if
51869         two's complement arithmetic is not in effect, or if arithmetic
51870         right shift does not propagate the sign.  These assumptions were
51871         all in the original code but they weren't checked.
51872
51873         (TIME_T_MIDPOINT, verify): New macros.
51874         (__isleap): Remove; it has integer overflow problems.
51875         (leapyear): New function, without those problems.
51876         (ydhms_tm_diff): Remove; splitting into two parts.
51877         (ydhms_diff): New function, containing the arithmetic part of
51878         the old ydhms_tm_diff function.  Issue a compile-time
51879         diagnostic if we are not using C99 integer division.
51880         Avoid casts when possible.
51881         (guess_time_tm): New function, containing the checking part of
51882         the old ydhms_tm_diff function.  Return the new value, rather than
51883         the difference between it and the old.  Accept a new argument T
51884         so that *T specifies the old value.  Check for overflow in the result.
51885
51886         (__mktime_internal): Use a time_t offset, not a long int offset.
51887         This undoes the 2003-06-04 change, which is no longer needed now
51888         that we have better overflow checking.
51889         (localtime_offset): Likewise.
51890
51891         (__mktime_internal): Avoid harmful overflow on hosts where time_t
51892         and long are 64-bit but int is only 32-bit.
51893         (ydhms_diff): Use long int to store year1 and yday1.
51894         Issue a compile-time diagnostic if long int is not wide enough.
51895
51896         (__mktime_internal): Use long int to store adjusted year and yday.
51897         Use plain C rather than preprocessor commands, if that doesn't
51898         affect efficiency.
51899         Check for overflow (and try to repair) after each probe
51900         rather than checking only at the very end.  This avoids some bugs
51901         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
51902         does not equal GMT offset at maximum time).
51903         Use integer to check for overflow rather than floating point; this
51904         is more portable to non-IEEE hosts, and is a tad faster.
51905         When we detect that we are oscillating between two values,
51906         don't check whether tm_isdst has the requested value, since
51907         we already know the answer.  When tm_isdst has the wrong value,
51908         use a different heuristic to find the right one, based on the
51909         extreme values actually observed in practice in tz2003a,
51910         rather than the (overly optimistic) "previous 3 calendar quarters".
51911
51912         (not_equal_tm, print_tm, check_result): Use "const T" rather than
51913         "T const" to accommodate glibc style.
51914         (check_result): Use less-confusing report format.  "long" -> "long int.
51915         (main): Likewise.
51916         Don't loop if the iteration overflows time_t.
51917         Allow a negative step in the iteration.
51918
51919 2003-07-06  Karl Berry  <karl@gnu.org>
51920
51921         * config/depcomp: update from automake.
51922         * config/config.sub: update from prep.
51923
51924 2003-07-03  Karl Berry  <karl@gnu.org>
51925
51926         * config/config.guess: update from prep.
51927
51928 2003-07-01  Paul Eggert  <eggert@twinsun.com>
51929
51930         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
51931         xreadlink.c now includes it unconditionally.
51932
51933 2003-07-01  Paul Eggert  <eggert@twinsun.com>
51934
51935         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
51936         having it depend on HAVE_SYS_TYPES_H.
51937
51938 2003-07-01  Bruno Haible  <bruno@clisp.org>
51939
51940         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
51941         <sys/types.h> should be sufficient.
51942         Reported by Paul Eggert.
51943
51944 2003-06-26  Karl Berry  <karl@gnu.org>
51945
51946         * config/depcomp: update from automake.
51947
51948 2003-06-26  Bruno Haible  <bruno@clisp.org>
51949
51950         * modules/human: Depend on module stdbool.
51951
51952 2003-06-25  Bruno Haible  <bruno@clisp.org>
51953
51954         * modules/readlink: New file.
51955         * modules/xreadlink: Depend on it.
51956         * MODULES.html.sh (func_all_modules): Add readlink.
51957
51958 2003-06-25  Bruno Haible  <bruno@clisp.org>
51959
51960         * m4/readlink.m4: New file.
51961
51962 2003-06-25  Bruno Haible  <bruno@clisp.org>
51963
51964         * lib/readlink.c: New file.
51965
51966 2003-06-22  Karl Berry  <karl@gnu.org>
51967
51968         * config/srclist.txt: update mkinstalldirs from automake.
51969         * config/mkinstalldirs: update.
51970
51971 2003-06-22  Bruno Haible  <bruno@clisp.org>
51972
51973         Portability to mingw32.
51974         * m4/ssize_t.m4: New file, from GNU gettext.
51975         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
51976         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
51977
51978 2003-06-22  Bruno Haible  <bruno@clisp.org>
51979
51980         * modules/safe-read: Add m4/ssize_t.m4.
51981         * modules/xreadlink: Add m4/ssize_t.m4.
51982
51983 2003-06-20  Bruno Haible  <bruno@clisp.org>
51984
51985         Assume C89, so PARAMS isn't needed.
51986         * lib/unicodeio.h (PARAMS): Remove.
51987         * lib/unicodeio.c: Don't use PARAMS.
51988
51989 2003-06-18  Karl Berry  <karl@gnu.org>
51990
51991         * config/config.{guess,sub}: update from prep.
51992
51993 2003-06-18  Jim Meyering  <jim@meyering.net>
51994
51995         Merge changes from coreutils.
51996         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
51997         Remove explicit declarations of xmalloc and realloc.
51998         Include xalloc.h.
51999         (read_utmp): Remove anachronistic cast of xmalloc.
52000
52001 2003-06-17  Paul Eggert  <eggert@twinsun.com>
52002
52003         Assume C89, so PARAMS isn't needed.
52004         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
52005         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
52006         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
52007         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
52008         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
52009         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
52010         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
52011         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
52012         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
52013         lib/xstrtod.h, lib/xstrtol.h: Likewise.
52014         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
52015         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
52016         no longer needed. Anyway, config.h should always be included before any
52017         other file.
52018
52019 2003-06-11  Simon Josefsson  <jas@extundo.com>
52020
52021         * modules/sysexits: New file.
52022         * MODULES.html.sh (func_all_modules): Add sysexits.
52023
52024 2003-06-11  Simon Josefsson  <jas@extundo.com>
52025
52026         * lib/sysexit_.h: New file.
52027
52028 2003-06-11  Derek Price  <derek@ximbiot.com>
52029
52030         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
52031         necessary.
52032
52033 2003-06-11  Bruno Haible  <bruno@clisp.org>
52034
52035         * m4/sysexits.m4: New file.
52036
52037 2003-06-10  Simon Josefsson  <jas@extundo.com>
52038
52039         * lib/argp.h: New file, from glibc.
52040         * lib/argp-ba.c: New file, from glibc.
52041         * lib/argp-eexst.c: New file, from glibc.
52042         * lib/argp-fmtstream.c: New file, from glibc.
52043         * lib/argp-fmtstream.h: New file, from glibc.
52044         * lib/argp-fs-xinl.c: New file, from glibc.
52045         * lib/argp-help.c: New file, from glibc.
52046         * lib/argp-namefrob.h: New file, from glibc.
52047         * lib/argp-parse.c: New file, from glibc.
52048         * lib/argp-pv.c: New file, from glibc.
52049         * lib/argp-pvh.c: New file, from glibc.
52050         * lib/argp-xinl.c: New file, from glibc.
52051
52052 2003-06-10  Simon Josefsson  <jas@extundo.com>
52053
52054         * modules/strchrnul: New file.
52055
52056 2003-06-10  Simon Josefsson  <jas@extundo.com>
52057
52058         * modules/argp: New file.
52059
52060 2003-06-10  Simon Josefsson  <jas@extundo.com>
52061
52062         * m4/strchrnul.m4: New file.
52063
52064 2003-06-10  Simon Josefsson  <jas@extundo.com>
52065
52066         * lib/strchrnul.h: New file.
52067         * lib/strchrnul.c: New file.
52068
52069 2003-06-10  Bruno Haible  <bruno@clisp.org>
52070
52071         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
52072
52073 2003-06-07  Karl Berry  <karl@gnu.org>
52074
52075         * config/config.{guess,sub}: update from prep.
52076
52077 2003-06-07  Jim Meyering  <jim@meyering.net>
52078
52079         * modules/strtod: Use $(...) notation, not @...@ for
52080         AC_REPLACE'd variables.
52081         * modules/localcharset: Likewise.
52082
52083 2003-06-07  Jim Meyering  <jim@meyering.net>
52084
52085         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
52086         in place of my name in the copyright comment.
52087         Remove definition and uses of __P.
52088
52089         From coreutils.
52090         * lib/stat.c: Don't declare xmalloc explicitly.
52091         Instead, include "xalloc.h".
52092         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
52093         xrealloc, and xcalloc return values.
52094         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
52095         Improve comment.
52096         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
52097
52098 2003-06-07  Bruno Haible  <bruno@clisp.org>
52099
52100         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
52101         avoid AC_CONFIG_LINKS.
52102         * modules/fnmatch (Makefile.am): Use explicit creation rule for
52103         fnmatch.h, to avoid AC_CONFIG_LINKS.
52104         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
52105
52106 2003-06-07  Bruno Haible  <bruno@clisp.org>
52107
52108         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
52109         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
52110         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52111         directory.
52112         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
52113         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52114         directory.
52115
52116 2003-06-06  Jim Meyering  <jim@meyering.net>
52117
52118         Merge from coreutils.
52119         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
52120         Consolidate declarations and initializations of *_base* locals.
52121
52122         Merge from coreutils.
52123         This avoids a core dump on systems without GNU putenv,
52124         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
52125         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
52126         (unsetenv): New static function, from GNU libc.
52127         (rpl_putenv): Use it.
52128
52129         * lib/modechange.c: Remove trailing blanks.
52130
52131         Merge from coreutils.
52132         * lib/fsusage.c: Remove declaration of statfs.
52133         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
52134
52135         * lib/posixtm.c: Include <stdbool.h> unconditionally.
52136
52137 2003-06-06  Jim Meyering  <jim@meyering.net>
52138
52139         * lib/stdbool_.h: Renamed from stdbool.h.in.
52140
52141 2003-06-06  Jim Meyering  <jim@meyering.net>
52142             Bruno Haible  <bruno@clisp.org>
52143
52144         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
52145         Adjust Makefile.am snippet not to redirect directly to target.
52146         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
52147
52148 2003-06-05  Paul Eggert  <eggert@twinsun.com>
52149
52150         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
52151         mismatch, look in future quarters as well as past.  This fixes a
52152         bug when processing fall-backwards gaps immediately after a long
52153         period of daylight-saving time.
52154
52155         * lib/mktime.c: Assume freestanding C89 or better.
52156         (HAVE_LIMITS_H): Remove.  Assume it's 1.
52157         (__P): Remove; not used.
52158         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
52159         (mktime, not_equal_tm, print_tm, check_result,
52160         main): Use prototypes.  Use const * where appropriate.
52161         (main): Fix typo in testing code that uncovered by above changes.
52162         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
52163
52164 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52165
52166         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
52167         locale.h, localeconv.  This merges changes from coreutils.
52168
52169         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
52170         It can be removed after the next Autoconf is released.
52171         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
52172         needed.
52173
52174 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52175
52176         * lib/mktime.c: Fix Debian bug 177940
52177         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
52178         (localtime_offset): Now long int, not time_t, because we want it
52179         to be guaranteed to be signed.  All uses changed.
52180         (__mktime_internal): If overflow would occur when adding offset,
52181         don't add it.
52182
52183         Merge 'human' changes from coreutils.  Rewrite to support
52184         locale-specific notations like thousands separators.
52185         * lib/human.c: Simplify authorship notice.
52186         Include human.h immediately after config.h.
52187         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
52188         <limits.h>: Do not include, since human.h does.
52189         (SIZE_MAX, UINTMAX_MAX): New macros.
52190         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
52191         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
52192         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
52193         (power_letter): Renamed from suffixes.
52194         (generate_suffix_backwards): Remove.
52195         (adjust_value): Now takes int style (because of human.h changes)
52196         and long double value (for greater precision on some platforms).
52197         (group_number): New function.
52198         (human_readable): Use it.  Use integer options, not enum.
52199         Put the options before the sizes in the arg list.
52200         Support all the new options.
52201         The old human_readable function has been removed;
52202         use inttostr.h instead.
52203         (human_readable, default_block_size, humblock):
52204         Use uintmax_t, not int, for block sizes.
52205         (human_readable_inexact, block_size_types): Remove.
52206         (block_size_opts): New constant.
52207         (human_options): Renamed from human_block_size, with new signature
52208         that allows block sizes up to UINTMAX_MAX.  All callers changed.
52209         * lib/human.h: Add copyright and authorship notice.
52210         Include <limits.h> and <stdbool.h> unconditionally.
52211         (PARAMS): Remove.  All uses removed.
52212         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
52213         (enum human_inexact_style): Remove tag; now a nameless enum.
52214         (human_floor, human_ceiling, human_round_to_even): Now have
52215         values 2, 0, 1 rather than -1, 1, 0.
52216         (human_group_digits, human_suppress_point_zero, human_autoscale,
52217         human_base_1024, human_SI, human_B): New constants.
52218         (human_readable_inexact, human_block_size): Remove.
52219         (human_readable): Size args are now uintmax_t, not int.
52220         (human_options): New decl.
52221
52222         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
52223         unnecessary now that we assume C89 or better.  This change
52224         imported from coreutils.
52225
52226         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52227         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
52228         in the 2003-05-30 sync from glibc.
52229
52230         .h files should stand alone, but we shouldn't include <sys/types.h>
52231         if we can get away with just <stddef.h>.
52232
52233         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
52234         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
52235         rather than <sys/types.h>, as we merely need size_t.
52236         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
52237         to get size_t.
52238         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
52239         Include <stdio.h>, to get FILE.
52240         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
52241         memcasecmp.h has included <stddef.h> and all we need is size_t.
52242         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
52243         our interface, instead of including <sys/types.h>
52244
52245 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52246
52247         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
52248         now, as glibc mktime is buggy on non-glibc systems.
52249
52250 2003-06-03  Karl Berry  <karl@gnu.org>
52251
52252         * config/config.sub: update from prep.
52253
52254 2003-06-02  Paul Eggert  <eggert@twinsun.com>
52255
52256         [from coreutils]
52257         Fix some minor time-related bugs with POSIX time arguments.
52258         Some valid time stamps were being rejected (notably -1, and
52259         time stamps before 1900 on 64-bit hosts).  And some invalid
52260         time stamps were being accepted, e.g. September 31.
52261
52262         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
52263         that we can return (time_t) -1 successfully.
52264         * lib/posixtm.c: Likewise.
52265         [HAVE_STDBOOL_H]: Include <stdbool.h>.
52266         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
52267         (t): Remove static var.
52268         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
52269         of static var.  All uses changed.
52270         (year): Do not reject years before 1900; they can occur with
52271         64-bit time_t.
52272         (posix_time_parse): Do not check for out-of-range components;
52273         that is now the caller's responsibility, since our checks were
52274         only approximations.
52275         (posixtime): Use mktime to check for out-of-range components,
52276         since it knows them exactly.
52277         If mktime returns (time_t) -1, check whether an error actually occurred
52278         by invoking localtime on -1.
52279         (main) [TEST_POSIXTIME]: Check for input data errors, and report
52280         posixtime failures better.
52281         Improve the test data (in comments only).
52282
52283 2003-06-02  Karl Berry  <karl@gnu.org>
52284
52285         * config/mkinstalldirs (version): new variable.
52286         (--version): new option.
52287         (usage): improve message.
52288
52289 2003-05-30  Karl Berry  <karl@gnu.org>
52290
52291         * lib/mktime.c: update from libc.
52292
52293 2003-05-30  Bruno Haible  <bruno@clisp.org>
52294
52295         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
52296         * config/config.rpath: Upgrade to gettext-0.12.1.
52297
52298 2003-05-30  Bruno Haible  <bruno@clisp.org>
52299
52300         * m4/gettext.m4: Upgrade to gettext-0.12.1.
52301         * m4/nls.m4: New file, from gettext-0.12.1.
52302         * m4/po.m4: New file, from gettext-0.12.1.
52303         * m4/progtest.m4: Upgrade to gettext-0.12.1.
52304
52305 2003-05-30  Bruno Haible  <bruno@clisp.org>
52306
52307         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
52308         * lib/localcharset.h: Likewise.
52309         * lib/localcharset.c: Likewise.
52310
52311 2003-05-29  Karl Berry  <karl@gnu.org>
52312
52313         * config/config.rpath: update from gettext.
52314
52315 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52316
52317         Assume the headers required for C89 freestanding compilers.
52318         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
52319         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
52320         * m4/human.m4 (gl_HUMAN): Likewise.
52321         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
52322         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
52323         * m4/userspec.m4 (gl_USERSPEC): Likewise.
52324         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
52325         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
52326         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
52327
52328 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52329
52330         Assume the headers required for C89 freestanding compilers.
52331         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
52332         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
52333         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
52334         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
52335         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
52336         define, since <limits.h> is guaranteed to do that.
52337         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
52338         * lib/exclude.c: Include <stdbool.h> unconditionally.
52339         * lib/tempname.c: Include <stddef.h> unconditionally.
52340         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
52341         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
52342         <stddef.h> does that.
52343         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
52344         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
52345         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
52346         needed.
52347         * lib/xstrtol.c: Likewise.
52348         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
52349         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
52350
52351         * lib/addext.c (addext): Use assignment rather than cast, to avoid
52352         warnings on some platforms.
52353
52354         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52355         arbitrarily.
52356
52357 2003-05-26  Jim Meyering  <jim@meyering.net>
52358
52359         Merge in a change from coreutils:
52360         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
52361         that is guaranteed to be `no'.  Use `no_such_member' to indicate
52362         that condition, rather than `-1' which is slightly misleading.
52363         Change the name of the cache variable to have the gl_ prefix.
52364         Prompted by a patch from Richard Dawe for DJGPP.
52365
52366 2003-05-24  Karl Berry  <karl@gnu.org>
52367
52368         * config/config.guess: update from prep.
52369
52370 2003-05-22  Karl Berry  <karl@gnu.org>
52371
52372         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
52373
52374 2003-05-20  Karl Berry  <karl@gnu.org>
52375
52376         * config/config.guess: update from prep.
52377
52378 2003-05-18  Karl Berry  <karl@gnu.org>
52379
52380         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
52381         might actually be set by the user.
52382
52383         * config/depcomp, install-sh, mdate-sh: update from automake.
52384
52385 2003-05-17  Bruno Haible  <bruno@clisp.org>
52386
52387         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
52388         invalid expansion for AC_EGREP_CPP.
52389         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
52390         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
52391         Suggested by Akim Demaille <akim@epita.fr> in
52392         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
52393
52394 2003-05-12  Jim Meyering  <jim@meyering.net>
52395
52396         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
52397         the space-padded-by-default conversion specifiers, %e, %k, %l.
52398
52399 2003-05-12  Bruno Haible  <bruno@clisp.org>
52400
52401         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
52402         the string is longer than 4 KB.
52403
52404 2003-05-11  Karl Berry  <karl@gnu.org>
52405
52406         * config/config.{guess,sub}: update from prep.
52407
52408 2003-05-09  Bruno Haible  <bruno@clisp.org>
52409
52410         * modules/error: Add m4/strerror_r.m4 to file list.
52411
52412 2003-05-03  Bruno Haible  <bruno@clisp.org>
52413
52414         Upgrade to Unicode-4.0.
52415         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
52416         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
52417         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
52418         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
52419         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
52420         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
52421         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
52422         Change width of U+E0100..U+E01EF from 1 to 0.
52423
52424 2003-04-25  Jim Meyering  <jim@meyering.net>
52425
52426         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
52427         of type size_t, not int.
52428
52429 2003-04-25  Bruno Haible  <bruno@clisp.org>
52430
52431         * lib/copy-file.c: Include <stddef.h>, for size_t.
52432
52433 2003-04-21  Paul Eggert  <eggert@twinsun.com>
52434
52435         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
52436         code which expansion is under static control.  Patch imported from
52437         Akim Demaille's patch to Bison; see
52438         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
52439
52440 2003-04-14  Bruno Haible  <bruno@clisp.org>
52441
52442         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
52443
52444 2003-04-11  Jim Meyering  <jim@meyering.net>
52445
52446         Merge changes from Coreutils.
52447
52448         2003-03-22  Jim Meyering  <jim@meyering.net>
52449
52450         * lib/strftime.c (widen): Cast alloca return value to proper type.
52451
52452         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
52453
52454         From GNU libc.
52455         * lib/strftime.c (my_strftime): Handle very large width
52456         specifications for numeric values correctly.  Improve checks for
52457         overflow.
52458
52459         2003-01-19  Jim Meyering  <jim@meyering.net>
52460
52461         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
52462         definitions.
52463         (nl_get_alt_digit) [! defined my_strftime]: Define.
52464         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
52465         _nl_get_alt_digit and _nl_get_walt_digit.
52466
52467         * lib/strftime.c (my_strftime): Merge in locale-related changes from
52468         libc. These changes have no effect outside of _LIBC.
52469
52470 2003-04-10  Bruno Haible  <bruno@clisp.org>
52471
52472         * modules/findprog: New file.
52473         * MODULES.html.sh (func_all_modules): Add it.
52474
52475 2003-04-10  Bruno Haible  <bruno@clisp.org>
52476
52477         * m4/findprog.m4: New file.
52478         * m4/eaccess.m4: New file.
52479
52480 2003-04-10  Bruno Haible  <bruno@clisp.org>
52481
52482         * lib/findprog.h: New file, from GNU gettext.
52483         * lib/findprog.c: New file, from GNU gettext.
52484
52485 2003-04-05  Jim Meyering  <jim@meyering.net>
52486
52487         Merge changes from Coreutils.
52488
52489         * lib/exclude.h (PARAMS): Remove definition and uses.
52490         * lib/exclude.c: Remove uses of `PARAMS'.
52491
52492         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
52493         Add test-cases for DOS filenames. Declare program_name.
52494         (main): Set up program_name.  Patch by Rich Dawe.
52495
52496         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
52497         error from mntctl.
52498         Use mntctl's return value to drive the entry-processing loop, since
52499         we can't rely on the value of the vmt_length member in the last
52500         entry.  On some systems doing so could result in exhausting
52501         virtual memory.  Based in part on a patch from Mike Jetzer.
52502
52503 2003-04-04  Bruno Haible  <bruno@clisp.org>
52504
52505         * modules/linebreak: New file.
52506         * MODULES.html.sh (func_all_modules): Add it.
52507
52508 2003-04-04  Bruno Haible  <bruno@clisp.org>
52509
52510         * m4/linebreak.m4: New file.
52511
52512 2003-04-04  Bruno Haible  <bruno@clisp.org>
52513
52514         * lib/linebreak.h: New file, from GNU gettext.
52515         * lib/linebreak.c: New file, from GNU gettext with slight
52516         modifications.
52517         * lib/lbrkprop.h: New file, from GNU gettext.
52518
52519 2003-04-03  Bruno Haible  <bruno@clisp.org>
52520
52521         * modules/utf8-ucs4: New file.
52522         * modules/utf16-ucs4: New file.
52523         * modules/ucs4-utf8: New file.
52524         * modules/ucs4-utf16: New file.
52525         * MODULES.html.sh (func_all_modules): Add them.
52526
52527 2003-04-03  Bruno Haible  <bruno@clisp.org>
52528
52529         * m4/utf-ucs4.m4: New file.
52530         * m4/ucs4-utf.m4: New file.
52531
52532 2003-04-03  Bruno Haible  <bruno@clisp.org>
52533
52534         * lib/utf8-ucs4.h: New file, from GNU gettext.
52535         * lib/utf16-ucs4.h: New file, from GNU gettext.
52536         * lib/ucs4-utf8.h: New file, from GNU gettext.
52537         * lib/ucs4-utf16.h: New file, from GNU gettext.
52538
52539 2003-04-02  Bruno Haible  <bruno@clisp.org>
52540
52541         * modules/binary-io: New file.
52542         * MODULES.html.sh (func_all_modules): Add it.
52543
52544 2003-04-02  Bruno Haible  <bruno@clisp.org>
52545
52546         * lib/binary-io.h: New file, from GNU gettext.
52547
52548 2003-04-01  Bruno Haible  <bruno@clisp.org>
52549
52550         * modules/pathname: New file.
52551         * MODULES.html.sh (func_all_modules): Add it.
52552
52553 2003-04-01  Bruno Haible  <bruno@clisp.org>
52554
52555         * lib/pathname.h: New file, from GNU gettext.
52556         * lib/concatpath.c: New file, from GNU gettext.
52557
52558 2003-03-30  Bruno Haible  <bruno@clisp.org>
52559
52560         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
52561
52562 2003-03-30  Bruno Haible  <bruno@clisp.org>
52563
52564         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
52565         function chown() doesn't exist.
52566
52567 2003-03-28  Bruno Haible  <bruno@clisp.org>
52568
52569         * modules/copy-file: New file.
52570         * MODULES.html.sh (func_all_modules): Add it.
52571
52572 2003-03-28  Bruno Haible  <bruno@clisp.org>
52573
52574         * m4/copy-file.m4: New file.
52575
52576 2003-03-28  Bruno Haible  <bruno@clisp.org>
52577
52578         * lib/copy-file.h: New file, from GNU gettext.
52579         * lib/copy-file.c: New file, from GNU gettext.
52580
52581 2003-03-18  Jim Meyering  <jim@meyering.net>
52582
52583         * lib/quote.c (quote_n): Fix typo in comment.
52584
52585 2003-03-18  Bruno Haible  <bruno@clisp.org>
52586
52587         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
52588         checking.
52589         * m4/onceonly_2_57.m4: Likewise.
52590
52591 2003-03-17  Bruno Haible  <bruno@clisp.org>
52592
52593         * m4/onceonly.m4: Require autoconf 2.54 or newer.
52594         (m4_quote): Remove macro.
52595         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
52596
52597 2003-03-14  Jim Meyering  <jim@meyering.net>
52598
52599         Merge changes from Coreutils.
52600         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
52601         to be const, in order to avoid warnings.
52602         (obstack_room): Likewise.
52603         (obstack_empty_p): Likewise.
52604
52605 2003-03-14  Bruno Haible  <bruno@clisp.org>
52606
52607         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
52608         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
52609
52610 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52611
52612         Merge changes from Bison.
52613         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
52614         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
52615         when compiling Bison 1.875's `bitset bset = obstack_alloc
52616         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
52617         * lib/hash.c: Include <stdbool.h> unconditionally.
52618
52619 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52620
52621         * m4/onceonly.m4 (m4_quote): New macro.
52622         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
52623         Quote AC_FOREACH variable-expansions properly.
52624
52625 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52626
52627         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
52628
52629 2003-03-09  Paul Eggert  <eggert@twinsun.com>
52630
52631         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
52632         Reported by Bruce Becker; see:
52633         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
52634
52635 2003-03-03  Paul Eggert  <eggert@twinsun.com>
52636             Bruno Haible  <bruno@clisp.org>
52637
52638         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
52639         Reported by John Hughes, see
52640         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
52641
52642 2003-02-20  Bruno Haible  <bruno@clisp.org>
52643
52644         * MODULES.html.sh (func_all_modules): Add poll.
52645
52646 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52647
52648         * modules/poll: New file.
52649
52650 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52651
52652         * lib/poll_.h: New file.
52653         * lib/poll.c: New file.
52654
52655 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52656
52657         * m4/poll.m4: New file.
52658
52659 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52660
52661         * modules/mathl: New file.
52662
52663 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52664
52665         * lib/mathl.h: New file.
52666         * lib/acosl.c: New file.
52667         * lib/asinl.c: New file.
52668         * lib/atanl.c: New file.
52669         * lib/ceill.c: New file.
52670         * lib/cosl.c: New file.
52671         * lib/expl.c: New file.
52672         * lib/floorl.c: New file.
52673         * lib/frexpl.c: New file.
52674         * lib/ldexpl.c: New file.
52675         * lib/logl.c: New file.
52676         * lib/sincosl.c: New file.
52677         * lib/sinl.c: New file.
52678         * lib/sqrtl.c: New file.
52679         * lib/tanl.c: New file.
52680         * lib/trigl.c: New file.
52681         * lib/trigl.h: New file.
52682
52683 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52684
52685         * m4/mathl.m4: New file.
52686
52687 2003-02-18  Bruno Haible  <bruno@clisp.org>
52688
52689         * MODULES.html.sh (func_all_modules): Add mathl.
52690
52691 2003-02-17  Bruno Haible  <bruno@clisp.org>
52692
52693         * modules/mkdtemp: New module.
52694         * MODULES.html.sh (func_all_modules): Add it.
52695
52696 2003-02-17  Bruno Haible  <bruno@clisp.org>
52697
52698         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
52699
52700 2003-02-17  Bruno Haible  <bruno@clisp.org>
52701
52702         * lib/mkdtemp.h: New file, from GNU gettext.
52703         * lib/mkdtemp.c: New file, from GNU gettext.
52704
52705 2003-02-02  Jim Meyering  <jim@meyering.net>
52706
52707         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
52708         e.g. glibc-2.2.93.
52709
52710 2003-01-31  Bruno Haible  <bruno@clisp.org>
52711
52712         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
52713         'rpl_rename'.
52714         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
52715         'rpl_strnlen'.
52716         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
52717         'rpl_strtod'.
52718         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
52719         'rpl_utime'.
52720
52721 2003-01-31  Bruno Haible  <bruno@clisp.org>
52722
52723         * lib/rename.c: #undef rename before defining rpl_rename.
52724         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
52725
52726 2003-01-30  Bruno Haible  <bruno@clisp.org>
52727
52728         * modules/vasnprintf, modules/vasprintf: New modules.
52729         * MODULES.html.sh (func_all_modules): Add them.
52730
52731 2003-01-30  Bruno Haible  <bruno@clisp.org>
52732
52733         * m4/signed.m4: New file, from GNU gettext.
52734         * m4/longdouble.m4: New file, from GNU gettext.
52735         * m4/wchar_t.m4: New file, from GNU gettext.
52736         * m4/wint_t.m4: New file, from GNU gettext.
52737         * m4/vasnprintf.m4: New file.
52738         * m4/vasprintf.m4: New file.
52739
52740 2003-01-30  Bruno Haible  <bruno@clisp.org>
52741
52742         * lib/printf-args.h: New file, from GNU gettext.
52743         * lib/printf-args.c: New file, from GNU gettext.
52744         * lib/printf-parse.h: New file, from GNU gettext.
52745         * lib/printf-parse.c: New file, from GNU gettext.
52746         * lib/vasnprintf.h: New file, from GNU gettext.
52747         * lib/vasnprintf.c: New file, from GNU gettext.
52748         * lib/asnprintf.c: New file, from GNU gettext.
52749         * lib/vasprintf.h: New file, from GNU gettext with modifications.
52750         * lib/vasprintf.c: New file, from GNU gettext.
52751         * lib/asprintf.c: New file, from GNU gettext.
52752
52753 2003-01-29  Bruno Haible  <bruno@clisp.org>
52754
52755         * modules/stpncpy: New module.
52756         * MODULES.html.sh (func_all_modules): Add it.
52757
52758 2003-01-29  Bruno Haible  <bruno@clisp.org>
52759
52760         * m4/stpncpy.m4: New file.
52761
52762 2003-01-29  Bruno Haible  <bruno@clisp.org>
52763
52764         * lib/stpncpy.h: New file, from GNU gettext with modifications.
52765         * lib/stpncpy.c: New file, from GNU gettext with modifications.
52766
52767 2003-01-28  Bruno Haible  <bruno@clisp.org>
52768
52769         * modules/c-ctype: New module.
52770         * MODULES.html.sh (func_all_modules): Add it.
52771
52772 2003-01-28  Bruno Haible  <bruno@clisp.org>
52773
52774         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
52775         Paul Eggert.
52776         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
52777         Paul Eggert.
52778
52779 2003-01-27  Bruno Haible  <bruno@clisp.org>
52780
52781         * modules/xsetenv: New module.
52782         * MODULES.html.sh (func_all_modules): Add it.
52783
52784 2003-01-27  Bruno Haible  <bruno@clisp.org>
52785
52786         * lib/xsetenv.h: New file, from GNU gettext.
52787         * lib/xsetenv.c: New file, from GNU gettext.
52788
52789 2003-01-23  Jim Meyering  <jim@meyering.net>
52790
52791         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
52792         from working on systems without dirfd (at least Irix and OSF1/Tru64).
52793
52794 2003-01-23  Bruno Haible  <bruno@clisp.org>
52795
52796         * modules/minmax: New module.
52797         * MODULES.html.sh (func_all_modules): Add it.
52798
52799 2003-01-23  Bruno Haible  <bruno@clisp.org>
52800
52801         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
52802         Eggert.
52803
52804 2003-01-22  Bruno Haible  <bruno@clisp.org>
52805
52806         * modules/exit: New module.
52807         * MODULES.html.sh (func_all_modules): Add it.
52808
52809 2003-01-22  Bruno Haible  <bruno@clisp.org>
52810
52811         * lib/exit.h: New file, from GNU gettext.
52812
52813 2003-01-19  Bruno Haible  <bruno@clisp.org>
52814
52815         * gnulib-tool: Recognize option --extract-maintainer.
52816         (func_get_maintainer): New function.
52817         * modules/*: Add Maintainer entry.
52818
52819 2003-01-16  Jim Meyering  <jim@meyering.net>
52820
52821         * m4/regex.m4: The `regex' struct is both input and output.
52822         Initialize it before each use.  Patch by Tim Waugh.
52823
52824 2003-01-16  Bruno Haible  <bruno@clisp.org>
52825
52826         * MODULES.html.sh: Add a table of contents. Add the module name as
52827         leftmost column. Add hyperlinks.
52828
52829 2003-01-15  Bruno Haible  <bruno@clisp.org>
52830
52831         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
52832
52833 2003-01-15  Bruno Haible  <bruno@clisp.org>
52834
52835         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
52836         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
52837         suffix.
52838
52839 2003-01-15  Bruno Haible  <bruno@clisp.org>
52840
52841         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
52842
52843 2003-01-15  Bruno Haible  <bruno@clisp.org>
52844
52845         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
52846         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
52847
52848 2003-01-14  Jim Meyering  <jim@meyering.net>
52849
52850         * lib/same.c (same_name): Tweak a comment.
52851
52852 2003-01-14  Bruno Haible  <bruno@clisp.org>
52853
52854         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
52855         when a string comparison is sufficient.
52856
52857 2003-01-14  Bruno Haible  <bruno@clisp.org>
52858
52859         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
52860         'unsigned int'.
52861
52862 2003-01-14  Bruno Haible  <bruno@clisp.org>
52863
52864         * lib/hash-pjw.c: Add comment about low quality of this function.
52865
52866 2003-01-13  Bruno Haible  <bruno@clisp.org>
52867
52868         * modules/stpcpy: Distribute lib/stpcpy.h.
52869         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
52870
52871 2003-01-13  Bruno Haible  <bruno@clisp.org>
52872
52873         * modules/*: Add a description.
52874         * modules/strpbrk: Fix Makefile.am snippet.
52875         * modules/strtoimax: Fix dependencies.
52876         * modules/strtoumax: Likewise.
52877
52878 2003-01-13  Bruno Haible  <bruno@clisp.org>
52879
52880         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
52881         * modules/alloca (Makefile.am): All object files depend on alloca.h.
52882         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
52883
52884 2003-01-13  Bruno Haible  <bruno@clisp.org>
52885
52886         * gnulib-tool (func_create_testdir): Store config/* files in the main
52887         directory.
52888         * config.rpath: Move to ...
52889         * config/config.rpath: ... here.
52890         * modules/gettext: Contains config/config.rpath, not config.rpath.
52891         * modules/iconv: Likewise.
52892
52893 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52894
52895         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52896         to avoid collisions with libcurses and libreadline.
52897
52898         * m4/getstr.m4: Remove.
52899         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
52900
52901 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52902
52903         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52904         to avoid collisions with libcurses and libreadline.
52905
52906         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
52907         * lib/getstr.h, getstr.c: Remove.
52908         * lib/getline.c: Include "getline.h", to check interface.
52909         Move body of old getstr.c here: this defines MIN_CHUNK and
52910         declares getdelim2, which is renamed from getstr.
52911         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
52912
52913         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
52914         All uses changed.
52915         * lib/linebuffer.h: Likewise.
52916         (readline): Remove backward-compatibility macro.
52917
52918 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52919
52920         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52921         to avoid collisions with libcurses and libreadline.
52922         * getstr: Remove.
52923         * MODULES.html.sh: Remove getstr.
52924         * modules/getline: Depend on unlocked-io, not getstr.
52925
52926 2003-01-12  Jim Meyering  <jim@meyering.net>
52927
52928         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
52929
52930 2003-01-10  Bruno Haible  <bruno@clisp.org>
52931
52932         * modules/alloca: Change Makefile.am requirements. Simplify Include
52933         requirements. Add lib/alloca_.h to file list.
52934
52935 2003-01-10  Bruno Haible  <bruno@clisp.org>
52936
52937         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
52938
52939 2003-01-10  Bruno Haible  <bruno@clisp.org>
52940
52941         * lib/alloca_.h: New file.
52942         * lib/getdate.y: Unconditionally include alloca.h.
52943         * lib/makepath.c: Likewise.
52944         * lib/setenv.c: Likewise.
52945         * lib/userspec.c: Likewise.
52946
52947 2003-01-09  Karl Berry  <karl@gnu.org>
52948
52949         * MODULES.html.sh: include `dirname $0` in PATH, to find
52950         gnulib-tool.
52951
52952 2003-01-09  Bruno Haible  <bruno@clisp.org>
52953
52954         * modules/stdbool: Change configure.ac, Makefile.am requirements.
52955         Simplify Include requirements. Add lib/stdbool.h.in to file list.
52956
52957 2003-01-09  Bruno Haible  <bruno@clisp.org>
52958
52959         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
52960
52961 2003-01-09  Bruno Haible  <bruno@clisp.org>
52962
52963         * lib/stdbool.h.in: New file.
52964
52965 2003-01-09  Bruno Haible  <bruno@clisp.org>
52966
52967         * gnulib-tool (func_all_modules): Ignore files ending in ~.
52968         * MODULES.html.sh: Likewise.
52969
52970 2003-01-08  Jim Meyering  <jim@meyering.net>
52971
52972         * lib/full-write.c: Undefine and define-away `const' after inclusion
52973         of errno.h, not before.  Suggestion from Bruno Haible.
52974
52975 2003-01-08  Bruno Haible  <bruno@clisp.org>
52976
52977         * modules/full-read: Depend on full-write.
52978
52979 2003-01-08  Bruno Haible  <bruno@clisp.org>
52980
52981         * lib/safe-read.c: Include specification header first, to ensure its
52982         selfcontainedness.
52983         * lib/full-write.c: Likewise.
52984
52985 2003-01-07  Jim Meyering  <jim@meyering.net>
52986
52987         * lib/full-write.c: Rework so that it may serve to define full_read,
52988         too.
52989         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
52990
52991 2003-01-07  Bruno Haible  <bruno@clisp.org>
52992
52993         * lib/strtoimax.c: Include <stdint.h> as an alternative to
52994         <inttypes.h>.
52995         * lib/xstrtol.h: Likewise.
52996         * lib/xstrtoimax.c: Likewise.
52997         * lib/xstrtoumax.c: Likewise.
52998         * lib/human.h: Likewise.
52999
53000         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
53001         on systems that have <inttypes.h> but not <stdint.h>.
53002
53003 2003-01-07  Bruno Haible  <bruno@clisp.org>
53004
53005         * MODULES.html.sh: Add copyright notice.
53006         (missed_files): Omit CVS directory entries.
53007         (func_module): Make it work with sed-3.02.
53008         * MODULES.txt: Remove file.
53009
53010 2003-01-06  Jim Meyering  <jim@meyering.net>
53011
53012         * lib/version-etc.c: Update year in translatable copyright string.
53013
53014 2003-01-03  Karl Berry  <karl@gnu.org>
53015
53016         * config/config.{guess,sub}: update from prep.
53017
53018 2003-01-02  Karl Berry  <karl@gnu.org>
53019
53020         * doc/COPYING.DOC: belatedly updated to 1.2.
53021
53022 2003-01-01  Karl Berry  <karl@gnu.org>
53023
53024         * gnulib-tool (func_verify_module): report module name $module in
53025         error message, not $1.
53026         * gnulib-tool (create-testdir): don't complain if destdir couldn't
53027         be created, only if it doesn't exist.
53028         * gnulib-tool (last_checkin_date): don't expand the $Date here.
53029
53030 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53031
53032         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
53033
53034 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53035
53036         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
53037         memcmp if strcoll doesn't work.
53038
53039 2002-12-31  Bruno Haible  <bruno@clisp.org>
53040
53041         * lib/utime.c (utime_null): No need to call ftruncate if the file was
53042         nonempty.
53043
53044 2002-12-31  Bruno Haible  <bruno@clisp.org>
53045
53046         * lib/memcoll.c (STRCOLL): New macro.
53047         (memcoll): Use it.
53048
53049 2002-12-31  Bruno Haible  <bruno@clisp.org>
53050
53051         * lib/localcharset.h: New file.
53052         * lib/localcharset.c: Include it.
53053         * lib/unicodeio.c: Likewise.
53054
53055 2002-12-31  Bruno Haible  <bruno@clisp.org>
53056
53057         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
53058         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
53059
53060 2002-12-31  Bruno Haible  <bruno@clisp.org>
53061
53062         * lib/getline.h: Include <stddef.h>, for size_t.
53063
53064         * lib/unicodeio.h: Include <stddef.h>, for size_t.
53065         * lib/unicodeio.c: Don't include <stddef.h>.
53066
53067 2002-12-31  Bruno Haible  <bruno@clisp.org>
53068
53069         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
53070         HAVE_TM_ZONE.
53071
53072 2002-12-24  Karl Berry  <karl@gnu.org>
53073
53074         * config/config.guess: update from prep.
53075
53076 2002-12-24  Bruno Haible  <bruno@clisp.org>
53077
53078         General infrasructure.
53079         * m4/README: Rewritten.
53080         * m4/onceonly.m4: New file.
53081         * m4/onceonly_2_57.m4: New file.
53082
53083         Module atexit.
53084         * m4/atexit.m4: New file.
53085
53086         Module strtod.
53087         * m4/strtod.m4: New file.
53088
53089         Module strtol.
53090         * m4/strtol.m4: New file.
53091
53092         Module strtoul.
53093         * m4/strtoul.m4: New file.
53094
53095         Module memchr.
53096         * m4/memchr.m4: New file.
53097
53098         Module memcmp.
53099         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
53100         (jm_FUNC_MEMCMP): Invoke it.
53101
53102         Module memcpy.
53103         * m4/memcpy.m4: New file.
53104
53105         Module memmove.
53106         * m4/memmove.m4: New file.
53107
53108         Module memset.
53109         * m4/memset.m4: New file.
53110
53111         Module strcspn.
53112         * m4/strcspn.m4: New file.
53113
53114         Module strpbrk.
53115         * m4/strpbrk.m4: New file.
53116
53117         Module strstr.
53118         * m4/strstr.m4: New file.
53119
53120         Module strerror.
53121         * m4/strerror.m4: New file.
53122
53123         Module mktime.
53124         * m4/mktime.m4: Renamed from jm-mktime.m4.
53125         (gl_PREREQ_MKTIME): New macro.
53126         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
53127
53128         Module malloc.
53129         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
53130         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
53131         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
53132
53133         Module realloc.
53134         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
53135         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
53136         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
53137
53138         Module strftime.
53139         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
53140         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
53141         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
53142         gl_TM_GMTOFF.
53143         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
53144
53145         Module xalloc.
53146         * m4/xalloc.m4: New file.
53147
53148         Module alloca.
53149         * m4/alloca.m4: New file.
53150
53151         Module putenv.
53152         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
53153         (jm_FUNC_PUTENV): Invoke it.
53154
53155         Module setenv.
53156         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
53157         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
53158         when invoked twice.
53159         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
53160         gt_FUNC_SETENV.
53161
53162         Module memrchr.
53163         * m4/memrchr.m4: New file.
53164
53165         Module stpcpy.
53166         * m4/stpcpy.m4: New file.
53167
53168         Module strcase.
53169         * m4/strcase.m4: New file.
53170
53171         Module strdup.
53172         * m4/strdup.m4: New file.
53173
53174         Module strnlen.
53175         * m4/strnlen.m4: New file.
53176
53177         Module strndup.
53178         * m4/strndup.m4: New file.
53179
53180         Module xstrtod.
53181         * m4/xstrtod.m4: New file.
53182
53183         Module xstrtol.
53184         * m4/xstrtol.m4: New file.
53185
53186         Module getdate.
53187         * m4/getdate.m4: New file.
53188
53189         Module unlocked-io.
53190         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
53191         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
53192         * m4/jm-glibc-io.m4n: Remove file.
53193
53194         Module long-options.
53195         * m4/long-options.m4: New file.
53196
53197         Module md5.
53198         * m4/md5.m4: New file.
53199
53200         Module sha.
53201         * m4/sha.m4: New file.
53202
53203         Module getstr.
53204         * m4/getstr.m4: New file.
53205
53206         Module getline.
53207         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
53208         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
53209         <sys/types.h>, for size_t. Use the function name gnu_getline, not
53210         simply getline. Infoke gl_PREREQ_GETLINE.
53211
53212         Module obstack.
53213         * m4/obstack.m4: New file.
53214
53215         Module hash.
53216         * m4/hash.m4: New file.
53217
53218         Module readtokens.
53219         * m4/readtokens.m4: New file.
53220
53221         Module strverscmp.
53222         * m4/strverscmp.m4: New file.
53223
53224         Module stdbool.
53225         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
53226         OSF/1.
53227
53228         Module strtoll.
53229         * m4/strtoll.m4: New file.
53230
53231         Module strtoull.
53232         * m4/strtoull.m4: New file.
53233
53234         Module strtoimax.
53235         * m4/strtoimax.m4: New file.
53236
53237         Module strtoumax.
53238         * m4/strtoumax.m4: New file.
53239
53240         Module xstrtoimax.
53241         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
53242         jm_AC_PREREQ_XSTRTOIMAX.
53243         Moved the strtol prerequisites to strtol.m4.
53244         Moved the strtoll prerequisites to strtoll.m4.
53245         Moved the strtoimax prerequisites to strtoimax.m4.
53246
53247         Module xstrtoumax.
53248         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
53249         jm_AC_PREREQ_XSTRTOUMAX.
53250         Moved the strtoul prerequisites to strtoul.m4.
53251         Moved the strtoull prerequisites to strtoull.m4.
53252         Moved the strtoumax prerequisites to strtoumax.m4.
53253
53254         Module chown.
53255         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
53256         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
53257
53258         Module dup2.
53259         * m4/dup2.m4: New file.
53260
53261         Module ftruncate.
53262         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
53263         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
53264
53265         Module getgroups.
53266         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
53267         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
53268
53269         Module gettimeofday.
53270         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
53271         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
53272         gl_PREREQ_GETTIMEOFDAY.
53273
53274         Module mkdir.
53275         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
53276         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
53277
53278         Module mkstemp.
53279         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
53280         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
53281         jm_AC_TYPE_UINTMAX_T.
53282         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
53283
53284         Module stat.
53285         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
53286         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
53287
53288         Module lstat.
53289         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
53290         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
53291
53292         Module timespec.
53293         * m4/timespec.m4 (gl_TIMESPEC): New macro.
53294         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
53295         * m4/st_mtim.m4: Indentation.
53296
53297         Module nanosleep.
53298         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
53299         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
53300         gl_PREREQ_NANOSLEEP.
53301
53302         Module regex.
53303         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
53304         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
53305         (gl_REGEX): New macro.
53306
53307         Module rename.
53308         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
53309         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
53310
53311         Module rmdir.
53312         * m4/rmdir.m4: New file.
53313
53314         Module utime.
53315         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
53316         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
53317         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
53318
53319         Module dirname.
53320         * m4/dirname.m4: New file.
53321
53322         Module getopt.
53323         * m4/getopt.m4: New file.
53324
53325         Module unistd-safer.
53326         * m4/unistd-safer.m4: New file.
53327
53328         Module fnmatch.
53329         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
53330         declaration.
53331         (gl_PREREQ_FNMATCH_EXTRA): New macro.
53332         (gl_FUNC_FNMATCH_POSIX): New macro.
53333         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
53334         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
53335         simply fnmatch.
53336
53337         Module exclude.
53338         * m4/exclude.m4: New file.
53339
53340         Module human.
53341         * m4/human.m4: New file.
53342
53343         Module acl.
53344         * m4/acl.m4: Nop.
53345
53346         Module backupfile.
53347         * m4/backupfile.m4: New file.
53348         * m4/d-ino.m4: Indentation.
53349
53350         Module fsusage.
53351         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
53352         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
53353         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
53354
53355         Module dirfd.
53356         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
53357         requirements.
53358
53359         Module euidaccess.
53360         * m4/euidaccess.m4: New file.
53361
53362         Module file-type.
53363         * m4/file-type.m4: New file.
53364
53365         Module fileblocks.
53366         * m4/fileblocks.m4: New file.
53367
53368         Module filemode.
53369         * m4/filemode.m4: New file.
53370
53371         Module isdir.
53372         * m4/isdir.m4: New file.
53373
53374         Module lchown.
53375         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
53376         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
53377
53378         Module makepath.
53379         * m4/makepath.m4: New file.
53380
53381         Module modechange.
53382         * m4/modechange.m4: New file.
53383
53384         Module mountlist.
53385         * m4/mountlist.m4: New file.
53386         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
53387         Indentation.
53388
53389         Module path-concat.
53390         * m4/path-concat.m4: New file.
53391
53392         Module pathmax.
53393         * m4/pathmax.m4: New file.
53394
53395         Module same.
53396         * m4/same.m4: New file.
53397
53398         Module save-cwd.
53399         * m4/save-cwd.m4: New file.
53400
53401         Module savedir.
53402         * m4/savedir.m4: New file.
53403
53404         Module xgetcwd.
53405         * m4/xgetcwd.m4: New file.
53406         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
53407
53408         Module xreadlink.
53409         * m4/xreadlink.m4: New file.
53410
53411         Module safe-read.
53412         * m4/safe-read.m4: New file.
53413
53414         Module safe-write.
53415         * m4/safe-write.m4: New file.
53416
53417         Module closeout.
53418         * m4/closeout.m4: New file.
53419
53420         Module stdio-safer.
53421         * m4/stdio-safer.m4: New file.
53422
53423         Module getpass.
53424         * m4/getpass.m4: New file.
53425
53426         Module getugroups.
53427         * m4/getugroups.m4: New file.
53428
53429         Module group-member.
53430         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
53431         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
53432
53433         Module idcache.
53434         * m4/idcache.m4: New file.
53435
53436         Module userspec.
53437         * m4/userspec.m4: New file.
53438
53439         Module gettime.
53440         * m4/clock_time.m4: New file.
53441         * m4/gettime.m4: New file.
53442
53443         Module settime.
53444         * m4/settime.m4: New file.
53445
53446         Module posixtm.
53447         * m4/posixtm.m4: New file.
53448
53449         Module gethostname.
53450         * m4/gethostname.m4: New file.
53451
53452         Module canon-host.
53453         * m4/canon-host.m4: New file.
53454
53455         Module gettext.
53456         * m4/codeset.m4: New file, from gettext-0.11.5.
53457         * m4/gettext.m4: New file, from gettext-0.11.5.
53458         * m4/glibc21.m4: New file, from gettext-0.11.5.
53459         * m4/iconv.m4: New file, from gettext-0.11.5.
53460         * m4/intdiv0.m4: New file, from gettext-0.11.5.
53461         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
53462         * m4/inttypes.m4: New file, from gettext-0.11.5.
53463         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
53464         * m4/isc-posix.m4: New file, from gettext-0.11.5.
53465         * m4/lcmessage.m4: New file, from gettext-0.11.5.
53466         * m4/lib-ld.m4: New file, from gettext-0.11.5.
53467         * m4/lib-link.m4: New file, from gettext-0.11.5.
53468         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
53469         * m4/progtest.m4: New file, from gettext-0.11.5.
53470         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
53471         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
53472         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
53473
53474         Module localcharset.
53475         * m4/localcharset.m4: New file.
53476
53477         Module hard-locale.
53478         * m4/hard-locale.m4: New file.
53479
53480         Module mbswidth.
53481         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
53482         onceonly macros.
53483         * m4/mbrtowc.m4: Add comment.
53484
53485         Module memcasecmp.
53486         * m4/memcasecmp.m4: New file.
53487
53488         Module memcoll.
53489         * m4/memcoll.m4: New file.
53490
53491         Module unicodeio.
53492         * m4/unicodeio.m4: New file.
53493
53494         Module rpmatch.
53495         * m4/rpmatch.m4: New file.
53496
53497         Module yesno.
53498         * m4/yesno.m4: New file.
53499
53500         Module exitfail.
53501         * m4/exitfail.m4: New file.
53502
53503         Module c-stack.
53504         * m4/c-stack.m4 (gl_C_STACK): New macro.
53505         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
53506
53507         Module error.
53508         * m4/error.m4 (gl_ERROR): New macro.
53509         (jm_PREREQ_ERROR): Use onceonly macros.
53510
53511         Module fatal.
53512         * m4/fatal.m4: New file.
53513
53514         Module getloadavg.
53515         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
53516         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
53517
53518         Module getpagesize.
53519         * m4/getpagesize.m4: New file.
53520
53521         Module getusershell.
53522         * m4/getusershell.m4: New file.
53523
53524         Module physmem.
53525         * m4/physmem.m4: New file.
53526
53527         Module posixver.
53528         * m4/posixver.m4: New file.
53529
53530         Module quotearg.
53531         * m4/quotearg.m4: New file.
53532
53533         Module quote.
53534         * m4/quote.m4: New file.
53535
53536         Module readutmp.
53537         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
53538
53539         Module sig2str.
53540         * m4/sig2str.m4: New file.
53541
53542         Other.
53543         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
53544         ulonglong.m4.
53545         * m4/intmax_t.m4: New file.
53546         * m4/d-type.m4: Indentation.
53547         * m4/jm-macros.m4: Update.
53548         * m4/prereq.m4 (jm_PREREQ): Update.
53549         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
53550         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
53551         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
53552         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
53553         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
53554         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
53555         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
53556         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
53557         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
53558         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
53559         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
53560         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
53561         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
53562         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
53563         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
53564         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
53565         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
53566         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
53567         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
53568
53569 2002-12-24  Bruno Haible  <bruno@clisp.org>
53570
53571         * MODULES.txt: Update according to m4/ changes.
53572
53573         Module gettext.
53574         * config.rpath: New file, from gettext-0.11.5.
53575
53576         * modules/*: New module descriptions.
53577         * gnulib-tool: New file.
53578         * MODULES.html.sh: New file.
53579
53580 2002-12-21  Karl Berry  <karl@gnu.org>
53581
53582         * doc/fdl.texi: update to version 1.2.
53583
53584 2002-12-19  Karl Berry  <karl@gnu.org>
53585
53586         * config/config.guess: update from prep.
53587
53588 2002-12-18  Bruno Haible  <bruno@clisp.org>
53589
53590         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
53591         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
53592
53593 2002-12-17  Bruno Haible  <bruno@clisp.org>
53594
53595         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
53596         stdlib.h, string.h.
53597
53598 2002-12-17  Bruno Haible  <bruno@clisp.org>
53599
53600         * lib/canon-host.c (strdup): Remove unused declaration.
53601
53602         * lib/fsusage.c: Include full_read.h.
53603         (get_fs_usage): Use full_read instead of safe_read.
53604
53605         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
53606
53607 2002-12-12  Karl Berry  <karl@gnu.org>
53608
53609         * config/config.guess: update from prep.
53610
53611 2002-12-11  Bruno Haible  <bruno@clisp.org>
53612
53613         * m4/setenv.m4: New file, from gettext-0.11.5.
53614
53615 2002-12-11  Bruno Haible  <bruno@clisp.org>
53616
53617         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
53618         not unsetenv().
53619         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
53620         modifications:
53621
53622         2002-12-11  Bruno Haible  <bruno@clisp.org>
53623
53624                 * setenv.c (alloca): Fall back to malloc.
53625                 (freea): New macro.
53626                 (setenv): Use freea() to free memory allocated with alloca().
53627
53628         2002-11-13  Bruno Haible  <bruno@clisp.org>
53629
53630                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
53631                 function declarations.
53632                 * unsetenv.c (unsetenv): Likewise.
53633
53634         2002-03-04  Bruno Haible  <bruno@clisp.org>
53635
53636                 Portability to AIX 4.3.3.
53637                 * unsetenv.c: New file, extracted from setenv.c.
53638                 * setenv.c: Move the unsetenv() function to unsetenv.c.
53639
53640         2001-12-20  Bruno Haible  <bruno@clisp.org>
53641
53642                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
53643                 use malloc instead. For SunOS 4.
53644
53645         2001-12-11  Bruno Haible  <bruno@clisp.org>
53646
53647                 * setenv.c: Declare alloca.
53648                 (compar_fn_t): New typedef.
53649                 (KNOWN_VALUE, STORE_VALUE): Use it.
53650
53651         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
53652         setenv.h.
53653
53654 2002-12-10  Paul Eggert  <eggert@twinsun.com>
53655
53656         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
53657         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
53658         Choose values that are less likely to collide with system fnmatch
53659         options.
53660         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
53661         defined (e.g., a pure POSIX system).
53662         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
53663         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
53664
53665 2002-12-06  Paul Eggert  <eggert@twinsun.com>
53666
53667         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
53668         a pain in practice to deal with generated m4 files.  This change
53669         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
53670
53671         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
53672         and jm-glibc-io.m4, as they are no longer a special case.
53673         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
53674         kludge and the auto-generation stuff.  Check only whether the
53675         functions are declared, not whether they exist, since older hosts
53676         that don't declare the functions can't use the optimization anyway.
53677
53678 2002-12-06  Jim Meyering  <jim@meyering.net>
53679
53680         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
53681
53682         Merge in changes from libc's misc/error.c, in preparation
53683         for the merge of gnulib's changes back into libc.
53684
53685         * lib/error.c (_): Define only if not already defined.
53686         Move definition to follow all #include directives.
53687         Include unlocked-io.h only if !_LIBC.
53688         [_LIBC]: Include <libio/libioP.h>.
53689         [USE_IN_LIBIO]: Include <libio/iolibio.h>
53690         (fflush): Tweak definition to use INTUSE.
53691         (putc): Define.
53692
53693 2002-12-05  Paul Eggert  <eggert@twinsun.com>
53694
53695         * lib/alloca.c [defined emacs]: Include "lisp.h".
53696         (xalloc_die) [defined emacs]: New macro.
53697         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
53698         [! defined emacs]: Include <xalloc.h>.
53699         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
53700         (pointer): Typedef to POINTER_TYPE *.
53701         (malloc): Remove decl; we now always use xmalloc.
53702         (alloca): Use old-style definition, since Emacs needs this.
53703         Check for arithmetic overflow when computing combined size.
53704
53705 2002-12-04  Paul Eggert  <eggert@twinsun.com>
53706
53707         Do not generate unlocked-io.h automatically, since it's easier to
53708         maintain it by hand.
53709
53710         * lib/unlocked-io.h: New file, from GNU diffutils,
53711         but with proper copyright notice and attribution.
53712         * lib/gen-uio: Remove.
53713         * lib/Makefile.am: Add copyright notice.
53714         (libfetish_a_SOURCES): Add unlocked-io.h.
53715         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
53716         (DISTCLEANFILES, io_functions): Remove macros.
53717         (EXTRA_DIST): Remove gen_uio.
53718         (unlocked-io.h): Remove rule.
53719
53720 2002-12-04  Jim Meyering  <jim@meyering.net>
53721
53722         Reflect the fact that stat.c and lstat.c are no longer generated.
53723         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
53724         (DISTCLEANFILES): Likewise.
53725         (EXTRA_DIST): Likewise.
53726         (all_local): Don't depend on stat.c or lstat.c.
53727         (stat.c, lstat.c): Remove rules.
53728         (EXTRA_DIST): Remove xstat.in.
53729
53730         * lib/xstat.in: Remove file.  Contents moved into stat.c.
53731         * lib/stat.c: New file.  Contents mostly from xstat.in.
53732         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
53733         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
53734
53735         * lib/safe-read.c: Rework so that it may serve to define safe_write,
53736         too.
53737         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
53738
53739 2002-12-03  Jim Meyering  <jim@meyering.net>
53740
53741         * lib/safe-read.c, safe-write.c: Change variable names and comments,
53742         but not semantics, to minimize the differences between these two files.
53743         (safe_read): Change comment to mention SAFE_READ_ERROR.
53744
53745         * lib/safe-read.c (IS_EINTR): Define.
53746         (safe_read): Use IS_EINTR in place of in-function cpp directives.
53747
53748 2002-12-02  Jim Meyering  <jim@meyering.net>
53749
53750         * lib/safe-read.c (EINTR): Define.
53751         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
53752         (INT_MAX): Provide fallback.
53753         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
53754
53755         * lib/safe-read.h (SAFE_READ_ERROR): Define.
53756
53757 2002-12-02  Bruno Haible  <bruno@clisp.org>
53758
53759         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
53760         Define, taken from safe-read.c.
53761         (INT_MAX): Provide fallback.
53762         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
53763         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
53764
53765         * lib/safe-read.c (EINTR): Remove definition.
53766         (safe_read): Don't use EINTR if it is absent.
53767
53768 2002-12-01  Jim Meyering  <jim@meyering.net>
53769
53770         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
53771         zero.
53772         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
53773
53774 2002-11-27  Paul Eggert  <eggert@twinsun.com>
53775
53776         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
53777         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
53778         with `if (! (value < limit)) abort ();', for readability.
53779
53780 2002-11-26  Karl Berry  <karl@gnu.org>
53781
53782         * lib/strdup.c: copy from libc again, with jim's ok.
53783         * lib/.cppi-disable: re-add strdup.c
53784
53785 2002-11-25  Karl Berry  <karl@gnu.org>
53786
53787         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
53788         instead of "strtol.c".
53789
53790 2002-11-25  Karl Berry  <karl@gnu.org>
53791
53792         * config/install-sh: update from automake for variable quoting, $0 in
53793         error msgs, etc.
53794
53795         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
53796         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
53797         entry.
53798
53799 2002-11-25  Jim Meyering  <jim@meyering.net>
53800
53801         * lib/mktime.c: Sync from libc, now that it has the latest fix.
53802
53803 2002-11-24  Karl Berry  <karl@gnu.org>
53804
53805         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
53806         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
53807
53808 2002-11-24  Jim Meyering  <jim@meyering.net>
53809
53810         Update from coreutils:
53811
53812         * lib/mktime.c: Merge in changes from libc.
53813
53814         Avoid a link-time failure on some Linux systems.
53815         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
53816         (otherwise).
53817         (__mon_yday): Declare with the STATIC attribute.
53818         (__mktime_internal): Likewise.
53819         Based on a report from Greg Schafer.
53820
53821 2002-11-23  Jim Meyering  <jim@meyering.net>
53822
53823         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
53824         Use `unsigned', not `int', as type of index.
53825
53826         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
53827
53828         * lib/fsusage.c: Remove unneeded parentheses around operands of
53829         `defined'.
53830
53831 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53832
53833         * lib/quotearg.h: Allow multiple inclusion by surrounding with
53834         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
53835         so that we can be included first.
53836         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
53837         * lib/quotearg.c: Include quotearg.h immediately after config.h.
53838         No need to include stddef.h or sys/types.h any more.
53839         Surround local include files with "", not "<>".
53840         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
53841         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
53842         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
53843         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
53844         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
53845         (ISPRINT): Remove; no longer needed now that we assume C89.
53846
53847         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
53848         Preserve errno.
53849
53850         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
53851         quotearg_char): Use SIZE_MAX rather than
53852         (size_t) -1 when we are talking about "infinity".
53853
53854         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
53855
53856 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53857
53858         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
53859         hint that one should use `if (! x) abort ();' rather than `assert
53860         (x);', and anyway it's one less thing to worry about configuring.
53861         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
53862         hash_rehash, hash_insert): Use abort rather than assert.
53863
53864 2002-11-22  Bruno Haible  <bruno@clisp.org>
53865
53866         * lib/safe-read.h: Assume C89. Add comments.
53867         (safe_read): Change return type to size_t.
53868         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
53869         byte counts > SSIZE_MAX correctly.
53870         * lib/safe-write.h: New file.
53871         * lib/safe-write.c: New file.
53872         * lib/full-read.h: New file.
53873         * lib/full-read.c: New file.
53874         * lib/full-write.h: Assume C89. Add comments.
53875         * lib/full-write.c: Include safe-write.h.
53876         (full_write): Rewritten to use safe_write.
53877         Suggested by Jim Meyering and Paul Eggert.
53878
53879 2002-11-21  Jim Meyering  <jim@meyering.net>
53880
53881         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
53882
53883         Merge in changes from the coreutils.
53884
53885         2002-09-25  Paul Eggert  <eggert@twinsun.com>
53886         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
53887         <stdint.h>.
53888         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
53889         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
53890         int.  Work more efficiently if X is the same width as uintmax_t.
53891         Do not compare X to -1, to avoid bogus compiler warning.
53892         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
53893         Don't assume that f_frsize and f_bsize are the same type.
53894
53895         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
53896         warning on FreeBSD.
53897
53898         * lib/makepath.c (make_path): Restore umask *before* creating the final
53899         component.
53900         (make_path): Minor reformatting.
53901
53902         * lib/xmalloc.c: Adjust to work with new autoconf macros,
53903         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
53904         HAVE_MALLOC/HAVE_REALLOC.
53905
53906         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
53907         dummy ones.  At least on GNU/Linux systems, `auto' means something
53908         else.
53909         From Michael Stone.
53910
53911 2002-11-21  Bruno Haible  <bruno@clisp.org>
53912
53913         Remove case insensitive option matching.
53914         * lib/argmatch.h (argcasematch): Remove declaration.
53915         (ARGCASEMATCH): Remove macro.
53916         (__xargmatch_internal): Remove case_sensitive argument.
53917         (XARGMATCH): Update.
53918         (XARGCASEMATCH): Remove macro.
53919         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
53920         case_sensitive argument.
53921         (argcasematch): Remove function.
53922         (__xargmatch_internal): Remove case_sensitive argument.
53923         (main): Use XARGMATCH instead of XARGCASEMATCH.
53924
53925         * lib/xmalloc.c: Change compile-time error message. Add comment about
53926         required autoconf version.
53927
53928 2002-11-20  Paul Eggert  <eggert@twinsun.com>
53929
53930         Merge argmatch cleanups from Bison.  Assume C89.
53931
53932         * lib/argmatch.c: Include config.h here, not in argmatch.h.
53933         Include stdlib.h, for EXIT_FAILURE.
53934         Always include <string.h>, since we assume C89.
53935         (EXIT_FAILURE): Remove pre-C89 bug workaround.
53936         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
53937         Include <stddef.h> instead, since it's all we need for size_t.
53938         (PARAMS): Remove.  All uses removed.
53939         (ARRAY_CARDINALITY): Do not bother to #undef.
53940         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
53941         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
53942         Remove unnecessary parentheses.
53943         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
53944         Insert necessary parentheses.
53945         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
53946         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
53947
53948 2002-11-19  Bruno Haible  <bruno@clisp.org>
53949
53950         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
53951         * lib/mbswidth.h: Include <stddef.h>, for size_t.
53952
53953         * lib/mbswidth.h (PARAMS): Remove macro.
53954         (mbswidth, mbsnwidth): Use ANSI C function declarations.
53955         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
53956
53957         * lib/gcd.h (PARAMS): Remove macro.
53958         (gcd): Use ANSI C function declarations.
53959         * lib/gcd.c (gcd): Likewise.
53960
53961 2002-11-15  Bruno Haible  <bruno@clisp.org>
53962
53963         * lib/strcspn.c: Include <stddef.h>.
53964         (strcspn): Use ANSI C function declaration. Change return type to
53965         size_t. Use NULL.
53966         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
53967         (strpbrk): Use NULL.
53968         * lib/strpbrk.h (PARAMS): Remove macro.
53969         (strpbrk): Use ANSI C function declaration.
53970         * lib/strstr.c: Don't include <sys/types.h>.
53971         * lib/strstr.h (PARAMS): Remove macro.
53972         (strstr): Use ANSI C function declarations.
53973
53974 2002-11-14  Karl Berry  <karl@gnu.org>
53975
53976         * config/mkinstalldirs: `do' on separate line, instead of
53977         `for var; do'.
53978
53979 2002-11-06  Bruno Haible  <bruno@clisp.org>
53980
53981         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
53982         * lib/gcd.c (gcd): Likewise.
53983
53984 2002-11-05  Bruno Haible  <bruno@clisp.org>
53985
53986         * lib/gcd.h: New file, from gettext-0.11.5.
53987         * lib/gcd.c: New file, from gettext-0.11.5.
53988
53989 2002-11-05  Bruno Haible  <bruno@clisp.org>
53990
53991         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53992         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53993         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53994         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53995
53996         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
53997         <libintl.h>.
53998         * lib/makepath.c: Include gettext.h instead of <locale.h> and
53999         <libintl.h>.
54000
54001         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
54002         * lib/human.c: Include gettext.h instead of <libintl.h>.
54003         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
54004         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
54005         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
54006         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
54007         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
54008         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
54009         (textdomain): Remove definition.
54010         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
54011
54012         * lib/long-options.c: Remove include of <libintl.h> and definition of
54013         _.
54014         * lib/same.c: Remove include of <libintl.h> and definition of _.
54015
54016 2002-11-04  Owen Taylor  <otaylor@redhat.com>
54017
54018         * lib/config.charset: A few additions for Solaris.
54019
54020 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54021
54022         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
54023         * lib/localcharset.c (locale_charset): Declare as extern "C".
54024
54025 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54026
54027         * lib/config.charset: msdos in uk_UA uses CP1125.
54028
54029 2002-11-04  Bruno Haible  <bruno@clisp.org>
54030
54031         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
54032         * lib/strcase.h: New file, from GNU gettext-0.11.5.
54033         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
54034         * lib/strstr.h: New file, from GNU gettext-0.11.5.
54035         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
54036
54037 2002-11-04  Bruno Haible  <bruno@clisp.org>
54038
54039         * lib/localcharset.c (locale_charset): Don't return an empty string.
54040
54041 2002-11-04  Bruno Haible  <bruno@clisp.org>
54042
54043         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
54044         aliases.
54045
54046 2002-11-04  Bruno Haible  <bruno@clisp.org>
54047
54048         * lib/config.charset: Update for newest glibc. Add canonical names
54049         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
54050
54051 2002-11-04  Bruno Haible  <bruno@clisp.org>
54052
54053         * lib/config.charset: Add support for NetBSD.
54054
54055 2002-11-04  Bruno Haible  <bruno@clisp.org>
54056
54057         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
54058
54059 2002-11-01  Bruno Haible  <bruno@clisp.org>
54060
54061         * configure.in: Add AC_CONFIG_AUX_DIR call.
54062         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
54063         test/Makefile.
54064         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
54065
54066 2002-09-28  Karl Berry  <karl@gnu.org>
54067
54068         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
54069         installed automake until the next release, since changes have been
54070         made.
54071
54072 2002-09-25  Karl Berry  <karl@gnu.org>
54073
54074         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
54075         * lib/getopt*: copy from libc/posix.
54076         * lib/gettext.h: copy from gettext.
54077         * lib/.cppi-disable: add strdup.c, gettext.h.
54078
54079 2002-09-25  Karl Berry  <karl@gnu.org>
54080
54081         * config/srclist.txt: enable gettext.h check.
54082         * config/config.{guess,sub}: update from prep.
54083         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
54084                 from automake 1.6.3.
54085         See srclist*.
54086
54087 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
54088
54089         * regex.c (PATFETCH): Remove the translating fetch.
54090         (PATFETCH_RAW): Rename to PATFETCH.
54091         (set_image_of_range): New fun.
54092         (SET_RANGE_TABLE_WORK_AREA): Use it.
54093         (regex_compile): Don't translate the pattern chars so eagerly.
54094         Only do it when inserting an `exactn' bytecode or when handling
54095         a char-range.
54096         (mutually_exclusive_p): Avoid empty statement.
54097
54098 2002-07-06  Jim Meyering  <meyering@lucent.com>
54099
54100         * m4/README: Don't mention Makefile.am.in.
54101         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
54102
54103 2002-07-01  Jim Meyering  <meyering@lucent.com>
54104
54105         * lib/c-stack.c: Include sys/time.h.
54106         From Volker Borchert.
54107
54108 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54109
54110         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
54111
54112 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54113
54114         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
54115         New macro.  Use it uniformly instead of
54116         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
54117         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
54118         reported by Vin Shelton.
54119
54120 2002-06-22  Paul Eggert  <eggert@twinsun.com>
54121
54122         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
54123         Do not assume SA_SIGINFO behavior.
54124         Bug reported by Jim Meyering on NetBSD 1.5.2.
54125
54126 2002-06-22  Jim Meyering  <meyering@lucent.com>
54127
54128         * m4/c-stack.m4: New file, from diffutils-2.8.2.
54129         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
54130
54131         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
54132         now that configure.ac uses AC_GNU_SOURCE.
54133         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
54134         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
54135
54136         Update to latest tools.  Suggestions from Paul Eggert.
54137         * m4/stdbool.m4: New file, from diffutils-2.8.2.
54138         * m4/gnu-source.m4: Update from diffutils-2.8.2.
54139         * m4/fnmatch.m4: Likewise.
54140         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
54141         to AC_HEADER_STDBOOL
54142
54143 2002-06-22  Jim Meyering  <meyering@lucent.com>
54144
54145         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
54146         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
54147
54148 2002-06-22  Jim Meyering  <meyering@lucent.com>
54149
54150         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
54151
54152         * lib/exitfail.c, exitfail.h: Likewise.
54153         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
54154
54155         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
54156         of fnmatch.h.
54157         (EXTRA_DIST): Add fnmatch_loop.c.
54158         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
54159
54160         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
54161         * lib/fnmatch.c: Update from diffutils-2.8.2.
54162         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
54163         * lib/fnmatch.h: Remove file.
54164
54165 2002-06-21  Jim Meyering  <meyering@lucent.com>
54166
54167         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
54168         * m4/mbrtowc.m4: Likewise.
54169
54170         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
54171         * m4/mbswidth.m4: Reflect name change:
54172         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
54173         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
54174
54175         * m4/lib-link.m4: Update from gettext-0.11.2.
54176         * m4/gettext.m4: Likewise.
54177
54178         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
54179         From Alfred M. Szmidt.
54180
54181 2002-06-18  Paul Eggert  <eggert@twinsun.com>
54182
54183         * lib/file-type.h: Report an error if neither S_ISREG nor
54184         S_IFREG is defined, instead of using a test specific to glibc
54185         2.2.  This should be safe, since POSIX requires S_ISREG and
54186         Unix Version 7 had S_IFREG.  We don't need to check for
54187         <sys/types.h> since we don't use any symbols that it defines.
54188
54189 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
54190
54191         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
54192         $@-t, so that each temporary file name is unique and valid in the first
54193         8 characters, for operation under DOS.
54194
54195 2002-06-15  Paul Eggert  <eggert@twinsun.com>
54196
54197         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
54198
54199 2002-06-15  Jim Meyering  <meyering@lucent.com>
54200
54201         Work even with DJGPP 2.03, which lacks support for symlinks.
54202         From Richard Dawe.
54203         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
54204         is defined.
54205         * lib/lchown.c (S_ISLNK): Likewise.
54206
54207 2002-06-15  Jim Meyering  <meyering@lucent.com>
54208
54209         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
54210         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
54211         have been included before this file.
54212
54213 2002-06-14  Jim Meyering  <meyering@lucent.com>
54214
54215         * lib/file-type.h: Use the version from diffutils-2.8.2.
54216         * lib/file-type.c: Likewise.
54217
54218 2002-06-07  Jim Meyering  <meyering@lucent.com>
54219
54220         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
54221         They're needed at least for NetBSD 1.5.2.
54222         ($statxfs_includes): Include those same headers.
54223         ($statxfs_includes): Include sys/vfs.h if available.
54224         ($statxfs_includes): Likewise for sys/statvfs.h.
54225         Check for the following members in both structs statfs and statvfs:
54226         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
54227
54228 2002-06-01  Jim Meyering  <meyering@lucent.com>
54229
54230         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
54231         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
54232
54233 2002-05-28  Jim Meyering  <meyering@lucent.com>
54234
54235         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
54236         Reported by Volker Borchert.
54237
54238 2002-05-27  Jim Meyering  <meyering@lucent.com>
54239
54240         Fix a problem seen only on nonconforming systems whereby ls.c's
54241         use of localtime, and then of gettimeofday would cause trouble:
54242         the localtime call used to initialize rpl_gettimeofday's save
54243         mechanism would clobber ls's current local time information so
54244         that in any long listing the first file would always be listed
54245         with date 1970-01-01.  Analysis by Volker Borchert.
54246
54247         * lib/gettimeofday.c (localtime): Undefine.
54248         (rpl_localtime): New function.
54249
54250 2002-05-27  Jim Meyering  <meyering@lucent.com>
54251
54252         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
54253         localtime.
54254
54255         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
54256         use the replacement function; it wouldn't resolve at link time.
54257         Reported by Volker Borchert.
54258
54259 2002-05-22  Jim Meyering  <meyering@lucent.com>
54260
54261         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
54262         file-type.h.
54263         * lib/file-type.h: New file.
54264         * lib/file-type.c (file_type): New file/function.  Extracted from
54265         diffutils.
54266
54267 2002-04-30  Jim Meyering  <meyering@lucent.com>
54268
54269         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
54270
54271 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54272
54273         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
54274
54275 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54276
54277         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
54278         Do not check for alloca.h (no longer used) or stdbool.h (was never
54279         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
54280
54281 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54282
54283         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
54284
54285 2002-04-29  Jim Meyering  <meyering@lucent.com>
54286
54287         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
54288         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
54289         Use AC_FUNC_STRNLEN here instead.
54290
54291         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
54292         With autoconf-2.53a, it's part of AC_PROG_CC.
54293
54294 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54295
54296         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
54297         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
54298
54299 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54300
54301         * lib/sig2str.h, lib/sig2str.c: New files.
54302         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
54303
54304 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54305
54306         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
54307         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
54308         of 127, since 64 is the largest conceivable number for ancient
54309         nonstandard hosts.
54310         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
54311
54312 2002-04-28  Jim Meyering  <meyering@lucent.com>
54313
54314         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
54315
54316 2002-04-24  Jim Meyering  <meyering@lucent.com>
54317
54318         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
54319         (jm_PREREQ): Use it.
54320
54321         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
54322         mach/mach.h fcntl.h.
54323         Check for this function: setlocale.
54324
54325 2002-04-24  Jim Meyering  <meyering@lucent.com>
54326
54327         * lib/gettext.h: New file, from Gettext.
54328         * lib/Makefile.am (INCLUDES): Remove -I../intl.
54329         (libfetish_a_SOURCES): Add gettext.h.
54330
54331 2002-04-16  Jim Meyering  <meyering@lucent.com>
54332
54333         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
54334         ut_pid, ut_id, ut_exit.
54335
54336 2002-04-16  Jim Meyering  <meyering@lucent.com>
54337
54338         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
54339         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
54340         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
54341
54342 2002-04-12  Jim Meyering  <meyering@lucent.com>
54343
54344         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
54345         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
54346         existence of the getmntinfo function.  Needed for Darwin 5.3.
54347
54348         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
54349         This is necessary at least on Darwin 5.3.
54350
54351         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
54352         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
54353         strnlen.o in the library, and that makes some versions of ranlib
54354         object.
54355
54356 2002-04-12  Jim Meyering  <meyering@lucent.com>
54357
54358         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
54359
54360 2002-04-09  Jim Meyering  <meyering@lucent.com>
54361
54362         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
54363         to be more precise.  Rather than saying we're checking whether the
54364         function `works', say what we're testing.
54365         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
54366         Reported by Bruno Haible.
54367
54368 2002-03-10  Jim Meyering  <meyering@lucent.com>
54369
54370         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
54371         Suggestion from Santiago Vila.
54372
54373 2002-03-08  Jim Meyering  <meyering@lucent.com>
54374
54375         * lib/rename.c: Mention that this wrapper is needed also on
54376         mips-dec-ultrix4.4 systems.
54377
54378 2002-03-02  Jim Meyering  <meyering@lucent.com>
54379
54380         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
54381         not HAVE_CLOCK_SETTIME.
54382
54383 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54384
54385         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
54386         Check for clock_settime.
54387
54388 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54389
54390         * lib/nanosleep.h: Rename to....
54391         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
54392
54393         * lib/gettime.c: New file.
54394         * lib/settime.c: New file.
54395         * lib/stime.c: Remove.
54396
54397         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
54398         timespec.h.  Remove nanosleep.h.
54399
54400 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54401
54402         * m4/acl.m4: New file.
54403         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
54404         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
54405
54406 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54407
54408         * lib/acl.c, lib/acl.h: New files.
54409         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
54410
54411 2002-02-24  Jim Meyering  <meyering@lucent.com>
54412
54413         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
54414         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
54415         cause trouble.  Reported by Nelson Beebe.
54416
54417 2002-02-23  Paul Eggert  <eggert@twinsun.com>
54418
54419         * lib/path-concat.c (xpath_concat): Reorder code to pacify
54420         compilers that don't know that xalloc_die never returns.
54421
54422 2002-02-20  Jim Meyering  <meyering@lucent.com>
54423
54424         * lib/getdate.c: Regenerate using bison-1.33.
54425
54426 2002-02-17  Jim Meyering  <meyering@lucent.com>
54427
54428         * config/config.guess (main): Don't use `head -1'; it's no longer
54429         portable. Use `sed 1q' instead.
54430
54431 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
54432
54433         * m4/codeset.m4: Upgrade to gettext-0.11.
54434         * m4/gettext.m4: Upgrade to gettext-0.11.
54435         * m4/glibc21.m4: Upgrade to gettext-0.11.
54436         * m4/iconv.m4: Upgrade to gettext-0.11.
54437         * m4/isc-posix.m4: Upgrade to gettext-0.11.
54438         * m4/lcmessage.m4: Upgrade to gettext-0.11.
54439         * m4/lib-ld.m4: New file, from gettext-0.11.
54440         * m4/lib-link.m4: New file, from gettext-0.11.
54441         * m4/lib-prefix.m4: New file, from gettext-0.11.
54442         * m4/progtest.m4: Upgrade to gettext-0.11.
54443
54444 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54445
54446         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
54447         (jm_PREREQ): Use it.
54448
54449 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54450
54451         * lib/posixver.c, lib/posixver.h: New files.
54452         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54453
54454 2002-02-02  Paul Eggert  <eggert@twinsun.com>
54455             Bruno Haible  <bruno@clisp.org>
54456
54457         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
54458         (fwrite_success_callback): New declaration.
54459         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
54460         print_unicode_char. Call failure callback instead of error.
54461         (fwrite_success_callback): New function.
54462         (exit_failure_callback): New function.
54463         (fallback_failure_callback): New function.
54464         (print_unicode_char): Call unicode_to_mb.
54465
54466 2002-01-26  Jim Meyering  <meyering@lucent.com>
54467
54468         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
54469         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
54470
54471 2002-01-26  Jim Meyering  <meyering@lucent.com>
54472
54473         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
54474
54475 2002-01-22  Paul Eggert  <eggert@twinsun.com>
54476
54477         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
54478
54479 2002-01-22  Jim Meyering  <meyering@lucent.com>
54480
54481         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
54482         Otherwise, some versions of automake would omit the rule that makes
54483         Makefile from Makefile.in.
54484
54485 2002-01-21  Paul Eggert  <eggert@twinsun.com>
54486
54487         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
54488         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54489         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
54490         (memcoll): Set errno to zero if there is no error.
54491
54492         * lib/quotearg.c (quotearg_buffer_restyled):
54493         Fix bug with quoting buffers containing NUL when backslashing escapes.
54494         This bug was exposed by the other changes in this patch.
54495         (quotearg_n_options): New arg ARGSIZE.
54496         All callers changed.
54497         (quoting_options_from_style): New function.
54498         (quotearg_n_style): Use it.
54499         (quotearg_n_style_mem): New function.
54500
54501         * lib/quotearg.h (quotearg_n_style_mem): New function.
54502
54503 2002-01-19  Jim Meyering  <meyering@lucent.com>
54504
54505         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
54506         Remove useless quotes: DF_PROG="df".
54507         * m4/strnlen.m4: New file.
54508
54509 2002-01-16  Paul Eggert  <eggert@twinsun.com>
54510
54511         * lib/backupfile.c (ISDIGIT): Comment fix.
54512         * lib/getdate.y (ISDIGIT): Likewise.
54513         * lib/posixtm.c (ISDIGIT, year): Likewise.
54514         * lib/strverscmp.c (ISDIGIT): Likewise.
54515         * lib/userspec.c (ISDIGIT): Likewise.
54516
54517 2002-01-16  Jim Meyering  <meyering@lucent.com>
54518
54519         * lib/getdate.y: Add three semicolons, each just before a closing
54520         brace. Bison (as of version 1.31) no longer papers over that mistake.
54521
54522 2002-01-05  Jim Meyering  <meyering@lucent.com>
54523
54524         * lib/version-etc.c (version_etc_copyright): Update copyright year.
54525
54526 2001-12-19  Paul Eggert  <eggert@twinsun.com>
54527
54528         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
54529         not silently exit merely because the output buffer happens to
54530         have nothing pending.
54531
54532 2001-12-18  Paul Eggert  <eggert@twinsun.com>
54533
54534         See the big note in ../ChangeLog.
54535         * lib/human.c (suffixes): Prefer K to k for 1024.
54536         (generate_suffix_backwards): New function.
54537         (human_readable_inexact): Use it.
54538         * lib/xstrtol.c (__xstrtol): If there is no number but there
54539         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
54540         Accept 'K' as well as 'k'.
54541
54542 2001-12-15  Jim Meyering  <meyering@lucent.com>
54543
54544         * lib/regex.h (__restrict_arr): Update from libc.
54545
54546         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
54547         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
54548         (STREQ): Define.
54549
54550 2001-12-14  Jim Meyering  <meyering@lucent.com>
54551
54552         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
54553         Suggestion from Bruno Haible.
54554
54555 2001-12-10  Jim Meyering  <meyering@lucent.com>
54556
54557         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
54558         xrealloc, Instead, include "xalloc.h".
54559         (initbuffer): Don't cast xmalloc return value to char*.
54560         (readline): Reword comment.
54561         Don't cast xrealloc return value to char*
54562         Return NULL, not 0.
54563
54564 2001-12-09  Jim Meyering  <meyering@lucent.com>
54565
54566         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
54567         about `signed and unsigned type in conditional expression'.
54568         * lib/posixtm.c (posix_time_parse): Likewise.
54569
54570         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
54571
54572         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
54573         to avoid a pedantic warning.
54574
54575         * lib/getstr.c: Don't include assert.h.
54576         (getstr): Remove warning-evoking assertions.
54577         Return -1 if offset parameter is out of bounds.
54578         Change the type of a local from int to size_t.
54579
54580         * lib/strftime.c (my_strftime_localtime_r): Include this function
54581         definition in the `#if ! HAVE_TM_GMTOFF' block.
54582
54583         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
54584         Include xalloc.h instead.
54585
54586 2001-12-02  Jim Meyering  <meyering@lucent.com>
54587
54588         * lib/tempname.c: Don't declare getenv, thus reverting the change of
54589         2001-11-18.  It's no longer necessary, now that stdlib.h is always
54590         included.
54591
54592         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
54593         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
54594
54595 2001-11-30  Akim Demaille  <akim@epita.fr>
54596
54597         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
54598         before being defined.
54599
54600 2001-11-27  Paul Eggert  <eggert@twinsun.com>
54601
54602         * lib/quotearg.h (quotearg_n, quotearg_n_style):
54603         First arg is int, not unsigned.
54604         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
54605         (SIZE_MAX, UINT_MAX): New macros.
54606         (quotearg_n_options): Abort if N is negative.
54607         Avoid overflow check on hosts where size_t is 64 bits and int
54608         is 32 bits, as overflow is impossible there.
54609         Fix off-by-one typo that caused unnecessary reallocation.
54610
54611 2001-11-27  Jim Meyering  <meyering@lucent.com>
54612
54613         * lib/tempname.c: Merge with version from libc.
54614         * lib/regex.c: Likewise.
54615
54616         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
54617         systems for which STDC_HEADERS is 0, it was not included, resulting in
54618         a warning about an integer-to-pointer conversion problem with getenv.
54619         Reported by Volker Borchert.
54620
54621 2001-11-26  Jim Meyering  <meyering@lucent.com>
54622
54623         * lib/gtod.h: Remove file.
54624         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
54625         * lib/gettimeofday.c: Don't include gtod.h.
54626         (GTOD_init): Remove function.
54627         (rpl_gettimeofday): Do its job here instead, rather than aborting.
54628         Suggestion from Volker Borchert.
54629
54630 2001-11-23  Jim Meyering  <meyering@lucent.com>
54631
54632         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
54633         it.
54634         * lib/hash.c (struct hash_table): Define it here instead.
54635
54636 2001-11-22  Jim Meyering  <meyering@lucent.com>
54637
54638         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
54639
54640 2001-11-20  Jim Meyering  <meyering@lucent.com>
54641
54642         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
54643         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
54644
54645 2001-11-19  Jim Meyering  <meyering@lucent.com>
54646
54647         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
54648         directory.  Use "conftestXXXXXX" as the template.
54649         Suggestion from Paul Eggert.
54650
54651         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
54652         immediately, so the test doesn't mistakenly hit the max-open-files
54653         limit.
54654
54655 2001-11-18  Paul Eggert  <eggert@twinsun.com>
54656
54657         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
54658         (TEMPORARIES): New macro.
54659         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
54660         removes an artificial limitation (e.g. HP-UX 10.20, where
54661         TMP_MAX is 17576).
54662
54663 2001-11-18  Jim Meyering  <meyering@lucent.com>
54664
54665         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
54666
54667 2001-11-18  Jim Meyering  <meyering@lucent.com>
54668
54669         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
54670         on SunOS 4.
54671
54672         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
54673         files will be created before anything else.
54674
54675 2001-11-17  Paul Eggert  <eggert@twinsun.com>
54676
54677         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
54678         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
54679
54680 2001-11-17  Jim Meyering  <meyering@lucent.com>
54681
54682         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
54683         Prompted by a report from Bob Proulx.
54684
54685         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
54686         Instead, require UTILS_FUNC_MKSTEMP.
54687
54688 2001-11-17  Jim Meyering  <meyering@lucent.com>
54689
54690         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
54691         Now, that's done as part of AC_FUNC_STRTOD.
54692
54693 2001-11-17  Jim Meyering  <meyering@lucent.com>
54694
54695         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
54696         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
54697         rather than group writable.  Patch by Juan F. Codagnone.
54698
54699         * lib/readtokens.c: Remove explicit declarations of xmalloc and
54700         xrealloc, Instead, include "xalloc.h".
54701
54702         * lib/mountlist.c: Include unlocked-io.h after all system headers.
54703         Remove explicit declarations of xmalloc, xrealloc,
54704         and xstrdup.  Instead, include "xalloc.h".
54705
54706         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
54707         unlocked-io.h.
54708         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
54709         Likewise.
54710         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
54711
54712         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
54713         Reported by Padraig Brady.
54714
54715         * lib/mkstemp.c: #undef mkstemp.
54716         Include config.h.
54717         (rpl_mkstemp): Rename from mkstemp.
54718         Protoize.
54719
54720 2001-11-16  Jim Meyering  <meyering@lucent.com>
54721
54722         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
54723         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
54724         determine the amount of total physical memory, use pstat_getstatic.
54725         HPUX-11 doesn't define _SC_PHYS_PAGES.
54726         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
54727         If sysconf couldn't be used to determine the amount of available
54728         physical memory, use both pstat_getstatic and pstat_getdynamic.
54729         Based on a patch from Bob Proulx.
54730
54731 2001-11-10  Jim Meyering  <meyering@lucent.com>
54732
54733         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
54734         (jm_PREREQ): Use it.
54735
54736 2001-11-09  Jim Meyering  <meyering@lucent.com>
54737
54738         * m4/jm-macros.m4: Require autoconf-2.52f.
54739         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
54740         Use these AC_-prefixed names, not the AM_-prefixed ones.
54741
54742         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
54743
54744 2001-11-05  Jim Meyering  <meyering@lucent.com>
54745
54746         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
54747
54748 2001-11-04  Jim Meyering  <meyering@lucent.com>
54749
54750         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
54751         $DEFS.
54752
54753 2001-11-03  Jim Meyering  <meyering@lucent.com>
54754
54755         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
54756         of AC_DEFUN.
54757
54758         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
54759         know the name of the variable in the macro definition.
54760
54761 2001-11-03  Jim Meyering  <meyering@lucent.com>
54762
54763         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
54764         in argmatch_to_argument call.
54765
54766         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
54767         argument.
54768
54769         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
54770         e.g., a fault due to an attempt to free a NULL pointer.
54771
54772 2001-11-01  Jim Meyering  <meyering@lucent.com>
54773
54774         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
54775         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
54776
54777 2001-11-01  Jim Meyering  <meyering@lucent.com>
54778
54779         * lib/dirfd.c, lib/dirfd.h: New files.
54780         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
54781
54782         * lib/hash.c (hash_print) [TESTING]: Clean up.
54783
54784 2001-10-22  Paul Eggert  <eggert@twinsun.com>
54785
54786         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
54787         to avoid a warning if -Wall.
54788
54789 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
54790
54791         * README: New file
54792         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
54793         (per RMS's instructions, this is now the canonical source)
54794         * lgpl/, gpl/: New directories.
54795
54796 2001-10-21  Paul Eggert  <eggert@twinsun.com>
54797
54798         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
54799
54800 2001-10-21  Jim Meyering  <meyering@lucent.com>
54801
54802         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
54803         this code would end up calling gettext even in packages built
54804         with --disable-nls.
54805         * lib/getopt.c (_): Likewise.
54806         * lib/regex.c (_): Likewise.
54807
54808 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54809
54810         * m4/error.m4 (jm_PREREQ_ERROR):
54811         Do not invoke AC_CHECK_FUNCS with strerror_r, as
54812         AC_FUNC_STRERROR_R does that.
54813         Check for strerror declaration.
54814
54815         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
54816         are supposed to have them these days.
54817         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
54818         Merge changes from latest Autoconf CVS.
54819         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
54820         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
54821         POSIX decided to standardize on the int flavor of strerror_r.
54822
54823 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54824
54825         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
54826         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
54827         Use strerror_r that is only a macro, even if it is not a function.
54828         (strerror): Check for HAVE_DECL_STRERROR before declaring.
54829         (private_strerror): Use prototypes, not old-style function definition.
54830         (print_errno_message): New function.
54831         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
54832         char*-flavored one.
54833         (error_tail, error, error_at_line): Use it.
54834
54835 2001-10-11  Jim Meyering  <meyering@lucent.com>
54836
54837         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
54838         and quote_n (1, ... to avoid clobbering a buffer.
54839
54840 2001-10-05  Jim Meyering  <meyering@lucent.com>
54841
54842         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
54843         hash-pjw.h.
54844         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
54845         * lib/hash-pjw.h: New file.
54846
54847 2001-09-30  Jim Meyering  <meyering@lucent.com>
54848
54849         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
54850         `struct fsstat' has the `f_fstypename' member.
54851         Use that to define FS_TYPE, which is now used to make
54852         the getfsstat link test tighter.
54853
54854 2001-09-30  Jim Meyering  <meyering@lucent.com>
54855
54856         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
54857         Include <sys/ucred.h>, for Apple Darwin.
54858         Include sys/mount.h and sys/fs_types.h only if available.
54859         (FS_TYPE): Define.
54860         (read_filesystem_list): Use FS_TYPE.
54861
54862 2001-09-29  Paul Eggert  <eggert@twinsun.com>
54863
54864         * lib/exclude.c (excluded_filename): 0 -> false, since it's
54865         a boolean context.
54866
54867 2001-09-29  Jim Meyering  <meyering@lucent.com>
54868
54869         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54870         [one-argument getmntent function]): Include stdio.h before mntent.h.
54871         SunOS 4.1.x needs it for the declaration of `FILE'.
54872         Patch by Volker Borchert.
54873
54874         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54875         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
54876         sys/fs_types.h, and make the link-test for getfsstat guard #include
54877         directives with appropriate #if HAVE_*_H tests so that we can
54878         detect getfsstat on Apple Darwin1.3.7 systems.
54879         Reported by Nelson Beebe.
54880         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
54881
54882 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54883
54884         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54885         #defines strtoimax.  Also treat the other strto* functions
54886         like strtoimax.
54887
54888         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
54889         Check for strtoul and strtoumax,
54890         as those declarations are made even in the signed case.
54891         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
54892         Likewise, for strtol and strtoimax.
54893
54894 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54895
54896         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54897         #defines strtoimax.  Also treat the other strto* functions
54898         like strtoimax.
54899
54900         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
54901         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
54902         (strtoimax, strtoumax): Do not declare if already defined as a macro.
54903
54904 2001-09-26  Jim Meyering  <meyering@lucent.com>
54905
54906         Most macros in unlocked-io.h had the wrong number of arguments.
54907         * lib/gen-uio: New script.
54908         (USE_UNLOCKED_IO): Define to 1 if not already defined.
54909         * lib/unlocked-io.hin: Remove file.
54910         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
54911         rather than trying to embed it here.
54912         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
54913         Reported by Padraig Brady.
54914
54915 2001-09-25  Volker Borchert  <bt@teknon.de>
54916
54917         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
54918         `result'.
54919
54920 2001-09-24  Jim Meyering  <meyering@lucent.com>
54921
54922         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
54923
54924 2001-09-23  Jim Meyering  <meyering@lucent.com>
54925
54926         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
54927         instead of the mere test for existence of mntent.h.  The latter
54928         would get a false-positive on AIX 3.4 systems.
54929         In the outer getmntent if-block, don't die if neither of the getmntent
54930         tests succeeds.  Instead, just fall through and continue with the
54931         remaining tests.
54932
54933 2001-09-23  Jim Meyering  <meyering@lucent.com>
54934
54935         * lib/mountlist.c: Remove useless parentheses in #if directives.
54936         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
54937         the deprecated MOUNTED symbol is no longer defined in mntent.h.
54938
54939 2001-09-22  Jim Meyering  <meyering@lucent.com>
54940
54941         * m4/gettext.m4: New file.  From gettext.
54942         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
54943         * m4/progtest.m4: Likewise
54944         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
54945         * m4/glibc21.m4: Likewise.
54946
54947         * m4/libintl.m4: Remove.  No longer used.
54948
54949 2001-09-22  Jim Meyering  <meyering@lucent.com>
54950
54951         * lib/localcharset.c: Update from latest gettext.
54952         * lib/config.charset: Likewise.
54953
54954 2001-09-20  Jim Meyering  <meyering@lucent.com>
54955
54956         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
54957         strtoimax.
54958         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
54959         strtoumax.
54960
54961 2001-09-20  Jim Meyering  <meyering@lucent.com>
54962
54963         * lib/xstrtol.c (strtoimax): Guard declaration with
54964         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
54965         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
54966         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
54967         (strtoumax): Likewise, for completeness (it wasn't necessary).
54968
54969 2001-09-17  Paul Eggert  <eggert@twinsun.com>
54970
54971         * lib/strtoimax.c (HAVE_LONG_LONG):
54972         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
54973         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
54974         to work around bug in IBM C compiler.
54975
54976 2001-09-17  Jim Meyering  <meyering@lucent.com>
54977
54978         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
54979         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
54980         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
54981         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
54982         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
54983         whenever the right hand side need not be expanded by the shell.
54984
54985 2001-09-16  Paul Eggert  <eggert@twinsun.com>
54986
54987         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
54988         library.  It's not correct, as some older glibcs are buggy.
54989         fnmatch wasn't fixed until glibc 2.2.
54990
54991         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
54992         special shell magic here.
54993
54994 2001-09-16  Jim Meyering  <meyering@lucent.com>
54995
54996         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
54997         * m4/jm-macros.m4: Require it.
54998
54999 2001-09-16  Jim Meyering  <meyering@lucent.com>
55000
55001         * lib/mkdir.c: New file.
55002
55003 2001-09-15  Jim Meyering  <meyering@lucent.com>
55004
55005         * m4/jm-macros.m4: Check for help2man.
55006
55007 2001-09-11  Jim Meyering  <meyering@lucent.com>
55008
55009         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
55010         The body, by Paul Eggert, was moved here from configure.in.
55011         * m4/jm-macros.m4: Require UTILS_HOST_OS.
55012
55013 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55014
55015         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
55016         (jm_PREREQ): Use it.
55017
55018 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55019
55020         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
55021         Use ssize_t, not int, to store result of readlink.
55022         Check for ssize_t overflow as well as size_t overflow,
55023         as POSIX says the result of readlink is implementation-defined
55024         when ssize_t overflows.
55025         Remove unnecessary cast to char*.
55026         Use free+malloc instead of realloc, as the storage doesn't need
55027         to be preserved and it's clearer and can be more efficient that way.
55028         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
55029         * lib/xreadlink.h (xreadlink): Update prototype.
55030
55031 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55032
55033         * lib/xgetcwd.c: Revert some of the previous change; intead,
55034         fix the HAVE_GETCWD_NULL code to behave more like the
55035         !HAVE_GETCWD_NULL code used to.
55036
55037         Include "xalloc.h".
55038         (xgetcwd): Do not return NULL when memory is exhausted; instead,
55039         invoke xalloc_die.
55040
55041 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55042
55043         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
55044         sys/param.h, as pathmax.h includes them.
55045
55046 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55047
55048         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
55049         (jm_PREREQ_XGETCWD): New macro.
55050
55051         * m4/getcwd.m4: New file.
55052
55053 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55054
55055         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
55056         like the HAVE_GETCWD_NULL code.
55057         Include pathmax.h if not HAVE_GETCWD.
55058         Do not include xalloc.h.
55059         (INITIAL_BUFFER_SIZE): New symbol.
55060         Do not use xmalloc / xrealloc, since the caller is responsible for
55061         handling errors.  Preserve errno around `free' during failure.
55062         Do not overrun buffer when using getwd.
55063
55064 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55065
55066         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
55067         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
55068         getcwd (NULL, 0).
55069
55070 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55071
55072         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
55073         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
55074         spotted by Jim Meyering.
55075
55076 2001-09-03  Jim Meyering  <meyering@lucent.com>
55077
55078         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
55079         failure.
55080
55081 2001-09-02  Jim Meyering  <meyering@lucent.com>
55082
55083         * lib/error.c: Update from GNU libc.
55084
55085 2001-09-01  Jim Meyering  <meyering@lucent.com>
55086
55087         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
55088         Used by df.
55089
55090 2001-09-01  Jim Meyering  <meyering@lucent.com>
55091
55092         * lib/xreadlink.c: New file.
55093         * lib/xreadlink.h: New file.
55094         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
55095         xreadlink.h.
55096
55097         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
55098         doesn't conflict with sparc Solaris 7's definition in
55099         /usr/include/sys/int_types.h.
55100
55101         * lib/exclude.c: Use `""', not `<>' to #include non-system header
55102         files.
55103         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
55104         and strncasecmp as r-values.  Unixware didn't have declarations.
55105
55106 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55107
55108         * lib/xstrtol.h: Add copyright notice.
55109         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
55110         LONGINT_INVALID_SUFFIX_CHAR.
55111
55112 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55113
55114         * lib/xstrtol.c (strtoimax): New decl.
55115
55116 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55117
55118         * lib/xgetcwd.c: Don't include pathmax.h.
55119         Include stdlib.h and unistd.h if available.
55120         Include xalloc.h.
55121         (xmalloc, xstrdup, free): Remove decls.
55122         (xgetcwd): Don't assume sizes fit in unsigned.
55123         Check for overflow when computing sizes.
55124         Simplify reallocation code.
55125
55126 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55127
55128         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
55129         a directory's st_size can have an arbitrary value, so the old
55130         usage could waste an arbitrary amount of memory.  All uses
55131         changed.
55132         * lib/savedir.h: Update prototype.
55133
55134 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55135
55136         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
55137
55138         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
55139         old strtoimax.c.
55140
55141         Also, make the following further changes to make this file's
55142         configuration more similar to that of strtol.c:
55143         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
55144         (strtoumax, uintmax_t, strtoull, strtol): Remove.
55145         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
55146         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
55147         changed to signed values.
55148
55149         And make the following changes as well:
55150         Fix copyright notice, as 1999 was missing.
55151         (verify): New macro.
55152         (strtoimax): Check sizes at compile-time, not run-time.
55153         Prefer strtol to strtoll if both work.
55154         (main): Remove; it was not that useful and was a pain to maintain.
55155
55156         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
55157
55158 2001-08-31  Jim Meyering  <meyering@lucent.com>
55159
55160         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
55161         Use an initial, malloc'd, buffer of length 128 rather than
55162         a statically allocated one of length 1024.
55163
55164 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55165
55166         Simplify code, partly by assuming autoconf 2.52 semantics.
55167
55168         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
55169
55170         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
55171         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
55172         All uses removed.
55173         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
55174         Move AC_REQUIRE to next-to-top level, to avoid confusion.
55175         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
55176         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
55177         jm_AC_HEADER_INTTYPES_H.
55178         * m4/jm-macros.m4 (jm_MACROS): Likewise.
55179
55180         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
55181
55182         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
55183         Quote first arg of AC_DEFUN.
55184         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
55185         since they are needed to parse the include file even if we need
55186         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
55187         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
55188         but with opposite signedness.
55189
55190 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55191
55192         Merge 'exclude' changes from tar 1.13.22.
55193         This fixes one or two unlikely storage allocation overflow bugs,
55194         but doesn't change user-visible behavior otherwise.
55195
55196 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55197
55198         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
55199         (jm_PREREQ_EXCLUDE): New macro.
55200
55201 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55202
55203         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
55204         tm to be declared.
55205
55206 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55207
55208         * lib/hash.c: Remove '2001' from copyright notice.
55209
55210 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55211
55212         * lib/full-write.h: New file.
55213         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
55214         * lib/full-write.c: Correct credits, as cccp.c no longer
55215         exists and anyway it was so heavily changed from the old cccp
55216         code as to be unrecognizable.  Include full-write.h.
55217         (full_write) Return size_t, with short writes meaning failure.
55218         All callers changed.  This fixes a bug with large buffers
55219         on 64-bit hosts.
55220         * lib/utime.c: Include full-write.h.
55221
55222 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55223
55224         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
55225         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
55226         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
55227         Include if available.
55228         (<xalloc.h>): Include
55229         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
55230         (verify): New macro.  Use it to verify that EXCLUDE macros do not
55231         collide with FNM macros.
55232         (struct patopts): New struct.
55233         (struct exclude): Use it, as exclude patterns now come with options.
55234         (new_exclude): Support above changes.
55235         (new_exclude, add_exclude_file):
55236         Initial size must now be a power of two to simplify overflow checking.
55237         (free_exclude, fnmatch_no_wildcards): New function.
55238         (excluded_filename): No longer requires options arg, as the options
55239         are determined by add_exclude.  Now returns bool, not int.
55240         (excluded_filename, add_exclude):
55241         Add support for the fancy new exclusion options.
55242         (add_exclude, add_exclude_file): Now takes int options arg.
55243         Check for arithmetic overflow when computing sizes.
55244         (add_exclude_file): xrealloc might modify errno, so don't
55245         realloc until after errno might be used.
55246
55247         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
55248         New macros.
55249         (free_exclude): New decl.
55250         (add_exclude, add_exclude_file): Now takes int options arg.
55251         (excluded_filename): No longer requires options arg, as the options
55252         are determined by add_exclude.  Now returns bool, not int.
55253
55254 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55255
55256         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
55257
55258 2001-08-27  Jim Meyering  <meyering@lucent.com>
55259
55260         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
55261
55262         * lib/version-etc.c (N_): Remove definition.
55263         Revert most of last change.
55264         Instead, simply don't mark the `Copyright...' string for translation.
55265         Based on advice from Paul Eggert.
55266
55267         * lib/strtoxmax.c: Tweak comment.
55268
55269 2001-08-26  Jim Meyering  <meyering@lucent.com>
55270
55271         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
55272
55273         * m4/xstrtoimax.m4: New file.
55274         * m4/xstrtoumax.m4: Add comments explaining why we
55275         AC_REPLACE_FUNCS(strtol).
55276
55277 2001-08-26  Jim Meyering  <meyering@lucent.com>
55278
55279         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
55280         of copyright with `%s' so translators don't get an untranslated
55281         message in 2002.
55282         (COPYRIGHT_YEAR): Define.
55283         (version_etc): Use fprintf rather than fputs.
55284         Suggestion from Ulrich Drepper.
55285
55286         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
55287
55288         * lib/strtoll.c: New file, from GNU libc.
55289         * lib/xstrtoimax.c: New file.
55290
55291         * lib/xstrtol.h: Add xstrtoimax.
55292         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
55293         * lib/strtoimax.c: New file.  Likewise, but first define
55294         STRTOUXMAX_SIGNED.
55295
55296         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
55297         ...
55298         * lib/strtoxmax.c: ... then renamed to this.
55299
55300 2001-08-18  Paul Eggert  <eggert@twinsun.com>
55301
55302         * m4/inttypes.m4: Add AC_PREREQ(2.13).
55303         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
55304         (jm_AC_TYPE_INTMAX_T): New macro.
55305         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
55306
55307         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
55308
55309         * m4/longlong.m4: Renamed from ulonglong.m4.
55310         * m4/inttypes.m4: Renamed from inttypes_h.m4.
55311         * m4/uintmax_t.m4: Removed.
55312
55313 2001-08-13  Paul Eggert  <eggert@twinsun.com>
55314
55315         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
55316         Port to Solaris 8, where 'sed' requires a space after the 'r'
55317         command, and where sh dislikes "$/".  Clean up the spacing a bit.
55318         Redirect output to $tmp just once.
55319
55320 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
55321
55322         * lib/addext.c (<errno.h>): Include.
55323         (errno): Declare if not defined.
55324         (addext): Work correctly when pathconf returns -1 and leaves
55325         errno alone because there is no limit.  Also, work even if
55326         pathconf returns a value greater than SIZE_MAX.
55327
55328 2001-08-12  Jim Meyering  <meyering@lucent.com>
55329
55330         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
55331         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
55332         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
55333         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
55334         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
55335         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
55336         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
55337         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
55338         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
55339         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
55340         utime.m4, utimes.m4, xstrtoumax.m4:
55341         Quote the first argument in each use of AC_DEFUN.
55342
55343 2001-08-12  Jim Meyering  <meyering@lucent.com>
55344
55345         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
55346         Simply `return getcwd (NULL, 0);'.
55347         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
55348         Use 1300 as initial value for length, not PATH_MAX.
55349
55350         * lib/pathmax.h: Clean up cpp syntax.
55351
55352 2001-08-12  Jim Meyering  <meyering@lucent.com>
55353
55354         * lib/gettimeofday.c: New file.
55355         * lib/gtod.h: New file.
55356         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
55357
55358 2001-08-05  Jim Meyering  <meyering@lucent.com>
55359
55360         * m4/jm-macros.m4: Require autoconf-2.52.
55361
55362 2001-08-04  Jim Meyering  <meyering@lucent.com>
55363
55364         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
55365         stmt, to get in sync with glibc.
55366
55367 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55368
55369         The following changes are from gettext 0.10.39 as maintained by
55370         Bruno Haible.
55371
55372         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
55373         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
55374         with inverted sense.  All uses changed.
55375
55376         * lib/mbswidth.c: Don't include <limits.h>.
55377         Include <stdlib.h> and <string.h> unconditionally.
55378         (iswcntrl, mbsinit, ISCNTRL): New macros.
55379         (mbsnwidth): Use K&R style function declarations.
55380         Don't bother checking for MB_LEN_MAX == 1, since the compiler
55381         can optimize it when MB_CUR_MAX == 1.
55382         The width of control characters is zero, not 1.
55383
55384 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55385
55386         The following changes are from gettext 0.10.39 as maintained by
55387         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
55388
55389         * m4/codeset.m4: Upgrade to serial AM1.
55390         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
55391         all uses changed.  Quote first arg of AC_DEFUN.
55392         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
55393
55394         * m4/iconv.m4: Upgrade to serial AM2.
55395         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
55396         Add --with-libconv-prefix.
55397         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
55398         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
55399         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
55400         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
55401         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
55402
55403         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
55404         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
55405         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
55406         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
55407         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
55408         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
55409         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
55410         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
55411         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
55412
55413         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
55414         string.h any more.
55415
55416         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
55417         not the default value.
55418
55419         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
55420         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
55421         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
55422         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
55423         Also check for iswcntrl, used for wcwidth fallback.
55424         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
55425         to Autoconf 2.13.
55426
55427 2001-08-03  Jim Meyering  <meyering@lucent.com>
55428
55429         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
55430         as it was in the original.  Reported by Paul Eggert.
55431
55432 2001-07-16  Jim Meyering  <meyering@lucent.com>
55433
55434         * m4/gettimeofday.m4: New file.
55435         Prompted by a report from Bernhard Baehr.
55436
55437 2001-07-15  Jim Meyering  <meyering@lucent.com>
55438
55439         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
55440         stuff. Now it's in ../Makefile.cfg.
55441
55442 2001-07-15  Jim Meyering  <meyering@lucent.com>
55443
55444         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
55445         (BUILT_SOURCES): Add unlocked-io.h.
55446         (io_functions): Define.
55447         (unlocked-io.h): New rule.
55448         (DISTCLEANFILES): Add unlocked-io.h.
55449         (all-local): Depend on unlocked-io.h, to ensure it is created.
55450
55451         * lib/unlocked-io.hin: New file
55452
55453         * lib/regex.c: Update from glibc.
55454
55455 2001-07-05  Jim Meyering  <meyering@lucent.com>
55456
55457         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
55458         recommendation.
55459         (libfetish_a_SOURCES): Put all .h files here instead.
55460         Remove a thus-exposed (better checks in automake) duplicate and
55461         two unnecessary .h files.
55462
55463 2001-07-04  Jim Meyering  <meyering@lucent.com>
55464
55465         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
55466         that generates jm-glibc-io.m4 so that it doesn't trigger any make
55467         distcheck failure.
55468
55469 2001-07-02  Jim Meyering  <meyering@lucent.com>
55470
55471         The following changes were prompted by suggestions from Bruno Haible.
55472
55473         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
55474         is now generated.
55475         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
55476         definition of EXTRA_DIST.
55477         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
55478         ensure that the generated file is created/updated whenever the list
55479         of $(unlocked_functions) is changed.
55480         (jm-glibc-io.m4): New rule.
55481         (unlocked-io.h): New rule -- currently unused.
55482
55483 2001-06-24  Jim Meyering  <meyering@lucent.com>
55484
55485         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
55486         unmatched right bracket, rather than kludging it with an extra,
55487         falsely-matching quote in a comment.  Patch by Akim Demaille.
55488
55489 2001-06-11  Jim Meyering  <meyering@lucent.com>
55490
55491         * lib/regex.c: Update from GNU libc.
55492
55493 2001-05-27  Jim Meyering  <meyering@lucent.com>
55494
55495         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
55496         Check for ut_type in struct utmp.
55497
55498 2001-05-27  Jim Meyering  <meyering@lucent.com>
55499
55500         * lib/readutmp.h (UT_TYPE): Define.
55501
55502 2001-05-24  Jim Meyering  <meyering@lucent.com>
55503
55504         * lib/argmatch.c: Include "quote.h".
55505         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
55506         quote function.  Reported by Göran Uddeborg.
55507
55508 2001-05-22  Jim Meyering  <meyering@lucent.com>
55509
55510         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
55511         now that we use the package-supplied version unconditionally.
55512         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
55513
55514 2001-05-21  Jim Meyering  <meyering@lucent.com>
55515
55516         * m4/regex.m4: Change a couple backticks to single quotes to avoid
55517         shell syntax errors.
55518
55519 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55520
55521         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
55522
55523 2001-05-20  Paul Eggert  <eggert@twinsun.com>
55524
55525         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
55526         Don't bother to check library strftime, since
55527         we'll be using our own my_strftime function anyway.
55528         Define my_strftime instead of strftime.
55529
55530 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
55531
55532         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
55533         which is not yet declared.
55534
55535 2001-05-15  Jim Meyering  <meyering@lucent.com>
55536
55537         * m4/regex.m4: Use proper quoting so brackets appear in the test
55538         program.
55539         Reported by, and with help from, Bruno Haible.
55540
55541 2001-05-13  Jim Meyering  <meyering@lucent.com>
55542
55543         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
55544         undefined.
55545
55546 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55547
55548         dirname code cleanup.  base_name now behaves more compatibly
55549         with POSIX basename when given file names that have trailing
55550         slashes, and similarly for dir_name.  Add new primitives
55551         base_len and dir_len.  Put the directory-name-related decls
55552         into dirname.h.
55553
55554         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
55555         * lib/backupfile.c (base_name): Likewise.
55556         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
55557         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
55558         * lib/makepath.c (strip_trailing_slashes): Likewise.
55559         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
55560         ISSLASH): Likewise.
55561         * lib/rename.c (strip_trailing_slashes): Likewise.
55562         * lib/same.c (base_name): Likewise.
55563         * lib/stripslash.c (ISSLASH): Likewise.
55564
55565         * lib/addext.c: Include <dirname.h> after size_t is defined.
55566         * lib/backupfile.c: Likewise.
55567
55568         * lib/addext.c (addext): Use base_len to trim redundant
55569         trailing slashes instead of doing it ourselves.
55570         But do not trim the last slash if it is not redundant.
55571
55572         * lib/backupfile.c (find_backup_file_name,
55573         max_backup_version): Use base_len instead of rolling it ourselves.
55574         Handle the case of "" and (on DOS) "C:" correctly.
55575
55576         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
55577         needed. Include <string.h>, <dirname.h>.
55578         (base_name): Allow file names ending in slashes, other than names
55579         that are all slashes.  In this case, return the basename followed
55580         by the slashes.  This is more general, and can be used in places
55581         where the original base_name purposely had an assertion failure.
55582         (base_len): New function.
55583
55584         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
55585         Do not include <assert.h>; no longer needed.
55586         Include xalloc.h.
55587         (memrchr): Remove decl.
55588         (dir_name_r): Remove.
55589         (dir_len): Renamed from dirlen.  All callers changed.
55590         Rewrite in terms of base_name, for simplicity and consistency.
55591         (dir_name): Never return NULL.  All callers changed.
55592         Do not include <stdlib.h> in test program; no longer needed.
55593         return 0; is fine for test program.
55594
55595         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
55596         New macros.
55597         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
55598
55599         * lib/path-concat.c (path_concat): Use base_len to compute
55600         base length, not strlen; this means we cannot rely on memcpy
55601         to null-terminate.
55602
55603         * lib/same.c (STREQ): Remove.
55604         (same_name): Handle the case where the basename ends in trailing '/'.
55605
55606         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
55607         a slash was stripped.  Do not strip the last slash after a
55608         file system prefix.
55609
55610 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55611
55612         * lib/Makefile.am (libfetish_a_SOURCES):
55613         Add strftime.c, since we now compile it on all hosts.
55614
55615         * lib/strftime.c (my_strftime):
55616         Define to nstrftime if emacs, but only if my_strftime is not defined.
55617         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
55618         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
55619         Add one more extra argument: a nanoseconds value.
55620         All uses changed.
55621         (ns): New macro.
55622         (my_strftime function): Add %N format.
55623         (emacs_strftimeu): Renamed from emacs_strftime,
55624         with extra ut argument.
55625
55626 2001-05-09  Paul Eggert  <eggert@twinsun.com>
55627
55628         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
55629
55630 2001-04-21  Jim Meyering  <meyering@lucent.com>
55631
55632         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
55633         doesn't interfere.
55634
55635 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55636
55637         * m4/ftruncate.m4: Check for chsize.
55638         Link with ftruncate.o unconditionally if ftruncate is missing.
55639         This was required when cross-compiling to i586-mingw32msvc.
55640
55641 2001-04-08  Jim Meyering  <meyering@lucent.com>
55642
55643         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
55644         recomputed; that's necessary when the offset spans a DST transition.
55645         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
55646
55647 2001-04-02  Jim Meyering  <meyering@lucent.com>
55648
55649         * lib/regex.h, regex.c: Update from GNU libc.
55650
55651 2001-03-24  Jim Meyering  <meyering@lucent.com>
55652
55653         * m4/jm-macros.m4: Require autoconf-2.49d.
55654
55655 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
55656
55657         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
55658
55659 2001-03-19  Paul Eggert  <eggert@twinsun.com>
55660
55661         * lib/version-etc.c (version_etc_copyright): Update to 2001.
55662
55663 2001-03-17  Jim Meyering  <meyering@lucent.com>
55664
55665         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
55666         now that the version in autoconf is equivalent.
55667         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
55668
55669         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
55670         Suggestion from Akim Demaille.
55671
55672         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
55673         (jm_PREREQ_TEMPNAME): New function.
55674
55675 2001-03-16  Paul Eggert  <eggert@twinsun.com>
55676
55677         * lib/tempname.c (uint64_t): Define to uintmax_t if
55678         not defined, and if UINT64_MAX is not defined.
55679         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
55680         Reported by John David Anglin.
55681
55682 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
55683
55684         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
55685         resolve alias if codeset is empty.
55686         * lib/config.charset (BeOS): Use wildcard syntax.
55687
55688 2001-03-13  Jim Meyering  <meyering@lucent.com>
55689
55690         * lib/path-concat.c (path_concat)
55691         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
55692         concatenating e.g., `C:' and `foo'.
55693         From Bruno Haible.
55694
55695 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
55696
55697         * lib/localcharset.c (locale_charset): Don't use
55698         setlocale(LC_CTYPE,NULL). Don't return NULL.
55699         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
55700
55701 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
55702
55703         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
55704         support for DOS/DJGPP.
55705
55706 2001-03-01  Paul Eggert  <eggert@twinsun.com>
55707
55708         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
55709         lacks mkstemp.  Compile our own tempname.c if we compile our own
55710         mkstemp.c, as mkstemp relies on tempname.
55711
55712 2001-03-01  Jim Meyering  <meyering@lucent.com>
55713
55714         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
55715         AH_VERBATIM really does output its argument verbatim.
55716
55717 2001-02-28  Paul Eggert  <eggert@twinsun.com>
55718
55719         * lib/Makefile.am (libfetish_a_SOURCES):
55720         Add dup-safer.c, fopen-safer.c.
55721         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
55722
55723         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
55724         * lib/unistd-safer.h: New files.
55725
55726 2001-02-25  Paul Eggert  <eggert@twinsun.com>
55727
55728         The mkstemp replacement is taken from glibc 2.2.2, with some
55729         portability fixes for use outside glibc, as follows:
55730
55731         * lib/tempname.c (struct_stat64): New macro.
55732         (direxists, __gen_tempname): Use it.
55733         This avoids a portability problem with Solaris 8.
55734
55735         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
55736         (<stddef.h>, <stdint.h>, <string.h>):
55737         Include only if STDC_HEADERS || _LIBC.
55738         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
55739         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
55740         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
55741         (__set_errno): Define this macro if <errno.h> doesn't.
55742         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
55743         Define these macros if <stdio.h> doesn't.
55744         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
55745         Define these macros if <sys/stat.h>
55746         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
55747         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
55748         __xstat64): Define if not _LIBC.
55749         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
55750         (__gen_tempname): Invoke gettimeofday only if
55751         HAVE_GETTIMEOFDAY || _LIBC;
55752         otherwise, fall back on plain "time".
55753         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
55754
55755         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
55756
55757         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
55758
55759 2001-02-18  Paul Eggert  <eggert@twinsun.com>
55760
55761         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
55762
55763 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55764
55765         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
55766         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
55767         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
55768         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
55769
55770 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55771
55772         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
55773         Remove workaround macros for hosts that have mbrtowc but not
55774         mbstate_t, as we now insist on proper declarations for both
55775         before using mbrtowc.
55776
55777 2001-02-17  Jim Meyering  <meyering@lucent.com>
55778
55779         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
55780         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
55781         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
55782         UnixWare 7.1.1.
55783
55784         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
55785         rather than AC_CACHE_VAL.
55786
55787 2001-02-17  Jim Meyering  <meyering@lucent.com>
55788
55789         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
55790         around included file name.
55791
55792         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
55793
55794         * lib/strftime.c: Update from GNU libc (the only changes were to
55795         comments).
55796
55797 2001-02-17  Jim Meyering  <meyering@lucent.com>
55798
55799         * lib/regex.c: Update from libc.
55800
55801 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
55802
55803         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
55804         clash.
55805
55806 2001-02-16  Paul Eggert  <eggert@twinsun.com>
55807
55808         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
55809         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
55810         Reported by Mark Hounschell via Paul Eggert.
55811
55812 2001-02-07  Jim Meyering  <meyering@lucent.com>
55813
55814         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
55815
55816 2001-02-05  Jim Meyering  <meyering@lucent.com>
55817
55818         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
55819         it includes the patch required for `large file' support with at least
55820         HP-UX's 10.20 /bin/cc.
55821
55822 2001-02-03  Jim Meyering  <meyering@lucent.com>
55823
55824         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
55825         AS_IF, now that it works once again (mysteriously).
55826         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55827
55828 2001-01-30  Jim Meyering  <meyering@lucent.com>
55829
55830         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
55831         * m4/chown.m4: Rename conftestchown to conftest.chown.
55832         * m4/rename.m4: s/conftestdir/conftest.d1/ and
55833         s/conftestdir2/conftest.d2/.
55834         * m4/utimes.m4: s/conftestdata/conftest.data/
55835         Inspired by Pavel Roskin's change in autoconf.
55836
55837 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
55838
55839         * lib/config.charset: Update for FreeBSD 4.2.
55840
55841 2001-01-27  Jim Meyering  <meyering@lucent.com>
55842
55843         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
55844         a use of AS_IF.
55845         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55846
55847 2001-01-26  Jim Meyering  <meyering@lucent.com>
55848
55849         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
55850         quotearg.c includes it.
55851
55852 2001-01-26  Jim Meyering  <meyering@lucent.com>
55853
55854         * lib/quotearg.c: Include stddef.h.
55855         * lib/quote.c: Include stddef.h.
55856         Reported by Axel Kittenberger.
55857
55858         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
55859         line in double quotes so that it evokes a better diagnostic.
55860         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
55861         Reported by Axel Kittenberger.
55862
55863 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
55864
55865         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
55866         as if it was a `charset'.
55867
55868 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55869
55870         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
55871         has const.
55872
55873 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55874
55875         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
55876         to avoid a warning.  Add back 'const' to inptr.
55877
55878 2001-01-20  Jim Meyering  <meyering@lucent.com>
55879
55880         Be sure that headers are checked before used in code compiled
55881         for the type checks.
55882         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
55883         In place of that, invoke jm_CHECK_ALL_TYPES.
55884         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
55885         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
55886         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
55887         The check for ssize_t was mistakenly run before the test for unistd.h.
55888
55889         The configure-time check for stdbool.h was missing.
55890         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
55891         (jm_PREREQ_HASH): New function.
55892
55893 2001-01-17  Jim Meyering  <meyering@lucent.com>
55894
55895         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
55896         for autoconf-2.49c.
55897         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
55898
55899 2001-01-16  Jim Meyering  <meyering@lucent.com>
55900
55901         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
55902         From Bruno Haible.
55903
55904 2001-01-14  Jim Meyering  <meyering@lucent.com>
55905
55906         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
55907         foo and bar.  Create conftestdir/ in the script, not in the C code.
55908         Remove directories in the script, not in the C code.
55909         Remove conftestdir{,2} before trying to create the directory.
55910         Make the entire configure script fail if the mkdir fails.
55911
55912 2001-01-14  Jim Meyering  <meyering@lucent.com>
55913
55914         * lib/rename.c: New file.  From Volker Borchert.
55915         Include stdlib.h, string.h or strings.h, and xalloc.h.
55916         Use strip_trailing_slashes rather than open-coding it.
55917
55918 2001-01-03  Paul Eggert  <eggert@twinsun.com>
55919
55920         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
55921
55922 2001-01-03  Jim Meyering  <meyering@lucent.com>
55923
55924         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
55925         of local `inptr' to avoid warning with some system declarations of
55926         iconv.
55927
55928 2001-01-02  Volker Borchert  <bt@teknon.de>
55929
55930         * m4/rename.m4: New file.
55931         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
55932
55933 2001-01-01  Jim Meyering  <meyering@lucent.com>
55934
55935         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
55936         even on systems with utmpx.h.  It's necessary for the declaration of
55937         utmp's ut_user member.  Reported by Andreas Jaeger.
55938
55939         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
55940         available. They are required for the declarations of getgrgid and
55941         getpwuid resp.
55942         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
55943         Reported by Andreas Jaeger.
55944
55945 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
55946
55947         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
55948         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
55949         so `make install' also works in VPATH builds.
55950
55951 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
55952
55953         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
55954         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
55955         can be used in subdirectories.
55956
55957 2000-12-29  Paul Eggert  <eggert@twinsun.com>
55958
55959         * lib/modechange.c: Do not assume that mode_t uses the
55960         traditional octal encoding.  E.g. "chmod 1 FOO" should set
55961         the other-execute bit of FOO even if S_IXOTH != 1.
55962
55963         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
55964         WOTH, XOTH, ALLM): New macros.
55965         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
55966          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
55967         Use them.
55968         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
55969         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
55970         (mode_compile):
55971         No need to use uintmax_t; unsigned long is long enough.
55972         Don't bother to get suffix since we don't use it.
55973
55974 2000-12-26  Jim Meyering  <meyering@lucent.com>
55975
55976         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
55977         better with autoheader.
55978
55979 2000-12-24  Jim Meyering  <meyering@lucent.com>
55980
55981         * lib/hash.c (is_prime): Return explicit boolean values.
55982         (hash_get_first): Return NULL to appease Irix5.6's 89.
55983         Reported by Nelson Beebe.
55984
55985 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
55986
55987         * lib/localcharset.c (locale_charset): Add support for Win32.
55988
55989 2000-12-18  Paul Eggert  <eggert@twinsun.com>
55990
55991         * lib/physmem.h, lib/physmem.c: New files.
55992
55993         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
55994         (noinst_HEADERS): Add physmem.h.
55995
55996         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
55997         't' for compatibility with Solaris 8 sort.
55998
55999 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
56000
56001         * lib/config.charset: Add support for BeOS.
56002
56003 2000-12-17  Jim Meyering  <meyering@lucent.com>
56004
56005         * m4/dos.m4 (jm_AC_DOS): New file and macro.
56006         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
56007
56008 2000-12-16  Jim Meyering  <meyering@lucent.com>
56009
56010         This bug had a serious impact on chown: `chown N:M FILE' (for integer
56011         N and M) would have treated it like `chown N:N FILE'.
56012
56013         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
56014
56015 2000-12-16  Jim Meyering  <meyering@lucent.com>
56016
56017         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
56018         SHELLS_FILE to a file name that's useful on djgpp systems.
56019         Include stdlib.h.
56020         (ADDITIONAL_DEFAULT_SHELLS): Define.
56021         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
56022         Based mostly on a patch from Prashant TR.
56023
56024 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
56025
56026         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
56027         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
56028         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
56029
56030 2000-12-08  Andreas Schwab  <schwab@suse.de>
56031
56032         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
56033         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
56034
56035 2000-12-07  Jim Meyering  <meyering@lucent.com>
56036
56037         * lib/stripslash.c (ISSLASH): Define.
56038         (strip_trailing_slashes): Use ISSLASH rather than comparing against
56039         `/'.
56040         From Prashant TR.
56041
56042         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
56043         (dir_name_r): Declare this function as static.
56044         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
56045         manifest itself on a name containing a mix of slashes and
56046         backslashes.
56047         Make this function work with names starting with a DOS-style
56048         drive letter and colon prefix.
56049         (dir_name): Append `.' if necessary.
56050         Based mostly on patches from Prashant TR and Eli Zaretskii.
56051
56052         * lib/dirname.h (dir_name_r): Remove prototype.
56053
56054 2000-12-06  Paul Eggert  <eggert@twinsun.com>
56055
56056         * m4/off_t-format.m4: Remove this file.
56057         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
56058
56059 2000-12-06  Jim Meyering  <meyering@lucent.com>
56060
56061         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
56062         replacement strtoull, we may well need the replacement strtoul, too.
56063         Check for declarations of strtoul and strtoull.
56064         Check for strtol.  Mainly as a cue to cause automake to include
56065         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
56066         Check for limits.h -- strtol.c needs it.
56067
56068 2000-12-05  Jim Meyering  <meyering@lucent.com>
56069
56070         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
56071
56072 2000-12-04  Jim Meyering  <meyering@lucent.com>
56073
56074         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
56075         Also include memory.h, stdlib.h, unistd.h if appropriate.
56076         Reported by Andreas Jaeger (conflicting declaration of malloc).
56077
56078 2000-12-02  Jim Meyering  <meyering@lucent.com>
56079
56080         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
56081         * m4/jm-macros.m4 (jm_MACROS): require it.
56082
56083 2000-12-02  Jim Meyering  <meyering@lucent.com>
56084
56085         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
56086
56087 2000-12-01  Paul Eggert  <eggert@twinsun.com>
56088
56089         * lib/memrchr.c: Include <config.h> before any system include file.
56090
56091 2000-11-30  Jim Meyering  <meyering@lucent.com>
56092
56093         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
56094
56095 2000-11-30  Jim Meyering  <meyering@lucent.com>
56096
56097         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
56098
56099 2000-11-29  Paul Eggert  <eggert@twinsun.com>
56100
56101         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
56102
56103 2000-11-26  Jim Meyering  <meyering@lucent.com>
56104
56105         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
56106
56107 2000-11-22  Paul Eggert  <eggert@twinsun.com>
56108
56109         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
56110         size of (size_t) -1; it's not portable.
56111
56112 2000-11-17  Jim Meyering  <meyering@lucent.com>
56113
56114         * lib/strstr.c: Update from GNU libc.
56115
56116 2000-11-17  Akim Demaille  <akim@epita.fr>
56117
56118         * lib/obstack.h: Formatting changes.
56119         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
56120         prevent type checking.
56121         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
56122         cast the value to (void *): assigning a `foo *' to a `void *'
56123         variable is valid.
56124         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
56125
56126 2000-11-16  Jim Meyering  <meyering@lucent.com>
56127
56128         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
56129
56130 2000-11-11  Jim Meyering  <meyering@lucent.com>
56131
56132         * lib/error.c: Add a couple #includes, merging from GNU libc version.
56133
56134 2000-11-10  Jim Meyering  <meyering@lucent.com>
56135
56136         * lib/obstack.h: Update from GNU libc.
56137         * lib/obstack.c: Likewise.
56138
56139 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
56140
56141         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
56142
56143 2000-11-06  Paul Eggert  <eggert@twinsun.com>
56144
56145         * lib/getusershell.c (setusershell): Use rewind rather than
56146         fseek/fseeko, to avoid configuration hassles with fseeko.
56147         Don't bother opening SHELLS_FILE if shellstream is NULL;
56148         it's not necessary.
56149
56150 2000-11-05  Jim Meyering  <meyering@lucent.com>
56151
56152         * lib/makepath.h (make_dir): Declare.
56153         * lib/makepath.c (make_dir): Remove `static' attribute.
56154         Tweak a comment.
56155
56156 2000-11-04  Jim Meyering  <meyering@lucent.com>
56157
56158         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
56159
56160 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
56161
56162         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
56163         last one in a bucket, advance to the next bucket.
56164
56165 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
56166
56167         * lib/fnmatch.c: Do not comment out all the code if we are using
56168         the GNU C library, because in some cases we are replacing buggy
56169         code in the GNU C library itself.
56170
56171 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
56172
56173         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
56174         (regex_compile): Catch bogus \(\1\).
56175
56176 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56177
56178         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
56179         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
56180         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
56181
56182 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56183
56184         * lib/error.h, getline.h, modechange.h:
56185         Remove "2000" from Copyright line, as the file hasn't been
56186         changed this year other than in the copyright notice.
56187
56188         * lib/xalloc.h: Add "2000" to Copyright line, as this file
56189         was changed this year.
56190
56191 2000-10-29  Jim Meyering  <meyering@lucent.com>
56192
56193         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
56194         renaming.
56195         * m4/ls-mntd-fs.m4: Likewise
56196
56197 2000-10-29  Jim Meyering  <meyering@lucent.com>
56198
56199         * lib/xstat.in: Fix grammar in comment.
56200
56201 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
56202
56203         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
56204         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
56205         doesn't define __restrict_arr.
56206
56207 2000-10-28  Jim Meyering  <meyering@lucent.com>
56208
56209         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
56210         (jm_PREREQ_MEMCHR): New function.
56211
56212 2000-10-28  Jim Meyering  <meyering@lucent.com>
56213
56214         * lib/memchr.c: Update from libc.
56215         Adjust for portability:
56216         [HAVE_STDLIB_H]: Include stdlib.h.
56217         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
56218         Undef __memchr, too.
56219         [!weak_alias]: Define __memchr to memchr.
56220
56221         * lib/regex.c: Update from libc.
56222         * lib/regex.h: Likewise.
56223         * lib/getopt1.c: Likewise.
56224         * lib/memcmp.c: Likewise.
56225
56226         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
56227         Avoid using fseek, when possible -- it's broken by design.
56228         Patch by Ulrich Drepper.
56229
56230 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
56231
56232         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
56233         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
56234         Giving in to popular pressure to shut up the compiler with casts.
56235
56236 2000-10-26  Jim Meyering  <meyering@lucent.com>
56237
56238         * lib/strftime.c: Update from libc.
56239
56240 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
56241
56242         * regex.c: More `unsigned char' -> `re_char' changes.
56243         Also change several `int' into `re_wchar_t'.
56244         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
56245         (PUSH_FAILURE_POINTER): Don't cast any more.
56246         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
56247         We want GCC to complain, since this piece of code makes
56248         re_match non-reentrant, which *should* be fixed.
56249         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
56250         (EXTEND_BUFFER): Use RETALLOC.
56251         (SET_LIST_BIT): Don't cast.
56252         (re_wchar_t): New type.
56253         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
56254         that those two functions will always properly return.
56255         (IMMEDIATE_QUIT_CHECK): Cast to void.
56256         (analyse_first): Use recursion rather than an explicit stack.
56257         (re_compile_fastmap): Can't fail anymore.
56258         (re_search_2): Don't check re_compile_fastmap for failure.
56259         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
56260         Now also sets the new value (passed in a new argument).
56261         (re_match_2_internal): Use it.
56262         Also, use a new var `reg' of type size_t when looping through regs
56263         rather than reuse the inappropriate `mcnt'.
56264
56265 2000-10-25  Jim Meyering  <meyering@lucent.com>
56266
56267         * lib/obstack.c: Update from libc.
56268
56269 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
56270
56271         * regex.c (regex_compile): Change the way of handling a range from
56272         a char less than 256 to a char not less than 256.
56273
56274 2000-10-24  Andrew Innes  <andrewi@gnu.org>
56275
56276         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
56277         NT-Emacs only.
56278         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
56279         so that re_search functions only quit when callers expect them to.
56280
56281 2000-10-23  Jim Meyering  <meyering@lucent.com>
56282
56283         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
56284         wrong.  That set_locale call must not have any side effects.
56285         From Paul Eggert.
56286
56287 2000-10-22  Jim Meyering  <meyering@lucent.com>
56288
56289         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
56290         [CYCLIC]: Remove now-unused definition.
56291
56292         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
56293         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
56294         Suggestion from Ulrich Drepper.
56295
56296 2000-10-21  Jim Meyering  <meyering@lucent.com>
56297
56298         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
56299         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
56300         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
56301
56302 2000-10-21  Jim Meyering  <meyering@lucent.com>
56303
56304         * lib/dirname.c (memrchr): Declare if necessary.
56305         (dir_name): Remove the restriction that there be no
56306         trailing slashes.  Now, this code skips past them, effectively
56307         ignoring them.
56308         [TEST_DIRNAME] (main): New unit tests.
56309
56310         * lib/memrchr.c: New file from GNU libc.
56311         Undef __memrchr, too.
56312         [!weak_alias]: Define __memrchr to memrchr.
56313         Guard weak_alias use with `#ifdef weak_alias'.
56314
56315 2000-10-21  Jim Meyering  <meyering@lucent.com>
56316
56317         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
56318         (dir_name): Use dir_name_r.
56319         * lib/dirname.h (dir_name_r): Declare it.
56320
56321 2000-10-17  Jim Meyering  <meyering@lucent.com>
56322
56323         * lib/quote.h (PARAMS): Define and use.
56324         Reported by Akim Demaille.
56325
56326         * lib/getopt.c: Update from libc.
56327
56328 2000-10-16  Jim Meyering  <meyering@lucent.com>
56329
56330         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
56331         setlocale.
56332         From Jan Fedak.
56333
56334 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
56335
56336         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
56337
56338 2000-09-25  Jim Meyering  <meyering@lucent.com>
56339
56340         * lib/md5.h (rol): Define (from GnuPG).
56341
56342         * lib/sha.c: Give credit (GnuPG) where due.
56343         (M): Use rol rather than open-coding it.
56344         Add a FIXME comment.
56345
56346 2000-09-21  Jim Meyering  <meyering@lucent.com>
56347
56348         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
56349         Reported by Michael Stone.
56350
56351 2000-09-20  Jim Meyering  <meyering@lucent.com>
56352
56353         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
56354         (noinst_HEADERS): Add sha.h.
56355         Based on code from Scott G. Miller and from GnuPG.
56356
56357 2000-09-18  Jim Meyering  <meyering@lucent.com>
56358
56359         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
56360         LIBS. Otherwise, everyone ends up linking with -lelf for some
56361         configurations.
56362         Reported by Mike Stone.
56363
56364 2000-09-15  Jim Meyering  <meyering@lucent.com>
56365
56366         * lib/regex.c: Update from libc.
56367
56368 2000-09-10  Jim Meyering  <meyering@lucent.com>
56369
56370         * lib/getopt.c (_getopt_internal): Update from glibc.
56371
56372 2000-09-09  Jim Meyering  <meyering@lucent.com>
56373
56374         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
56375         think it should be used as a general replacement for isascii.
56376         * lib/fnmatch.c: Likewise.
56377         * lib/mbswidth.c: Likewise
56378         * lib/regex.c: Likewise.
56379
56380         Don't use atoi.
56381         * lib/userspec.c: Include sys/param.h and limits.h.
56382         Include xstrtol.h.
56383         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
56384         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
56385         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
56386         UID, GID.  Check range.
56387
56388 2000-09-06  Jim Meyering  <meyering@lucent.com>
56389
56390         * lib/getopt.c (_getopt_internal): Update from glibc.
56391
56392 2000-08-30  Jim Meyering  <meyering@lucent.com>
56393
56394         * lib/strftime.c: Merge in changes from GNU libc.
56395
56396 2000-08-26  Jim Meyering  <meyering@lucent.com>
56397
56398         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
56399         * m4/fpending.m4: New file.
56400
56401 2000-08-26  Jim Meyering  <meyering@lucent.com>
56402
56403         * lib/closeout.c: Include "__fpending.h".
56404         (close_stdout_status): Return right away if there's nothing to flush.
56405
56406         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
56407         * lib/__fpending.c: New file.
56408         * lib/__fpending.h: New file.
56409
56410 2000-08-20  Jim Meyering  <meyering@lucent.com>
56411
56412         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
56413         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
56414         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
56415
56416 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
56417
56418         Improve fileutils installation on systems where running
56419         programs (like install) can't be unlinked.
56420         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
56421         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
56422
56423 2000-08-07  Paul Eggert  <eggert@twinsun.com>
56424
56425         Standardize on "memory exhausted" instead of "Memory exhausted"
56426         or "virtual memory exhausted".
56427         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
56428         "virtual memory exhausted".
56429         * lib/same.c (same_name): Invoke xalloc_die instead of printing
56430         our own message.
56431         * lib/userspec.c (parse_user_spec): Likewise.
56432         * lib/bumpalloc.h: comment fix
56433         * lib/same.c, userspec.c: Include xalloc.h.
56434
56435         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
56436         not char *const and pointing to a constant array.
56437         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
56438         (xrealloc): Comment fix.
56439
56440         * lib/userspec.c (parse_user_spec):
56441         Don't translate a message until just before returning,
56442         to avoid unnecessary translation.
56443
56444 2000-08-07  Jim Meyering  <meyering@lucent.com>
56445
56446         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
56447         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
56448         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
56449         getgroups.c, gethostname.c, getopt.h, group-member.c,
56450         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
56451         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
56452         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
56453         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
56454         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
56455         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
56456         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
56457         yesno.c: Back out Copyright date changes for each file with no change
56458         this year.  This eases coordination with other programs using the same
56459         source code modules.  From Paul Eggert.
56460
56461 2000-08-06  Paul Eggert  <eggert@twinsun.com>
56462
56463         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
56464         not char, for compatibility with glibc 2.1.3 strftime.c.
56465
56466 2000-08-03  Greg McGary  <greg@mcgary.org>
56467
56468         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
56469         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
56470         (EXTEND_BUFFER): Use them.
56471
56472 2000-08-01  Jim Meyering  <meyering@lucent.com>
56473
56474         * lib/dirname.c (ISSLASH): Define.
56475         (BACKSLASH_IS_PATH_SEPARATOR): Define.
56476         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
56477         both `\' and `/' may be use as path separators.
56478         Based on a patch from Prashant TR.
56479
56480 2000-07-31  Paul Eggert  <eggert@twinsun.com>
56481
56482         * lib/quotearg.c (quotearg_n_options): Don't make the initial
56483         slot vector a constant, since it might get modified.
56484
56485 2000-07-31  Jim Meyering  <meyering@lucent.com>
56486
56487         * lib/xmalloc.c: Use `virtual memory exhausted', not
56488         `Memory exhausted'.
56489         * lib/obstack.c (print_and_abort): Likewise.
56490
56491 2000-07-30  Paul Eggert  <eggert@twinsun.com>
56492
56493         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
56494         buffer, so that the caller can always quote one small
56495         component of a "memory exhausted" message in slot 0.
56496         From a suggestion by Jim Meyering.
56497
56498 2000-07-30  Jim Meyering  <meyering@lucent.com>
56499
56500         * lib/makepath.c (make_path): Quote the other instance, too.
56501
56502         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
56503         (STATIC_BUF_SIZE): Define.
56504         (quotearg_n_options): Use only statically allocated storage when
56505         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
56506         than STATIC_BUF_SIZE.
56507
56508 2000-07-29  Jim Meyering  <meyering@lucent.com>
56509
56510         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
56511         * lib/dirname.c (dir_name): Likewise.
56512
56513         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
56514         `/'.
56515
56516         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
56517         (dir_name): Assert that there are no trailing slashes.
56518
56519 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
56520
56521         * lib/mbswidth.h (mbswidth): Add a flags argument.
56522         (mbswidth): New declaration.
56523         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
56524         * lib/mbswidth.c (mbswidth): Add a flags argument.
56525         (mbsnwidth): New function.
56526
56527 2000-07-24  Jim Meyering  <meyering@lucent.com>
56528
56529         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
56530
56531 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56532
56533         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
56534
56535 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56536
56537         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
56538         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
56539         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
56540         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
56541         invoke multibyte primitives.
56542
56543 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56544
56545         * lib/quotearg.c:
56546         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
56547         so that mbstate_t is always defined.
56548
56549         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
56550         be 1 in at least one GCC installation, and this configuration
56551         error is likely to be common.  Ignoring MB_LEN_MAX hurts
56552         performance on hosts that have mbrtowc but have only unibyte
56553         locales, but I assume these hosts are rare.
56554
56555 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56556
56557         * lib/mbswidth.c (_XOPEN_SOURCE):
56558         Don't define; this causes problems on Solaris 7.
56559         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
56560
56561 2000-07-23  Jim Meyering  <meyering@lucent.com>
56562
56563         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
56564         too: getgrgid, getpwuid, getuid.
56565
56566 2000-07-23  Jim Meyering  <meyering@lucent.com>
56567
56568         * lib/basename.c (base_name): Add an assertion.
56569
56570 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
56571
56572         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
56573         shadow its mbsinit function.
56574
56575 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56576
56577         * lib/mbswidth.h: New file.
56578         * lib/mbswidth.c: New file.
56579         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
56580         (noinst_HEADERS): Add mbswidth.h.
56581
56582 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56583
56584         * lib/config.charset: Add support for FreeBSD. Improve support for
56585         HP-UX and IRIX 6.
56586
56587 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
56588
56589         * m4/mbswidth.m4: New file.
56590         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
56591
56592 2000-07-15  Jim Meyering  <meyering@lucent.com>
56593
56594         * lib/makepath.c: Include quote.h.
56595         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
56596         corresponding argument in a `quote (...)' call.
56597         Give better diagnostics.
56598
56599         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
56600         (noinst_HEADERS): Add quote.h.
56601
56602         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
56603         from tar's src/misc.c.
56604         * lib/quote.h: New file.  Prototypes for same.
56605
56606 2000-07-14  Paul Eggert  <eggert@twinsun.com>
56607
56608         From a suggestion by Bruno Haible.
56609         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
56610         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
56611         to decide whether to define the BeOS workaround macro;
56612         this adjusts to the change to AC_MBSTATE_T.
56613
56614 2000-07-14  Jim Meyering  <meyering@lucent.com>
56615
56616         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
56617         jm_AC_TYPE_UINTMAX_T.
56618
56619 2000-07-13  Paul Eggert  <eggert@twinsun.com>
56620
56621         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
56622
56623         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
56624         quotearg_buffer_restyled): Add support for
56625         clocale_quoting_style.  Undo previous change to
56626         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
56627         and "{RIGHT QUOTATION MARK}" msgids.
56628
56629 2000-07-10  Paul Eggert  <eggert@twinsun.com>
56630
56631         From a suggestion by Bruno Haible.
56632         * m4/mbstate_t.m4 (AC_MBSTATE_T):
56633         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
56634         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
56635         and mbstate_t, to a single-part test that simply defines mbstate_t.
56636         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
56637         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
56638
56639 2000-07-10  Jim Meyering  <meyering@lucent.com>
56640
56641         * m4/strerror_r.m4: Mirror the correction made in autoconf.
56642
56643         * m4/gnu-source.m4: Output to confdefs.h directly.
56644         Suggestion from Akim Demaille.
56645
56646 2000-07-09  Paul Eggert  <eggert@twinsun.com>
56647
56648         The old behavior of quoting `like this' doesn't look good with
56649         newer, ISO-style fonts.  See:
56650         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
56651
56652         Instead, quote "like this" by default.  Let the translator
56653         tailor the locale-specific quoting behavior by providing
56654         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
56655
56656         * lib/quotearg.c (N_): New macro.
56657         (gettext_default): New function.
56658         (quotearg_buffer_restyled): Use
56659         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
56660         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
56661
56662 2000-07-09  Jim Meyering  <meyering@lucent.com>
56663
56664         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
56665         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
56666
56667         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
56668         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
56669
56670 2000-07-09  Jim Meyering  <meyering@lucent.com>
56671
56672         * lib/Most files: Update copyright dates to include 2000.
56673
56674 2000-07-08  Jim Meyering  <meyering@lucent.com>
56675
56676         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
56677         if not defined.
56678         (xgethostname): Remove now-unnecessary #ifdef.
56679         Move declaration of `err' into loop where it's used.
56680
56681 2000-07-05  Paul Eggert  <eggert@twinsun.com>
56682         and Bruno Haible  <haible@clisp.cons.org>
56683
56684         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
56685         only if the test for an object-type mbstate_t fails.  This
56686         prevents us from mistakenly reporting that mbstate_t is a
56687         system object type after we "#define mbstate_t int" to work
56688         around its lack.
56689
56690 2000-07-05  Paul Eggert  <eggert@twinsun.com>
56691         and Bruno Haible  <haible@clisp.cons.org>
56692
56693         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
56694
56695 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56696
56697         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
56698         to strerror_r.
56699         Include <ctype.h> for use of isalpha.
56700
56701 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56702
56703         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
56704         by allocating a larger buffer. Test the gethostname return value for
56705         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
56706         returns an error and ENAMETOOLONG isn't defined.
56707
56708 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56709
56710         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
56711         dimension.
56712
56713 2000-07-04  Jim Meyering  <meyering@lucent.com>
56714
56715         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
56716         of the deprecated AC_CHECKING.
56717
56718 2000-07-04  Jim Meyering  <meyering@lucent.com>
56719
56720         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
56721         Reported by Bruno Haible.
56722
56723 2000-07-04  Jim Meyering  <meyering@lucent.com>
56724
56725         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
56726         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
56727         lacks mbrtowc.
56728
56729 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56730
56731         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
56732         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
56733
56734 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56735         and Bruno Haible  <haible@clisp.cons.org>
56736
56737         * lib/quotearg.c (mbrtowc):
56738         Assign to *pwc, and return 1 only if result is nonzero.
56739         (iswprint): Use ISPRINT when substituting our own mbrtowc.
56740
56741 2000-07-03  Jim Meyering  <meyering@lucent.com>
56742
56743         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
56744
56745 2000-07-03  Jim Meyering  <meyering@lucent.com>
56746
56747         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
56748         This is necessary to get a definition of e.g., UTMP_FILE on
56749         HP-UX 10.20.
56750         From Bob Proulx.
56751
56752 2000-07-02  Jim Meyering  <meyering@lucent.com>
56753
56754         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
56755
56756         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
56757         AC_LIBOBJ(function_name).
56758         * m4/chown.m4: Likewise.
56759         * m4/fnmatch.m4: Likewise.
56760         * m4/ftruncate.m4: Likewise.
56761         * m4/getgroups.m4: Likewise.
56762         * m4/getline.m4: Likewise.
56763         * m4/group-member.m4: Likewise.
56764         * m4/jm-macros.m4: Likewise.
56765         * m4/lstat.m4: Likewise.
56766         * m4/malloc.m4: Likewise.
56767         * m4/memcmp.m4: Likewise.
56768         * m4/nanosleep.m4: Likewise.
56769         * m4/putenv.m4: Likewise.
56770         * m4/realloc.m4: Likewise.
56771         * m4/regex.m4: Likewise.
56772         * m4/stat.m4: Likewise.
56773         * m4/strftime.m4: Likewise.
56774
56775 2000-07-02  Jim Meyering  <meyering@lucent.com>
56776
56777         * lib/quotearg.c (mbstate_t): Don't define here.
56778
56779 2000-07-02  Jim Meyering  <meyering@lucent.com>
56780
56781         * lib/nanosleep.c (SIGCONT): Define if not already defined.
56782
56783 2000-07-01  Jim Meyering  <meyering@lucent.com>
56784
56785         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
56786
56787 2000-07-01  Jim Meyering  <meyering@lucent.com>
56788
56789         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
56790         problem.
56791
56792 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56793
56794         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
56795         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
56796
56797 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56798
56799         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
56800         per change in ../m4/ls-mntd-fs.m4.
56801         (read_filesystem_list): Ignore symbolic links.
56802
56803 2000-06-29  Jim Meyering  <meyering@lucent.com>
56804
56805         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
56806         for declaration of strcmp.
56807
56808         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
56809
56810         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
56811         Avoid warning by casting result to `char *' to remove `const'.
56812
56813 2000-06-28  Jim Meyering  <meyering@lucent.com>
56814
56815         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
56816         included by quotearg.c, for which we perform this test.  From
56817         Bruno Haible.
56818
56819 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56820
56821         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
56822         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
56823         <utmpx.h> exists, put readutmp.o into LIBOBJS.
56824
56825 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56826
56827         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
56828
56829 2000-06-26  Paul Eggert  <eggert@twinsun.com>
56830
56831         savedir now sets errno on failure and invokes xmalloc to get memory.
56832         Fix a couple of other minor bugs while we're at it.
56833
56834         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
56835         (NAMLEN): Remove macro.
56836         (malloc, realloc): Remove decls.
56837         (stpcpy): Likewise.
56838         ("xalloc.h"): Include.
56839         (NAME_SIZE_DEFAULT): New macro.
56840         (savedir): Use xmalloc / xrealloc to allocate memory.
56841         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
56842         Skip "" directory entries.
56843         Use strlen to calculate directory entry length, since the old method
56844         is rarely used these days and isn't worth supporting.
56845         Don't use a pointer after freeing it.
56846         Check for integer overflow when calculating allocation size.
56847         Use memcpy to copy entries, instead of stpcpy.
56848         Set errno properly when returning NULL.
56849         Check for readdir error.
56850
56851 2000-06-26  Jim Meyering  <meyering@lucent.com>
56852
56853         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
56854
56855 2000-06-25  Jim Meyering  <meyering@lucent.com>
56856
56857         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
56858         Linux header bug when _XOPEN_SOURCE is defined to 500.
56859
56860 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56861
56862         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
56863         deficiency.
56864
56865 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56866
56867         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
56868         Include xalloc.h.
56869         Don't include <stdlib.h>.  Don't declare malloc, realloc.
56870
56871 2000-06-24  Jim Meyering  <meyering@lucent.com>
56872
56873         * m4/strerror_r.m4: Revive this file -- to try out an experimental
56874         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
56875         for which strerror does return char*, but which lacks a conveniently
56876         accessible declaration of the function.  If the compile-test says
56877         strerror_r doesn't work, then resort to a `run'-test that works on
56878         BeOS and segfaults on DEC Unix.
56879
56880 2000-06-24  Jim Meyering  <meyering@lucent.com>
56881
56882         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
56883
56884 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56885
56886         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
56887         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
56888
56889 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56890
56891         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
56892         (mbrtowc, mbstate_t): Define substitutes if
56893         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
56894         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
56895         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
56896
56897 2000-06-23  Jim Meyering  <meyering@lucent.com>
56898
56899         * m4/afs.m4: Add missing AC_MSG_RESULT.
56900         Reported by Bruno Haible.
56901
56902         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
56903         Suggestion from Bruno Haible.
56904
56905 2000-06-23  Jim Meyering  <meyering@lucent.com>
56906
56907         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
56908
56909 2000-06-21  Jim Meyering  <meyering@lucent.com>
56910
56911         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
56912
56913 2000-06-21  Jim Meyering  <meyering@lucent.com>
56914
56915         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
56916         (noinst_HEADERS): Add getstr.h.
56917
56918         * lib/getline.c (getstr): Move into a separate file.
56919         * lib/getstr.c (getstr): New file, extracted from getline.c, with
56920         the following changes: new parameter, delim2; both delim[12]
56921         parameters have type `int', not `char'.  The latter would lose
56922         with 8-bit delimiters.
56923         * lib/getstr.h: New file.
56924
56925 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56926
56927         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
56928         than 1024, return a memory chunk of least possible size, instead
56929         of size PATH_MAX + 2. In the loop, increment the size proportionally.
56930         Use free/xmalloc instead of xrealloc to avoid copying for very long
56931         paths.
56932
56933 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56934
56935         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
56936         the empty string.
56937
56938 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56939
56940         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
56941         address, not strdup.  Include <stdlib.h> and don't declare free().
56942
56943 2000-06-19  Jim Meyering  <meyering@lucent.com>
56944
56945         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
56946
56947 2000-06-18  Jim Meyering  <meyering@lucent.com>
56948
56949         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
56950
56951         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
56952         `checking whether...' message to be consistent with that of the
56953         lstat test.
56954
56955 2000-06-18  Jim Meyering  <meyering@lucent.com>
56956
56957         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
56958         Besides, these days every porting target provides a mkdir function.
56959
56960         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
56961         needed. (this snippet comes from src/system.h).
56962
56963 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
56964
56965         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
56966
56967 2000-06-15  Paul Eggert  <eggert@twinsun.com>
56968
56969         * lib/human.c (adjust_value): New function.
56970         (human_readable_inexact): Apply rounding style even when
56971         printing approximate values.
56972
56973 2000-06-14  Paul Eggert  <eggert@twinsun.com>
56974
56975         * lib/human.c (human_readable_inexact): Allow an input block
56976         size that is not a multiple of the output block size, and vice versa.
56977         Reported by Piergiorgio Sartor.
56978
56979 2000-06-14  Paul Eggert  <eggert@twinsun.com>
56980
56981         * lib/getdate.y (get_date): Apply relative times after time
56982         zone indicator, not before.  Reported by Todd A. Jacobs.
56983
56984 2000-06-13  Jim Meyering  <meyering@lucent.com>
56985
56986         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
56987
56988         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
56989
56990 2000-06-12  Paul Eggert  <eggert@twinsun.com>
56991
56992         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
56993
56994 2000-06-12  Jim Meyering  <meyering@lucent.com>
56995
56996         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
56997         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
56998         optional argument.
56999         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
57000         the optional argument, `lib'.
57001
57002 2000-06-08  Jim Meyering  <meyering@lucent.com>
57003
57004         * m4/largefile.m4: Remove file (now that it's part of autoconf).
57005
57006 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57007
57008         Rewrite largefile configuration so that we don't need to run
57009         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
57010         AC_CANONICAL_HOST in configure.in -- jmm]
57011
57012         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
57013         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
57014         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
57015         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
57016         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
57017         All uses changed.
57018         Instead of inspecting the output of getconf, try to compile the
57019         test program without and with the macro definition.
57020         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
57021         for getconf.  Instead, check for the needed flags by compiling
57022         test programs.
57023
57024 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57025
57026         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
57027
57028 2000-06-04  Jim Meyering  <meyering@lucent.com>
57029
57030         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
57031         SunOS 4.1.4 for which gid_t is an unsigned type.
57032
57033 2000-06-03  Jim Meyering  <meyering@lucent.com>
57034
57035         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
57036         now that autoconf requires that.
57037
57038         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
57039         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
57040         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
57041
57042 2000-06-03  Jim Meyering  <meyering@lucent.com>
57043
57044         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
57045
57046 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57047
57048         * m4/glibc21.m4: New file.
57049         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
57050
57051 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57052
57053         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
57054         newer, don't install charset.alias.
57055         * lib/config.charset: Change the Linux/glibc rules so they become empty
57056         on glibc-2.1 or newer.
57057
57058 2000-06-02  Jim Meyering  <meyering@lucent.com>
57059
57060         * lib/mountlist.c: Back out last change.  Instead, do this...
57061         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
57062         me_dummy member using the same `ignore'-testing code.
57063         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
57064         fs_type strings.
57065         From Mark D. Roth.
57066
57067 2000-05-29  Jim Meyering  <meyering@lucent.com>
57068
57069         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
57070         mounts with the `ignore' attribute.  Based on a patch from
57071         Mark D. Roth.
57072
57073 2000-05-28  Jim Meyering  <meyering@lucent.com>
57074
57075         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
57076         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57077         * m4/stat.m4: Likewise.
57078         * m4/lstat.m4: Likewise.
57079         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
57080
57081         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
57082         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
57083
57084 2000-05-26  Jim Meyering  <meyering@lucent.com>
57085
57086         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
57087
57088 2000-05-24  Jim Meyering  <meyering@lucent.com>
57089
57090         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
57091         autoconf requires that.
57092         * m4/lib-check.m4: Likewise.
57093         * m4/jm-macros.m4: Likewise.
57094         * m4/strftime.m4: Likewise.
57095
57096         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
57097         AC_CHECK_DECLS, now that autoconf requires that.
57098
57099 2000-05-22  Jim Meyering  <meyering@lucent.com>
57100
57101         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57102         * m4/lstat.m4: Likewise.
57103
57104 2000-05-22  Jim Meyering  <meyering@lucent.com>
57105
57106         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
57107
57108 2000-05-20  Jim Meyering  <meyering@lucent.com>
57109
57110         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
57111         (jm_PREREQ): Use it.
57112
57113 2000-05-18  Jim Meyering  <meyering@lucent.com>
57114
57115         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
57116         back, too, since it may have been modified by allocate_entry.
57117         (hash_delete): Rewrite to use neither the assignment operator
57118         nor the comma operator in an if-expression.
57119
57120 2000-05-15  Paul Eggert  <eggert@twinsun.com>
57121
57122         * lib/closeout.c:
57123         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
57124         Remove; no longer needed.
57125         "quotearg.h": Add include.
57126         (file_name): Do not bother to explicitly initialize to NULL; it's less
57127         efficient on some hosts.
57128         (close_stdout_status): Remove test as to whether stdout was already
57129         closed; it breaks for the case "echo x | sort >&-".
57130         Quote file name colons.
57131         Do not assume that _("write error") lacks format strings.
57132
57133 2000-05-15  Jim Meyering  <meyering@lucent.com>
57134
57135         * lib/version-etc.c (version_etc_copyright): Update the copyright
57136         string used in all --version output.
57137
57138 2000-05-14  Jim Meyering  <meyering@lucent.com>
57139
57140         * lib/closeout.c (close_stdout_set_file_name): New function.
57141         (close_stdout_status): Use new file-scoped global.
57142         Return right away if fstat says the stdout file descriptor is invalid.
57143         * lib/closeout.h (close_stdout_set_file_name): Declare.
57144
57145 2000-05-10  Jim Meyering  <meyering@lucent.com>
57146
57147         * lib/closeout.c [default_exit_status]: New file-scoped variable.
57148         (close_stdout_set_status): New function.
57149         * lib/closeout.h (close_stdout_set_status): Declare.
57150
57151 2000-05-09  Jim Meyering  <meyering@lucent.com>
57152
57153         * m4/gettext.m4: Rename this...
57154         * m4/libintl.m4: ...to this.
57155
57156 2000-05-08  Jim Meyering  <meyering@lucent.com>
57157
57158         * lib/long-options.c: Don't include closeout.h.
57159         (parse_long_options): Don't call close_stdout for --version.
57160
57161 2000-05-06  Paul Eggert  <eggert@twinsun.com>
57162
57163         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
57164         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
57165         2.1.3 bug.  This avoids a clash when files like regex.c define
57166         _GNU_SOURCE.
57167
57168 2000-05-06  Jim Meyering  <meyering@lucent.com>
57169
57170         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
57171         (AC_REPLACE_FUNCS): Add strnlen.
57172
57173         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
57174         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
57175
57176         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
57177         AC_SEARCH_LIBS call for nanosleep.
57178         (LIB_NANOSLEEP): Set and AC_SUBST.
57179
57180 2000-05-06  Jim Meyering  <meyering@lucent.com>
57181
57182         * lib/strnlen.c: Undefine __strnlen and strnlen.
57183         [!weak_alias]: Define __strnlen to strnlen.
57184
57185         * lib/atexit.c: New file, from libiberty.
57186
57187 2000-05-06  Jim Meyering  <meyering@lucent.com>
57188
57189         * lib/closeout.c (close_stdout_status): Also check for errors on the
57190         stderr stream.
57191
57192 2000-05-05  Jim Meyering  <meyering@lucent.com>
57193
57194         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
57195         AC_SEARCH_LIBS call for clock_gettime.
57196         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
57197
57198         * m4/search-libs.m4: Update from autoconf.
57199
57200         su doesn't work on Solaris 2.6.
57201         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
57202         <shadow.h>.  Reported by Dragos Harabor.
57203
57204 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
57205
57206         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
57207         memcpy instead of xmalloc, xrealloc, path_concat.
57208         (locale_charset): Treat empty environment variables as absent.
57209         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
57210
57211 2000-05-04  Jim Meyering  <meyering@lucent.com>
57212
57213         * lib/getopt.c: Update from glibc.
57214         * lib/obstack.c: Likewise.
57215         * lib/obstack.h: Likewise.
57216         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
57217         file
57218
57219         * lib/regex.h: Likewise.
57220         * lib/strndup.c: Likewise.
57221         * lib/strnlen.c: New file, from glibc.
57222
57223 2000-05-03  Jim Meyering  <meyering@lucent.com>
57224
57225         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
57226
57227 2000-05-02  Paul Eggert  <eggert@twinsun.com>
57228
57229         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
57230         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
57231         compile-time test, rather than inspecting host and OS, to
57232         decide whether to define _LARGEFILE_SOURCE.
57233
57234 2000-05-01  Jim Meyering  <meyering@lucent.com>
57235
57236         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
57237
57238         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
57239         Based on a patch from Bruno Haible.
57240
57241 2000-05-01  Jim Meyering  <meyering@lucent.com>
57242
57243         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
57244
57245 2000-04-29  Jim Meyering  <meyering@lucent.com>
57246
57247         * lib/path-concat.c: Declare strdup only if it's not defined.
57248         * lib/canon-host.c: Likewise.
57249
57250 2000-04-28  Jim Meyering  <meyering@lucent.com>
57251
57252         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
57253         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
57254         is included first, then limits.h is included by locale.h by libintl.h.
57255         From John David Anglin.
57256
57257 2000-04-25  Jim Meyering  <meyering@lucent.com>
57258
57259         * lib/makepath.c (S_IRWXUGO): Define.
57260         (make_path): Always perform explicit chmod if MODE specifies any
57261         of the `special' permission bits.  Prompted by a bug report against
57262         install from Mate Wierdl and Joost van Baal.
57263
57264 2000-04-18  Jim Meyering  <meyering@lucent.com>
57265
57266         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
57267         (jm_PREREQ): Use it.
57268
57269 2000-04-18  Jim Meyering  <meyering@lucent.com>
57270
57271         * lib/README: New file.
57272
57273         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
57274         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
57275
57276 2000-04-17  Jim Meyering  <meyering@lucent.com>
57277
57278         Get it right :-)
57279         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
57280         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
57281         Suggestion from Akim Demaille.
57282
57283 2000-04-17  Jim Meyering  <meyering@lucent.com>
57284
57285         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
57286         the definition of it to rpl_strftime also defined-away the system's
57287         declaration.
57288
57289 2000-04-15  Jim Meyering  <meyering@lucent.com>
57290
57291         Use `C' to denote so-called `contiguous' files, the same way
57292         that tar does.
57293         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
57294         (ftypelet): Use S_ISCTG.
57295         From Michael Deutschmann.
57296
57297 2000-04-14  Jim Meyering  <meyering@lucent.com>
57298
57299         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
57300         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
57301         clobbered.
57302
57303 2000-04-14  Jim Meyering  <meyering@lucent.com>
57304
57305         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
57306
57307 2000-04-13  Jim Meyering  <meyering@lucent.com>
57308
57309         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
57310         AH_VERBATIM to insert required #ifndef into config.h.in.
57311         Suggestion from Akim Demaille.
57312
57313 2000-04-12  Jim Meyering  <meyering@lucent.com>
57314
57315         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
57316         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
57317         Christian Krackowizer.
57318
57319         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
57320         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
57321         (AC_SYS_LARGEFILE): Require.
57322         (AM_C_PROTOTYPES): Require.
57323
57324 2000-04-08  Jim Meyering  <meyering@lucent.com>
57325
57326         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
57327         names don't conflict.  Reported by Eli Zaretskii.
57328
57329 2000-04-07  Jim Meyering  <meyering@lucent.com>
57330
57331         * lib/putenv.c: Move inclusion of errno.h so it follows that of
57332         sys/types.h, to work around system header problems on AIX 3.2.5.
57333         From Bruno Haible.
57334
57335 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
57336
57337         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
57338         bug.  Deal with the different error behavior of Irix iconv.
57339
57340 2000-04-05  Paul Eggert  <eggert@twinsun.com>
57341
57342         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
57343         IRIX if the installer said otherwise.
57344
57345 2000-04-05  Jim Meyering  <meyering@lucent.com>
57346
57347         Portability tweaks required for ultrix4.3.
57348         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
57349         (jm_CHECK_DECLS): Add getutent to the list of functions.
57350         (_jm_DECL_HEADERS): Add utmpx.h.
57351         From John David Anglin.
57352
57353         * m4/strftime.m4: Back out the 2000-04-02 change.
57354         Instead of that change, simply undefine putenv in the test program.
57355
57356 2000-04-05  Jim Meyering  <meyering@lucent.com>
57357
57358         Portability tweaks required for ultrix4.3.
57359         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
57360         getutent.
57361         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
57362         * lib/canon-host.c: Declare strdup.
57363         * lib/path-concat.c: Likewise.
57364         From John David Anglin.
57365
57366 2000-04-04  Jim Meyering  <meyering@lucent.com>
57367
57368         Be more DOS 8.3-friendly.
57369         * lib/ref-add.sin: Renamed from ref-add.sed.in.
57370         * lib/ref-del.sin: Renamed from ref-del.sed.in.
57371         * lib/Makefile.am: Reflect renaming.
57372         Reported by Eli Zaretskii.
57373
57374         Use a temporary file name that won't clash with `charset.alias'
57375         in the DOS 8.3 name space.
57376         * lib/Makefile.am (charset_tmp): Define.
57377         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
57378         (uninstall-local): Likewise.
57379         Reported by Eli Zaretskii.
57380
57381 2000-04-03  Jim Meyering  <meyering@lucent.com>
57382
57383         * m4/gettext.m4: Fix typo in comment.
57384
57385         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
57386         textutils/configure.in).  Suggestion from Paul Eggert.
57387         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
57388
57389 2000-04-02  Paul Eggert  <eggert@twinsun.com>
57390
57391         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
57392         variable in the shell rather than using putenv, which isn't
57393         portable.  This avoids the configure-time inter-test dependency
57394         on the potentially-renamed putenv function.
57395
57396 2000-03-30  Paul Eggert  <eggert@twinsun.com>
57397
57398         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
57399         before checking struct stat.st_blksize, so that
57400         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
57401
57402 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57403
57404         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
57405         since strftime.c uses HAVE_STRFTIME to decide whether to use
57406         the underlying strftime.
57407
57408 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57409
57410         * lib/time/strftime.c (my_strftime): Make sure we call the system
57411         strftime, not ourselves, when invoking the underlying strftime.
57412
57413 2000-03-24  Jim Meyering  <meyering@lucent.com>
57414
57415         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
57416         (charset_alias): Define.
57417         (install-exec-local): Factor out common code.
57418         (uninstall-local): Split lines longer than 80.
57419         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
57420         (SUFFIXES): Define.
57421         (.sed.in.sed): New rule.  Don't redirect directly to $@.
57422         (CLEANFILES): Add ref-add.sed and ref-del.sed.
57423
57424 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
57425
57426         * lib/config.charset: Output a line containing "Packages using this
57427         file".
57428         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
57429         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
57430         ref-del.sed): New rules.
57431
57432 2000-03-17  Jim Meyering  <meyering@lucent.com>
57433
57434         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
57435         Otherwise, include <strings.h>
57436
57437 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
57438
57439         * lib/unicodeio.c (utf8_wctomb): New function.
57440         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
57441         format instead of in UCS-4 with platform dependent endianness.
57442
57443 2000-03-10  Jim Meyering  <meyering@lucent.com>
57444
57445         * m4/lib-check.m4: Look for getspnam in -lgen, too.
57446         From Marco Franzen.
57447
57448 2000-03-07  Paul Eggert  <eggert@twinsun.com>
57449
57450         * lib/savedir.c (savedir): Work even if directory size is
57451         negative; this can happen with some screwy NFS configurations.
57452
57453 2000-03-06  Jim Meyering  <meyering@lucent.com>
57454
57455         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
57456         if it's NULL (because we ran out of memory).  From Bruno Haible.
57457
57458 2000-03-05  Jim Meyering  <meyering@lucent.com>
57459
57460         * lib/localcharset.c ("path-concat.h"): Include.
57461         (get_charset_aliases): Use path_concat instead of ANSI string
57462         concatenation.
57463
57464         * lib/unicodeio.h (PARAMS): Define.
57465         Use it to guard prototype.
57466
57467 2000-03-04  Jim Meyering  <meyering@lucent.com>
57468
57469         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
57470         for lib/localcharset.c.
57471
57472 2000-03-04  Jim Meyering  <meyering@lucent.com>
57473
57474         * lib/Makefile.am (install-exec-local): Create $(libdir) before
57475         installing into it.
57476         (uninstall-local): Uncomment this rule so `make distcheck' works
57477         once again.
57478
57479         * lib/unicodeio.c (<errno.h>): Include it.
57480         (errno): Declare if not defined.
57481
57482         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
57483
57484         * lib/config.charset: New version, incorporating remarks from a linux
57485         i18n mailing list.  From Bruno Haible.
57486
57487 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
57488
57489         * m4/codeset.m4: New file.
57490         * m4/iconv.m4: New file.
57491         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
57492
57493 2000-03-03  Jim Meyering  <meyering@lucent.com>
57494
57495         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
57496
57497 2000-03-02  Jim Meyering  <meyering@lucent.com>
57498
57499         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
57500         the messages come out on separate lines.
57501
57502         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
57503         rather than jm_CHECK_DECLARATIONS.
57504         * m4/decl.m4: Remove now-unused file.
57505
57506         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
57507         geteuid.
57508
57509 2000-03-02  Jim Meyering  <meyering@lucent.com>
57510
57511         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
57512
57513 2000-03-01  Jim Meyering  <meyering@lucent.com>
57514
57515         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
57516         * lib/unicodeio.c: Likewise.
57517
57518 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
57519
57520         * lib/config.charset: New file.
57521         * lib/localcharset.c: New file.
57522         * lib/unicodeio.h, lib/unicodeio.c: New files.
57523         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
57524         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
57525         (noinst_HEADERS): Add unicodeio.h.
57526         (all-local, install-exec-local, charset.alias): New targets.
57527
57528 2000-02-28  Paul Eggert  <eggert@twinsun.com>
57529
57530         * lib/quotearg.c (ALERT_CHAR): New macro.
57531         (quotearg_buffer_restyled): Use it.
57532
57533 2000-02-27  Jim Meyering  <meyering@lucent.com>
57534
57535         * m4/check-decl.m4: Add getenv to the list.
57536
57537 2000-02-27  Jim Meyering  <meyering@lucent.com>
57538
57539         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
57540         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
57541
57542         * lib/backupfile.c: Guard inclusion of stdlib.h with
57543         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
57544         Declare malloc if needed.
57545
57546         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
57547         `#ifndef HAVE_DECL..'
57548         now that autoconf always defines the HAVE_DECL_ symbols.
57549         * lib/human.c: Likewise.
57550         * lib/same.c: Likewise.
57551         * lib/strtoumax.c: Likewise.
57552
57553         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
57554         declaration check was not run.
57555         * lib/hash.c: Likewise.
57556         * lib/human.c: Likewise.
57557         * lib/same.c: Likewise.
57558         * lib/strtoumax.c: Likewise.
57559
57560         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
57561         `.', then first look up the entire `.'-containing string as a login
57562         name.
57563
57564 2000-02-23  Jim Meyering  <meyering@lucent.com>
57565
57566         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
57567         in place of my hack.
57568
57569 2000-02-18  Paul Eggert  <eggert@twinsun.com>
57570
57571         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
57572         (textint): New typedef.
57573         (parser_control): Member year changed from int to textint.
57574         All uses changed.
57575         (YYSTYPE): Removed; replaced by %union with int and textint members.
57576         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
57577         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
57578         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
57579         (tSNUMBER, tUNUMBER): Now of type <textintval>.
57580         (date, number, to_year): Use width of number in digits, not its value,
57581         to determine whether it's a 2-digit year, or a 2-digit time.
57582         (yylex): Store number of digits of numeric tokens.
57583         Reported by John Kendall.
57584
57585         (parser_control): Changed from struct parser_control to typedef (for
57586         consistency).  All uses changed.
57587
57588         (tID): Removed; not used.
57589         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
57590
57591 2000-02-14  Paul Eggert  <eggert@twinsun.com>
57592
57593         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
57594         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
57595
57596 2000-02-12  Jim Meyering  <meyering@lucent.com>
57597
57598         * lib/userspec.c (ISDIGIT): Define it.
57599         (isdigit): Remove definition.
57600         (is_number): Use ISDIGIT, not isdigit.
57601         <libintl.h>: Include.
57602         (_ and N_): Define.
57603         (parse_user_spec): Mark translatable strings.
57604
57605 2000-02-10  Jim Meyering  <meyering@lucent.com>
57606
57607         With these changes, nanosleep.[ch] are finally enough like the other
57608         lib/* replacement files to compile on a few more losing systems.
57609
57610         * lib/nanosleep.h: Don't include config.h.
57611         Remove prototype from declaration of nanosleep.
57612         (PARAMS): Remove now-unneeded definition.
57613         * lib/nanosleep.c: #undef nanosleep.
57614         (rpl_nanosleep): Rename from nanosleep.
57615
57616 2000-02-10  Jim Meyering  <meyering@lucent.com>
57617
57618         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
57619         gnu_nanosleep to rpl_nanosleep.
57620
57621 2000-02-09  Jim Meyering  <meyering@lucent.com>
57622
57623         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
57624         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
57625
57626 2000-02-08  Akim Demaille  <akim@epita.fr>
57627
57628         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
57629         `[' and `]' and remove uses of `changequote'.
57630         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
57631         (AC_SYS_LARGEFILE): Likewise.
57632         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
57633         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
57634         of changequote.
57635         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
57636         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
57637         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
57638         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
57639
57640 2000-02-05  Jim Meyering  <meyering@lucent.com>
57641
57642         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
57643         Remove explicit use of AC_HEADER_TIME.  It is required by
57644         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
57645         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
57646         in autoconf whereby the expansion of the latter ended up preceding
57647         the expansion of its prerequisite, AC_HEADER_TIME.
57648         Reported by Volker Borchert.
57649
57650 2000-02-03  Jim Meyering  <meyering@lucent.com>
57651
57652         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
57653
57654 2000-02-03  Jim Meyering  <meyering@lucent.com>
57655
57656         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
57657         rather than with `#if HAVE_UTMPNAME'.
57658
57659 2000-02-02  Jim Meyering  <meyering@lucent.com>
57660
57661         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
57662         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
57663         Reported by Eli Zaretskii.
57664
57665 2000-02-01  Jim Meyering  <meyering@lucent.com>
57666
57667         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
57668
57669 2000-01-31  Jim Meyering  <meyering@lucent.com>
57670
57671         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
57672         functions.  Add the time.h and sys/time.h headers along with the
57673         AC_REQUIRE'ment of AC_HEADER_TIME.
57674
57675 2000-01-31  Jim Meyering  <meyering@lucent.com>
57676
57677         * lib/nanosleep.h (nanosleep): Guard declaration with
57678         `#if ! HAVE_DECL_NANOSLEEP'.
57679         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
57680         the declaration in that vendor's sys/timers.h.
57681         Reported by Christian Krackowizer.
57682
57683         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
57684         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
57685         (ISPRINT): Likewise.
57686         Reported by Tom Tromey.
57687
57688 2000-01-30  Jim Meyering  <meyering@lucent.com>
57689
57690         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
57691
57692         * m4/prereq.m4 (utmp_includes): Define.
57693         Check for ut_user and ut_name members in both struct utmpx
57694         and struct utmp.
57695
57696 2000-01-30  Jim Meyering  <meyering@lucent.com>
57697
57698         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
57699         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
57700         header files where only utmpx.ut_user is declared.
57701
57702         * lib/readutmp.h (UT_USER): Define.
57703
57704 2000-01-29  Jim Meyering  <meyering@lucent.com>
57705
57706         * m4/lib-check.m4: New file containing library-related checks from
57707         fileutils and sh-utils (textutils had none).
57708
57709 2000-01-28  Jim Meyering  <meyering@lucent.com>
57710
57711         * m4/perl.m4: Change format of warning message to look more like that
57712         from the missing script.  Suggestion from François Pinard.
57713
57714 2000-01-25  Jim Meyering  <meyering@lucent.com>
57715
57716         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
57717         well as time.h in the compile check.
57718         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
57719         Fix typo in cross-compiling case: s/yes/no/.
57720
57721 2000-01-23  Jim Meyering  <meyering@lucent.com>
57722
57723         * m4/jm-macros.m4: Move df-related tests here from
57724         fileutils/configure.in
57725
57726         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
57727         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
57728
57729         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
57730         s/space/ac_fsusage_space/.
57731         (jm_FILE_SYSTEM_USAGE): Take two parameters.
57732
57733         * m4/ftruncate.m4: New file (derived from part of
57734         fileutils/configure.in).
57735         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
57736         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
57737
57738         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
57739         AC_SUBST these here, rather than just in sh-util/configure.in, so
57740         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
57741         all the same.
57742         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
57743         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
57744         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
57745         (AC_SUBST(POW_LIBM)): Likewise.
57746         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
57747
57748 2000-01-23  Jim Meyering  <meyering@lucent.com>
57749
57750         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
57751         obstack.c.
57752
57753 2000-01-22  Jim Meyering  <meyering@lucent.com>
57754
57755         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
57756
57757         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
57758
57759         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
57760         configure.in
57761         (AC_CHECK_HEADERS): Likewise for sh-utils.
57762         (AC_CHECK_HEADERS): Likewise for textutils.
57763         Merge the three lists of headers.
57764
57765         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
57766         from fileutils' configure.in.
57767
57768         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
57769         code. Moved tests into their own function (_jm_DECL_HEADERS) in
57770         check-decl.m4.
57771
57772         * m4/check-decl.m4: Use #if rather than #ifdef.
57773         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
57774         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
57775         (_jm_DECL_HEADERS): Define new function.
57776         (jm_CHECK_DECLARATIONS): Require it.
57777
57778 2000-01-22  Jim Meyering  <meyering@lucent.com>
57779
57780         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
57781         [! HAVE_DECL_STRTOULL]: Declare strtoull.
57782         Required for some AIX systems.  Reported by Christian Krackowizer.
57783         [TESTING] (main): New function.
57784
57785         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
57786         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
57787         letters.
57788
57789         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
57790         iswprint.
57791
57792         * lib/strverscmp.c (ISDIGIT): Define.
57793         (strverscmp): Use ISDIGIT, not isdigit.
57794
57795 2000-01-19  Jim Meyering  <meyering@lucent.com>
57796
57797         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
57798         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
57799         defines `struct timespec' in <sys/time.h>
57800
57801         * m4/c-bs-a.m4: Remove uses of changequote altogether.
57802         Thanks to Akim for explaining.
57803
57804 2000-01-17  Paul Eggert  <eggert@twinsun.com>
57805
57806         * lib/nanosleep.c (nanosleep):
57807         Don't use SA_INTERRUPT to decide whether to call sigaction, as
57808         POSIX.1 doesn't require SA_INTERRUPT and some systems
57809         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
57810         it's been part of POSIX.1 since day 1 (in 1988).
57811
57812 2000-01-17  Jim Meyering  <meyering@lucent.com>
57813
57814         * lib/interlock: Remove unused file.  Reported by François Pinard.
57815
57816 2000-01-16  Paul Eggert  <eggert@twinsun.com>
57817
57818         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
57819         alert, backslash, formfeed, and vertical tab unnecessarily in
57820         shell quoting style.
57821
57822 2000-01-16  Jim Meyering  <meyering@lucent.com>
57823
57824         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
57825         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
57826         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
57827         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
57828
57829 2000-01-16  Jim Meyering  <meyering@lucent.com>
57830
57831         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
57832         because the latter didn't work.
57833
57834 2000-01-15  Jim Meyering  <meyering@lucent.com>
57835
57836         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
57837         (AC_REPLACE_FUNCS): Add memcpy and memset.
57838         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
57839         Add strpbrk.
57840         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
57841
57842 2000-01-12  Jim Meyering  <meyering@lucent.com>
57843
57844         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
57845         (jm_PREREQ): Use it.
57846         (jm_PREREQ_READUTMP): New macro.
57847         (jm_PREREQ): Use it.
57848
57849 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57850
57851         Quote multibyte characters correctly.
57852         * m4/c-bs-a.m4: New file.
57853         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
57854         (jm_PREREQ): Use it.
57855
57856 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57857
57858         * m4/uintmax_t.m4: Port to autoconf 2.13.
57859
57860 2000-01-08  Jim Meyering  <meyering@ascend.com>
57861
57862         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
57863         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
57864
57865 2000-01-04  Jim Meyering  <meyering@ascend.com>
57866
57867         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
57868         jm_STRUCT_DIRENT_D_TYPE.
57869         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
57870         jm_STRUCT_DIRENT_D_INO.
57871         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
57872         jm_STRUCT_UTIMBUF.
57873         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
57874         renamings.
57875         * m4/utime.m4: Likewise.
57876
57877         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
57878         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
57879
57880 2000-01-03  Paul Eggert  <eggert@twinsun.com>
57881
57882         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
57883         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
57884
57885 2000-01-02  Jim Meyering  <meyering@ascend.com>
57886
57887         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
57888         remember if this is necessary.
57889
57890 1999-12-26  Jim Meyering  <meyering@ascend.com>
57891
57892         * m4/jm-macros.m4: Use it here.
57893         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
57894
57895 1999-12-23  Jim Meyering  <meyering@ascend.com>
57896
57897         * m4/jm-macros.m4: Check for clock_gettime (moved from
57898         fileutils/configure.in)
57899         Check for gettimeofday.
57900
57901 1999-12-20  Jim Meyering  <meyering@ascend.com>
57902
57903         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
57904         autoconf-2.14a-1999-12-20.
57905
57906 1999-12-19  Jim Meyering  <meyering@ascend.com>
57907
57908         * m4/lstat-slash.m4: New file.
57909         * m4/jm-macros.m4: Use the new macro:
57910         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57911
57912 1999-12-07  Jim Meyering  <meyering@ascend.com>
57913
57914         * m4/perl.m4: Require that File::Compare be available, too.
57915         Too many systems seem to lack it.
57916
57917         * m4/strftime.m4: Add checks for most of the cpp macros tested in
57918         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
57919
57920 1999-11-18  Paul Eggert  <eggert@twinsun.com>
57921
57922         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
57923         problem with the QNX 4.25 shell, which doesn't propagate exit
57924         status of failed commands inside shell assignments.
57925
57926 1999-11-17  Jim Meyering  <meyering@ascend.com>
57927
57928         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
57929
57930 1999-11-07  Jim Meyering  <meyering@ascend.com>
57931
57932         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
57933
57934 1999-11-06  Jim Meyering  <meyering@ascend.com>
57935
57936         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
57937         * m4/jm-macros.m4 (jm_MACROS): Use it here.
57938
57939 1999-11-05  Jim Meyering  <meyering@ascend.com>
57940
57941         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
57942         configure.in of textutils, fileutils, and sh-utils into this one
57943         (shared between those packages) file.
57944         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
57945         AC_STRUCT_ST_BLKSIZE.
57946
57947 1999-11-03  Jim Meyering  <meyering@ascend.com>
57948
57949         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
57950         of AC_CHECK_TYPE checks includes unistd.h.
57951         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
57952         Suggestion from Akim Demaille.
57953
57954 1999-10-30  Jim Meyering  <meyering@ascend.com>
57955
57956         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
57957         m4-quoted string.
57958         * m4/ls-mntd-fs.m4: Likewise.
57959         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
57960         * m4/jm-winsz1.m4: Likewise.
57961
57962         * m4/const.m4: Remove file, since the fix made it into the experimental
57963         version of autoconf.
57964         * m4/mktime.m4: Likewise.
57965
57966         * m4/check-type.m4: Remove file, now that the latest version of
57967         AC_CHECK_TYPE takes a third arg to specify additional #includes.
57968
57969         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
57970         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
57971         AC_CHECK_TYPE.
57972
57973 1999-10-04  Jim Meyering  <meyering@ascend.com>
57974
57975         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
57976
57977 1999-09-22  Paul Eggert  <eggert@twinsun.com>
57978
57979         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
57980         2.95.1 bug with HP-UX 10.20.
57981
57982 1999-09-17  Jim Meyering  <meyering@ascend.com>
57983
57984         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
57985         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
57986         due to missing strdup (against sh-utils-2.0).
57987
57988 1999-08-29  Jim Meyering  <meyering@ascend.com>
57989
57990         * m4/jm-macros.m4: Require jm_BISON.
57991         * m4/bison.m4: New file.
57992
57993 1999-08-17  Paul Eggert  <eggert@twinsun.com>
57994
57995         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
57996         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
57997
57998 1999-08-05  Jim Meyering  <meyering@ascend.com>
57999
58000         * m4/getline.m4: Rename test file from conftestdata to conftest.data
58001         to avoid conflicts with `conftest' on 8+3 filesystems.
58002         Suggestion from Eli Zaretskii.
58003
58004 1999-08-04  Jim Meyering  <meyering@ascend.com>
58005
58006         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
58007         fileutils and sh-utils (textutils's getline test was inadequate).
58008         (AM_FUNC_GETLINE): Run this test.
58009         (AC_CHECK_FUNCS): Check for getdelim.
58010         Reported by Bob Proulx.
58011
58012 1999-08-02  Jim Meyering  <meyering@ascend.com>
58013
58014         * m4/jm-macros.m4: Add a comment.
58015
58016 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58017
58018         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
58019         <inttypes.h> defines strtoumax as a macro (and not as a
58020         function).
58021
58022 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58023
58024         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
58025         that we can shift, multiply and divide unsigned long long
58026         values; Ultrix cc can't do it.
58027
58028 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58029
58030         * m4/mktime.m4: New file, which is a preview of what should appear
58031         in the next public autoconf release.
58032
58033 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58034
58035         * m4/lfs.m4: Remove this file.
58036         * m4/largefile.m4: New file.  It contains the old contents of
58037         lfs.m4, except that all names with prefix AC_LFS have been
58038         changed to use the prefix AC_SYS_LARGEFILE instead, to be
58039         compatible with future autoconf versions.  Also, some minor m4
58040         quoting problems have been fixed.
58041
58042 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58043
58044         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
58045         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
58046         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
58047         and simplify the shell code.
58048
58049 1999-08-01  Jim Meyering  <meyering@ascend.com>
58050
58051         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
58052         m4.
58053
58054 1999-07-20  Jim Meyering  <meyering@ascend.com>
58055
58056         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
58057
58058 1999-07-15  Jim Meyering  <meyering@ascend.com>
58059
58060         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
58061
58062 1999-05-22  Jim Meyering  <meyering@ascend.com>
58063
58064         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
58065
58066 1999-05-20  Jim Meyering  <meyering@ascend.com>
58067
58068         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
58069         Add a colon after each `then' in case $4 is empty.
58070
58071 1999-05-16  Jim Meyering  <meyering@ascend.com>
58072
58073         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
58074
58075 1999-05-10  Jim Meyering  <meyering@ascend.com>
58076
58077         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
58078
58079         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
58080         AC_FUNC_MKTIME.
58081
58082 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
58083
58084         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
58085
58086 1999-05-04  Paul Eggert  <eggert@twinsun.com>
58087
58088         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
58089         not CPPFLAGS, so that linking works correctly in IRIX.
58090
58091 1999-04-30  Paul Eggert  <eggert@twinsun.com>
58092
58093         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
58094
58095 1999-04-20  Paul Eggert  <eggert@twinsun.com>
58096
58097         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
58098         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
58099         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
58100         jm_AC_TYPE_UNSIGNED_LONG_LONG.
58101         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
58102
58103         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
58104
58105 1999-04-20  Jim Meyering  <meyering@ascend.com>
58106
58107         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
58108         AC_REPLACE xstroull if necessary.  From Paul Eggert.
58109         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
58110
58111 1999-04-18  Jim Meyering  <meyering@ascend.com>
58112
58113         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
58114         * m4/jm-macros.m4: Use it.
58115
58116 1999-04-06  Jim Meyering  <meyering@ascend.com>
58117
58118         * m4/strftime.m4: Remove test for %f.
58119
58120 1999-03-29  Jim Meyering  <meyering@ascend.com>
58121
58122         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
58123         superset of the AC_TYPE_* checks in the textutils, fileutils,
58124         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
58125         AC_TYPE_PID_T.
58126
58127 1999-03-28  Jim Meyering  <meyering@ascend.com>
58128
58129         * m4/jm-macros.m4: Define GNU_PACKAGE here.
58130         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
58131         replaced e.g., in the *.sh files of the sh-utils.
58132
58133 1999-03-20  Jim Meyering  <meyering@ascend.com>
58134
58135         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
58136         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
58137         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
58138
58139 1999-03-19  Jim Meyering  <meyering@ascend.com>
58140
58141         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
58142
58143 1999-03-12  Jim Meyering  <meyering@ascend.com>
58144
58145         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
58146
58147 1999-03-07  Jim Meyering  <meyering@ascend.com>
58148
58149         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
58150         declared.
58151
58152 1999-02-17  Jim Meyering  <meyering@ascend.com>
58153
58154         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
58155         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
58156
58157 1999-02-07  Jim Meyering  <meyering@ascend.com>
58158
58159         * m4/group-member.m4: New file -- extracted from sh-utils'
58160         configure.in.
58161
58162         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
58163         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
58164
58165 1999-02-06  Jim Meyering  <meyering@ascend.com>
58166
58167         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
58168         * m4/fnmatch.m4: Likewise.
58169         * m4/getgroups.m4: Likewise.
58170         * m4/lstat.m4: Likewise.
58171         * m4/malloc.m4: Likewise.
58172         * m4/putenv.m4: Likewise.
58173         * m4/realloc.m4: Likewise.
58174         * m4/regex.m4: Likewise.
58175         * m4/stat.m4: Likewise.
58176         * m4/strftime.m4: Likewise.
58177         Suggestion from Alain Magloire.
58178
58179         * m4/chown.m4: Use `.$ac_objext', not `.o'.
58180         * m4/fnmatch.m4: Likewise.
58181         * m4/getgroups.m4: Likewise.
58182         * m4/getline.m4: Likewise.
58183         * m4/lstat.m4: Likewise.
58184         * m4/malloc.m4: Likewise.
58185         * m4/memcmp.m4: Likewise.
58186         * m4/putenv.m4: Likewise.
58187         * m4/realloc.m4: Likewise.
58188         * m4/regex.m4: Likewise.
58189         * m4/stat.m4: Likewise.
58190         * m4/strftime.m4: Likewise.
58191         Suggestion from Alain Magloire.
58192
58193         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
58194         an argument.
58195
58196         * m4/regex.m4: Add a run-time Test for proper operation of
58197         re_compile_pattern.
58198
58199 1999-01-31  Jim Meyering  <meyering@ascend.com>
58200
58201         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
58202
58203 1999-01-30  Jim Meyering  <meyering@ascend.com>
58204
58205         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
58206
58207         * m4/jm-mktime.m4: Make this a wrapper around the official
58208         AM_FUNC_MKTIME rather than my private copy, now that the official one
58209         is up to date.
58210         * m4/mktime.m4: Remove file.
58211
58212         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
58213         * m4/uptime.m4: Likewise.
58214         * m4/uintmax_t.m4: Likewise.
58215
58216 1999-01-28  Jim Meyering  <meyering@ascend.com>
58217
58218         * m4/jm-macros.m4: Use jm_AFS.
58219         * m4/afs.m4: New file (from fileutils' configure.in).
58220
58221         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
58222         * m4/chown.m4: Likewise.
58223         * m4/d-ino.m4: Likewise.
58224         * m4/d-type.m4: Likewise.
58225         * m4/fnmatch.m4: Likewise.
58226         * m4/getgroups.m4: Likewise.
58227         * m4/gettext.m4: Likewise.
58228         * m4/jm-mktime.m4: Likewise.
58229         * m4/jm-winsz2.m4: Likewise.
58230         * m4/lcmessage.m4: Likewise.
58231         * m4/ls-mntd-fs.m4: Likewise.
58232         * m4/malloc.m4: Likewise.
58233         * m4/memcmp.m4: Likewise.
58234         * m4/putenv.m4: Likewise.
58235         * m4/realloc.m4: Likewise.
58236         * m4/st_mtim.m4: Likewise.
58237         * m4/strftime.m4: Likewise.
58238
58239 1999-01-16  Jim Meyering  <meyering@ascend.com>
58240
58241         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
58242         (ARGMATCH_DIE_DECL): Define.
58243
58244 1999-01-12  Jim Meyering  <meyering@ascend.com>
58245
58246         * m4/Makefile.am.in: Rewrite to avoid using fmt.
58247         Reported by Lars Hecking.
58248
58249 1999-01-10  Jim Meyering  <meyering@ascend.com>
58250
58251         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
58252         gross kludge.
58253         * m4/inttypes_h.m4: Likewise.
58254         * m4/lstat.m4: Likewise.
58255         * m4/malloc.m4: Likewise.
58256         * m4/readdir.m4: Likewise.
58257         * m4/realloc.m4: Likewise.
58258         * m4/st_dm_mode.m4: Likewise.
58259         * m4/stat.m4: Likewise.
58260         * m4/utimbuf.m4: Likewise.
58261         * m4/utimes.m4: Likewise.
58262
58263         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
58264         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
58265         comments in config.h.in are meaningful.
58266
58267         * m4/jm-macros.m4: Require autoconf-2.13 here.
58268
58269         * m4/regex.m4: By default, don't use the included regex.c on systems
58270         with glibc 2.  Suggestion from Uli Drepper.
58271
58272 1999-01-02  Jim Meyering  <meyering@ascend.com>
58273
58274         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
58275
58276 1998-12-18  Jim Meyering  <meyering@ascend.com>
58277
58278         * m4/Makefile.am.in (Makefile.am): Simplify rule.
58279         Based on a suggestion from Lars Hecking.
58280
58281 1998-11-16  Paul Eggert  <eggert@twinsun.com>
58282
58283         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
58284
58285 1998-11-16  Jim Meyering  <meyering@ascend.com>
58286
58287         * m4/lfs.m4: Double-quote the `uname...` expression.
58288
58289 1998-11-14  Jim Meyering  <meyering@ascend.com>
58290
58291         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
58292         * m4/stat.m4: Likewise.
58293
58294 1998-11-03  Jim Meyering  <meyering@ascend.com>
58295
58296         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
58297         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
58298
58299 1998-10-18  Jim Meyering  <meyering@ascend.com>
58300
58301         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
58302
58303 1998-10-17  Jim Meyering  <meyering@ascend.com>
58304
58305         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
58306         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
58307         calls for those previously hard-coded headers.  Instead, take a new
58308         parameter.
58309         (jm_CHECK_DECLARATIONS): Reflect interface change.
58310         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
58311         (jm_CHECK_DECL_LOCALTIME_R): New macro.
58312
58313         * m4/mktime.m4: Test for spring-forward gap before long-running test.
58314
58315 1998-10-14  Jim Meyering  <meyering@ascend.com>
58316
58317         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
58318         instead of "TZ=America/Vancouver".  From Paul Eggert.
58319
58320 1998-10-11  Jim Meyering  <meyering@ascend.com>
58321
58322         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
58323         This adds a test for a recently added compatibility fix for mktime.c.
58324         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
58325
58326 1998-09-27  Jim Meyering  <meyering@ascend.com>
58327
58328         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
58329
58330         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
58331         ../configure.in, including a change from Gordon Matzigkeit to allow
58332         cross-compiling for the Hurd.
58333
58334         * m4/glibc.m4: New file/macro to test for the GNU C Library
58335         versions 1 and 2.  From Gordon Matzigkeit.
58336         Indent.
58337
58338 1998-09-21  Jim Meyering  <meyering@ascend.com>
58339
58340         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
58341
58342 1998-08-18  Paul Eggert  <eggert@twinsun.com>
58343
58344         Port nanosecond-resolution times to UnixWare 2.1.2 and
58345         pedantic Solaris 2.6.
58346
58347         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
58348         AC_STRUCT_ST_MTIM.
58349         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
58350         Generate name of ns member, instead of just 1 or undef.
58351         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
58352
58353 1998-08-15  Jim Meyering  <meyering@ascend.com>
58354
58355         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
58356         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
58357         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
58358         instead of jm_TYPE_SSIZE_T.
58359
58360 1998-08-12  Jim Meyering  <meyering@ascend.com>
58361
58362         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
58363
58364 1998-08-02  Jim Meyering  <meyering@ascend.com>
58365
58366         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
58367         in acconfig.h manually.
58368
58369 1998-07-31  Paul Eggert  <eggert@twinsun.com>
58370
58371         * m4/st_mtim.m4: New file.
58372
58373 1998-07-28  Jim Meyering  <meyering@ascend.com>
58374
58375         * m4/utimes.m4: Undef stat.
58376
58377 1998-07-25  Jim Meyering  <meyering@ascend.com>
58378
58379         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
58380         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
58381
58382 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
58383
58384         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
58385         uid and gid actually remain unchanged.
58386
58387 1998-07-07  Jim Meyering  <meyering@ascend.com>
58388
58389         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
58390
58391 1998-07-04  Jim Meyering  <meyering@ascend.com>
58392
58393         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
58394         to prove that this macro can be used in packages without regex.c.
58395
58396 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
58397
58398         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
58399         is to be used.
58400
58401 1998-07-03  Jim Meyering  <meyering@ascend.com>
58402
58403         * m4/gettext.m4: Add -lintl if it's found to be necessary.
58404
58405         * m4/gettext.m4: New file -- from gettext-0.10.35.
58406         * m4/lcmessage.m4: Likewise.
58407         * m4/progtest.m4: Likewise.
58408
58409         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
58410         * m4/jm-macros.m4: Require the new macro.
58411
58412 1998-06-29  Jim Meyering  <meyering@ascend.com>
58413
58414         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
58415         for the definition of NGROUPS (used in a system header included
58416         by sys/mount.h).
58417
58418 1998-06-28  Jim Meyering  <meyering@ascend.com>
58419
58420         * m4/ls-mntd-fs.m4: New file.
58421         * m4/fstypename.m4: New file.
58422
58423         * m4/jm-macros.m4: Require the new macro.
58424         * m4/jm-glibc-io.m4: New file.
58425
58426 1998-05-19  Jim Meyering  <meyering@ascend.com>
58427
58428         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
58429         * m4/lchown.m4: New file.
58430
58431         * m4/Makefile.am.in: New file.
58432         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
58433
58434 1998-05-14  Jim Meyering  <meyering@ascend.com>
58435
58436         * m4/Makefile.am (EXTRA_DIST): Add them.
58437         * m4/jm-macros.m4: New file.
58438         * m4/utimbuf.m4: New file.
58439
58440 1998-05-12  Jim Meyering  <meyering@ascend.com>
58441
58442         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
58443
58444 1998-05-11  Jim Meyering  <meyering@ascend.com>
58445
58446         * m4/isc-posix.m4: New file.
58447
58448 1998-05-10  Jim Meyering  <meyering@ascend.com>
58449
58450         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
58451
58452 1998-05-09  Jim Meyering  <meyering@ascend.com>
58453
58454         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
58455         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
58456         with automake.
58457
58458         * m4/ssize_t.m4: New file.
58459         * m4/mktime.m4: Remove file -- the new automake has this now.
58460
58461 1998-04-26  Jim Meyering  <meyering@ascend.com>
58462
58463         * m4/assert.m4: New file.
58464         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
58465
58466 1998-04-05  Jim Meyering  <meyering@ascend.com>
58467
58468         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
58469         (jm_PREREQ): Use it here.
58470
58471 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
58472
58473         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
58474         in acconfig.h.
58475
58476 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
58477
58478         * m4/prereq.m4: New file.
58479         * m4/error.m4: New file.
58480         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
58481
58482 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
58483
58484         * m4/getline.m4: Don't set am_cv_func_working_getline before the
58485         cache-check for the same variable -- that defeated the purpose of
58486         the test; the test program was never run.  This was a problem only
58487         on systems with losing getline functions -- HP-UX 10.20 is one.
58488         Reported by Bjorn Helgaas.
58489
58490 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
58491
58492         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
58493
58494 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
58495
58496         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
58497
58498         * m4/const.m4: New file.  Use an initializer in this declaration
58499         typedef int charset[2]; const charset x;
58500         Reported by Bob Glickstein.
58501
58502 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
58503
58504         * m4/chown.m4: Fix reversed types on -1 args to chown.
58505         From Kaveh Ghazi.
58506
58507 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
58508
58509         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
58510         Add lseek and memchr.
58511
58512         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
58513         T.E.Dickey <dickey@clark.net> said that some older preprocessors
58514         have a 20-character limit on names.
58515
58516 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
58517
58518         * m4/inttypes_h.m4: New file.
58519         * m4/uintmax_t.m4: New file.
58520         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
58521
58522
58523         -----
58524
58525         Local Variables:
58526         coding: utf-8
58527         End:
58528
58529         Copyright (C) 1997-2009 Free Software Foundation, Inc.
58530
58531         Copying and distribution of this file, with or without
58532         modification, are permitted provided the copyright notice
58533         and this notice are preserved.